@charset "UTF-8";
/*=========================
font family

"Noto Sans JP", sans-serif
"Overpass", sans-serif
"Inter", sans-serif

==========================*/
/* 変数定義 */
/*--------------------------
font-size
---------------------------*/
/*行間計算*/
/*--------------------------
content-width
---------------------------*/
body, * {
  font-family: "Noto Sans JP", sans-serif;
}

body.is-fixed {
  overflow: hidden;
}

.cv-button__read {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 400;
  color: #1F4679;
}
@media screen and (max-width:748px) {
  .cv-button__read {
    font-size: 3.2svw;
  }
}

.cv-button {
  display: block;
  width: 100%;
  max-width: 342px;
  padding: 24.5px 44.5px;
  margin: 12px auto 0;
  background-color: #F2931F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width:748px) {
  .cv-button {
    max-width: 80svw;
    padding: 4svw 9svw;
    margin: 3svw auto 0;
  }
}

.cv-button:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

.cv-button span {
  display: block;
  width: 100%;
  text-align: right;
  font-weight: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #FFFFFF;
  background-image: url(../img/mail-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}
@media screen and (max-width:748px) {
  .cv-button span {
    font-size: 4.5svw;
  }
}

/*============================
title
============================*/
.section-title .en {
  text-align: center;
  font-family: "Overpass", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.32;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1F4679;
}
@media screen and (max-width:748px) {
  .section-title .en {
    font-size: 5svw;
  }
}

.section-title .ja {
  margin-top: 4px;
  text-align: center;
  color: #1F4679;
  line-height: 1.48;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .section-title .ja {
    font-size: 6svw;
    margin-top: 1svw;
    line-height: 1.1;
  }
}

.section-title .ja strong {
  color: #F2931F;
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .section-title .ja strong {
    font-size: 8svw;
  }
}

.section-title .ja .big {
  font-size: 64px;
  font-size: 4rem;
  font-weight: bold;
}

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header.is-scrolled {
  background-color: #1F4679;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__wrap {
  padding-left: 40px;
  padding-right: 72px;
  max-width: 1440px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width:1439px) {
  .header__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

header.is-scrolled .header__wrap {
  padding-left: 20px;
  padding-right: 20px;
}

header .header__logo {
  padding: 19px 0;
}
@media screen and (max-width:1439px) {
  header .header__logo {
    padding: 12px 0;
    position: relative;
    z-index: 11;
  }
}

header.is-scrolled .header__logo {
  padding: 12px 0;
}

header .header__logo img {
  display: block;
  width: auto;
  height: 42px;
}
@media screen and (max-width:1079px) {
  header .header__logo img {
    height: 34px;
  }
}

.header__hamburger {
  display: none;
  position: fixed;
  width: 58px;
  height: auto;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  z-index: 11;
  cursor: pointer;
  background-color: #000000;
}
@media screen and (max-width:1079px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.header__hamburger span:nth-child(1) {
  top: 23px;
  left: 50%;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  left: 50%;
}

.header__hamburger span:nth-child(3) {
  bottom: 21px;
  left: 50%;
}

.header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  bottom: 46%;
  left: 50%;
}

header .header__nav ul.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width:1079px) {
  header .header__nav ul.header__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #1F4679;
    padding: 102px 0 80px;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 9;
    display: block;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

header .header__nav ul.header__list::-webkit-scrollbar {
  display: none;
}

header .header__nav ul.header__list.is-active {
  right: 0;
}

header .header__nav ul.header__list .cv-button__wrap {
  margin-top: 32px;
}

header .header__nav ul.header__list .cv-button__read {
  color: #fff;
}

header .header__nav ul.header__list li {
  padding: 32px 20px;
}
@media screen and (max-width:1439px) {
  header .header__nav ul.header__list li {
    padding: 24px 10px;
  }
}
@media screen and (max-width:1079px) {
  header .header__nav ul.header__list li {
    padding: 18px;
  }
}

header.is-scrolled .header__nav ul.header__list li {
  padding: 24px 10px;
}
@media screen and (max-width:1079px) {
  header.is-scrolled .header__nav ul.header__list li {
    padding: 18px;
    text-align: center;
  }
}
@media screen and (max-width:748px) {
  header.is-scrolled .header__nav ul.header__list li {
    padding: 4svw;
  }
}

header .header__nav ul.header__list li a {
  color: #3E4651;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width:1439px) {
  header .header__nav ul.header__list li a {
    font-size: 14px;
  }
}
@media screen and (max-width:1079px) {
  header .header__nav ul.header__list li a {
    font-size: 16px;
    display: block;
    color: #fff;
    margin: 0 auto;
    text-align: center;
  }
}

header.is-scrolled .header__nav ul.header__list li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}
@media screen and (max-width:1079px) {
  header.is-scrolled .header__nav ul.header__list li a {
    font-size: 3.2svw;
  }
}

header .header__nav ul.header__list li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

header .header__list .cv-button__wrap {
  display: none;
}
@media screen and (max-width:1079px) {
  header .header__list .cv-button__wrap {
    display: block;
  }
}

/*============================
#mv
============================*/
#mv {
  background-image: url(../img/mv-bg.webp);
  padding-top: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width:748px) {
  #mv {
    background-image: url(../img/mv-bg_sp.webp);
    padding-top: 68px;
  }
}
@media screen and (max-width:748px) {
  #mv {
    padding-top: 64px;
  }
}

#mv .mv__wrap {
  padding: 0 24px;
  overflow: hidden;
}
@media screen and (max-width:748px) {
  #mv .mv__wrap {
    padding: 0 4svw;
  }
}

.mv__contents {
  background-color: #fff;
  max-width: 889px;
  width: 100%;
  border-radius: 20px;
  padding: 36px 60px 34px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:748px) {
  .mv__contents {
    border-radius: 4svw;
    padding: 4svw 4svw;
  }
}

.mv__contents::before {
  top: 105px;
  left: -176px;
  width: 297px;
  height: 486px;
  background-image: url(../img/mv-person01.webp);
}
@media screen and (max-width:1079px) {
  .mv__contents::before {
    top: 236px;
    left: -50px;
    width: 241px;
    height: 351px;
  }
}
@media screen and (max-width:748px) {
  .mv__contents::before {
    top: 74svw;
    left: -10svw;
    width: 28svw;
    height: 46svw;
  }
}

.mv__contents::after {
  top: 116px;
  right: -180px;
  width: 331px;
  height: 481px;
  background-image: url(../img/mv-person02.webp);
}
@media screen and (max-width:1079px) {
  .mv__contents::after {
    top: 236px;
    right: -80px;
    width: 241px;
    height: 351px;
  }
}
@media screen and (max-width:748px) {
  .mv__contents::after {
    top: 76svw;
    right: -10svw;
    width: 29svw;
    height: 42svw;
  }
}

.mv__contents::before,
.mv__contents::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

.mv__contents .mv-content__read {
  display: block;
  padding: 2px 12px;
  background: #D0D8E3;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #1F4679;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__read {
    max-width: 80%;
    font-size: 3svw;
    padding: 1svw 2svw;
  }
}

.mv__contents .mv-content__catch {
  margin-top: 8px;
  text-align: center;
  font-weight: bold;
  color: #1F4679;
  letter-spacing: 0.002em;
  line-height: 1.4;
  font-size: 44px;
  font-size: 2.75rem;
}
@media screen and (max-width:1079px) {
  .mv__contents .mv-content__catch {
    font-size: 2rem;
  }
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__catch {
    font-size: 6svw;
    margin-top: 3svw;
  }
}

.mv__contents .mv-content__sub {
  margin-top: 8px;
  text-align: center;
  font-weight: bold;
  color: #1F4679;
  letter-spacing: 0.002em;
  line-height: 1.6;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__sub {
    font-size: 4.4svw;
    margin-top: 1svw;
  }
}

.mv__contents .mv-content__emblems {
  margin: 12px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10.52px;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__emblems {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2svw 4svw;
    margin: 4svw auto 0;
  }
}

.mv__contents .mv-content__emblems .mv-content__emblem {
  padding: 0 30px;
  height: 71.88px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(../img/mv-obj-left.webp), url(../img/mv-obj-right.webp);
  background-repeat: no-repeat;
  background-size: 30.71px 71.88px;
  background-position: top left, top right;
  position: relative;
  padding-top: 8px;
  text-align: center;
  font-size: 13.15px;
  font-size: 0.821875rem;
  line-height: 1.3;
  font-weight: bold;
  color: #1F4679;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__emblems .mv-content__emblem {
    font-size: 3svw;
    padding: 2svw 7.6svw 0;
    height: 16svw;
    background-size: 8svw 16svw;
  }
}

.mv__contents .mv-content__emblems .mv-content__emblem:nth-child(2) {
  line-height: 1.5;
}

.mv__contents .mv-content__emblems .mv-content__emblem::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20.81px;
  height: 13.87px;
  background-image: url(../img/mv-obj-top.webp);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.mv__contents .mv-content__emblems .mv-content__emblem strong {
  color: #D0AB50;
  font-size: 15.79px;
  font-size: 0.986875rem;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__emblems .mv-content__emblem strong {
    font-size: 4svw;
  }
}

.mv__contents .mv-content__emblems .mv-content__emblem strong strong {
  font-family: "Inter", sans-serif;
  font-size: 24.55px;
  font-size: 1.534375rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__emblems .mv-content__emblem strong strong {
    font-size: 5svw;
  }
}

.mv__contents .mv-content__emblems .mv-content__emblem small {
  font-size: 10px;
  text-align: center;
  font-weight: 400;
  margin-top: -0.4em;
  display: block;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__emblems .mv-content__emblem small {
    font-size: 2.8svw;
    margin-top: -0.2em;
  }
}

.mv__contents .mv-content__bottom {
  margin: 24px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width:748px) {
  .mv__contents .mv-content__bottom {
    display: none;
  }
}

.mv__contents .mv-content__bottom .cv-button__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mv-lists__wrap {
  padding: 0 24px;
  margin: 10px auto 0;
}
@media screen and (max-width:748px) {
  .mv-lists__wrap {
    padding: 0;
    margin: 2svw auto 0;
  }
}

.mv__lists {
  max-width: 1040px;
  width: 100%;
  position: relative;
  z-index: 2;
  border: #1F4679 1px solid;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 auto;
  padding: 32px 0;
}
@media screen and (max-width:748px) {
  .mv__lists {
    padding: 4svw 0;
    border-radius: 3svw;
  }
}

.mv__lists .mv__list,
.mv__lists .mv__caution {
  max-width: 918px;
  padding: 0 12px;
  margin: 0 auto;
}
@media screen and (max-width:748px) {
  .mv__lists .mv__list {
    padding: 0 3svw;
  }
}

.mv__lists .mv__list li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 400;
  color: #3E4651;
  padding-bottom: 8px;
  border-bottom: #1F4679 1px dashed;
}
@media screen and (max-width:748px) {
  .mv__lists .mv__list li {
    padding-left: 5.4svw;
    font-size: 4.1svw;
    line-height: 1.5;
    padding-bottom: 2.6svw;
  }
}

.mv__lists .mv__list li:nth-child(n+2) {
  margin-top: 8px;
}
.mv__lists .mv__list li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/check-icon_gold.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width:748px) {
  .mv__lists .mv__list li::before {
    top: 1svw;
    width: 4svw;
  }
}

.mv__lists .mv__list li strong {
  color: #1F4679;
  font-weight: bold;
}

.mv__lists .mv__list li small {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.002em;
}
.mv__lists .mv__caution {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
  color: #3E4651;
  margin-top: 10px;
}
@media screen and (max-width:748px) {
  .mv__lists .mv__caution {
    font-size: 3svw;
    margin-top: 2svw;
    padding: 0 2svw;
  }
}

.cta {
  padding: 96px 0;
  background-image: url(../img/cta-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:1079px) {
  .cta {
    padding: 48px 0;
  }
}
@media screen and (max-width:748px) {
  .cta {
    padding: 12svw 0;
  }
}

.cta.is-top {
  padding: 166px 0 96px;
  margin-top: -70px;
}
@media screen and (max-width:1079px) {
  .cta.is-top {
    padding: 120px 0 48px;
  }
}
@media screen and (max-width:748px) {
  .cta.is-top {
    padding: 34svw 0 12svw;
    margin-top: -24svw;
  }
}

.cta__wrap {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width:748px) {
  .cta__wrap {
    padding: 0 4svw;
  }
}

.cta__read {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.48;
  color: #fff;
}
@media screen and (max-width:1079px) {
  .cta__read {
    font-size: 1.5rem;
  }
}
@media screen and (max-width:748px) {
  .cta__read {
    font-size: 5svw;
  }
}

.cta__box {
  margin: 32px auto 0;
  background-color: #fff;
  border-radius: 10px;
  border: #96A8C0 5px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 24px;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:1079px) {
  .cta__box {
    gap: 8px;
  }
}
@media screen and (max-width:748px) {
  .cta__box {
    margin: 7svw auto 0;
    border-radius: 3svw;
    padding: 6svw 2svw;
    display: block;
  }
}

.cta__box .cta-text {
  padding-top: 1.2em;
  color: #1F4679;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width:1079px) {
  .cta__box .cta-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width:748px) {
  .cta__box .cta-text {
    padding-top: 0;
    font-size: 4svw;
    text-align: center;
  }
}

@media screen and (max-width:748px) {
  .cta__box .cta-btn {
    margin-top: 6svw;
  }
}

/*============================
#case
============================*/
#case {
  background-color: #F5F5F5;
  padding: 96px 20px;
}
@media screen and (max-width:1079px) {
  #case {
    padding: 96px 0px;
  }
}
@media screen and (max-width:748px) {
  #case {
    padding: 16svw 0 0;
  }
}

.case__title {
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  color: #1F4679;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width:1079px) {
  .case__title {
    font-size: 2rem;
  }
}
@media screen and (max-width:748px) {
  .case__title {
    font-size: 5svw;
    line-height: 1.6;
  }
}

.case__title span {
  display: inline;
  padding: 0 4px 2px 4px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(0%, #F2931F));
  background: linear-gradient(transparent 94%, #F2931F 0%);
}
@media screen and (max-width:748px) {
  .case__title span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(0%, #F2931F));
    background: linear-gradient(transparent 90%, #F2931F 0%);
  }
}

.case__title strong {
  font-size: 52px;
  font-size: 3.25rem;
  color: #F2931F;
  letter-spacing: 0.012em;
  font-weight: bold;
}
@media screen and (max-width:1079px) {
  .case__title strong {
    font-size: 2.5rem;
  }
}
@media screen and (max-width:748px) {
  .case__title strong {
    font-size: 6svw;
  }
}

.case__wrap .case__con:nth-child(2) {
  background-image: url(../img/case-img02.webp);
  background-position: top left;
}
@media screen and (max-width:748px) {
  .case__wrap .case__con:nth-child(2) {
    background-image: url(../img/case-img02_sp.webp);
    background-position: bottom right;
  }
}

.case__wrap .case__con {
  max-width: 1200px;
  width: 100%;
  margin: 48px auto 0;
  border-radius: 200px;
  background-color: #fff;
  padding: 44px 100px 44px 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/case-img01.webp);
  background-position: top right;
}
@media screen and (max-width:1079px) {
  .case__wrap .case__con {
    padding: 14px 20px 14px 40px;
    border-radius: 0;
  }
}
@media screen and (max-width:748px) {
  .case__wrap .case__con {
    padding: 4svw 4svw 59svw;
    margin: 48px auto 0;
    border-radius: 0;
    background-image: url(../img/case-img01_sp.webp);
    background-position: bottom right;
  }
}

.case__wrap .case__con .case__lists {
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width:1079px) {
  .case__wrap .case__con .case__lists {
    max-width: 490px;
  }
}
@media screen and (max-width:748px) {
  .case__wrap .case__con .case__lists {
    max-width: 100%;
  }
}

.case__wrap .case__con:nth-child(2) .case__lists {
  margin-left: auto;
}

.case__wrap .case__con .case__lists li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  color: #3E4651;
  font-weight: bold;
}
@media screen and (max-width:1079px) {
  .case__wrap .case__con .case__lists li {
    font-size: 14px;
    padding-left: 20px;
  }
}
@media screen and (max-width:748px) {
  .case__wrap .case__con .case__lists li {
    padding-left: 5.4svw;
    font-size: 3.9svw;
    line-height: 1.5;
    padding-bottom: 2.6svw;
  }
}

.case__wrap .case__con .case__lists li::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/check-icon_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width:1079px) {
  .case__wrap .case__con .case__lists li::before {
    top: 4px;
    width: 15px;
  }
}
@media screen and (max-width:748px) {
  .case__wrap .case__con .case__lists li::before {
    top: 1svw;
    width: 4svw;
  }
}

.case__wrap .case__con .case__lists li:nth-child(n+2) {
  margin-top: 16px;
}
.case__wrap .case__con .case__lists li strong {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FAE5CB));
  background: linear-gradient(transparent 0%, #FAE5CB 0%);
  font-weight: bold;
}

/*============================
#expertise
============================*/
#expertise {
  padding: 96px 20px;
  background-color: #1F4679;
}
@media screen and (max-width:748px) {
  #expertise {
    padding: 12svw 4svw;
  }
}

#expertise .expertise__wrap {
  max-width: 1080px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  padding: 40px 56px;
}
@media screen and (max-width:748px) {
  #expertise .expertise__wrap {
    padding: 8svw 4svw;
  }
}

#expertise .expertise__wrap .expertise__title {
  padding: 8px 24px;
  background-color: #F3EDDB;
  display: block;
  margin: 0 auto;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.46;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1F4679;
}
@media screen and (max-width:748px) {
  #expertise .expertise__wrap .expertise__title {
    padding: 2svw 3svw;
    font-size: 6svw;
  }
}

#expertise .expertise__wrap .expertise__content {
  margin-top: 16px;
}
#expertise .expertise__wrap .expertise__content p {
  color: #3E4651;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  margin-top: 8px;
}
@media screen and (max-width:748px) {
  #expertise .expertise__wrap .expertise__content p {
    font-size: 4svw;
  }
}

#expertise .expertise__wrap .expertise__content p span {
  margin-top: 8px;
  text-decoration: underline;
  color: #1F4679;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width:748px) {
  #expertise .expertise__wrap .expertise__content p span {
    font-size: 5svw;
    line-height: 1.5;
  }
}

#expertise .expertise__wrap .expertise__content p strong {
  font-weight: bold;
}
/*============================
#reason
============================*/
#reason {
  overflow: hidden;
  padding: 0 20px;
}
@media screen and (max-width:748px) {
  #reason {
    padding: 0 4svw;
  }
}

#reason .reason__container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.reason__title {
  padding: 40px 0;
  background-color: #F3EDDB;
}
@media screen and (max-width:748px) {
  .reason__title {
    margin-top: 10svw;
    padding: 8svw 0;
  }
}

.reason__title .en,
.reason-recommend .en {
  color: #1F4679;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1.32;
  text-align: center;
  font-family: "Overpass", sans-serif;
}
@media screen and (max-width:748px) {
  .reason__title .en,
.reason-recommend .en {
    font-size: 4svw;
  }
}

.reason__title h3.ja,
.reason-recommend .ja {
  margin-top: 6px;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.46;
  font-weight: bold;
  color: #3E4651;
  text-align: center;
}
@media screen and (max-width:748px) {
  .reason__title h3.ja,
.reason-recommend .ja {
    margin-top: 1svw;
    font-size: 5.4svw;
  }
}

.reason__title h3.ja span,
.reason-recommend .ja span {
  color: #1F4679;
}

.reason__title .reason__belt {
  font-size: erm(24);
  line-height: 2;
  color: #1F4679;
  padding: 16px 0;
  padding: 1rem 0;
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #D0D8E3;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .reason__title .reason__belt {
    font-size: 5svw;
    padding: 2svw 0;
    margin-top: 4svw;
    line-height: 1.4;
    margin-left: 0;
    margin-right: 0;
  }
}

.reason__flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 48px;
}
@media screen and (max-width:748px) {
  .reason__flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8svw;
    margin-top: 8svw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.reason__flex-box.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width:748px) {
  .reason__flex-box.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.reason__flex-box .reason-flex__text {
  width: calc(100% - 518px);
}
@media screen and (max-width:748px) {
  .reason__flex-box .reason-flex__text {
    width: 100%;
  }
}

.reason-flex__title {
  color: #1F4679;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.51;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .reason-flex__title {
    font-size: 4.6svw;
    text-align: center;
  }
}

.reason-flex__detail {
  margin-top: 24px;
}
@media screen and (max-width:748px) {
  .reason-flex__detail {
    margin-top: 5svw;
  }
}

.reason-flex__detail,
.reason-inner-box__body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #3E4651;
}
@media screen and (max-width:748px) {
  .reason-flex__detail,
.reason-inner-box__body {
    font-size: 3.9svw;
  }
}

.reason-flex__detail p,
.reason-inner-box__body p {
  margin-top: 10px;
}
@media screen and (max-width:748px) {
  .reason-flex__detail p,
.reason-inner-box__body p {
    margin-top: 1svw;
  }
}

.reason-flex__detail p:first-of-type,
.reason-inner-box__body p:first-of-type {
  margin-top: 0;
}

.reason-flex__detail p span,
.reason-inner-box__body p span {
  color: #F26353;
  font-weight: bold;
}

.reason-flex__detail p strong {
  font-size: 140%;
}

.reason-flex__img {
  width: 470px;
}
@media screen and (max-width:748px) {
  .reason-flex__img {
    width: 100svw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.reason-flex__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 470/390;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:748px) {
  .reason-flex__img img {
    aspect-ratio: 375/246.54;
  }
}

/*============================
#reason01
============================*/
.reason01 {
  padding-top: 96px;
  padding-bottom: 64px;
}
@media screen and (max-width:748px) {
  .reason01 {
    padding-top: 24svw;
    padding-bottom: 8svw;
  }
}

.reason02,
.reason03,
.reason04,
.reason05 {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width:748px) {
  .reason02,
.reason03,
.reason04,
.reason05 {
    padding-top: 8svw;
    padding-bottom: 8svw;
  }
}

.reason-blue__wrap {
  background-color: #EEF1F6;
  margin: 0 -20px;
  padding: 0 20px;
}
@media screen and (max-width:748px) {
  .reason-blue__wrap {
    margin: 0;
    padding: 0 4svw;
    margin: 0 -4svw;
  }
}

.reason01 .reason__title {
  margin-top: 48px;
}
@media screen and (max-width:748px) {
  .reason01 .reason__title {
    margin-top: 8svw;
    padding: 8svw 0;
  }
}

.reason__ba {
  margin-top: 96px;
}
@media screen and (max-width:748px) {
  .reason__ba {
    margin-top: 16svw;
  }
}

.reason-before {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #ffffff), color-stop(30%, #1F4679), to(#1F4679));
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30%, #1F4679 30%, #1F4679 100%);
  color: #fff;
  padding: 0 60px;
  margin-left: -60px;
  margin-right: -60px;
  padding-bottom: 12px;
}
@media screen and (max-width:748px) {
  .reason-before {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(10%, #ffffff), color-stop(10%, #1F4679), to(#1F4679));
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 10%, #1F4679 10%, #1F4679 100%);
  }
}

.reason-before,
.reason-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width:748px) {
  .reason-before,
.reason-after {
    gap: 10svw;
    font-size: 5svw;
    padding: 0 0 4svw;
    margin-left: -4svw;
    margin-right: -4svw;
  }
}

.reason-before::after {
  position: absolute;
  content: "";
  bottom: 0.4px;
  display: block;
  width: 100%;
  height: 80px;
  background: #1F4679;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width:748px) {
  .reason-before::after {
    bottom: 0.4svw;
    height: 14svw;
  }
}

.reason-before .reason-before__con {
  max-width: 338px;
  width: 100%;
  height: auto;
}
@media screen and (max-width:748px) {
  .reason-before .reason-before__con {
    max-width: 100%;
  }
}

@media screen and (max-width:748px) {
  .reason-ba__img {
    width: 84%;
    height: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width:748px) {
  .reason-ba__img img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.reason-before .reason-before__con .reason-before__text,
.reason-after .reason-before__con .reason-before__text {
  margin-top: 16px;
}
.reason-before .reason-before__con .reason-before__text span,
.reason-after .reason-before__con .reason-before__text span,
.reason-after .reason-before__con .reason-before__text strong {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; /* 線の太さ */
  background-position: 0 100%; /* 文字の下 */
  background-repeat: no-repeat;
  font-weight: 500;
}
.reason-after {
  margin-top: 124px;
}
@media screen and (max-width:748px) {
  .reason-after {
    margin-top: 24svw;
  }
}

.reason-after .reason-before__con .reason-before__text {
  color: #3E4651;
}

.reason-after .reason-before__con .reason-before__text span {
  color: #1F4679;
}

.reason-after .reason-before__con .reason-before__text strong {
  color: #1F4679;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width:748px) {
  .reason-after .reason-before__con .reason-before__text strong {
    font-size: 6svw;
  }
}

.reason01__pointes {
  margin-top: 96px;
}
@media screen and (max-width:748px) {
  .reason01__pointes {
    margin-top: 12svw;
  }
}

.reason01-point {
  padding: 32px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background-color: #F2F4F8;
}
@media screen and (max-width:748px) {
  .reason01-point {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 4svw 4svw;
    gap: 6svw;
  }
}

.reason01-point:nth-child(n+2) {
  margin-top: 32px;
}
.reason01-point:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width:748px) {
  .reason01-point:nth-child(even) {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.reason01-point .reason01__img {
  width: 404px;
  padding-top: 24px;
}
@media screen and (max-width:748px) {
  .reason01-point .reason01__img {
    width: 100%;
    padding-top: 0;
  }
}

.reason01-point .reason01__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 404/254;
}
@media screen and (max-width:748px) {
  .reason01-point .reason01__img img {
    aspect-ratio: 295/202;
  }
}

.reason01-point .reason01__con {
  width: calc(100% - 444px);
}
@media screen and (max-width:748px) {
  .reason01-point .reason01__con {
    width: 100%;
  }
}

.reason01-point:nth-child(1) .reason01__head {
  background-image: url(../img/reason01-icon01.svg);
}

.reason01-point:nth-child(2) .reason01__head {
  background-image: url(../img/reason01-icon02.svg);
}

.reason01-point:nth-child(3) .reason01__head {
  background-image: url(../img/reason01-icon03.svg);
}

.reason01-point .reason01__con .reason01__head {
  padding-left: 80px;
  background-repeat: no-repeat;
  background-size: 64px 64px;
  background-position: center left;
}
@media screen and (max-width:748px) {
  .reason01-point .reason01__con .reason01__head {
    padding-left: 0;
    padding-top: 15svw;
    background-size: 14svw 14svw;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
  }
}

.reason01__con .reason01__head .read {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  color: #3E4651;
}
@media screen and (max-width:748px) {
  .reason01__con .reason01__head .read {
    font-size: 4svw;
  }
}

.reason01__con .reason01__head .title {
  margin-top: 8px;
  color: #1F4679;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.44;
  font-weight: bold;
  display: block;
}
@media screen and (max-width:748px) {
  .reason01__con .reason01__head .title {
    font-size: 6svw;
    margin-top: 1svw;
  }
}

.reason01__list {
  margin-top: 32px;
}
@media screen and (max-width:748px) {
  .reason01__list {
    margin-top: 4svw;
  }
}

.reason01__list li {
  color: #3E4651;
  background-image: url(../img/check-icon_gold.svg);
  background-repeat: no-repeat;
  background-position: top 4px left 0;
  background-size: 18px 18px;
  padding-left: 28px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .reason01__list li {
    padding-left: 5.4svw;
    font-size: 3.6svw;
    line-height: 1.5;
    padding-bottom: 2.6svw;
    background-position: top 1svw left 0;
    background-size: 4svw 4svw;
  }
}

.reason01__list li:nth-child(n+2) {
  margin-top: 12px;
}
@media screen and (max-width:748px) {
  .reason01__list li:nth-child(n+2) {
    margin-top: 0;
  }
}

.reason01__caution {
  color: #3E4651;
  margin-top: 16px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width:748px) {
  .reason01__caution {
    margin-top: 1svw;
    font-size: 3.4svw;
  }
}

.reason02-image__box {
  max-width: 800px;
  width: 100%;
  margin: 84px auto 0;
  border: 1px solid #1F4679;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width:748px) {
  .reason02-image__box {
    margin: 12svw auto 0;
    border-radius: 2svw;
  }
}

.reason02-image__box .reason02-image__head {
  background-color: #1F4679;
  color: #fff;
  font-weight: bold;
  padding: 16px 0;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width:748px) {
  .reason02-image__box .reason02-image__head {
    font-size: 4.8svw;
    padding: 3svw 0;
  }
}

.reason02-image__box .reason02-image__img {
  padding: 32px;
  margin: 0 auto;
}
@media screen and (max-width:748px) {
  .reason02-image__box .reason02-image__img {
    padding: 4svw;
  }
}

.reason02-image__box .reason02-image__img img {
  display: block;
  max-width: 624px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.reason04 .reason__flex-box .reason-flex__img img,
.reason05 .reason__flex-box .reason-flex__img img {
  aspect-ratio: 470/320;
}

/*============================
#reason03
============================*/
.reason03__img {
  margin-top: 48px;
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width:748px) {
  .reason03__img {
    width: 100svw;
    margin: 8svw -4svw 0;
  }
}

.reason03__wrap .reason-flex__title {
  text-align: center;
  margin-top: 1.5em;
}

.reason03__wrap .reason-flex__detail {
  text-align: center;
}
@media screen and (max-width:748px) {
  .reason03__wrap .reason-flex__detail {
    text-align: left;
  }
}

/*============================
#reason03,5
============================*/
.reason__inner-box {
  margin-top: 48px;
  border: #1F4679 1px solid;
  background-color: #fff;
}
@media screen and (max-width:748px) {
  .reason__inner-box {
    margin: 6svw 0;
  }
}

.reason-inner-box__title {
  padding: 24px;
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: #1F4679 1px solid;
  text-align: center;
  line-height: 2;
  font-weight: bold;
  color: #1F4679;
  background-color: #F3EDDB;
}
@media screen and (max-width:748px) {
  .reason-inner-box__title {
    padding: 2svw;
    font-size: 4svw;
    text-align: left;
    line-height: 1.6;
  }
}

.reason-inner-box__body {
  padding: 24px 32px;
}
@media screen and (max-width:748px) {
  .reason-inner-box__body {
    padding: 4svw 4svw;
  }
}

.reason-inner-box__body .reason-inner-in {
  padding: 24px;
  background-color: #FAF7EF;
  margin-top: 16px;
}
@media screen and (max-width:748px) {
  .reason-inner-box__body .reason-inner-in {
    padding: 4svw 4svw;
  }
}

.reason-inner-box__body .reason-inner-in p {
  color: #1F4679;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width:748px) {
  .reason-inner-box__body .reason-inner-in p {
    font-size: 3svw;
    line-height: 1.6;
  }
}

.reason-inner-box__body .reason-inner-in p:nth-of-type(n+2) {
  margin-top: 0.5em;
}
@media screen and (max-width:748px) {
  .reason-inner-box__body .reason-inner-in p:nth-of-type(n+2) {
    margin-top: 2em;
  }
}

.reason-inner-box__body ul {
  padding-left: 40px;
  list-style-type: disc;
}
@media screen and (max-width:748px) {
  .reason-inner-box__body ul {
    padding-left: 4.6svw;
  }
}

/*============================
#reason05
============================*/
.reason-recommend {
  background-color: #fff;
  margin: 64px -60px 0;
  padding: 64px 60px;
}
@media screen and (max-width:748px) {
  .reason-recommend {
    margin: 10svw 0 0;
    padding: 10svw 4svw;
  }
}

.reason-recommend__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 33px;
  margin-top: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:748px) {
  .reason-recommend__wrap {
    gap: 6svw;
    margin-top: 6svw;
  }
}

.reason-recommend__con {
  background-color: #1F4679;
  width: 338px;
  height: 319px;
  padding: 24px 32px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width:748px) {
  .reason-recommend__con {
    width: 100%;
    height: auto;
    padding: 6svw;
  }
}

.reason-recommend__con img {
  display: block;
  margin: 0 auto;
  max-width: 64px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:748px) {
  .reason-recommend__con img {
    max-width: 14svw;
  }
}

.reason-recommend__con .reason-recommend__title {
  margin-top: 16px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.002em;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .reason-recommend__con .reason-recommend__title {
    margin-top: 4svw;
    font-size: 4svw;
    line-height: 1.5;
  }
}

.reason-recommend__con:nth-child(1) .reason-recommend__title,
.reason-recommend__con:nth-child(2) .reason-recommend__title {
  padding: 0.8em 0;
}
@media screen and (max-width:748px) {
  .reason-recommend__con:nth-child(1) .reason-recommend__title,
.reason-recommend__con:nth-child(2) .reason-recommend__title {
    padding: 0;
  }
}

.reason-recommend__con .reason-recommend__text {
  border-top: 1px solid #fff;
  padding-top: 16px;
  margin-top: 16px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width:748px) {
  .reason-recommend__con .reason-recommend__text {
    padding-top: 4svw;
    margin-top: 4svw;
    font-size: 3.7svw;
  }
}

.reason-recommend__con .reason-recommend__text span {
  text-decoration: underline;
}

/*============================
#price
============================*/
#price {
  padding: 96px 20px;
}
@media screen and (max-width:748px) {
  #price {
    padding: 22svw 4svw 12svw;
  }
}

#price .price__wrap {
  margin: 48px auto 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width:748px) {
  #price .price__wrap {
    margin: 12svw auto 0;
    gap: 5svw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}

#price .price__wrap .price__box {
  border: 1px solid #1F4679;
  border-radius: 20px;
  overflow: hidden;
  max-width: 430px;
  width: 100%;
}
@media screen and (max-width:748px) {
  #price .price__wrap .price__box {
    max-width: 82svw;
  }
}

#price .price__wrap .price__box .price-box__head {
  padding: 22px 0;
  font-weight: bold;
  color: #fff;
  background-color: #1F4679;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  #price .price__wrap .price__box .price-box__head {
    padding: 4svw 0;
    font-size: 5svw;
  }
}

#price .price__wrap .price__box:nth-child(1) .price-box__body {
  background-color: #FBF1E6;
}

#price .price__wrap .price__box:nth-child(2) .price-box__body {
  background-color: #EEF1F6;
}

#price .price__wrap .price__box .price-box__body {
  aspect-ratio: 430/157;
  position: relative;
}
@media screen and (max-width:748px) {
  #price .price__wrap .price__box .price-box__body {
    aspect-ratio: 315/96;
  }
}

#price .price__wrap .price__box .price-box__body p {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  white-space: nowrap;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.002em;
  line-height: 1.3;
  font-weight: bold;
  color: #1F4679;
}
@media screen and (max-width:748px) {
  #price .price__wrap .price__box .price-box__body p {
    font-size: 6svw;
  }
}

#price .price__wrap .price__box .price-box__body p strong {
  font-weight: bold;
  font-size: 48px;
  font-size: 3rem;
  letter-spacing: 0.02em;
  padding: 0 2px;
}
@media screen and (max-width:748px) {
  #price .price__wrap .price__box .price-box__body p strong {
    font-size: 8svw;
  }
}

#price .price__wrap .price__box .price-box__body p small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width:748px) {
  #price .price__wrap .price__box .price-box__body p small {
    font-size: 0.875rem;
  }
}

#price .price-texts {
  max-width: 1080px;
  width: 100%;
  margin: 48px auto 0;
  padding: 32px 40px;
  background-color: #EEF1F6;
}
@media screen and (max-width:748px) {
  #price .price-texts {
    width: 80svw;
    margin: 8svw auto 0;
    padding: 5svw 4svw;
  }
}

#price .price-texts p {
  color: #3E4651;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width:748px) {
  #price .price-texts p {
    font-size: 3.7svw;
  }
}

#price .price-text__caution {
  max-width: 1080px;
  width: 100%;
  margin: 8px auto 0;
  color: #3E4651;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width:748px) {
  #price .price-text__caution {
    max-width: 80svw;
    font-size: 2.6svw;
  }
}

/*============================
#plan
============================*/
#plan {
  padding: 0 0 96px;
  margin: 0 auto;
}
@media screen and (max-width:748px) {
  #plan {
    padding: 0;
  }
}

/*============================
#plan top
============================*/
.plan__wrap-top {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 60px;
  background-color: #F9F9F9;
}
@media screen and (max-width:748px) {
  .plan__wrap-top {
    padding: 24svw 4svw 8svw;
  }
}

.plan__cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width:748px) {
  .plan__cards {
    margin-top: 8svw;
    gap: 4svw;
  }
}

.plan__card {
  width: 252px;
  border: solid #1F4679 1px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}
.plan-read {
  padding: 10px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.125rem;
  color: #1F4679;
}
.plan-name {
  background-color: #D0D8E3;
  padding: 10px 0;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.002em;
  line-height: 1.6;
  color: #1F4679;
  font-weight: bold;
}

.plan__card:nth-child(1) {
  background-color: #EDF1F5;
}

.plan__card:nth-child(2) {
  background-color: #F7E7D5;
}

.plan__card:nth-child(n+3) {
  background-color: #fff;
}

.plan__card:nth-child(1) .plan-name,
.plan__card:nth-child(2) .plan-name {
  color: #fff;
}

.plan__card:nth-child(1) .plan-name {
  background-color: #1F4679;
}

.plan__card:nth-child(2) .plan-name {
  background-color: #F2931F;
}

.plan-detail {
  padding: 10px 24px 32px;
  color: #1F4679;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.plan-row:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: dashed 1px #1F4679;
}
.plan-row:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  line-height: 1.2;
  margin-top: 2px;
}
.plan-row strong {
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
}
.plan-row small {
  font-size: 12px;
  font-size: 0.75rem;
}
/*============================
#plan bottom
============================*/
.plan__wrap-bottom {
  margin-top: 80px;
  padding: 0 20px;
}
@media screen and (max-width:748px) {
  .plan__wrap-bottom {
    margin-top: 8svw;
    padding: 0 4svw 12svw;
  }
}

:root { /* 1列目 背景 */ /* 2列目 背景 */
}

.plan-compare {
  width: 1200px;
  margin: 0 auto;
  color: #3E4651;
}
@media screen and (max-width:748px) {
  .plan-compare {
    width: 720px;
  }
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.plan-table tbody th,
.plan-table tbody td {
  border: 1px solid #1F4679;
  text-align: center;
  vertical-align: middle;
  max-width: 241px;
  width: 100%;
  height: 70px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width:748px) {
  .plan-table tbody th,
.plan-table tbody td {
    max-width: 144px;
    width: 100%;
    height: 60px;
    font-size: 14px;
  }
}

.plan-table__corner {
  background: #fff;
}

.plan-table__rowhead {
  text-align: center;
  font-weight: 700;
  background: #fff;
  line-height: 1.2;
}

/* 列背景（theadも含めたいので nth-child で指定） */
#plan .plan-compare .plan-table tr > :nth-child(2) {
  background: #EEF3F8;
}

#plan .plan-compare .plan-table tr > :nth-child(3) {
  background: #FBF1E6;
}

#plan .plan-compare .plan-table tr > :nth-child(4) {
  background: #FFFFFF;
}

#plan .plan-compare .plan-table tr > :nth-child(5) {
  background: #FFFFFF;
}

#plan .plan-compare .plan-table tr:nth-child(even) > :nth-child(1),
#plan .plan-compare .plan-table tr:nth-child(even) > :nth-child(4),
#plan .plan-compare .plan-table tr:nth-child(even) > :nth-child(5) {
  background-color: #F5F5F5;
}

/* プランヘッダー（上のカード） */
.plan-table__plan {
  padding: 0;
}

.plan-head {
  height: 100%;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  overflow: hidden;
  border-top: 1px solid #1F4679;
  border-left: 1px solid #1F4679;
  border-top: 1px solid #1F4679;
}
.plan-exec .plan-head {
  border-right: 1px solid #1F4679;
}

.plan-head__title {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px;
  letter-spacing: 0.002em;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width:748px) {
  .plan-head__title {
    font-size: 1rem;
  }
}

.plan-head__body {
  padding: 12px 16px 10px;
}
@media screen and (max-width:748px) {
  .plan-head__body {
    padding: 12px 8px 10px;
  }
}

.plan-head__price {
  color: #1F4679;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.plan-head__price-label {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width:748px) {
  .plan-head__price-label {
    font-size: 12px;
  }
}

.plan-head__price-num {
  font-size: 44px;
  line-height: 1;
}
@media screen and (max-width:748px) {
  .plan-head__price-num {
    font-size: 24px;
  }
}

.plan-head__price-unit {
  font-size: 18px;
}
@media screen and (max-width:748px) {
  .plan-head__price-unit {
    font-size: 12px;
  }
}

.plan-head__price-tax {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width:748px) {
  .plan-head__price-tax {
    font-size: 12px;
  }
}

.plan-head__price {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #1F4679;
}
.plan-head__pills {
  display: grid;
  gap: 10px;
  justify-items: center;
}
.pill {
  display: inline-block;
  padding: 8px 10px;
  background: #fff;
  color: #1F4679;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width:748px) {
  .pill {
    font-size: 12px;
    text-align: center;
  }
}

.plan-premium .pill,
.plan-exec .pill {
  background: #EDF1F5;
}

/* ヘッダー色 */
.plan-head--lite .plan-head__title {
  background: #1F4679;
}

.plan-head--standard .plan-head__title {
  background: #F2A33A;
}

.plan-head--premium .plan-head__title {
  background: #D7DEE8;
  color: #1F4679;
}

.plan-head--exec .plan-head__title {
  background: #D7DEE8;
  color: #1F4679;
}

/* ○×など */
.plan-table__cell {
  font-size: 22px;
  font-weight: 700;
  color: #3E4651;
}
/* 最下段は余白ちょい広め */
.plan-table__discount th,
.plan-table__discount td {
  padding-top: 22px;
  padding-bottom: 22px;
}
/* レスポンシブ（スマホで横スクロール） */
@media (max-width: 1240px) {
  .plan__wrap-bottom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .plan__wrap-bottom {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .plan__wrap-bottom::-webkit-scrollbar {
    display: none;
  }
  .plan-table {
    min-width: 720px;
  }
}
/*============================
#lawyer
============================*/
#lawyer {
  padding: 96px 0;
}
@media screen and (max-width:748px) {
  #lawyer {
    padding: 20svw 0;
  }
}

.lawyer__slider .swiper-wrapper {
  margin-top: 48px;
}
@media screen and (max-width:748px) {
  .lawyer__slider .swiper-wrapper {
    margin-top: 8svw;
  }
}

.lawyer__slider .swiper-wrapper .swiper-slide {
  position: relative;
  width: 360px;
  height: auto;
  display: block;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width:748px) {
  .lawyer__slider .swiper-wrapper .swiper-slide {
    width: 200px;
  }
}

.lawyer__slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.lawyer__detail {
  padding: 24px 16px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 70, 121, 0)), to(#1f4679));
  background: linear-gradient(180deg, rgba(31, 70, 121, 0) 0%, #1f4679 100%);
}
@media screen and (max-width:748px) {
  .lawyer__detail {
    padding: 14px 8px;
  }
}

.lawyer__detail .lawyer__tags {
  color: #1F4679;
  font-weight: 400;
  line-height: 1.8;
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #fff;
  padding: 2px 6px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width:748px) {
  .lawyer__detail .lawyer__tags {
    font-size: 0.625rem;
    padding: 0 4px;
  }
}

.lawyer__detail .lawyer__name {
  margin-top: 6px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width:748px) {
  .lawyer__detail .lawyer__name {
    font-size: 0.875rem;
    margin-top: 4px;
  }
}

.lawyer__detail .lawyer__memo {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  margin-top: 6px;
}
@media screen and (max-width:748px) {
  .lawyer__detail .lawyer__memo {
    font-size: 0.75rem;
    margin-top: 3px;
  }
}

.swiper-bottoms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.lawyer__slider .swiper-pagination {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.swiper-pagination-bullet {
  background-color: #D0D8E3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1F4679;
}

.lawyer__slider .swiper-button-prev {
  background-image: url(../img/lawyer-prev.svg);
}

.lawyer__slider .swiper-button-next {
  background-image: url(../img/lawyer-next.svg);
}

.lawyer__slider .swiper-button-prev,
.lawyer__slider .swiper-button-next {
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.lawyer__slider .swiper-button-prev:hover,
.lawyer__slider .swiper-button-next:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

/*============================
#risk
============================*/
#risk {
  background-image: url(../img/risk-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 96px 0;
}
@media screen and (max-width:748px) {
  #risk {
    padding: 20svw 0;
  }
}

#risk .risk__wrap {
  padding: 0 24px;
}
@media screen and (max-width:748px) {
  #risk .risk__wrap {
    padding: 0 4svw;
  }
}

.risk__contents {
  max-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin: 48px auto 0;
}
@media screen and (max-width:748px) {
  .risk__contents {
    margin: 8svw 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8svw;
  }
}

.risk__contents .risk__post {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  color: #3E4651;
  font-weight: 400;
}
.risk__contents .risk__post:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

.risk__contents .risk__post img {
  display: block;
  width: 100%;
  height: auto;
}

.risk__contents .risk__post time {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.012em;
  margin-top: 16px;
  display: block;
}
@media screen and (max-width:1079px) {
  .risk__contents .risk__post time {
    font-size: 1.4svw;
    margin-top: 1.6svw;
  }
}
@media screen and (max-width:748px) {
  .risk__contents .risk__post time {
    font-size: 4svw;
    margin-top: 4svw;
  }
}

.risk__contents .risk__post h3 {
  margin-top: 12px;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width:1079px) {
  .risk__contents .risk__post h3 {
    margin-top: 1svw;
    font-size: 1.6svw;
  }
}
@media screen and (max-width:748px) {
  .risk__contents .risk__post h3 {
    margin-top: 3svw;
    font-size: 5.3svw;
  }
}

/*============================
#flow
============================*/
#flow {
  padding: 96px 20px;
}
@media screen and (max-width:748px) {
  #flow {
    padding: 20svw 4svw;
  }
}

.flow__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  row-gap: 40px;
  max-width: 936px;
  width: 100%;
  margin: 96px auto 0;
}
@media screen and (max-width:748px) {
  .flow__wrap {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 14svw;
    gap: 1svw;
    row-gap: 6svw;
  }
}

.flow__con:not(:last-child) {
  padding-right: 32px;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: bottom 93px right 0;
}
@media screen and (max-width:748px) {
  .flow__con:not(:last-child) {
    padding-right: 6svw;
    background-size: 5svw 5svw;
    background-position: bottom 17svw right 0;
  }
}

.flow-con__wrap {
  background-color: #EEF1F6;
  width: 204px;
  height: 210px;
}
@media screen and (max-width:748px) {
  .flow-con__wrap {
    width: 39svw;
    height: 40svw;
    gap: 2svw;
  }
}

.flow-con__wrap .flow__tag {
  display: block;
  background-color: #1F4679;
  padding: 8px 0 4px;
  max-width: 103px;
  text-align: center;
  font-family: "Overpass", sans-serif;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width:748px) {
  .flow-con__wrap .flow__tag {
    padding: 1.5svw 0 0.8svw;
    max-width: 24svw;
    font-size: 2.4svw;
  }
}

.flow-con__wrap img {
  display: block;
  width: 86px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 8px auto 0;
}
@media screen and (max-width:748px) {
  .flow-con__wrap img {
    width: 16svw;
    margin: 1svw auto 0;
  }
}

.flow-con__wrap .flow__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.002em;
  color: #3E4651;
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width:748px) {
  .flow-con__wrap .flow__text {
    font-size: 3.6svw;
  }
}

.flow__con:nth-child(1) .flow-con__wrap .flow__text,
.flow__con:nth-child(4) .flow-con__wrap .flow__text {
  margin-top: 1.8em;
}
.flow-con__wrap .flow__text span {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width:748px) {
  .flow-con__wrap .flow__text span {
    font-size: 3svw;
  }
}

/*============================
#faq
============================*/
#faq {
  padding: 96px 20px;
  background-color: #EEF1F6;
}
@media screen and (max-width:748px) {
  #faq {
    padding: 20svw 4svw;
  }
}

.faq__wrap {
  margin: 48px auto 0;
  padding: 64px;
  background-color: #fff;
  max-width: 1080px;
  width: 100%;
}
@media screen and (max-width:748px) {
  .faq__wrap {
    margin: 12svw auto 0;
    padding: 6svw 4svw;
  }
}

.faq__wrap .faq__con {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width:748px) {
  .faq__wrap .faq__con {
    padding-bottom: 4svw;
    margin-bottom: 6svw;
  }
}

.faq__wrap .faq__con:last-child {
  margin-bottom: 0;
}

.faq__wrap .faq__con .faq__question {
  padding: 4px;
  padding-left: 56px;
  background-image: url(../img/q-icon.svg);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: top left;
  color: #3E4651;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.002em;
  font-weight: bold;
}
@media screen and (max-width:748px) {
  .faq__wrap .faq__con .faq__question {
    padding: 0svw;
    padding-left: 11svw;
    background-size: 8svw 8svw;
    font-size: 5svw;
  }
}

.faq__wrap .faq__con .faq__answer {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #3E4651;
  font-weight: 400;
  margin-top: 24px;
}
@media screen and (max-width:748px) {
  .faq__wrap .faq__con .faq__answer {
    font-size: 4svw;
    margin-top: 4svw;
  }
}

footer {
  background-color: #000000;
  padding: 24px;
}

footer .footer__copy {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width:748px) {
  footer .footer__copy {
    font-size: 0.625rem;
  }
}

/*============================
#to-top
============================*/
#to-top {
  display: block;
  position: fixed;
  z-index: 8;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
@media screen and (max-width:748px) {
  #to-top {
    bottom: 32svw;
    right: 2svw;
  }
}

#to-top img {
  display: block;
  width: 70px;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width:748px) {
  #to-top img {
    width: 14svw;
  }
}

/*============================
#bottom-cta
============================*/
#bottom-cta {
  position: fixed;
  bottom: 8px;
  right: 124px;
  z-index: 8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px;
}
@media screen and (max-width:748px) {
  #bottom-cta {
    right: 0;
    background: #1F4679;
    padding: 4svw;
    border-radius: 6svw 6svw 0 0;
    width: 100%;
    -webkit-box-shadow: inset 0px 4px 6px 6px rgba(255, 255, 255, .2);
            box-shadow: inset 0px 4px 6px 6px rgba(255, 255, 255, .2);
    bottom: -1svw;
  }
}

#bottom-cta::after {
  content: "";
  position: absolute;
  inset: -10px; /* はみ出させる */
  background: rgba(255, 255, 255, .35);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="16" /></filter></svg>#filter');
  -webkit-filter: blur(16px);
          filter: blur(16px);
  z-index: -1;
  border-radius: 24px;
}
@media screen and (max-width:748px) {
  #bottom-cta::after {
    display: none;
  }
}

#to-top,
#bottom-cta {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  pointer-events: none;
}

@media screen and (max-width:748px) {
  #bottom-cta .cv-button__read {
    color: #fff;
  }
}

/* 表示状態 */
#to-top.is-show,
#bottom-cta.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.sp {
  display: none;
}

@media screen and (max-width:748px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
