@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 25px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  color: #ffffff;
  font-weight: 500;
}

.c-header.is-fixed {
  background-color: #333333;
  opacity: 0.9;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media only screen and (max-width: 1024px) {
  .c-header.is-fixed {
    background: transparent;
  }
}

/* Main menu
------------------------------------------------------------*/
.c-gnav {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .c-gnav {
    width: 100%;
    display: none;
  }
}

.c-gnav ul {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .c-gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
  }
}

.c-gnav li {
  display: inline-block;
}

@media only screen and (max-width: 1024px) {
  .c-gnav li {
    width: 100%;
  }
}

.c-gnav li + li {
  margin-left: 35px;
}

@media only screen and (max-width: 1024px) {
  .c-gnav li + li {
    margin-left: 0;
  }
}

.c-gnav a {
  display: block;
  font-size: 1.6rem;
  line-height: 0.8;
  text-transform: capitalize;
  position: relative;
}

.c-gnav a.is-active:before {
  content: "";
  position: absolute;
  bottom: -8px;
  height: 2px;
  width: 100%;
  background: #ffffff;
}

@media only screen and (max-width: 1024px) {
  .c-gnav a.is-active:before {
    display: none;
  }
}

.c-gnavisp {
  display: none;
  background-color: #009597;
  padding: 45px 37px 35px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.c-gnavisp ul li a {
  border-top: 1px solid #025b5b;
  font-size: 1.5rem;
  width: 100%;
  padding: 8px 0px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .c-gnavisp ul li:last-child a {
    border-bottom: 1px solid #025b5b;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.c-menu {
  position: fixed;
  top: 0px;
  right: 0px;
  text-align: center;
  overflow: hidden;
  display: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background-color: #009597;
}

@media only screen and (max-width: 1024px) {
  .c-menu {
    display: -webkit-box;
    display: flex;
  }
}

.c-menu__icon {
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
}

.c-menu__icon:nth-child(1) {
  top: 16px;
}

.c-menu__icon:nth-child(3) {
  bottom: 16px;
}

body.menu-open .c-menu__icon {
  top: 24px;
  width: 30px;
}

body.menu-open .c-menu__icon:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.menu-open .c-menu__icon:nth-child(2) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

body.menu-open .c-menu__icon:nth-child(3) {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  color: #ffffff;
}

.c-footer1 {
  background-color: #4d4d4d;
  padding: 25px 0px;
}

.c-footer1__inner {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
}

.c-footer1__left {
  width: 40%;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__left {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 70px;
  }
}

.c-footer1__right {
  width: 60%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__right {
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.c-footer1__right ul {
  display: -webkit-box;
  display: flex;
}

.c-footer1__right ul li {
  margin-left: 37px;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__right ul li {
    margin: 0 20px;
  }
}

.c-footer1__right ul li a {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__right ul li a {
    font-size: 1.6rem;
  }
}

.c-footer1__right ul li a.is-active:before {
  content: "";
  position: absolute;
  bottom: -8px;
  height: 2px;
  width: 100%;
  background: #ffffff;
}

.c-footer1__imgpc {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__imgpc {
    display: none;
  }
}

.c-footer1__imgsp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .c-footer1__imgsp {
    display: block;
  }
}

.c-footer2 {
  background-color: #333333;
}

.c-footer2 .c-copyright {
  height: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.5;
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "Times New Roman", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  min-width: 1000px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  .l-container {
    width: 100%;
    margin: 0;
  }
}

.c-mainvisual {
  height: 650px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  .c-mainvisual {
    height: 600px;
  }
}

.c-mainvisual:before {
  content: "";
  width: 52.5%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/mainvisual_bg.png") no-repeat right;
  z-index: 100;
}

@media only screen and (max-width: 1024px) {
  .c-mainvisual:before {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  .c-mainvisual:before {
    display: none;
  }
}

.c-mainvisual::after {
  content: "";
  width: calc(52.5% - 716.61px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #333333;
  opacity: 0.9;
  z-index: 99;
}

.c-mainvisual svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-mainvisual > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-mainvisual__inner {
  position: absolute;
  top: 100px;
  width: 100%;
  height: auto;
  z-index: 200;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual__inner {
    width: 100%;
    height: 100%;
    top: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.c-mainvisual__cnt {
  padding-left: 57px;
  -webkit-animation: fadeInLeft 1.5s both;
  animation: fadeInLeft 1.5s both;
  overflow: hidden;
}

.c-mainvisual__cnt a:hover {
  opacity: 1;
}

.c-mainvisual__cnt a:hover img {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual__cnt {
    padding-left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.c-mainvisual__imgpc {
  display: block;
}

@media only screen and (max-width: 480px) {
  .c-mainvisual__imgpc {
    display: none;
  }
}

.c-mainvisual__imgsp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .c-mainvisual__imgsp {
    display: block;
  }
}

.c-mainvisual--subpage {
  height: 300px;
}

@media only screen and (max-width: 480px) {
  .c-mainvisual--subpage {
    height: 150px;
  }
}

.c-mainvisual--subpage .c-mainvisual__inner {
  top: 80px;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual--subpage .c-mainvisual__inner {
    top: 15px;
    left: 15px;
    width: auto;
    height: auto;
    display: block;
  }
}

.c-mainvisual--subpage:before {
  width: 57%;
}

@media only screen and (max-width: 767px) {
  .c-mainvisual--subpage:before {
    display: block;
    width: 75%;
  }
}

.c-mainvisual--subpage::after {
  width: calc(57% - 716.61px);
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 a {
  width: 240px;
  height: 40px;
  margin: 0 auto;
  background: #f5aa3b;
  border-radius: 5px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.27777777778;
  text-shadow: 2px 2px #865f25;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .c-btn1 a {
    width: 100%;
  }
}

.c-btn__top {
  position: fixed;
  z-index: 1000;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  display: block;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media only screen and (max-width: 767px) {
  .c-btn__top {
    right: 20px;
  }
}

.c-btn__top--none {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1 {
  color: #4d4d4d;
  font-size: 3.6rem;
  line-height: 0.6389;
  text-align: center;
  font-weight: 400;
}

.c-title2 {
  font-size: 3.6rem;
  line-height: 0.6389;
  font-weight: 400;
  padding-bottom: 38px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .c-title2 {
    font-size: 2.6rem;
    padding-bottom: 30px;
    text-align: center;
  }
}

.c-title2::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #009597;
  width: 100px;
}

@media only screen and (max-width: 1024px) {
  .c-title2::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.c-title2 strong {
  font-weight: 400;
}

.c-title3 {
  font-size: 3.2rem;
  color: #4d4d4d;
  text-align: center;
  line-height: 0.71875;
  padding-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .c-title3 {
    font-size: 2.2rem;
    line-height: 1.045;
  }
}

.c-title3:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: #009597;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
post
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-post1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
  .c-post1 {
    margin-bottom: 25px;
  }
}

.c-post1:last-child {
  margin-bottom: 0px;
}

.c-post1__left {
  width: 200px;
  height: 155px;
  margin-right: 25px;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.2;
  background: #009597;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .c-post1__left {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 60px;
    font-size: 1.8rem;
  }
}

.c-post1__right {
  width: 775px;
  font-size: 1.5rem;
  line-height: 1.2;
  padding-top: 7px;
}

@media only screen and (max-width: 1024px) {
  .c-post1__right {
    width: 100%;
    background: #ececec;
    margin-top: -30px;
    z-index: -1;
    font-size: 1.6rem;
    line-height: 1.4375;
    padding: 50px 20px 28px;
  }
}

.c-post2 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .c-post2 {
    margin-bottom: 60px;
  }
}

.c-post2:last-child {
  margin-bottom: 0;
}

.c-post2__cnt {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .c-post2__cnt {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.c-post2__left {
  width: 165px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .c-post2__left {
    width: 100%;
  }
}

.c-post2__right {
  padding: 32px 30px 32px 75px;
  width: 835px;
  background: #ececec;
}

@media only screen and (max-width: 1024px) {
  .c-post2__right {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 27px 20px 17px 20px;
  }
}

.c-post2__right h4 {
  font-size: 1.6rem;
  color: #4d4d4d;
  line-height: 1.4375;
  padding-bottom: 13px;
  position: relative;
}

.c-post2__right h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background: #f5aa3b;
}

.c-post2__label {
  position: absolute;
  top: 25px;
  height: 57px;
  width: 400px;
  background: #d9eff0;
  right: -50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  -webkit-box-pack: end;
  justify-content: flex-end;
  box-shadow: 4px 4px #c1c1c1;
}

@media only screen and (max-width: 1024px) {
  .c-post2__label {
    width: 175px;
    top: -40px;
    left: 0;
    height: 50px;
    right: auto;
  }
}

.c-post2__label p {
  width: 110px;
}

.c-post2__text {
  padding-top: 12px;
  font-size: 1.4rem;
  line-height: 1.643;
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-orange {
  color: #e76c00;
}

.c-blue {
  color: #009597;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top1 {
  padding-top: 72px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .p-top1 {
    padding: 47px 25px 50px;
  }
}

.p-top1__cnt {
  font-size: 1.6rem;
  line-height: 1.4375;
  width: 510px;
  margin: 0 auto;
  padding-top: 51px;
  padding-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .p-top1__cnt {
    width: 100%;
    padding-top: 32px;
  }
}

.p-top2 {
  height: 455px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .p-top2 {
    height: auto;
  }
}

.p-top2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url("../img/top2_image1.jpg") no-repeat right;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .p-top2::before {
    display: none;
  }
}

.p-top2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: #009597;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .p-top2:after {
    display: none;
  }
}

.p-top2__inner {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .p-top2__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
}

.p-top2__left {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .p-top2__left {
    width: 100%;
  }
}

.p-top2__left img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .p-top2__left img {
    display: block;
  }
}

.p-top2__right {
  width: 50%;
  height: 100%;
  padding-left: 47px;
  color: #ffffff;
  padding-top: 43px;
  background: #009597;
}

@media only screen and (max-width: 767px) {
  .p-top2__right {
    width: 100%;
    padding: 40px 25px 40px;
  }
}

.p-top2__right h2 {
  font-size: 2.6rem;
  line-height: 1.1154;
  padding-bottom: 43px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .p-top2__right h2 {
    text-align: center;
  }
}

.p-top2__text {
  padding-bottom: 26px;
}

.p-top2__text > p {
  font-size: 1.8rem;
  line-height: 1.61;
}

.p-top2__txt {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
  margin-top: 9px;
}

.p-top2__txt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 38px;
  background: #f18d1e;
}

.p-top3 {
  padding-top: 92px;
  padding-bottom: 55px;
}

@media only screen and (max-width: 767px) {
  .p-top3 {
    padding-top: 50px;
    padding-bottom: 0;
  }
}

.p-top3__cnt {
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  .p-top3__cnt {
    padding-top: 45px;
  }
}

.p-top4 {
  position: relative;
  padding-top: 67px;
}

@media only screen and (max-width: 767px) {
  .p-top4 {
    padding-top: 45px;
  }
}

.p-top4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #009597;
  opacity: 0.2;
  z-index: -1;
}

.p-top4__cnt {
  padding-top: 60px;
  padding-bottom: 30px;
  width: 1366px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  .p-top4__cnt {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-top4__cnt {
    padding-top: 35px;
    padding-bottom: 5px;
  }
}

.p-top4__gallery {
  width: 100%;
}

.p-top4__gallery:nth-child(1) {
  margin-bottom: 5px;
}

@media only screen and (max-width: 1365px) {
  .p-top4__gallery {
    width: 6000px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
}

.p-top4__image {
  width: 100%;
}

@media only screen and (max-width: 1365px) {
  .p-top4__image {
    float: left;
    position: relative;
    width: auto;
  }
}

.p-top4__slide {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
}

/*------------------------------------------------------------
Css of business page
------------------------------------------------------------*/
.p-business1 {
  padding: 50px 0px;
}

@media only screen and (max-width: 1024px) {
  .p-business1 {
    padding: 40px 20px 20px;
  }
}

.p-business1__inner {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .p-business1__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
}

.p-business1__left {
  width: 500px;
  margin-right: 45px;
}

@media only screen and (max-width: 1024px) {
  .p-business1__left {
    width: 100%;
  }
}

.p-business1__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-business1__right {
  width: 455px;
  padding-top: 25px;
}

@media only screen and (max-width: 1024px) {
  .p-business1__right {
    width: 100%;
    padding-top: 0;
  }
}

.p-business1__text {
  font-size: 1.6rem;
  line-height: 1.4375;
  padding-top: 40px;
  text-align: justify;
}

@media only screen and (max-width: 1024px) {
  .p-business1__text {
    padding-top: 25px;
    padding-bottom: 10px;
  }
}

.p-business1__text p {
  padding-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .p-business2 {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-about1 {
  padding-top: 64px;
  padding-bottom: 110px;
}

@media only screen and (max-width: 1024px) {
  .p-about1 {
    padding-top: 40px;
    padding-bottom: 35px;
  }
}

.p-about1__inner > p {
  font-size: 2.4rem;
  line-height: 0.95833333333;
  text-align: center;
  padding-top: 30px;
}

.p-about1__cnt {
  padding-top: 90px;
}

@media only screen and (max-width: 1024px) {
  .p-about1__cnt {
    padding-top: 60px;
  }
}

.p-about1__text h3 {
  width: 1000px;
  margin: 0 auto 14px;
  padding-left: 165px;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .p-about1__text h3 {
    width: 100%;
    padding-left: 0px;
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto 70px;
  }
}

.p-about1__text h3 strong {
  font-weight: 500;
}

.p-about1__text:nth-child(1) {
  padding-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .p-about1__text--diff h3 {
    margin: 0 auto 25px;
  }
}

@media only screen and (max-width: 1024px) {
  .p-about2 {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/*# sourceMappingURL=style.css.map */
