@charset "UTF-8";
@media screen and (max-width: 1919px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body.home {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
  margin:0;
}
body {
  font-family: "Noto Sans JP", sans-serif;

  color: #333333;

}

/*----------------------------------
  common
-----------------------------------*/
.b-section__inner {
  padding-inline: 25.625rem;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .b-section__inner {
    padding-inline: 20px;
  }
}

.b-hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .b-hidden-pc {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .b-hidden-sp {
    display: none;
  }
}

.b-balloon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  display: inline-block;
  background: #fff;
  border: 0.0625rem solid #a3a3a3;
  border-radius: 100px;
  padding: 0.25rem 1rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .b-balloon {
    padding: 4px 16px;
    border: 1px solid #a3a3a3;
    margin-bottom: 5px;
    border: 1px solid #a3a3a3;
  }
}
.b-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: 0.75rem 0.5625rem 0 0.5625rem;
  bottom: -0.75rem;
  border-style: solid;
  border-color: #a3a3a3 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .b-balloon::after {
    border-width: 12px 9px 0 9px;
    bottom: -12px;
  }
}
.b-balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6875rem 0.5rem 0 0.5rem;
  bottom: -0.6875rem;
  border-color: #fff transparent transparent transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .b-balloon::before {
    border-width: 11px 8px 0 8px;
    bottom: -11px;
  }
}

.b-balloon__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .b-balloon__text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-section__title {
  text-align: center;
  all: unset;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  position: relative;
}
.b-section__title::before {
  content: "";
  position: absolute;
  background: #003a84;
  height: 0.375rem;
  width: 3.5rem;
  left: 50%;
  translate: -50%;
  bottom: -1.5rem;
}
@media screen and (max-width: 767px) {
  .b-section__title::before {
    width: 40px;
    height: 3px;
    bottom: -16px;
  }
}
@media screen and (max-width: 767px) {
  .b-section__title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.b-top-text {
  height: 2rem;
  background: #e7f2fc;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  padding-block: 0.3125rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1099px) {
  .b-top-text {
    /* height: 32px; */
    height:3rem;
    font-size: 16px;
    padding-block: 5px;
  }
}
@media screen and (max-width: 767px) {
  .b-top-text {
    height:20px;
    padding-block: 5px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-top-text__label {
  position: relative;
  display: inline-block;
  padding-inline: 1.25rem;
}
.b-top-text__label::before, .b-top-text__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 16px;
  background: #003a84;
}
.b-top-text__label::before {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
.b-top-text__label::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 767px) {
  .b-top-text__label {
    padding-inline: 15px;
  }
  .b-top-text__label::before, .b-top-text__label::after {
    height: 14px;
  }
}

/*----------------------------------
  header
-----------------------------------*/
.b-header {
  height: 7.5rem;
  position: fixed; /* ヘッダーを固定 */
  top: 2rem; /* 上部に配置 */
  left: 0; /* 左端に配置 */
  width: 100%; /* 横幅を全体に広げる */
  background-color: rgba(255,255,255,0.8); /* ヘッダーの背景色（必要に応じて変更） */
  z-index: 1000; /* 重なり順を他の要素より前に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含めてボックスサイズを計算 */
}
@media screen and (max-width: 1023px) {
  .b-header {
    height: 72px;
    
    top: 20px;
  }
}

.b-header__inner {
  height: inherit;
  padding-left: 2.5rem;
  /* padding-block: 0.9375rem 0.875rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
  max-width: 1920px;
}
@media screen and (max-width: 1099px) {
  .b-header__inner {
    padding-left: 0;
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .b-header__inner {
    padding-inline: 20px;
    /* padding-block: 8px; */
  }
}

.b-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.b-header__logo {
  all: unset;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 22.625rem;
}
@media screen and (max-width: 767px) {
  .b-header__logo {
    width: 242px;
  }
}
.b-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.b-header-logo__link img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (max-width: 1099px) {
  .b-header__nav {
    display: none;
  }
}

.b-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 1.9375rem;
  -webkit-padding-start: unset;
          padding-inline-start: unset;
  -webkit-margin-before: unset;
          margin-block-start: unset;
  -webkit-margin-after: unset;
          margin-block-end: unset;
  margin-left: 5rem;
}

.b-header__nav-item a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .b-header__nav-item a:hover {
    color: rgba(85, 85, 85, 0.8);
  }
}

.b-header-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1099px) {
  .b-header-info__wrap {
    display: none;
  }
}

.b-header-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 1.5rem;
}

.b-header-tel__text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
}

.b-header-tel__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.b-header-tel__icon {
  width: 2.25rem;
}
.b-header-tel__icon img {
  width: 100%;
  display: block;
}

.b-header-tel__num {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.b-header-contact {
  all: unset;
  display: block;
  height: 7.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b-header-contact.--mail {
  background-color: #003a84;
  padding-inline: 1.5625rem;
}
.b-header-contact.--line {
  background-color: #00b900;
  padding-inline: 0.625rem 0.8125rem;
}
.b-header-contact {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .b-header-contact:hover {
    opacity: 0.8;
    cursor: pointer;
  }
}

.b-header-contact__icon {
  width: 2.25rem;
}
.b-header-contact__icon img {
  width: 100%;
  display: block;
}

.b-header-contact__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
}

/*----------------------------------
  drawer
-----------------------------------*/
.b-drawer-icon {
  all: unset;
  cursor: pointer;
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 51;
}
.b-drawer-icon.is-checked .b-drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.b-drawer-icon.is-checked .b-drawer-icon__bar:nth-of-type(2) {
  top: 9px;
  display: none;
}
.b-drawer-icon.is-checked .b-drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1100px) {
  .b-drawer-icon {
    display: none;
  }
}

.b-drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #003a84;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.b-drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.b-drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.b-drawer-icon__text {
  color: #333;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  position: absolute;
  top: 30px;
  left: 0;
}

.b-drawer-content {
  width: 100%;
  position: fixed;
  top: 104px;
  right: 0;
  height: calc(100dvh - 104px);
  background: #fff;
  z-index: 50;
  /* padding-inline: 20px; */
  
  padding-bottom: 30px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}





.b-drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.b-drawer-content__menu {
  
  padding: 0 5%;
  padding-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.b-drawer-content__link {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 16px;
  border-bottom: 1px dashed #d9d9d9;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.b-drawer-content__link span {
  width: 20px;
}
.b-drawer-content__link span img {
  width: 100%;
  height: auto;
}

.b-drawer-content__bottom {
  margin-top: 32px;
  padding: 0 5%;
}

.b-drawer-content__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.b-drawer-tel__text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.b-drawer-tel__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.b-drawer-tel__icon {
  width: 28px;
}
.b-drawer-tel__icon img {
  width: 100%;
  height: auto;
}

.b-drawer-tel__num {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.b-drawer-content__contact {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.b-drawer-content__contact.--mail {
  background-color: #003a84;
  padding: 4px;
}
.b-drawer-content__contact.--line {
  white-space: nowrap;
  margin-top: 12px;
  background-color: #00b900;
  padding: 15px 80px;
}

.b-drawer-content__contact-wrap {
  all: unset;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border: 1px solid #fff;
  width: 100%;
  padding: 19px 24px 18px;
}

.b-drawer-contact__icon {
  width: 24px;
}
.b-drawer-contact__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.b-drawer-contact__icon__text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
}

/*----------------------------------
  mv
-----------------------------------*/
/* .b-mv {
  margin-top: 7.5rem;
  background: url(./img/bg_top-fv-pc.webp) no-repeat center center/cover;
  width: 100%;
  min-height: calc(100vh - 7.5rem);
  position: relative;
  overflow: hidden;
} */

.b-mv {
  margin-top: 7.5rem;
  width: 100%;
  min-height: calc(100vh - 7.5rem);
  position: relative;
  overflow: hidden;
  background: none;
}

.b-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.b-mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




.b-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 58%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.78)), color-stop(45%, rgba(255, 255, 255, 0.62)), color-stop(78%, rgba(255, 255, 255, 0.28)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.62) 45%, rgba(255, 255, 255, 0.28) 78%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .b-mv {
    min-height: auto;
    padding-block: 80px 64px;
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  /* .b-mv {
    background: url(./img/bg_top-fv-sp.webp) no-repeat center center/cover;
    min-height: calc(100vh - 72px);
    margin-top: 105px;
  }
  .b-mv::before {
    content: none;
  } */
@media screen and (max-width: 767px) {
  .b-mv {
    min-height: calc(100vh - 72px);
    margin-top: 105px;
  }

  .b-mv::before {
    content: none;
  }
}


}

.b-mv__inner {
  height: 100%;
  min-height: calc(100vh - 7.5rem);
  padding-inline: 10.625rem 14.3125rem;

    position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .b-mv__inner {
    min-height: auto;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .b-mv__inner {
    padding-inline: 20px;
    min-height: calc(100vh - 72px);
  }
}

.b-mv__wrap {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 7.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .b-mv__wrap {
    min-height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .b-mv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 32px;
    padding-top: 43px;
    padding-bottom: 40px;
    min-height: calc(100vh - 72px);
  }
}

.b-mv__title {
  position: relative;
  z-index: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  width: 48.4375rem;
}
@media screen and (max-width: 767px) {
  .b-mv__title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.b-mv-title__head {
  white-space: nowrap;
}
.b-mv-title__head span:nth-of-type(1) {
  padding: 0 0.5rem;
  border: 2px solid #d9d9d9;
  background: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .b-mv-title__head span:nth-of-type(1) {
    padding: 2px 8px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.b-mv-title__head span:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-mv-title__head span:nth-of-type(2) {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.b-mv-title__head span:nth-of-type(3) {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 767px) {
  .b-mv-title__head span:nth-of-type(3) {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.b-mv-title__bottom {
  all: unset;
  margin-top: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .b-mv-title__bottom {
    gap: 0;
    margin-top: 11px;
  }
}
.b-mv-title__bottom span:nth-of-type(1) {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 767px) {
  .b-mv-title__bottom span:nth-of-type(1) {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
/* .b-mv-title__bottom span:nth-of-type(2) { */
  .b-mv-title__bottom_h1{
    margin:0!important;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  background: #555;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  /* .b-mv-title__bottom span:nth-of-type(2) { */
    .b-mv-title__bottom_h1{
    font-size: clamp(20px, 6.1538461538vw, 24px);
    letter-spacing: 0.96px;
  }
}

.b-mv__text-wrap {
  font-family: "Noto Sans JP", sans-serif;
}

.b-mv__note {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-mv__note {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-mv__text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-mv__text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-mv__feature-list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
}
@media screen and (max-width: 767px) {
  .b-mv__feature-list.--pc {
    display: none;
  }
}
.b-mv__feature-list.--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .b-mv__feature-list.--sp {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 9px;
  }
}
@media screen and (max-width: 767px) {
  .b-mv__feature-list {
    margin-top: 32px;
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.b-mv__feature-item {
  width: 10rem;
  aspect-ratio: 1/1;
  border: 1px solid #555;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-mv__feature-item {
    width: 100px;
    padding: 12px 8px;
  }
}

.b-mv__feature-icon {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .b-mv__feature-icon {
    width: 40px;
    height: 40px;
  }
}
.b-mv__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .b-mv__feature-icon {
    width: 40px;
  }
}

.b-mv__feature-text {
  all: unset;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-align: center;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(50%, #fff200));
  background: linear-gradient(transparent 70%, #fff200 50%);
}
@media screen and (max-width: 767px) {
  .b-mv__feature-text {
    margin-top: 12px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-mv__image {
  width: 43.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.b-mv__image::before {
  content: "";
  position: absolute;
  left: 51%;
  top: 60%;
  width: 143%;
  height: 148%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(./img/bg_white_mask.webp) no-repeat center center/contain;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .b-mv__image {
    width: 100%;
    margin-inline: auto;
    width: min(66.6666666667vw, 400px);
  }
}
.b-mv__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

/*----------------------------------
  cta
-----------------------------------*/
.b-cta {
  background: url(./img/bg_cta.jpg) no-repeat center center/cover;
  width: 100%;
}

.b-cta__inner {
  padding-block: 4rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-cta__inner {
    padding-block: 24px 40px;
  }
}

.b-cta-title {
  text-align: center;
  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;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .b-cta-title {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

@media screen and (max-width: 767px) {
  .b-cta-title__line {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    border-bottom: 2px solid #fff;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 767px) {
  .b-cta-title__line + .b-cta-title__line {
    margin-top: 5px;
  }
}

.b-cta-title__accent {
  color: #ffff03;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 767px) {
  .b-cta-title__accent {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.b-cta-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .b-cta-list {
    max-width: 400px;
    margin-inline: auto;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 8px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 388px) {
  .b-cta-list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-inline: 10px;
  }
}

.b-cta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .b-cta-item {
    gap: 4px;
    justify-self: left;
  }
}
.b-cta-item span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-cta-item span {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-cta-item__icon {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .b-cta-item__icon {
    width: 20px;
  }
}
.b-cta-item__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.b-cta-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.0625rem;
  margin-top: 2.5rem;
  border-radius: 20px;
  background: #fff;
  padding: 1.9375rem 2.5rem 2.375rem 5rem;
}
@media screen and (max-width: 767px) {
  .b-cta-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-top: 16px;
    padding: 16px 20px 24px 20px;
  }
}

@media screen and (max-width: 767px) {
  .b-cta__main {
    width: 100%;
  }
}

.b-cta-bottom-title__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-left: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-cta-bottom-title__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 45px;
    gap: 8px;
  }
}
.b-cta-bottom-title__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #d9d9d9;
}
@media screen and (max-width: 767px) {
  .b-cta-bottom-title__wrap::before {
    bottom: -12px;
  }
}

.b-cta-bottom-title__icon {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .b-cta-bottom-title__icon {
    width: 64px;
  }
}
.b-cta-bottom-title__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.b-cta-bottom__title {
  all: unset;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-cta-bottom__title {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-cta-info {
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .b-cta-info {
    margin-top: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.b-cta-info-tel__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.b-cta-info-tel__icon {
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-cta-info-tel__icon {
    width: 28px;
  }
}
.b-cta-info-tel__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.b-cta-info-tel__num {
  white-space: nowrap;
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .b-cta-info-tel__num {
    font-size: 32px;
  }
}

.b-cta-info-contact {
  width: 22.5rem;
  margin-inline: auto;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  background-color: #003a84;
  padding: 0.25rem;
}
@media screen and (max-width: 767px) {
  .b-cta-info-contact {
    width: 100%;
    padding: 4px;
  }
}
.b-cta-info-contact {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .b-cta-info-contact:hover {
    opacity: 0.8;
  }
}

.b-cta-info-contact-wrap {
  all: unset;
  cursor: pointer;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  border: 1px solid #fff;
  width: 100%;
  padding: 1.1875rem 1.5rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .b-cta-info-contact-wrap {
    gap: 8px;
    padding: 19px 24px 18px;
  }
}

.b-cta-contact__icon {
  width: 1.75rem;
}
@media screen and (max-width: 767px) {
  .b-cta-contact__icon {
    width: 24px;
  }
}
.b-cta-contact__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.b-cta-contact__icon__text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-cta-contact__icon__text {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-cta-line {
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .b-cta-line {
    max-width: 160px;
    margin-inline: auto;
  }
}
.b-cta-line img {
  width: 100%;
  height: auto;
  display: block;
}

/*----------------------------------
  worries
-----------------------------------*/
.b-worries {
  background: url(./img/bg_worries.webp) no-repeat center center/cover;
  width: 100%;
  background-position: 100% 50%;
}
@media screen and (max-width: 767px) {
  .b-worries {
    background: none;
  }
}

.b-worries__image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.b-worries__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 65%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.b-worries__image img {
  width: 100%;
  height: auto;
  display: block;
}

.b-worries__inner {
  padding-left: 25.625rem;
  padding-block: 6rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-worries__inner {
    padding-inline: 20px;
    padding-block: 48px 24px;
  }
}

.b-worries__content {
  max-width: 41.25rem;
}
@media screen and (max-width: 767px) {
  .b-worries__content {
    width: 100%;
  }
}

.b-worries__title {
  all: unset;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: 0.1rem;
  position: relative;
  padding-top: 0.3125rem;
}
.b-worries__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8.875rem;
  width: 5.5rem;
  height: 0.5rem;
  background-image: radial-gradient(circle, #003a84 0.25rem, transparent 0.25rem);
  background-size: 2.5rem 0.5rem;
  background-repeat: repeat-x;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .b-worries__title {
    font-size: 20px;
    letter-spacing: 0.8px;
    padding-top: 5px;
  }
  .b-worries__title::before {
    width: 44px;
    height: 4px;
    background-image: radial-gradient(circle, #003a84 2px, transparent 2px);
    left: 70px;
    background-size: 20px 4px;
  }
}

.b-worries__list {
  all: unset;
}

.b-worries__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 0.125rem dashed #d9d9d9;
}
.b-worries__item:first-child {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-worries__item:first-child {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .b-worries__item {
    gap: 12px;
    padding-block: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-bottom: 2px dashed #d9d9d9;
  }
}

.b-worries__item-icon {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.25rem;
}
.b-worries__item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .b-worries__item-icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }
}

.b-worries__item-text {
  all: unset;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #555;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
.b-worries__item-text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fff200));
  background: linear-gradient(transparent 70%, #fff200 70%);
}
@media screen and (max-width: 767px) {
  .b-worries__item-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

/*----------------------------------
  solution
-----------------------------------*/
.b-solution {
  background-color: #003a84;
  padding-block: 1rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-solution {
    padding-block: 12px;
  }
}
.b-solution::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.4375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 3.125rem solid transparent;
  border-right: 3.125rem solid transparent;
  border-top: 1.5rem solid #003a84;
}
@media screen and (max-width: 767px) {
  .b-solution::after {
    bottom: -16px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 16px solid #003a84;
  }
}
.b-solution h3 {
  all: unset;
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.b-solution h3 span {
  color: #ffff03;
}
@media screen and (max-width: 767px) {
  .b-solution h3 {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

/*----------------------------------
  rule
-----------------------------------*/
.b-rule__inner {
  padding-block: 2.5rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-rule__inner {
    padding-inline: 45px;
    padding-block: 16px 40px;
  }
}

.b-rule__title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #555;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  text-align: center;
}
.b-rule__title::before, .b-rule__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 0;
  border-top: 2px solid #003a84;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.b-rule__title::before {
  left: -4.5rem;
  -webkit-transform: translateY(-50%) rotate(58deg);
          transform: translateY(-50%) rotate(58deg);
}
.b-rule__title::after {
  right: -4.5rem;
  -webkit-transform: translateY(-50%) rotate(-58deg);
          transform: translateY(-50%) rotate(-58deg);
}
@media screen and (max-width: 767px) {
  .b-rule__title {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
  .b-rule__title::before, .b-rule__title::after {
    width: 40px;
    border-top-width: 2px;
  }
  .b-rule__title::before {
    left: -30px;
    -webkit-transform: translateY(-50%) rotate(58deg);
            transform: translateY(-50%) rotate(58deg);
  }
  .b-rule__title::after {
    right: -30px;
    -webkit-transform: translateY(-50%) rotate(-58deg);
            transform: translateY(-50%) rotate(-58deg);
  }
}

.b-rule__cards {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-rule__cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
    grid-template-columns: repeat(1, 1fr);
    gap: 34px;
  }
}

.b-rule-card {
  border-radius: 20px;
  background: #f6f7f8;
  overflow: visible;
  position: relative;
}
.b-rule-card:not(:first-child)::before {
  content: "";
  position: absolute;
  left: calc(-2.5rem / 2 - 0.75rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 2.5rem;
  background: url("./img/icon_rule_ku.svg") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .b-rule-card:not(:first-child)::before {
    left: 50%;
    top: -34px;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    width: 24px;
    height: 34px;
  }
}
@media screen and (max-width: 767px) {
  .b-rule-card {
    margin-inline: auto;
  }
}

.b-rule-card__header {
  position: relative;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .b-rule-card__header {
    padding-bottom: 48px;
  }
}

.b-rule-card__title {
  border-radius: 20px 20px 0 0;
  background: #617b8e;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  padding: 0.75rem 1.25rem;
  position: relative;
}
.b-rule-card__title::before {
  content: "";
  position: absolute;
  background: url(./img/icon_triangle.svg) no-repeat center center/contain;
  bottom: -0.6875rem;
  left: 50%;
  width: 1.5rem;
  height: 0.75rem;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .b-rule-card__title::before {
    width: 24px;
    height: 12px;
    bottom: -8px;
  }
}
@media screen and (max-width: 767px) {
  .b-rule-card__title {
    font-size: 20px;
    letter-spacing: 0.8px;
    padding: 12px 20px;
  }
}

.b-rule-card__logo {
  position: absolute;
  top: 6.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .b-rule-card__logo {
    top: 68px;
    width: 64px;
    height: 64px;
  }
}
.b-rule-card__logo img {
  width: 7.5rem;
  height: 7.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .b-rule-card__logo img {
    width: 64px;
    height: 64px;
  }
}

.b-rule-card__content {
  width: 18.75rem;
  height: 12.75rem;
  position: relative;
  border-radius: 8px;
  background: #fff;
  margin: 0 1.25rem 1.25rem;
  padding: 1.25rem;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .b-rule-card__content {
    min-height: unset;
    margin-inline: auto;
    margin: 0 20px 20px;
    padding: 20px;
    width: 260px;
    height: 110px;
    row-gap: 8px;
  }
}

.b-rule-card__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .b-rule-card__main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    row-gap: 4px;
  }
}

.b-rule-card__text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  line-height: 1.4;
}
.b-rule-card__text.--small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .b-rule-card__text.--small {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
@media screen and (max-width: 767px) {
  .b-rule-card__text {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-rule-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.b-rule-card__icon img {
  width: 2rem;
  height: 2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .b-rule-card__icon img {
    width: 28px;
    height: 28px;
  }
}

/*----------------------------------
  choose
-----------------------------------*/
.b-choose {
  background: #ebebeb;
  position: relative;
}
.b-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 4rem 0 4rem;
  border-color: #fff transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .b-choose::before {
    border-width: 20px 40px 0 40px;
  }
}

.b-choose__inner {
  padding-block: 5.75rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-choose__inner {
    padding-block: 54px 40px;
  }
}

.b-choose-title__wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .b-choose-title__wrap {
    gap: 8px;
  }
}

.b-choose__title {
  text-align: center;
  all: unset;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  position: relative;
}
.b-choose__title::before {
  content: "";
  position: absolute;
  background: #003a84;
  height: 0.375rem;
  width: 3.5rem;
  left: 50%;
  translate: -50%;
  bottom: -1.5rem;
}
@media screen and (max-width: 767px) {
  .b-choose__title::before {
    width: 40px;
    height: 3px;
    bottom: -16px;
  }
}
@media screen and (max-width: 767px) {
  .b-choose__title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.b-problem__balloon-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .b-problem__balloon-text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-choose__cards {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-choose__cards {
    margin-top: 40px;
    gap: 24px;
  }
}

.b-choose-card {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-left: 0.375rem solid #555;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .b-choose-card {
    border-left: unset;
    border-top: 4px solid #555;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0 0 20px 20px;
  }
}

.b-choose-card__head {
  max-width: 37.5rem;
  padding: 4.75rem 2.5rem 4.4375rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__head {
    max-width: 100%;
    padding: 36px 24px 24px 24px;
  }
}

.b-choose-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__meta {
    padding-bottom: 14px;
    gap: 4px;
  }
}

.b-choose-card__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #fff;
  background: #555;
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__label {
    gap: 4px;
    padding: 4px 8px;
  }
}

.b-choose-card__label-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__label-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-choose-card__label-num {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__label-num {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.b-choose-card__title {
  all: unset;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08rem;
}
.b-choose-card__title span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__title span {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
@media screen and (max-width: 767px) {
  .b-choose-card__title {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-choose-card__desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__desc {
    margin-top: 16px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-choose-card__image {
  max-width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .b-choose-card__image {
    max-width: 100%;
  }
}
.b-choose-card__image img {
  border-radius: 0 20px 20px 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .b-choose-card__image img {
    border-radius: 0 0 20px 20px;
  }
}

/*----------------------------------
  service
-----------------------------------*/
.b-service {
  background: url(./img/bg_service.webp) no-repeat center center/cover;
  width: 100%;
  height: 100%;
}

.b-service__inner {
  padding-block: 5.75rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-service__inner {
    padding-block: 42px 40px;
  }
}

.b-service-title__wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.b-service-title__text {
  margin-top: 3rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-service-title__text {
    margin-top: 28px;
    font-size: 15px;
    letter-spacing: 0.6px;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .b-service__contents {
    margin-top: 40px;
  }
}

.b-service-head-title__wrap {
  position: relative;
}
.b-service-head-title__wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d9d9d9;
}

.b-service-head__title {
  all: unset;
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1.25rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  z-index: 1;
}
.b-service-head__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7.5rem;
  height: 2px;
  background: #003a84;
}
@media screen and (max-width: 767px) {
  .b-service-head__title {
    font-size: 20px;
    letter-spacing: 0.8px;
    padding-bottom: 14px;
  }
  .b-service-head__title::before {
    width: 60px;
  }
}

.b-service-head__cards {
  margin-top: 2.0625rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .b-service-head__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.b-service-head-card {
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  padding: 2.5rem 1.25rem;
  position: relative;
}
.b-service-head-card.--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-2rem + 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url("./img/icon_service-arrow.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .b-service-head-card {
    padding: 22px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .b-service-head-card.--arrow::after {
    top: auto;
    right: 50%;
    bottom: -24px;
    -webkit-transform: translateX(50%) rotate(90deg);
            transform: translateX(50%) rotate(90deg);
    width: 24px;
    height: 24px;
  }
}

.b-service-head-card__icon {
  text-align: center;
  margin-inline: auto;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .b-service-head-card__icon {
    width: 40px;
    height: 40px;
    margin-inline: unset;
  }
}
.b-service-head-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.b-service-head-card__body {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-service-head-card__body {
    margin-top: 0;
  }
}

.b-service-head-card__title {
  all: unset;
  text-align: center;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-service-head-card__title {
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-service-head-card__text {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
.b-service-head-card__text.--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .b-service-head-card__text {
    margin-top: 4px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-service-bottom__title {
  all: unset;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-service-bottom__title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.b-service-bottom {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .b-service-bottom {
    margin-top: 24px;
  }
}

.b-service-btn__wrap {
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-service-btn__wrap {
    margin-top: 46px;
  }
}

.b-service__btn {
  all: unset;
  display: inline-block;
  cursor: pointer;
  padding: 1.25rem 5.625rem;
  border-radius: 999px;
  border: 0.125rem solid #555;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-service__btn {
    padding: 13px 93px;
    border: 2px solid #555;
  }
}
.b-service__btn {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .b-service__btn:hover {
    opacity: 0.8;
  }
}

.b-service-btn__text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-service-btn__text {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-service-btn__icon {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .b-service-btn__icon {
    width: 20px;
    height: 20px;
    right: 16px;
  }
}
.b-service-btn__icon img {
  width: 100%;
  height: auto;
  display: block;
}

/*----------------------------------
  reason
-----------------------------------*/
.b-reason {
  background: url(./img/bg_reason.webp) no-repeat center center/cover;
  width: 100%;
}

.b-reason__inner {
  padding-block: 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-reason__inner {
    padding-block: 40px;
  }
}

.b-reason__title {
  text-align: center;
  display: block;
  color: #fff;
}
.b-reason__title::before {
  content: "";
  position: absolute;
  background-color: #fff;
}

.b-reason__cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .b-reason__cards {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.b-reason-card {
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.b-reason-card__image {
  position: relative;
  height: 12.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .b-reason-card__image {
    height: 160px;
  }
}
.b-reason-card__image img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.b-reason-card__label {
  position: absolute;
  top: 1.25rem;
  left: 0;
  background-color: #003a84;
  padding: 0.25rem 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 767px) {
  .b-reason-card__label {
    top: 16px;
    padding: 4px 12px;
    gap: 4px;
  }
}

.b-reason-card-label__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-reason-card-label__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-reason-card-label__num {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-reason-card-label__num {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.b-reason-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem 2rem 2.0625rem 2rem;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}
@media screen and (max-width: 767px) {
  .b-reason-card__body {
    padding: 16px 16px 24px 16px;
  }
}

.b-reason-card__title {
  all: unset;
  color: #003a84;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-reason-card__title {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-reason-card__text {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-reason-card__text {
    margin-top: 4px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

/*----------------------------------
  b-27
-----------------------------------*/
.b-27 {
  background: url(./img/bg_27.webp) no-repeat center center/cover;
  width: 100%;
}

.b-27__inner {
  padding-block: 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-27__inner {
    padding-block: 24px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.b-27__image {
  text-align: center;
  margin-inline: auto;
  width: 23.625rem;
}
@media screen and (max-width: 767px) {
  .b-27__image {
    width: 220px;
  }
}
.b-27__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.b-27__text {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.225rem;
}
@media screen and (max-width: 767px) {
  .b-27__text {
    text-align: left;
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

/*----------------------------------
  b-price
-----------------------------------*/
.b-price {
  background: url(./img/bg_price.webp) no-repeat center center/cover;
  width: 100%;
}

.b-price__inner {
  padding-block: 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-price__inner {
    padding-block: 46px 40px;
  }
}

.b-price__contents {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-price__contents {
    margin-top: 32px;
  }
}

.b-price-start__title {
  all: unset;
  display: block;
  padding-block: 1rem;
  border-radius: 8px 8px 0 0;
  background: #003a84;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-price-start__title {
    padding-block: 8px;
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-price-start__body {
  background: #fff;
  padding-block: 1rem 2.5rem;
  border-radius: 0 0 12px 12px;
  border-right: 4px solid #d9d9d9;
  border-bottom: 4px solid #d9d9d9;
  border-left: 4px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .b-price-start__body {
    padding-block: 22px 24px;
  }
}

.b-price-start__box {
  max-width: 35.625rem;
  margin-inline: auto;
  background: #fff;
}

.b-price-start__head {
  padding: 0 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-price-start__head {
    padding: 20px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}

.b-price-start__label {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.625rem 1rem;
  border-radius: 4px;
  background: #003a84;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .b-price-start__label {
    padding: 10px 14px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-price-start__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.25rem;
  color: #555;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .b-price-start__price {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px;
  }
}

.b-price-start__price-num {
  font-family: "Lato", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .b-price-start__price-num {
    font-size: 56px;
  }
}

.b-price-start__price-unit {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  line-height: 1.1;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .b-price-start__price-unit {
    font-size: 24px;
    letter-spacing: 0.96px;
    margin-bottom: 4px;
  }
}

.b-price-start__price-tax {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .b-price-start__price-tax {
    font-size: 16px;
    letter-spacing: 0.64px;
    margin-bottom: 6px;
  }
}

.b-price-start__note {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-price-start__note {
    text-align: left;
    padding: 0 12px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-price-middle__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-price-middle__text {
    margin-top: 1px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-price-table {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.b-price-table__head {
  background: #555;
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .b-price-table__head {
    text-align: left;
    padding: 20px;
  }
}

.b-price-table__title {
  all: unset;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-price-table__title {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-price-table__lead {
  all: unset;
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .b-price-table__lead {
    margin-top: 1px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-price-table__body {
  background: #fff;
}

.b-price-table__row {
  display: grid;
  grid-template-columns: 32.5% 67.5%;
}
@media screen and (max-width: 767px) {
  .b-price-table__row {
    grid-template-columns: 1fr;
  }
}

.b-price-table__row:nth-child(odd) .b-price-table__label,
.b-price-table__row:nth-child(odd) .b-price-table__text {
  background: #fff;
}

.b-price-table__row:nth-child(even) .b-price-table__label,
.b-price-table__row:nth-child(even) .b-price-table__text {
  background: #f6f7f8;
}

.b-price-table__row:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 767px) {
  .b-price-table__label,
  .b-price-table__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-price-table__label {
  padding: 1.25rem 1.5rem 1.25rem 2.5rem;
  border-right: 1px solid #d9d9d9;
  border-left: 4px solid #d9d9d9;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-price-table__label {
    border-right: 2px solid #d9d9d9;
    border-left: 2px solid #d9d9d9;
    padding: 16px 20px;
    font-size: 16px;
    letter-spacing: 0.64px;
    background: #f3f3f3 !important;
  }
}

.b-price-table__text {
  padding: 1.25rem 2.5rem;
  border-right: 4px solid #d9d9d9;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-price-table__text {
    border-right: 2px solid #d9d9d9;
    border-left: 2px solid #d9d9d9;
    padding: 20px;
    font-size: 15px;
    letter-spacing: 0.6px;
    background: #fff !important;
  }
}

/*----------------------------------
  recommend
-----------------------------------*/
.b-recommend {
  position: relative;
  width: 100%;
  background: url(./img/bg_recommend.webp) no-repeat center center/cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  margin-bottom: -10rem;
}
@media screen and (max-width: 767px) {
  .b-recommend {
    background: url(./img/bg_recommend-sp.webp) no-repeat center top/cover;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
    margin-bottom: -63px;
  }
}

.b-recommend__inner {
  padding-inline: 35rem;
  padding-block: 5.5rem 10rem;
}
@media screen and (max-width: 767px) {
  .b-recommend__inner {
    padding-block: 40px 70px;
    padding-inline: 20px;
  }
}

.b-recommend-title__lead {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-recommend-title__lead {
    margin-top: 1px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-recommend__main-pc {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-recommend__main-pc {
    display: none;
  }
}

.b-recommend__image {
  width: 50rem;
  margin-inline: auto;
}
.b-recommend__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.b-recommend__main-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .b-recommend__main-sp {
    display: inline;
    display: block;
    margin-top: 24px;
  }
}

.b-recommend__image-sp img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.b-recommend-main__content {
  margin-top: 16px;
}

.b-recommend-main__text {
  padding-block: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  border: 3px dashed #a3a3a3;
  background: #fff;
}

.b-recommend-main__note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 0.48px;
}

/*----------------------------------
  case
-----------------------------------*/
.b-case {
  background-color: #ebebeb;
}

.b-case__inner {
  padding-block: 15rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-case__inner {
    padding-block: 94px 40px;
  }
}

.b-case__title {
  display: block;
  text-align: center;
}

.b-case-boxes {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .b-case-boxes {
    margin-top: 40px;
    gap: 24px;
  }
}

.b-case-box__title {
  all: unset;
  display: block;
  padding: 0.75rem 3.5rem;
  border-radius: 8px 8px 0 0;
  background: #555;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 767px) {
  .b-case-box__title {
    padding: 12px 24px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-case-box__body {
  background: #fff;
  padding: 1rem 3.5rem 2.5rem 3.5rem;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 767px) {
  .b-case-box__body {
    padding: 8px 24px 24px 24px;
    border-radius: 8px;
  }
}

.b-case-box__lead {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-case-box__lead {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}
.b-case-box__lead span {
  color: #003a84;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-case-box__lead span {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.b-case-box__messed {
  border: 2px dashed #d9d9d9;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-case-box__messed {
    margin-top: 16px;
    padding: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}

.b-case-box-messed__icon {
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-messed__icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 48px;
  }
}
.b-case-box-messed__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.b-case-box-messed__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-messed__text {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-case-box__cards {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-case-box__cards {
    margin-top: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.b-case-box-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-case-box-card {
    padding: 16px;
  }
}
.b-case-box-card.--before {
  border: 2px solid #a3a3a3;
}
.b-case-box-card.--after {
  border: 2px solid #003a84;
}
.b-case-box-card.--after::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-3.5rem / 2 - 2.1875rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.375rem;
  height: 2.5rem;
  background: url("./img/icon_cace_triangle.svg") no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .b-case-box-card.--after::before {
    top: -26px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    width: 60px;
    height: 30px;
  }
}

.b-case-box-card__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  padding: 0.125rem 1.25rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-card__title {
    padding: 2px 16px;
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.b-case-box-card__title.--before {
  background: #a3a3a3;
}
.b-case-box-card__title.--after {
  background: #003a84;
}

.b-case-box-card__list {
  all: unset;
  margin-top: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-card__list {
    margin-top: 16px;
    gap: 8px;
  }
}

.b-case-box-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-card__item {
    gap: 8px;
  }
}

.b-case-box-card__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-card__icon {
    width: 20px;
    height: 20px;
  }
}
.b-case-box-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.b-case-box-card-item__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-case-box-card-item__text {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}
.b-case-box-card-item__text span {
  font-size: 1rem;
  letter-spacing: 0.04rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .b-case-box-card-item__text span {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}
.b-case-box-card-item__text.--after span {
  color: #003a84;
}

.b-case-btn__wrap {
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .b-case-btn__wrap {
    margin-top: 24px;
  }
}

/*----------------------------------
  faq
-----------------------------------*/
.b-faq__inner {
  padding-block: 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-faq__inner {
    padding-block: 40px;
  }
}

.b-faq__title {
  display: block;
  text-align: center;
}

.b-qa__boxes {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .b-qa__boxes {
    gap: 12px;
    margin-top: 40px;
  }
}

.b-qa__box {
  border-radius: 20px;
  border: 0.125rem solid #555;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .b-qa__box {
    border: 2px solid #555;
    border-radius: 12px;
    border-width: 2px;
  }
}
.b-qa__box.js-open .b-qa-box__head::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}

.b-qa-box__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1.6875rem 3.75rem 1.6875rem 1.375rem;
  background: #fff;
  border: none;
  text-align: left;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .b-qa-box__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    padding: 12px 48px 16px 12px;
  }
}
.b-qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.125rem;
  width: 0.875rem;
  height: 0.875rem;
  border-right: 0.1875rem solid #555;
  border-bottom: 0.1875rem solid #555;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .b-qa-box__head::after {
    right: 20px;
    width: 10px;
    height: 10px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
}

.b-qa-box__head-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .b-qa-box__head-main {
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.b-qa-box__head-icon,
.b-qa-box__a-icon {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .b-qa-box__head-icon,
  .b-qa-box__a-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

.b-qa-box__head-icon {
  background: #555;
  color: #fff;
}

.b-qa-box__head-text {
  color: #555;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.045rem;
}
@media screen and (max-width: 767px) {
  .b-qa-box__head-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.b-qa-box__body {
  display: none;
  padding: 0 1.375rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-qa-box__body {
    padding: 0 16px 16px;
  }
}

.b-qa-box__a {
  padding-top: 1.5rem;
  border-top: 0.1875rem dashed #bdbdbd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .b-qa-box__a {
    border-top: 3px dashed #bdbdbd;
    padding-top: 16px;
    gap: 8px;
    border-top-width: 2px;
  }
}

.b-qa-box__a-icon {
  border: 0.125rem solid #555;
  color: #555;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .b-qa-box__a-icon {
    border: 2px solid #555;
    border-width: 1.5px;
  }
}

.b-qa-box__a-text {
  color: #555;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .b-qa-box__a-text {
    font-size: 16px;
    letter-spacing: 0.64px;
    line-height: 1.6;
    padding-top: 4px;
  }
}

.b-qa-btn__wrap {
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .b-qa-btn__wrap {
    margin-top: 24px;
  }
}

/*----------------------------------
  area
-----------------------------------*/
.b-area {
  background: url(./img/bg_area.webp) no-repeat center center/cover;
  width: 100%;
}

.b-area__inner {
  padding-block: 5.5rem;
}
@media screen and (max-width: 767px) {
  .b-area__inner {
    padding-block: 40px;
  }
}

.b-area__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  border-radius: 20px;
  background: #fff;
  padding: 3.5rem;
}
@media screen and (max-width: 767px) {
  .b-area__contents {
    gap: 0;
    padding: 24px;
  }
}

.b-area-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .b-area-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.b-area-head__image {
  width: 27.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .b-area-head__image {
    width: 100%;
  }
}
.b-area-head__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.b-area-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b-area-head__title span:nth-of-type(1) {
  padding: 0.0625rem 0.5rem;
  background: #555;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-area-head__title span:nth-of-type(1) {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}
.b-area-head__title span:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .b-area-head__title span:nth-of-type(2) {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.b-area-head__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-area-head__text {
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

.b-area-middle {
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .b-area-middle {
    padding: 16px;
    gap: 16px;
  }
}

.b-area-location__point {
  border-radius: 4px;
  background: #555;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.0625rem 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035rem;
}
@media screen and (max-width: 767px) {
  .b-area-location__point {
    padding: 1px 4px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-area-location__desc {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 767px) {
  .b-area-location__desc {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

.b-area-bottom {
  background: #f6f7f8;
  border-radius: 0 12px 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .b-area-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    border-radius: 0 0 12px 12px;
  }
}

.b-area-bottom__image img {
  border-radius: 12px 0 0 12px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .b-area-bottom__image img {
    border-radius: 12px 12px 0 0;
  }
}

.b-area-bottom__content {
  background: #f6f7f8;
  padding: 2.875rem 2.5rem 1.375rem 0;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 767px) {
  .b-area-bottom__content {
    padding: 16px;
  }
}

.b-area-bottom__title-wrap {
  position: relative;
}
.b-area-bottom__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d9d9d9;
}

.b-area-bottom__title {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}
.b-area-bottom__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7.5rem;
  height: 2px;
  background: #003a84;
}
@media screen and (max-width: 767px) {
  .b-area-bottom__title {
    padding-bottom: 4px;
    font-size: 18px;
    letter-spacing: 0.72px;
  }
  .b-area-bottom__title::after {
    width: 60px;
  }
}

.b-area-bottom__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-area-bottom__text {
    margin-top: 8px;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
}

/*----------------------------------
  footer
-----------------------------------*/
.b-footer__inner {
  padding-inline: 7.5rem 25.625rem;
  padding-block: 3rem;
  margin-inline: auto;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .b-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: unset;
    padding-inline: 20px;
    padding-block: 24px;
  }
}

.b-footer-logo {
  width: 22.625rem;
}
@media screen and (max-width: 767px) {
  .b-footer-logo {
    width: 220px;
  }
}
.b-footer-logo a {
  all: unset;
  cursor: pointer;
}
.b-footer-logo a img {
  display: block;
  width: 100%;
  height: auto;
  display: block;
}

.b-footer-info__company {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .b-footer-info__company {
    margin-top: 32px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

.b-footer-info__note {
  white-space: nowrap;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.035rem;
}
@media screen and (max-width: 767px) {
  .b-footer-info__note {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

.b-footer-main {
  width: 100%;
}

.b-footer-main__navs {
  margin-top: 2.5rem;
  max-width: 38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .b-footer-main__navs {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    position: relative;
    max-width: 390px;
    margin-inline: auto;
  }
}

.b-footer-main__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .b-footer-main__nav:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
  }
  .b-footer-main__nav:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
}

.b-footer-main__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-footer-main__right {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .b-footer-main__right > .b-footer-main__nav {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 18px;
  }
}

.b-footer-main__list {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .b-footer-main__list {
    gap: 18px;
    width: 100%;
  }
}

.b-footer-main__item {
  all: unset;
}
.b-footer-main__item a {
  all: unset;
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.b-footer-main__item a:hover {
  color: rgba(85, 85, 85, 0.8);
}
@media screen and (max-width: 767px) {
  .b-footer-main__item a {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

@media screen and (max-width: 767px) {
  .b-footer-main__corp {
    grid-column: 1/-1;
    grid-row: 3;
    margin-top: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.b-footer-main__corp-link {
  all: unset;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.b-footer-main__corp-link:hover {
  opacity: 0.7;
}
.b-footer-main__corp-link img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .b-footer-main__corp-link {
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
  .b-footer-main__corp-link img {
    width: 24px;
    height: 24px;
  }
}

.b-footer-main__copyright {
  margin-top: 3.5rem;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
  color: #a3a3a3;
}
@media screen and (max-width: 767px) {
  .b-footer-main__copyright {
    margin-top: 36px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}/*# sourceMappingURL=style.css.map */