@charset "UTF-8";
@font-face {
  font-family: "Hiragino Kaku Gothic";
  src: url("../fonts/HiraginoKakuGothic_W3.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Hiragino Kaku Gothic";
  src: url("../fonts/HiraginoKakuGothic_W5.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Hiragino Kaku Gothic";
  src: url("../fonts/HiraginoKakuGothic_W6.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img, video, iframe {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Hiragino Kaku Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #3C3C3C;
  line-height: 1.8;
  width: 100%;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body a {
  color: #3C3C3C;
}

main {
  margin-top: 100px;
}
@media (max-width: 768px) {
  main {
    margin-top: 60px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #3C3C3C;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* SVG 線を描くアニメーション
======================================== */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 1.5s ease-in-out forwards;
          animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn,
.fadeUpDown,
.fadeLeftRight,
.fadeRightLeft,
.fadeInOpacity,
.fv_fadeRightLeft,
.fv_fadeInOpacity,
.fadeInSP,
.fadeUpDownSP,
.fadeLeftRightSP,
.fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  -webkit-transform: translateZ(0) scale(1.2, 1.2);
          transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_n2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* btn 
========================================= */
.btn {
  width: 100%;
  height: 5em;
  margin: 0 auto;
  max-width: 41.25em;
}
@media (max-width: 768px) {
  .btn {
    height: 4em;
  }
}
.btn > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  width: 100%;
  padding: 0 1.25em;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  height: 100%;
  font-size: 1.25em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .btn > a {
    font-size: 1em;
  }
}
.btn.--green > a {
  background-color: #085A59;
  border: 2px solid #085A59;
  color: #fff;
}
.btn.--green > a:hover {
  background-color: #fff;
  color: #085A59;
}
.btn.--green.--outer > a:hover::after {
  background: url(../img/icons/outer_green.svg) no-repeat center center/contain;
}
.btn.--green.--pdf > a:hover::before {
  background: url(../img/icons/pdf_green.svg) no-repeat center center/contain;
}
.btn.--green.--mail > a:hover::before {
  background: url(../img/icons/mail_green.svg) no-repeat center center/contain;
}
.btn.--white > a {
  background-color: #fff;
  border: 2px solid #fff;
  color: #3E9FCC;
}
.btn.--white > a:hover {
  background-color: #3E9FCC;
  color: #fff;
}
.btn.--white.--mail > a::before {
  background: url(../img/icons/mail_blue.svg) no-repeat center center/contain;
}
.btn.--white.--mail > a:hover::before {
  background: url(../img/icons/mail_white.svg) no-repeat center center/contain;
}
.btn.--outer > a::after {
  content: "";
  display: block;
  width: 0.85em;
  height: 0.85em;
  background: url(../img/icons/outer_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.--pdf > a::before {
  content: "";
  display: block;
  width: 1.35em;
  height: 1.8em;
  background: url(../img/icons/pdf_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.--mail > a::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1em;
  background: url(../img/icons/mail_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* section common
====================================== */
.section__inner {
  width: 88.8889%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  padding: 7.5em 0;
}
@media (max-width: 768px) {
  .section__inner {
    width: 89.333%;
    padding: 3em 0;
  }
}
.section__inner.--s {
  max-width: 960px;
}
.section__inner.--l {
  width: 94.444%;
  max-width: 1360px;
}
@media (max-width: 768px) {
  .section__inner.--l {
    width: 89.333%;
  }
}
.section__title {
  font-size: 2.5em;
  text-align: center;
  color: #3E9FCC;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 1.25em;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
}
.section__lead {
  font-size: 1.25em;
  text-align: center;
  line-height: 1.8;
  font-weight: 300;
  max-width: 960px;
  margin: 0 auto 2em;
}
@media (max-width: 768px) {
  .section__lead {
    font-size: 1em;
    text-align: left;
  }
}
.section__lead span {
  font-weight: 600;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1.25em;
  padding-left: 2.5em;
  position: relative;
}
@media (max-width: 768px) {
  .header__inner {
    padding-right: 1em;
    padding-left: 1em;
  }
}
.header__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
}
@media (max-width: 1024px) {
  .header__left {
    gap: 1em;
  }
}
.header__itsn a {
  display: block;
  width: clamp(100px, 11.0345vw, 174px);
}
.header__itsn a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header__omada {
  width: clamp(80px, 9.1667vw, 176px);
}
.header__omada img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(3.75em, 3.125vw);
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item a {
  font-weight: 600;
  padding: 1em min(1.875em, 1.5625vw);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  position: relative;
}
.header__nav-item a:hover {
  color: #085A59;
}
.header__nav-item a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__nav-item a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #085A59;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}
.header__cta-contact {
  width: min(12.5em, 10.4166666667vw);
  height: min(3.75em, 3.125vw);
}
.header__cta-contact a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  position: relative;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.header__cta-contact a::before {
  content: "";
  width: 1.25em;
  height: 1em;
  background: url(../img/icons/mail_white.svg) no-repeat center center/contain;
}
.header__cta-contact a::after {
  content: "";
  width: 200%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#E92F21), color-stop(#ED6B3E), to(#E92F21));
  background: -webkit-linear-gradient(left, #E92F21, #ED6B3E, #E92F21);
  background: linear-gradient(to right, #E92F21, #ED6B3E, #E92F21);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__cta-contact a:hover::after {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__btn {
  width: 1.5rem;
  height: 1.5rem;
  padding: 6px 3px;
  cursor: pointer;
  display: none;
  position: relative;
}
@media (max-width: 1024px) {
  .header__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__btn-bar {
  width: 100%;
  height: 1.5px;
  background-color: #0D2E3B;
  border-radius: 2px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 50%;
}
.header__btn-bar:nth-child(1) {
  top: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__btn-bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__btn-bar:nth-child(3) {
  bottom: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 4;
  width: 100vw;
  overflow: scroll;
  background-color: #fff;
}
.header__menu-inner {
  padding: 2em 0;
  max-height: 100vh;
  overflow: scroll;
}
.header__menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  margin-bottom: 2em;
}
.header__menu-item a {
  display: block;
  font-weight: 600;
  padding: 0.5em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-item a::after {
  content: "";
  width: 6px;
  height: 10px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.header__menu-btn {
  width: 100%;
  height: 60px;
}

.is-open .header__menu {
  display: block;
}

.footer {
  background-color: #222222;
}
.footer__container {
  padding: 4.5em 0;
}
@media (max-width: 768px) {
  .footer__container {
    padding: 3em 0;
  }
}
.footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em 5%;
}
@media (max-width: 1024px) {
  .footer__list {
    gap: 2em 3%;
  }
}
@media (max-width: 768px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__item {
  width: 50%;
  max-width: 450px;
  border-radius: 15px;
  border: 1px solid #fff;
  padding: 1.875em;
}
@media (max-width: 768px) {
  .footer__item {
    width: 100%;
    padding: 1em;
  }
}
.footer__item.--itsn {
  background-color: #fff;
}
.footer__item.--itsn .footer__item-item-text {
  border-left: 1px solid #3C3C3C;
}
.footer__item.--tp-link {
  color: #fff;
}
.footer__item.--tp-link .footer__item-item-text {
  border-left: 1px solid #fff;
}
.footer__item.--tp-link .footer__item-item-text a {
  color: #fff;
}
.footer__item-logo {
  margin-bottom: 1.25em;
}
.footer__item-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer__item-item {
    font-size: 0.875em;
  }
}
.footer__item-item:nth-child(n+2) {
  margin-top: 1.25em;
}
.footer__item-item-title {
  width: 4.25em;
  padding-right: 1.25em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 1024px) {
  .footer__item-item-title {
    padding-right: 1em;
  }
}
@media (max-width: 768px) {
  .footer__item-item-title {
    font-size: 0.875em;
  }
}
.footer__item-item-text {
  padding: 0 1.25em;
  line-height: 1.875;
}
@media (max-width: 1024px) {
  .footer__item-item-text {
    padding-left: 1em;
  }
}
@media (max-width: 768px) {
  .footer__item-item-text {
    font-size: 0.875em;
  }
}
.footer__item-item-text a {
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 0.625em;
  padding: 2em;
  width: 93.75%;
  margin: 0 auto;
  border-top: 1px solid #fff;
}

.hero {
  border-bottom: 1px solid #E6E6E6;
}
.hero__inner {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  max-width: 1920px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero__image {
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .hero__image {
    width: 100%;
    margin-bottom: 2.5em;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__contents {
  width: 50%;
  height: 100%;
  padding: 2em 0;
}
@media (max-width: 768px) {
  .hero__contents {
    width: 100%;
  }
}
.hero__contents-inner {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}
.hero__title {
  font-size: 1.25em;
  text-align: left;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 1em;
  }
}
.hero__catch {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.75;
  color: #3E9FCC;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .hero__catch {
    font-size: 1.5em;
  }
}
.hero__text {
  font-size: 1.25em;
  font-weight: 300;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1em;
  }
}
.hero__box {
  padding: 1.875em;
  background-color: #F8F8F8;
}
@media (max-width: 768px) {
  .hero__box {
    padding: 1em;
  }
}
.hero__box-title {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .hero__box-title {
    font-size: 1em;
  }
}
.hero__box-text {
  font-size: 1.25em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .hero__box-text {
    font-size: 1em;
  }
}

.logos__inner {
  padding-top: 2.5em;
  padding-bottom: 0;
  width: 100%;
  max-width: inherit;
}
.logos__slide {
  margin: 0 15px;
}
@media (max-width: 768px) {
  .logos__slide {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    margin: 0;
  }
}

.introduction__inner {
  padding-top: 3.75em;
}
.introduction__lead {
  margin-bottom: 0;
}

.merit {
  background-color: #F8F8F8;
}
.merit__title {
  margin-bottom: 2.7em;
}
@media (max-width: 768px) {
  .merit__title {
    font-size: 1.4em;
  }
}
.merit__item:nth-child(n+2) {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .merit__item:nth-child(n+2) {
    margin-top: 2.5em;
  }
}
.merit__item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
}
@media (max-width: 768px) {
  .merit__item-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.merit__item-contents {
  width: 56.25%;
}
@media (max-width: 768px) {
  .merit__item-contents {
    width: calc(100% - 67px - 5%);
  }
}
.merit__item-num {
  font-size: 3em;
  font-weight: 600;
  color: #3E9FCC;
  margin-bottom: 0.8333em;
}
@media (max-width: 768px) {
  .merit__item-num {
    font-size: 1.5em;
    line-height: 1;
    margin-bottom: 0.5em;
  }
}
.merit__item-title {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .merit__item-title {
    font-size: 1em;
  }
}
.merit__item-text {
  font-size: 1.25em;
}
@media (max-width: 768px) {
  .merit__item-text {
    font-size: 1em;
  }
}
.merit__item-text span {
  font-weight: 600;
}
.merit__item-image {
  width: 35.15625%;
}
@media (max-width: 768px) {
  .merit__item-image {
    width: 67px;
  }
}
.merit__item-image img {
  aspect-ratio: 1/1;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .merit__item-image img {
    border-radius: 10px;
  }
}

.reasons__title {
  margin-bottom: 0.25em;
}
.reasons__catch {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .reasons__catch {
    font-size: 1.25em;
    margin-bottom: 1em;
  }
}
.reasons__lead {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .reasons__lead {
    margin-bottom: 2em;
  }
}
.reasons__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625em;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .reasons__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3em;
  }
}
.reasons__link a {
  font-size: 0.875em;
  font-weight: 400;
  color: #3E9FCC;
  border: 1px solid #3E9FCC;
  padding: 0.1em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 3px;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .reasons__link a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.reasons__link a:hover {
  color: #fff;
  background-color: #3E9FCC;
}
.reasons__link a:hover::after {
  background: url(../img/icons/arrow_bottom_white.svg) no-repeat center center/contain;
}
.reasons__link a::after {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background: url(../img/icons/arrow_bottom_blue.svg) no-repeat center center/contain;
}
.reasons__reason:nth-child(n+2) {
  margin-top: 6.25em;
}
@media (max-width: 768px) {
  .reasons__reason:nth-child(n+2) {
    margin-top: 2.5em;
  }
}
.reasons__reason-title {
  width: 50%;
  font-size: 1.25em;
  font-weight: 600;
  color: #3E9FCC;
  margin-bottom: 4em;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .reasons__reason-title {
    width: 90%;
    font-size: 1em;
    margin-bottom: 2em;
  }
}
.reasons__reason-title::after {
  content: "";
  height: 1px;
  background-color: #3C3C3C;
  width: 100%;
}
.reasons__reason-box {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  padding: 3.5em 2.5em 4.6875em;
}
@media (max-width: 768px) {
  .reasons__reason-box {
    padding: 3em 1.5em;
  }
}
.reasons__reason-box-title {
  font-size: 2em;
  font-weight: 500;
  padding-bottom: 0.5em;
  text-align: center;
  position: relative;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .reasons__reason-box-title {
    font-size: 1.25em;
    margin-bottom: 2em;
  }
}
.reasons__reason-box-title::after {
  content: "";
  height: 6px;
  width: 50px;
  background-color: #3E9FCC;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .reasons__reason-box-title::after {
    height: 4px;
    width: 30px;
  }
}
.reasons__reason-item:nth-child(n+2) {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .reasons__reason-item:nth-child(n+2) {
    margin-top: 4em;
  }
}
.reasons__reason-item-title {
  font-size: 1.5em;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8333em;
  margin-bottom: 1.667em;
}
@media (max-width: 768px) {
  .reasons__reason-item-title {
    font-size: 1.125em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 0.5em;
    margin-bottom: 1em;
  }
}
.reasons__reason-item-title span {
  font-size: 0.8333em;
  display: inline-block;
  background-color: #3E9FCC;
  color: #fff;
  border-radius: 8px;
  white-space: nowrap;
  padding: 0.35em 1em;
}
@media (max-width: 768px) {
  .reasons__reason-item-title span {
    font-size: 0.75em;
  }
}
.reasons__reason-item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .reasons__reason-item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
}
.reasons__reason-item-image {
  width: 37.5%;
}
@media (max-width: 768px) {
  .reasons__reason-item-image {
    width: 100%;
  }
}
.reasons__reason-item-image img {
  border-radius: 30px;
}
.reasons__reason-item-contents {
  width: 55.8333%;
}
@media (max-width: 768px) {
  .reasons__reason-item-contents {
    width: 100%;
  }
}
.reasons__reason-item-contents-list {
  margin-bottom: 2.75em;
}
@media (max-width: 768px) {
  .reasons__reason-item-contents-list {
    margin-bottom: 1.5em;
  }
}
.reasons__reason-item-contents-item {
  font-size: 1.25em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
}
@media (max-width: 768px) {
  .reasons__reason-item-contents-item {
    font-size: 0.875em;
  }
}
.reasons__reason-item-contents-item:nth-child(n+2) {
  margin-top: 0.25em;
}
.reasons__reason-item-contents-item::before {
  content: "";
  width: 1em;
  height: 1em;
  margin-top: 0.45em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: url(../img/icons/check_blue.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .reasons__reason-item-btn a {
    font-size: 0.9375em;
  }
}

.cases__catch {
  font-size: 2.5em;
  line-height: 1.6;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .cases__catch {
    font-size: 1.5em;
  }
}
.cases__list {
  margin-bottom: 10em;
}
@media (max-width: 768px) {
  .cases__list {
    margin-bottom: 2.5em;
  }
}
.cases__item:nth-child(n+2) {
  margin-top: 7.5em;
}
@media (max-width: 768px) {
  .cases__item:nth-child(n+2) {
    margin-top: 4em;
  }
}
.cases__item-title {
  width: 50%;
  font-size: 1.25em;
  font-weight: 500;
  color: #3E9FCC;
  margin-bottom: 4em;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .cases__item-title {
    font-size: 1em;
    margin-bottom: 2em;
  }
}
.cases__item-title::after {
  content: "";
  height: 1px;
  background-color: #3C3C3C;
  width: 100%;
}
.cases__item-catch {
  font-size: 2em;
  color: #3E9FCC;
  font-weight: 500;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .cases__item-catch {
    font-size: 1.25em;
    margin-bottom: 1em;
  }
}
.cases__item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .cases__item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875em;
  }
}
.cases__item-image {
  width: 50%;
}
@media (max-width: 768px) {
  .cases__item-image {
    width: 100%;
  }
}
.cases__item-image img {
  border-radius: 30px;
}
.cases__item-contents {
  width: 42.1875%;
}
@media (max-width: 768px) {
  .cases__item-contents {
    width: 100%;
  }
}
.cases__item-contents-title {
  display: inline-block;
  min-width: 170px;
  font-size: 1.25em;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 0.75em 1em;
  line-height: 1;
  background-color: #3E9FCC;
  border-radius: 8px;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .cases__item-contents-title {
    font-size: 1em;
    min-width: 85px;
    margin-bottom: 1em;
  }
}
.cases__item-contents-text {
  font-size: 1.25em;
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  .cases__item-contents-text {
    font-size: 1em;
    margin-bottom: 2em;
  }
}
.cases__item-contents-list {
  margin-bottom: 3.75em;
}
@media (max-width: 768px) {
  .cases__item-contents-list {
    margin-bottom: 2em;
  }
}
.cases__item-contents-item {
  font-size: 1.25em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
}
@media (max-width: 768px) {
  .cases__item-contents-item {
    font-size: 1em;
  }
}
.cases__item-contents-item:nth-child(n+2) {
  margin-top: 0.25em;
}
.cases__item-contents-item::before {
  content: "";
  width: 1em;
  height: 1em;
  margin-top: 0.45em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: url(../img/icons/check_blue.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .cases__item-contents-item::before {
    margin-top: 0.35em;
  }
}
.cases__btn {
  max-width: 540px;
}

.cta {
  background-color: #0D2E3B;
}
.cta__inner {
  padding: 5em 0;
}
@media (max-width: 768px) {
  .cta__inner {
    padding: 3em 0;
  }
}
.cta__lead {
  color: #fff;
  max-width: 33em;
}

.lang-switch {
  position: relative;
  display: inline-block;
  margin: 0 16px;
}

.lang-switch__current {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.lang-switch__current::-webkit-details-marker {
  display: none;
}

.lang-switch__current::after {
  content: "▼";
  font-size: 10px;
  line-height: 1;
}

.lang-switch[open] .lang-switch__current::after {
  content: "▲";
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 8px 0;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.lang-switch__menu a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}

.lang-switch__menu a:hover {
  background: #f5f5f5;
}

.lang-switch {
  display: inline-block;
  margin: 0 16px;
}

.lang-switch__toggle {
  appearance: none;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #333;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.lang-switch__toggle:hover {
  opacity: 0.85;
}

.lang-overlay[hidden] {
  display: none;
}

.lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.lang-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.lang-overlay__panel {
  position: absolute;
  top: 80px;
  right: 24px;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.lang-overlay__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

.lang-overlay__title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.lang-overlay__links a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.lang-overlay__links a:hover {
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .lang-overlay__panel {
    top: 70px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}
