@charset "UTF-8";
/*--------------------------
color
---------------------------*/
/*--------------------------
table_layout
---------------------------*/
/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  padding: 100px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#00aba9), to(#00868d));
  background: linear-gradient(90deg, #00aba9 0%, #00868d 100%);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #main_visual {
    padding: 70px 0 0;
  }
}
#main_visual::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  content: "";
  background: #000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.9s ease;
  transition: opacity 0.9s ease;
}
#main_visual .bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
#main_visual .screen_layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.13) 0, rgba(0, 0, 0, 0.13) 2px, transparent 2px, transparent 7px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.13) 0, rgba(0, 0, 0, 0.13) 2px, transparent 2px, transparent 7px);
}
#main_visual > figure,
#main_visual > .scroll_icon {
  position: relative;
  z-index: 3;
}
#main_visual.is-bg-dark::before {
  opacity: 1;
}
#main_visual.is-bg-photo::before {
  opacity: 0.35;
}
#main_visual.is-bg-photo .bg_video {
  opacity: 1;
}
#main_visual.is-bg-photo .screen_layer {
  opacity: 0.65;
}
#main_visual figure {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #main_visual figure {
    width: min(90vw, 640px);
  }
}
#main_visual figure .pic {
  width: min(50vw, 534px);
  margin: 0 auto clamp(3.75rem, 3.393rem + 1.79vw, 5rem);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.35s ease, transform 0.45s ease;
  transition: opacity 0.35s ease, transform 0.45s ease, -webkit-transform 0.45s ease;
}
@media only screen and (max-width: 1440px) {
  #main_visual figure .pic {
    width: 25vw;
  }
}
@media only screen and (max-width: 1280px) {
  #main_visual figure .pic {
    width: 50vw;
  }
}
#main_visual figure .pic img {
  display: block;
  width: 100%;
  height: auto;
}
#main_visual figure .pic.is-flying-out {
  opacity: 0 !important;
  -webkit-transform: scale(0.22) translate(-56px, -56px);
          transform: scale(0.22) translate(-56px, -56px);
  pointer-events: none;
}
#main_visual figure .pic.is-hidden {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}
#main_visual figure h2 {
  font-size: clamp(1.125rem, 0.804rem + 1.61vw, 2.25rem);
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#main_visual figure strong {
  display: block;
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.75rem);
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}
#main_visual .scroll_icon {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 30;
  display: block;
  width: 26px;
  height: 42px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  cursor: pointer;
}
#main_visual .scroll_icon.is-show {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
#main_visual .scroll_icon.is-hide {
  opacity: 0;
  -webkit-transform: translate(-50%, 12px);
          transform: translate(-50%, 12px);
  pointer-events: none;
}
#main_visual .scroll_icon.is-first-scroll-out {
  opacity: 0;
  -webkit-transform: translate(-50%, 20px) scale(0.9);
          transform: translate(-50%, 20px) scale(0.9);
  pointer-events: none;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
#main_visual .scroll_icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
#main_visual .scroll_icon rect {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.5;
  opacity: 0.75;
}
#main_visual .scroll_icon .dot {
  fill: #ffffff;
  -webkit-animation: scrollDot 1.6s ease-in-out infinite;
          animation: scrollDot 1.6s ease-in-out infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@-webkit-keyframes scrollDot {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
    opacity: 0;
  }
}
@keyframes scrollDot {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .scroll_icon {
    bottom: 24px;
    width: 24px;
    height: 38px;
  }
}

.logo_fly {
  position: fixed;
  z-index: 1000;
  margin: 0;
  pointer-events: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  will-change: top, left, width, height, opacity;
}
.logo_fly img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding: clamp(3.75rem, 3.393rem + 1.79vw, 5rem) 0 0;
}
#section01 h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
}
#section01 h1::after {
  content: attr(data-title);
  display: block;
  font-size: clamp(1.5rem, 1.286rem + 1.07vw, 2.25rem);
  font-weight: 300;
  font-family: "kinuta-mincho-stdn", sans-serif;
}
#section01 h1 span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.464rem + 0.18vw, 0.625rem);
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
  color: #00868d;
  line-height: 1;
}
#section01 h1 span::before {
  content: "";
  width: clamp(1.563rem, 1.473rem + 0.45vw, 1.875rem);
  height: 1px;
  background: #00868d;
}
#section01 h1 {
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section01 .txt_box {
  margin: 0 0 clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
}
#section01 .service_box {
  position: relative;
}
#section01 .service_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00aba9;
  opacity: 0.06;
  z-index: -2;
}
#section01 .service_box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/asset/image/top/sec01_bg_img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.175;
  z-index: -1;
}
#section01 .service_box .grid_section {
  position: relative;
  --line-color: #bdc3c6;
  --border-width: 1px;
  --row1-height: 240px;
}
@media only screen and (max-width: 768px) {
  #section01 .service_box .grid_section {
    --row1-height: 140px;
  }
}
#section01 .service_box .grid_section::before, #section01 .service_box .grid_section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--border-width);
  background: var(--line-color);
  pointer-events: none;
}
#section01 .service_box .grid_section::before {
  top: 0;
}
#section01 .service_box .grid_section::after {
  bottom: 0;
}
#section01 .service_box .grid_section .middle-line {
  position: absolute;
  top: var(--row1-height);
  left: 0;
  width: 100%;
  height: var(--border-width);
  background: var(--line-color);
  pointer-events: none;
}
#section01 .service_box .grid_section .inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #section01 .service_box .grid_section .middle-line {
    display: none;
  }
}
#section01 .service_box .grid_wrap {
  display: -ms-grid;
  display: grid;
  gap: 0;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
#section01 .service_box .grid_wrap .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 240px;
  padding: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem) 30px 60px;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #bdc3c6;
  border-left: 0;
}
@media only screen and (max-width: 768px) {
  #section01 .service_box .grid_wrap .item {
    min-height: 140px;
  }
}
#section01 .service_box .grid_wrap .item::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 0;
  left: 0;
  bottom: 0;
  background: #00aba9;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section01 .service_box .grid_wrap .item .more_arrow {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 20px;
  right: clamp(0.938rem, 0.848rem + 0.45vw, 1.25rem);
  bottom: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
  color: #231815;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
#section01 .service_box .grid_wrap .item .more_arrow span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  line-height: 1;
}
#section01 .service_box .grid_wrap .item .more_arrow::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
}
#section01 .service_box .grid_wrap .item .more_arrow::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
#section01 .service_box .grid_wrap .item .more_arrow span, #section01 .service_box .grid_wrap .item .more_arrow::before, #section01 .service_box .grid_wrap .item .more_arrow::after {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#section01 .service_box .grid_wrap .item h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
}
@media only screen and (max-width: 768px) {
  #section01 .service_box .grid_wrap .item h2 {
    min-height: auto;
  }
}
#section01 .service_box .grid_wrap .item:hover {
  background: rgba(0, 0, 0, 0.25);
}
#section01 .service_box .grid_wrap .item:hover::before {
  height: 100%;
}
#section01 .service_box .grid_wrap .item:hover .more_arrow {
  color: #00868d;
  text-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
#section01 .service_box .grid_wrap .item:hover .more_arrow::before, #section01 .service_box .grid_wrap .item:hover .more_arrow::after {
  background: #00868d;
}
@media only screen and (min-width: 769px) {
  #section01 .service_box .grid_wrap {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: var(--row1-height) auto;
    grid-template-rows: var(--row1-height) auto;
  }
  #section01 .service_box .grid_wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #section01 .service_box .grid_wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  #section01 .service_box .grid_wrap > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #section01 .service_box .grid_wrap > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  #section01 .service_box .grid_wrap > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #section01 .service_box .grid_wrap > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 6;
  }
  #section01 .service_box .grid_wrap > *:nth-child(7) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #section01 .service_box .grid_wrap > *:nth-child(8) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  #section01 .service_box .grid_wrap > *:nth-child(9) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  #section01 .service_box .grid_wrap > *:nth-child(10) {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
  #section01 .service_box .grid_wrap > *:nth-child(11) {
    -ms-grid-row: 2;
    -ms-grid-column: 5;
  }
  #section01 .service_box .grid_wrap > *:nth-child(12) {
    -ms-grid-row: 2;
    -ms-grid-column: 6;
  }
  #section01 .service_box .grid_wrap .item {
    border-top: 1px solid #bdc3c6;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid #bdc3c6;
  }
  #section01 .service_box .grid_wrap .item:nth-child(1),
  #section01 .service_box .grid_wrap .item:nth-child(2) {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  #section01 .service_box .grid_wrap .item:nth-child(3),
  #section01 .service_box .grid_wrap .item:nth-child(4),
  #section01 .service_box .grid_wrap .item:nth-child(5) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  #section01 .service_box .grid_wrap .item:nth-child(2),
  #section01 .service_box .grid_wrap .item:nth-child(5) {
    border-right: 1px solid #bdc3c6;
  }
  #section01 .service_box .grid_wrap .item:nth-child(3),
  #section01 .service_box .grid_wrap .item:nth-child(4),
  #section01 .service_box .grid_wrap .item:nth-child(5) {
    border-bottom: 1px solid #bdc3c6;
  }
}

/*--------------------------
section02
---------------------------*/
#section02 {
  padding: 0 0 clamp(3.75rem, 3.393rem + 1.79vw, 5rem);
}
@media only screen and (max-width: 768px) {
  #section02 {
    padding: clamp(3.75rem, 3.393rem + 1.79vw, 5rem) 0;
  }
}
#section02 h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  text-align: right;
}
#section02 h1::after {
  content: attr(data-title);
  display: block;
  font-size: clamp(1.5rem, 1.286rem + 1.07vw, 2.25rem);
  font-weight: 300;
  font-family: "kinuta-mincho-stdn", sans-serif;
}
#section02 h1 span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.464rem + 0.18vw, 0.625rem);
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
  color: #00868d;
  line-height: 1;
}
#section02 h1 span::before {
  content: "";
  width: clamp(1.563rem, 1.473rem + 0.45vw, 1.875rem);
  height: 1px;
  background: #00868d;
}
#section02 h1 {
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section02 .flex_box,
#section02 .flex_reverse,
#section02 .flex_box_reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#section02 .flex_box .left_box,
#section02 .flex_reverse .left_box,
#section02 .flex_box_reverse .left_box {
  width: 50%;
  max-width: 640px;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .left_box,
  #section02 .flex_reverse .left_box,
  #section02 .flex_box_reverse .left_box {
    width: 100%;
    max-width: 100%;
  }
}
#section02 .flex_box .right_box,
#section02 .flex_reverse .right_box,
#section02 .flex_box_reverse .right_box {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .right_box,
  #section02 .flex_reverse .right_box,
  #section02 .flex_box_reverse .right_box {
    width: 100%;
  }
}
#section02 .flex_box h2,
#section02 .flex_reverse h2,
#section02 .flex_box_reverse h2 {
  font-size: clamp(1.125rem, 0.946rem + 0.89vw, 1.75rem);
  font-weight: 500;
  color: #5d6970;
  line-height: 1.5;
  margin: 0 0 clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
}
#section02 .flex_box h2 span,
#section02 .flex_reverse h2 span,
#section02 .flex_box_reverse h2 span {
  display: block;
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
}
#section02 .flex_box .category_box:not(:last-child),
#section02 .flex_reverse .category_box:not(:last-child),
#section02 .flex_box_reverse .category_box:not(:last-child) {
  margin: 0 0 clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
}
#section02 .flex_box .overview_box,
#section02 .flex_reverse .overview_box,
#section02 .flex_box_reverse .overview_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 1fr;
  -ms-grid-columns: max-content 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  row-gap: 10px;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .overview_box,
  #section02 .flex_reverse .overview_box,
  #section02 .flex_box_reverse .overview_box {
    display: block;
  }
}
#section02 .flex_box .overview_box dl,
#section02 .flex_reverse .overview_box dl,
#section02 .flex_box_reverse .overview_box dl {
  display: contents;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .overview_box dl,
  #section02 .flex_reverse .overview_box dl,
  #section02 .flex_box_reverse .overview_box dl {
    display: block;
  }
  #section02 .flex_box .overview_box dl:not(:last-child),
  #section02 .flex_reverse .overview_box dl:not(:last-child),
  #section02 .flex_box_reverse .overview_box dl:not(:last-child) {
    margin: 0 0 15px;
  }
}
#section02 .flex_box .overview_box dl dt,
#section02 .flex_reverse .overview_box dl dt,
#section02 .flex_box_reverse .overview_box dl dt {
  position: relative;
  -ms-grid-column: 1;
  grid-column: 1;
  color: #00868d;
  padding: 0 clamp(1rem, 0.964rem + 0.18vw, 1.125rem) 0 0;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .overview_box dl dt,
  #section02 .flex_reverse .overview_box dl dt,
  #section02 .flex_box_reverse .overview_box dl dt {
    padding: 0;
  }
}
#section02 .flex_box .overview_box dl dt::after,
#section02 .flex_reverse .overview_box dl dt::after,
#section02 .flex_box_reverse .overview_box dl dt::after {
  position: absolute;
  content: "：";
  color: #231815;
  right: 0;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .overview_box dl dt::after,
  #section02 .flex_reverse .overview_box dl dt::after,
  #section02 .flex_box_reverse .overview_box dl dt::after {
    position: static;
  }
}
#section02 .flex_box .overview_box dl dd,
#section02 .flex_reverse .overview_box dl dd,
#section02 .flex_box_reverse .overview_box dl dd {
  -ms-grid-column: 2;
  grid-column: 2;
}
#section02 .flex_box .bg_item,
#section02 .flex_reverse .bg_item,
#section02 .flex_box_reverse .bg_item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: none;
  will-change: auto;
}
#section02 .flex_box .bg_item::before,
#section02 .flex_reverse .bg_item::before,
#section02 .flex_box_reverse .bg_item::before {
  content: "";
  position: absolute;
  inset: -40px 0;
  background-image: url(/asset/image/top/sec02_img01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translateY(var(--bg-y, 0px));
          transform: translateY(var(--bg-y, 0px));
  will-change: transform;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .bg_item,
  #section02 .flex_reverse .bg_item,
  #section02 .flex_box_reverse .bg_item {
    height: 50vw;
    margin: 0 0 clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
  }
  #section02 .flex_box .bg_item::before,
  #section02 .flex_reverse .bg_item::before,
  #section02 .flex_box_reverse .bg_item::before {
    inset: 0;
    -webkit-transform: none;
            transform: none;
  }
}
#section02 .flex_box .map_box,
#section02 .flex_reverse .map_box,
#section02 .flex_box_reverse .map_box {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 500px;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .map_box,
  #section02 .flex_reverse .map_box,
  #section02 .flex_box_reverse .map_box {
    padding: 0 0 50vw;
  }
}
#section02 .flex_box .map_box iframe,
#section02 .flex_reverse .map_box iframe,
#section02 .flex_box_reverse .map_box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section02 .flex_box .map_box iframe:hover,
#section02 .flex_reverse .map_box iframe:hover,
#section02 .flex_box_reverse .map_box iframe:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
#section02 .flex_box .link_list,
#section02 .flex_reverse .link_list,
#section02 .flex_box_reverse .link_list {
  max-width: 640px;
  padding: 0 30px 0 0;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .link_list,
  #section02 .flex_reverse .link_list,
  #section02 .flex_box_reverse .link_list {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }
}
#section02 .flex_box .link_list li,
#section02 .flex_reverse .link_list li,
#section02 .flex_box_reverse .link_list li {
  border-bottom: 1px solid #bdc3c6;
}
#section02 .flex_box .link_list li a,
#section02 .flex_reverse .link_list li a,
#section02 .flex_box_reverse .link_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  padding: 15px;
}
#section02 .flex_box .link_list li a::before,
#section02 .flex_reverse .link_list li a::before,
#section02 .flex_box_reverse .link_list li a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #231815;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section02 .flex_box .link_list li a::after,
#section02 .flex_reverse .link_list li a::after,
#section02 .flex_box_reverse .link_list li a::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\f006";
  top: 50%;
  right: 15px;
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section02 .flex_box .link_list li a:hover,
#section02 .flex_reverse .link_list li a:hover,
#section02 .flex_box_reverse .link_list li a:hover {
  color: #00868d;
}
#section02 .flex_box .link_list li a:hover::before,
#section02 .flex_reverse .link_list li a:hover::before,
#section02 .flex_box_reverse .link_list li a:hover::before {
  width: 20px;
  background: #00868d;
}
#section02 .flex_box .link_list li a:hover::after,
#section02 .flex_reverse .link_list li a:hover::after,
#section02 .flex_box_reverse .link_list li a:hover::after {
  right: 10px;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#section02 .flex_box .left_box {
  padding: clamp(3.75rem, 3.393rem + 1.79vw, 5rem) clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem) clamp(3.75rem, 3.393rem + 1.79vw, 5rem) 0;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box .left_box {
    padding: 0 30px;
    margin: 0 auto clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
  }
}
#section02 .flex_box_reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#section02 .flex_box_reverse .left_box {
  padding: clamp(3.75rem, 3.393rem + 1.79vw, 5rem) 0 clamp(3.75rem, 3.393rem + 1.79vw, 5rem) clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_box_reverse .left_box {
    padding: 0 30px;
    margin: 0 auto clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
  }
}
#section02 .flex_reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#section02 .flex_reverse .left_box {
  padding: 0 0 clamp(3.75rem, 3.393rem + 1.79vw, 5rem) clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 768px) {
  #section02 .flex_reverse .left_box {
    padding: 30px;
  }
}

/*--------------------------
section03
---------------------------*/
#section03 {
  padding: clamp(3.75rem, 3.393rem + 1.79vw, 5rem) 0;
  background: #00868d;
}
#section03 h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  color: #ffffff;
  text-align: center;
}
#section03 h1::after {
  content: attr(data-title);
  display: block;
  font-size: clamp(1.5rem, 1.286rem + 1.07vw, 2.25rem);
  font-weight: 300;
  font-family: "kinuta-mincho-stdn", sans-serif;
}
#section03 h1 span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.464rem + 0.18vw, 0.625rem);
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
#section03 h1 span::before, #section03 h1 span::after {
  content: "";
  width: clamp(1.563rem, 1.473rem + 0.45vw, 1.875rem);
  height: 1px;
  background: #ffffff;
}
#section03 h1 {
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section03 .txt_box {
  text-align: center;
  margin: 0 0 clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
}
#section03 .txt_box p {
  color: #ffffff;
}
#section03 .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  #section03 .btn_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  #section03 .btn_list li {
    width: 100%;
  }
}
#section03 .btn_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 100px;
  color: #ffffff;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}
@media only screen and (max-width: 768px) {
  #section03 .btn_list li a {
    width: 100%;
  }
}
#section03 .btn_list li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
}
#section03 .btn_list li a span::before {
  content: attr(data-en);
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
}
#section03 .btn_list li a:hover {
  color: #00868d;
  background: rgba(255, 255, 255, 0.9);
}