@charset "UTF-8";
/*====================================
# color
====================================*/
/*====================================
# font
====================================*/
/*フォントの読み込み*/
@font-face {
  font-family: "A1-font";
  src: url("/fonts/AP-OTF-A1GothicStd-Regular.otf") format("opentype");
}
@font-face {
  font-family: "A1-font";
  src: url("/fonts/AP-OTF-A1GothicStd-Medium.otf") format("opentype");
  font-weight: Medium;
}
@font-face {
  font-family: "A1-font";
  src: url("/fonts/AP-OTF-A1GothicStd-Bold.otf") format("opentype");
  font-weight: bold;
}
/*====================================
# レイアウト幅
====================================*/
/* ブレークポイント
-------------------------------------*/
/* メディアクエリー
-------------------------------------*/
/*====================================
# 共通クラス
====================================*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1366px;
  padding: 0 clamp(20px, 10.980966325vw, 150px);
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    max-width: calc(100% - 30px);
    margin: 0 auto;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

@media (min-width: 1100px) {
  .is-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 100;
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .to-top {
    right: 10px;
    width: 24px;
    height: 24px;
  }
}
.to-top img {
  width: 100px;
  vertical-align: bottom;
}

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

.sp-s-hidden {
  display: block;
}
@media (max-width: 500px) {
  .sp-s-hidden {
    display: none;
  }
}

.pc-hidden {
  display: none;
}
@media (max-width: 981px) {
  .pc-hidden {
    display: block;
  }
}

.tab-block {
  display: none;
}
@media (max-width: 981px) {
  .tab-block {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media (max-width: 767px) {
  .sp-block {
    display: block;
  }
}
@media (max-width: 500px) {
  .sp-block {
    display: none;
  }
}

.sp-s-block {
  display: none;
}
@media (max-width: 500px) {
  .sp-s-block {
    display: block;
  }
}

/* header
-------------------------------------*/
.header {
  z-index: 10;
  width: 100%;
  height: 80px;
}

.header__inner {
  max-width: 1366px;
  padding: 0 25px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.logo {
  width: 315px;
}
@media (max-width: 767px) {
  .logo {
    width: 182px;
  }
}
.logo img {
  width: 100%;
}

@media (max-width: 767px) {
  .header__logo {
    display: none;
  }
}

.drawer-icon {
  position: fixed;
  right: 0;
  top: 0;
  width: 84px;
  height: 84px;
  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;
  margin-left: auto;
  background: #000;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 300;
  cursor: pointer;
}
@media (max-width: 981px) {
  .drawer-icon {
    width: 40px;
    height: 40px;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon__bars {
  width: 45px;
  height: 35px;
  display: block;
  position: relative;
}
@media (max-width: 981px) {
  .drawer-icon__bars {
    width: 20px;
    height: 17px;
  }
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 45px;
  height: 3px;
  background: #fff;
  top: 0;
  left: 0;
}
@media (max-width: 981px) {
  .drawer-icon__bar1,
  .drawer-icon__bar2,
  .drawer-icon__bar3 {
    width: 21px;
    height: 1px;
  }
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 15px;
}
@media (max-width: 981px) {
  .drawer-icon__bar2 {
    top: 8px;
  }
}

.drawer-icon__bar3 {
  top: 30px;
}
@media (max-width: 981px) {
  .drawer-icon__bar3 {
    top: 16px;
  }
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  width: 81.6vw;
  background: #000;
  padding: 60px 26px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-content {
    width: 100%;
  }
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dashed #000;
}
.drawer-content__item a {
  font-size: 28px;
  display: block;
  color: #fff;
  padding: 18px 20px;
  position: relative;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .drawer-content__item a {
    font-size: 20px;
  }
}
@media (min-width: 1100px) {
  .drawer-content__item a:hover {
    opacity: 0.6;
  }
}

.drawer-item__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin-left: 20px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .drawer-item__text {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .drawer-item__text {
    margin-left: 0;
  }
}

.footer {
  background: #003686;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
}

.footer__logo {
  display: inline-block;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0 31px;
}
@media (max-width: 767px) {
  .footer__content {
    display: block;
    padding: 9px 0 7px;
  }
}

.adress {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .adress {
    margin-left: 0;
    font-size: 12px;
    margin-top: 5px;
  }
}

.copyright {
  font-size: 12px;
  color: #231815;
  background: #fff;
  text-align: center;
  padding: 16px 0 24px;
}
@media (max-width: 981px) {
  .copyright {
    font-size: 10px;
    padding-top: 9px;
    padding-bottom: 40px;
  }
}

@media (max-width: 981px) {
  .contact-copyright {
    padding-bottom: 9px;
  }
}

.section {
  padding-top: 90px;
}
@media (max-width: 767px) {
  .section {
    padding-top: clamp(31px, 8.6111111111vw, 40px);
  }
}

.section-title {
  text-align: center;
}

.section-title__title {
  font-size: 50px;
  color: #B2C3DB;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
  font-weight: bold;
}
@media (max-width: 981px) {
  .section-title__title {
    font-size: clamp(40px, 4.99490316vw, 49px);
  }
}
@media (max-width: 767px) {
  .section-title__title {
    letter-spacing: 0.15em;
    font-size: 22px;
  }
}

.section-title__sub-text {
  margin-top: 29px;
  font-size: 20px;
  border-radius: 8.79px;
  position: relative;
  letter-spacing: -0.1em;
}
@media (max-width: 767px) {
  .section-title__sub-text {
    letter-spacing: 0;
    margin-top: 10px;
    font-size: 12px;
  }
}

.section-title__sub-text::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #003686;
}
@media (max-width: 767px) {
  .section-title__sub-text::before {
    bottom: -10px;
    width: 30px;
    height: 2.5px;
  }
}

.--white::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #FFF;
}
@media (max-width: 767px) {
  .--white::before {
    width: 30px;
    height: 2.5px;
    bottom: -10px;
  }
}

.--gray::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #FFF;
}
@media (max-width: 767px) {
  .--gray::before {
    width: 30px;
    height: 2.5px;
  }
}

.--text-gray {
  color: rgba(255, 255, 255, 0.3);
}

/* fv
-------------------------------------*/
.fv {
  margin-top: -80px;
  padding-top: 205px;
  height: 768px;
  background: url(../img/fv.jpg) no-repeat right 20% center/cover;
}
@media (max-width: 981px) {
  .fv {
    background: url(../img/fv.jpg) no-repeat top right 30%/cover;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .fv {
    background: url(../img/fv-sp.jpg) no-repeat top 20% center/cover;
    height: clamp(640px, 177.7777777778vw, 800px);
    padding-top: 32px;
  }
}
@media (max-width: 500px) {
  .fv {
    padding-top: 100px;
    background: url(../img/fv-sp.jpg) no-repeat center center/cover;
    height: 72.6vh;
    padding-top: 24px;
  }
}

.fv__inner {
  max-width: 1366px;
  padding: 0 clamp(40px, 5.6368960469vw, 77px);
  margin: 0 auto;
}
@media (max-width: 981px) {
  .fv__inner {
    padding: 0 20px;
  }
}

.fv__lead {
  color: #fff;
  font-family: "A1-font";
  font-weight: 600;
  font-size: 30.31px;
  line-height: 2.7;
}

@media (max-width: 767px) {
  .fv__pc {
    display: none;
  }
}

.fv__sp {
  display: none;
}
@media (min-width: 1100px) {
  .fv__sp {
    display: none;
  }
}
@media (max-width: 981px) {
  .fv__sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .fv__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 70px;
    margin-top: 100px;
  }
}
@media (max-width: 500px) {
  .fv__sp {
    margin-right: 20px;
    margin-top: 33px;
  }
}

.fv__header {
  display: none;
}
@media (min-width: 1100px) {
  .fv__header {
    display: none;
  }
}
@media (max-width: 981px) {
  .fv__header {
    display: none;
  }
}
@media (max-width: 767px) {
  .fv__header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .company {
    width: clamp(286px, 58.6701434159vw, 450px);
  }
}
@media (max-width: 500px) {
  .company {
    width: clamp(286px, 79.4444444444vw, 300px);
  }
}

.fv__message-sp {
  margin-top: 7px;
}

.fv__title {
  display: inline-block;
}
@media (max-width: 981px) {
  .fv__title {
    display: inline-block;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .fv__title {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@media (max-width: 500px) {
  .fv__title {
    -webkit-transform: none;
            transform: none;
  }
}

.fz-s {
  font-size: clamp(100px, 8.9311859444vw, 122px);
}
@media (max-width: 767px) {
  .fz-s {
    font-size: clamp(60px, 16.6666666667vw, 80px);
  }
}

.fv__title2 {
  color: #fff;
  font-family: "A1-font";
  font-weight: 600;
  font-size: clamp(60px, 5.3440702782vw, 73px);
}
@media (max-width: 767px) {
  .fv__title2 {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    font-size: clamp(37px, 10.2777777778vw, 50px);
  }
}

@media (max-width: 767px) {
  .fv__header-lead {
    color: #fff;
    font-family: "A1-font";
    font-weight: 600;
    font-size: clamp(15px, 4.1666666667vw, 24px);
    line-height: 2.7;
  }
}

/* service
-------------------------------------*/
.service {
  padding-bottom: 54px;
}
@media (max-width: 767px) {
  .service {
    padding-bottom: 35px;
  }
}

.service__inner {
  padding: 0 40px;
}
@media (max-width: 981px) {
  .service__inner {
    padding: 0 20px;
  }
}

.service__text {
  text-align: center;
  line-height: 2;
  font-size: 20px;
  max-width: 1366px;
  margin: 82px auto 0;
}
@media (max-width: 767px) {
  .service__text {
    text-align: center;
    margin: 34px auto 0;
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .service__text {
    text-align: left;
  }
}

.service__points {
  margin: 36.6px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1136px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1100px) {
  .service__points {
    padding: 0 clamp(20px, 3.2210834553vw, 44px);
  }
}
@media (max-width: 981px) {
  .service__points {
    max-width: 981px;
    padding: 0 clamp(20px, 10.1936799185vw, 100px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .service__points {
    margin-top: 12.6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.service__point {
  font-family: A1-font;
  font-weight: Medium;
  text-align: center;
  font-size: 51.3px;
  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;
  background: url(../img/service-1.png) no-repeat center center/contain;
  width: clamp(283px, 20.7174231332vw, 300px);
  aspect-ratio: 1/1;
  height: auto;
  line-height: 1.2;
}
@media (max-width: 981px) {
  .service__point {
    width: clamp(120px, 20.4081632653vw, 250px);
    font-size: 20px;
    font-size: clamp(16.9px, 4.6944444444vw, 28px);
  }
}
@media (max-width: 767px) {
  .service__point {
    font-size: clamp(16.9px, 4.6944444444vw, 24px);
  }
}
.service__point img {
  width: 100%;
  height: auto;
}

.service__point + .service__point {
  margin-left: 20px;
}
@media (min-width: 1100px) {
  .service__point + .service__point {
    margin-left: clamp(40px, 5.8565153734vw, 111px);
  }
}
@media (max-width: 767px) {
  .service__point + .service__point {
    margin-left: clamp(20px, 5.5555555556vw, 60px);
  }
}

/* recommended
-------------------------------------*/
.recommended {
  background: url(../img/recommended-bg.png) no-repeat top center/cover;
  padding: 233px 0 107px;
}
@media (max-width: 767px) {
  .recommended {
    padding: clamp(120px, 33.3333333333vw, 200px) 0 clamp(26px, 100vw, 40px);
  }
}
@media (max-width: 500px) {
  .recommended {
    background: url(../img/redommended-point-sp-wide.png) no-repeat top center/cover;
    padding: clamp(104px, 28.8888888889vw, 200px) 0 clamp(26px, 100vw, 40px);
  }
}

.recommended__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 clamp(90px, 17.2035139092vw, 235px);
}
@media (max-width: 1099px) {
  .recommended__inner {
    padding: 0 clamp(90px, 10.9190172884vw, 235px) 0 clamp(90px, 13.6487716106vw, 235px);
  }
}
@media (max-width: 767px) {
  .recommended__inner {
    padding: 0 20px;
    width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .recommended__inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.recommended__points {
  margin-top: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 981px) {
  .recommended__points {
    width: 75vw;
    margin: 60px auto 0;
  }
}
@media (max-width: 767px) {
  .recommended__points {
    width: 100%;
    display: block;
    margin-top: 37px;
    padding: 0 clamp(30px, 8.3333333333vw, 40px) 0 clamp(33px, 9.1666666667vw, 40px);
  }
}

@media (min-width: 1100px) {
  .recommended__lists {
    width: 50vw;
  }
}
@media (max-width: 767px) {
  .recommended__lists {
    top: 18.5px;
  }
}

.recommended__lists + .recommended__lists {
  margin-left: clamp(40px, 5.710102489vw, 78px);
}
@media (max-width: 767px) {
  .recommended__lists + .recommended__lists {
    margin-left: 0;
    margin-top: 19px;
  }
}

.recommended-point {
  font-size: 24px;
  padding-left: 49px;
  position: relative;
}
@media (max-width: 981px) {
  .recommended-point {
    font-size: clamp(20px, 2.2426095821vw, 22px);
  }
}
@media (max-width: 767px) {
  .recommended-point {
    font-size: 14px;
    padding-left: 24px;
    letter-spacing: 0.1em;
  }
}

.recommended-point::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 27px;
  top: 43%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/check-icon.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .recommended-point::before {
    width: 15px;
    height: 15px;
  }
}

.recommended-point + .recommended-point {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .recommended-point + .recommended-point {
    margin-top: 18px;
  }
}

/* rate
-------------------------------------*/
.rate {
  background: url(../img/flat_late-bg.jpg) no-repeat center center/cover;
  padding-bottom: 47px;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .rate {
    padding-top: 27px;
    padding-bottom: 18px;
  }
}

.section-title__sub-text.--white {
  color: #fff;
}

.rate__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 86px auto 0;
  width: 78vw;
  max-width: 1066px;
}
@media (max-width: 981px) {
  .rate__lists {
    margin-top: 60px;
    display: block;
  }
}
@media (max-width: 767px) {
  .rate__lists {
    margin-top: 42px;
  }
}

.rate__lists + .rate__lists {
  margin-left: rem(100);
}

.rate__item {
  background: #fff;
  padding: 30px clamp(20px, 2.9282576867vw, 40px);
  width: clamp(300px, 35.3587115666vw, 500px);
}
@media (max-width: 981px) {
  .rate__item {
    width: 45vw;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .rate__item {
    width: clamp(280px, 77.7777777778vw, 300px);
    padding: 15px 39px;
  }
}
@media (max-width: 500px) {
  .rate__item {
    width: 100%;
    padding: 15px clamp(20px, 10.8333333333vw, 39px) 17px clamp(20px, 10.8333333333vw, 39px);
  }
}

@media (min-width: 1100px) {
  .rate__item + .rate__item {
    margin-left: 35px;
  }
}
@media (max-width: 981px) {
  .rate__item + .rate__item {
    margin-top: 20px;
  }
}

.rate__title {
  font-size: clamp(24px, 2.196193265vw, 30px);
  color: #003686;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767px) {
  .rate__title {
    font-size: 15px;
  }
}

.rate__service {
  font-size: clamp(24px, 2.635431918vw, 36px);
  font-weight: bold;
  color: #fff;
  background: #003686;
  width: 100%;
  padding: 11px;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 981px) {
  .rate__service {
    text-align: center;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .rate__service {
    font-size: 18px;
    padding: 5px 28px;
    margin-top: 11px;
  }
}

.price {
  display: inline-block;
  margin-top: 30px;
  padding-left: 5px;
}
@media (max-width: 767px) {
  .price {
    margin-top: 16px;
    padding-left: 3px;
  }
}

.rate-service__item {
  font-size: clamp(20px, 1.756954612vw, 24px);
  margin-top: 5.5px;
  line-height: 1.5;
}
@media (max-width: 981px) {
  .rate-service__item {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .rate-service__item {
    font-size: 12px;
    margin-top: 10px;
    padding-left: 3px;
  }
}

.rate-service__item + .rate-service__item {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .rate-service__item + .rate-service__item {
    margin-top: 2px;
  }
}

.rate__service-area {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-top: 43px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .rate__service-area {
    font-size: 14.5px;
    margin-top: 18px;
  }
}

/* how-to-use
-------------------------------------*/
.HowToUse {
  background: url(../img/how-to-use_bg.jpg) no-repeat center center/cover;
  padding-bottom: 145px;
}
@media (max-width: 767px) {
  .HowToUse {
    padding-top: 32px;
    padding-bottom: 43px;
  }
}
@media (max-width: 500px) {
  .HowToUse {
    padding-top: 29px;
    padding-bottom: 19px;
  }
}

.section-title__title.--gray {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .howTo__inner-sp {
    width: 395px;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .howTo__inner-sp {
    width: initial;
    padding: 0 20px;
  }
}

.HowToUse__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 75.5px;
  gap: 112px;
}
@media (max-width: 767px) {
  .HowToUse__steps {
    display: block;
  }
}

.section-title__sub-text.--white {
  color: #fff;
}

.howTUse-img {
  margin-top: 90.5px;
  width: 100%;
}
@media (max-width: 767px) {
  .howTUse-img {
    margin-top: 39.5px;
  }
}

.HowToUse__item {
  background: #fff;
  padding: 36.39px 46.25px 65.61px 29.75px;
}
@media (max-width: 767px) {
  .HowToUse__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 26px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .HowToUse__item + .HowToUse__item {
    margin-top: 35px;
  }
}

.step {
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  right: -84px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .step::before {
    width: 30px;
    height: 30px;
    bottom: -30px;
    left: 50%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.HowToUse__step {
  font-size: 50px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #CCCCCC;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .HowToUse__step {
    font-size: 25px;
  }
}

.HowToUse__text {
  color: #000;
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .HowToUse__text {
    font-size: 13px;
    margin-top: 0;
    margin-left: 13px;
  }
}

.HowToUse__leads {
  margin-top: 19px;
}

.HowToUse__lead {
  color: #fff;
  line-height: 2;
}
@media (max-width: 767px) {
  .HowToUse__lead {
    font-size: 12px;
    margin-top: 13px;
    line-height: 1.75;
  }
}

/* contact
-------------------------------------*/
.contact {
  background: url(../img/contact-bg.jpg) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .contact {
    padding-bottom: 100px;
  }
}
@media (max-width: 1099px) {
  .contact {
    padding-bottom: 100px;
  }
}
@media (max-width: 981px) {
  .contact {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .contact {
    background: url(../img/contact-bg-sp.jpg) no-repeat center center/cover;
    padding-bottom: 63px;
  }
}

@media (max-width: 767px) {
  .contact__inner-sp {
    padding: 0 clamp(53px, 14.7222222222vw, 70px);
  }
}

.btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-top: 97px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 981px) {
  .btn__wrapper {
    display: block;
    text-align: center;
    margin-top: 57px;
  }
}

.contact__btn {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px clamp(40px, 5.1244509517vw, 70px) 34px;
  text-align: center;
}
@media (max-width: 981px) {
  .contact__btn {
    width: 50vw;
    margin: 0 auto;
    padding: 15px clamp(20px, 4.0774719674vw, 40px) 17px;
  }
}
@media (max-width: 767px) {
  .contact__btn {
    width: initial;
    padding: 5px clamp(20px, 4.0774719674vw, 40px) 17px;
  }
}

@media (max-width: 981px) {
  .contact__btn + .contact__btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .contact__btn + .contact__btn {
    margin-top: 11px;
  }
}

.contact__lead-tel,
.contact__lead-mall {
  display: inline-block;
  font-weight: bold;
  position: relative;
  padding-left: 35px;
  letter-spacing: 0.08em;
}
@media (max-width: 981px) {
  .contact__lead-tel,
  .contact__lead-mall {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .contact__lead-tel,
  .contact__lead-mall {
    font-size: 10px;
    padding-left: 17px;
  }
}

.contact__lead-tel {
  padding-left: 25px;
}
@media (max-width: 767px) {
  .contact__lead-tel {
    padding-left: 13px;
  }
}

.contact__lead-tel::before,
.contact__lead-mall::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact__lead-tel::before {
  width: 23px;
  height: 23px;
  left: 0;
  background: url(../img/tel-icon.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .contact__lead-tel::before {
    left: -10px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 500px) {
  .contact__lead-tel::before {
    width: 15px;
    height: 15px;
    left: -2px;
  }
}

.contact__lead-mall::before {
  width: 25px;
  height: 16px;
  left: 0;
  background: url(../img/mall-icon.svg) no-repeat center center/contain;
}
@media (max-width: 500px) {
  .contact__lead-mall::before {
    width: 13px;
    height: 13px;
    left: 0;
  }
}

.contact-btn {
  font-weight: bold;
  text-align: center;
  background: #003686;
  color: #fff;
  display: inline-block;
  width: clamp(300px, 26.9399707174vw, 368px);
  height: 48px;
  line-height: 48px;
  position: relative;
  display: block;
  margin: 21px auto 0;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 981px) {
  .contact-btn {
    margin-top: 11px;
  }
}
@media (max-width: 500px) {
  .contact-btn {
    width: 184px;
    font-size: 10px;
    height: 23px;
    line-height: 23px;
  }
}

@media (min-width: 1100px) {
  .contact-btn:hover {
    opacity: 0.6;
  }
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 6px;
  height: 12px;
  background: url(../img/right-arrow.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .contact-btn::before {
    right: 9px;
  }
}

.contact__tel {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: clamp(24px, 2.1595900439vw, 29.5px);
}
@media (max-width: 500px) {
  .contact__tel {
    font-size: 14.75px;
  }
}

.btn-fix-wrapper {
  position: fixed;
  right: 0;
  top: 234px;
  width: 72px;
  height: 300px;
  background: #000;
  z-index: 9;
}

.contact-btn-fix {
  color: #fff;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 49px 26px 20px;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.27em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.contact-btn-fix::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 15px;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/mall-wihte.svg) no-repeat center center/contain;
}

.contact-btn-fix::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 15px;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/arrow.svg) no-repeat center center/contain;
}

.contact-btn-fix:hover {
  opacity: 0.6;
}

.btn-fix-wrapper-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: #000;
  text-align: center;
}

.contact-btn-fix-sp {
  height: 35px;
  color: #fff;
  background: #000;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: inline-block;
  letter-spacing: 0.08em;
  margin-left: -18px;
  vertical-align: sub;
  position: relative;
}

.contact-btn-fix-sp::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 10px;
  left: -23px;
  top: 18%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/mall-wihte.svg) no-repeat center center/contain;
}

.contact-btn-fix-sp::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 11px;
  top: 15%;
  right: -39px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow.svg) no-repeat center center/contain;
}

/* contact-page
-------------------------------------*/
.contact-page__header {
  background: url(../img/contact-bg.jpg) no-repeat top center/cover;
  height: 400px;
  padding-top: 89px;
}
@media (max-width: 981px) {
  .contact-page__header {
    height: 300px;
  }
}

.contact-page {
  margin-top: -80px;
}

.contact-page__inner {
  max-width: 1366px;
  padding: 0 clamp(100px, 14.6412884334vw, 200px);
  margin: 0 auto;
}
@media (max-width: 981px) {
  .contact-page__inner {
    max-width: 980px;
    padding: 0 clamp(20px, 10.2040816327vw, 100px);
  }
}

.privacy-policy {
  padding: 17px 0 44px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
}

.breadcrumb__top {
  color: #003686;
  text-transform: uppercase;
}

.breadcrumb__text {
  color: #003686;
  margin-left: 10px;
  padding-left: 15px;
  position: relative;
}

.breadcrumb__text::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #999999;
}

.privacy-policy__wrapper {
  margin-top: 75px;
}
@media (max-width: 981px) {
  .privacy-policy__wrapper {
    padding-left: 0;
  }
}

.contact-page__captitle {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contact-page__captitle {
    font-size: 18px;
  }
}

.contact-page__cap {
  line-height: 2;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-page__cap {
    font-size: 16px;
    line-height: 1.5;
  }
}

.contact-page__item {
  background: #EDF1F7;
}

button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

#cboxClose {
  display: none;
  position: absolute;
  top: auto;
  top: initial;
  bottom: 5%;
  right: auto;
  right: initial;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  background: url(../images/common/pup/pc-close.png) no-repeat center center/contain;
  max-width: 152px;
  width: 25%;
  height: 34px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #cboxClose {
    display: none;
    background: url(../images/common/pup/sp-close.png) no-repeat center center/contain;
    max-width: 200px;
    width: 30%;
    bottom: 4%;
    height: auto;
  }
}
#cboxClose:hover {
  opacity: 0.6;
}

#cboxLoadedContent {
  border: none;
  background: transparent;
}

#cboxContent {
  margin-top: 0;
  background: transparent;
}

.contact-sec {
  padding-top: 140px;
  padding-top: 8.75rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

@media screen and (max-width: 768px) {
  .contact-sec {
    padding-top: 4.375rem;
    padding-bottom: 2.1875rem;
  }
}
.contactForm {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 100px;
  font-size: 17px;
  color: #000;
  margin-top: 26px;
  margin-top: 1.625rem;
}

@media screen and (max-width: 1000px) {
  .contactForm {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    margin-top: 0.8125rem;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    font-size: 14px;
  }
}
.contactForm__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .contactForm__text {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.check-item {
  margin-left: 20px;
  white-space: nowrap;
}

@media screen and (max-width: 1090px) {
  .check-item {
    display: block;
    width: 100%;
    margin-left: 10px;
    margin-top: 10px;
  }
  .check-item + .check-item {
    margin-top: 30px;
  }
}
.contactForm__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .contactForm__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 60px;
  }
}
.contactForm__item-textarea {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 280px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .contactForm__item-textarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 200px;
    margin-bottom: 80px;
  }
}
.contactForm__item:first-of-type {
  margin-bottom: 40px;
}

@media screen and (max-width: 1090px) {
  .contactForm__item:first-of-type {
    margin-bottom: 110px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__item:first-of-type {
    padding-top: 0;
  }
}
.contactForm__item dt,
.contactForm__item-textarea dt {
  width: 19%;
  margin-right: 2%;
}

@media screen and (max-width: 950px) {
  .contactForm__item dt,
  .contactForm__item-textarea dt {
    width: 32%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__item dt,
  .contactForm__item-textarea dt {
    width: 100%;
    text-align: left;
  }
}
.contactForm__item dd.contactForm__item--radio {
  width: 79%;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .contactForm__item dd.contactForm__item--radio {
    width: 100%;
    text-align: left;
    margin-top: 8px;
  }
}
.contactForm__item dd.contactForm__item--box {
  width: 79%;
  height: inherit;
  background-color: #fff;
  border-top: 1px solid #51535b;
  border-left: 1px solid #51535b;
  /* -webkit-margin-start: 0; */
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

@media screen and (max-width: 768px) {
  .contactForm__item dd.contactForm__item--box {
    width: 100%;
    margin-top: 8px;
  }
}
.contactForm__item-textareaBox {
  width: 79%;
  height: 280px;
  background-color: #fff;
  border-top: 1px solid #51535b;
  border-left: 1px solid #51535b;
  /* -webkit-margin-start: 0; */
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .contactForm__item-textareaBox {
    width: 100%;
    height: 200px;
  }
}
.contactForm__item-textarea > dt {
  padding-top: 30px;
}

.contactForm__item dd.form-select {
  width: 226px;
  background-color: #514467;
  height: inherit;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contactForm__item dd.form-select {
    margin-top: 8px;
  }
}
.form-select select {
  width: 100%;
  height: inherit;
  background-color: #003686;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 20px;
  cursor: pointer;
}

.contactForm__item dd.form-select::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 31px;
  background: url(../img/arrow-select.png) no-repeat center center/contain;
  z-index: 2;
}

.check-title {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
}

.check-title::before,
.check-title::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.check-title::before {
  background-color: rgba(81, 83, 91, 0.1);
  border: 0.5px solid #c6c7c9;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  left: 5px;
}

.check-title::after {
  background-color: #51535b;
  border-radius: 50%;
  opacity: 0;
  width: 8px;
  height: 8px;
  left: 13px;
}

input[type=radio]:checked + .check-title::before {
  background-color: #fff;
}

input[type=radio]:checked + .check-title::after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.contactForm__item dd [type=text],
.contactForm__item dd [type=tel],
.contactForm__item dd [type=email],
.contactForm__item-textareaBox textarea {
  width: 100%;
  height: inherit;
  font-size: 110%;
  display: block;
  border: none;
  padding-left: 20px;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  .contactForm__item dd [type=text],
  .contactForm__item dd [type=tel],
  .contactForm__item dd [type=email],
  .contactForm__item-textareaBox textarea {
    padding-left: 10px;
    font-size: 100%;
  }
}
.contactForm__btn {
  margin-top: 100px !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contactForm__btn ::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow.svg) no-repeat center center/contain;
  width: 5px;
  height: 8px;
}

@media screen and (max-width: 768px) {
  .contactForm__btn {
    margin-top: 20px !important;
  }
}
.contactForm__btn [type=submit] {
  width: 200px;
  height: 50px;
  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;
  border: none;
  background-color: #003686;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
}

.contactForm__btn {
  width: 200px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contactForm__btn::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 12px;
  background: transparent url(../img/arrow.svg) no-repeat center center/contain;
  z-index: 3;
}

.contactForm__btn [type=submit]:hover {
  opacity: 0.6s;
}

.contactForm__thanksIn {
  padding-left: 35px;
}

@media screen and (max-width: 1000px) {
  .contactForm__thanksIn {
    padding-left: 0;
  }
}
.contactForm__thanks-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contactForm__thanks-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 402px) {
  .contactForm__thanks-title {
    text-align: left;
  }
}
.contactForm__thanks-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (max-width: 768px) {
  .contactForm__thanks-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 402px) {
  .contactForm__thanks-text {
    text-align: left;
  }
}
.contactForm__thanks-btn {
  width: 200px;
  height: 50px;
  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;
  border: none;
  background-color: #514467;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contactForm__thanks-btn:hover {
  border: 1px solid #514467;
  background-color: #fff;
  color: #514467;
}

.contactIn {
  max-width: 1178px;
  max-width: 73.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .contactIn {
    max-width: 40rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contactIn__captitle {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 90px;
  margin-top: 5.625rem;
}

@media screen and (max-width: 768px) {
  .contactIn__captitle {
    font-size: 1.0625rem;
    margin-top: 2.8125rem;
  }
}
.contactIn__cap {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 768px) {
  .contactIn__cap {
    font-size: 0.8125rem;
    margin-top: 0.625rem;
  }
}
.thanks-page__header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.thanks-page__inner {
  margin: 0 auto;
  min-height: calc(100vh - 551px);
}
@media (max-width: 981px) {
  .thanks-page__inner {
    min-height: calc(100vh - 385px);
  }
}

.thanks-page__wrapper {
  position: relative;
  margin-top: 80px;
}
@media (min-width: 1100px) {
  .thanks-page__wrapper {
    min-height: 100vh;
    padding-bottom: 150px;
  }
}

.thanks-wrapper {
  text-align: center;
  padding-left: 0;
}
@media (max-width: 767px) {
  .thanks-wrapper {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .thanks__text {
    text-align: left;
  }
}

.thanks-page__footer {
  width: 100vw;
}
@media (min-width: 1100px) {
  .thanks-page__footer {
    position: absolute;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .contact-page__logo,
  .thanks-page__logo {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */