@charset "UTF-8";
html {
  line-height: 1.5;
  font-size: 0.6944444444vw;
  scroll-padding-top: 70px; /* 固定ヘッダの高さ分 */
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

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

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

.section__wrapper {
  max-width: 1200px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .section__wrapper {
    padding-right: 3%;
    padding-left: 3%;
    padding-top: 0px;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

.text__red {
  color: #A80000;
}

h5 {
  color: #2a2a2a;
  font-size: clamp(14px, 1.6rem, 16px);
  font-family: "Noto Sans CJK JP", serif;
}

.text__italic {
  display: inline-block;
  font-style: italic;
}

.text__white {
  color: white;
}

.header {
  width: 100%;
  height: 70px;
  background-color: white;
  position: fixed;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header {
    height: 55px;
    padding-top: 5px;
  }
}
.header__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__wrapper {
    padding: 0 2%;
  }
}
.header__logo {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    height: 35px;
  }
 .header__wrapper .fixed-nav__btn.fixed-nav__btn--tel{
    display: inline-flex !important;    
    margin-left: 10px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
  }
}
.header__wrapper .fixed-nav__btn.fixed-nav__btn--tel {
  display: none;
}

.nv__cta__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .nv__cta__inner {
    display: none;
  }
}
.nv__cta--img {
  height: 70px;
  width: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .nv__cta--img {
    height: 50px;
  }
}
.nv__cta--hover {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}
.nv__cta--hover:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.fixed-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  background-color: #00388D;
}
.fixed-nav__time {
  background-color: #FFF53F;
  color: #2a2a2a;
  text-align: center;
  font-weight: bold;
  padding: 0.5rem 0;
  font-size: 1.4rem;
}
.fixed-nav__buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.8rem 0.5rem;
  background-color: #00388D;
  gap: 1rem;
}
.fixed-nav__btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 1rem 0;
  text-decoration: none;
  color: white;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
}
.fixed-nav__btn--line {
  background-color: #02C755;
}
.fixed-nav__btn--tel {
  background-color: #DA0000;
}
.fixed-nav__icon {
  width: 2.5rem;
  height: auto;
  margin-right: 1rem;
}

.footer {
  background-color: #00388D;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
}
.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-bottom: 10rem;
  }
}
.footer__copy {
  margin-bottom: 0.5rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer__links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}
.footer__links a:hover {
  text-decoration: underline;
}

.mv__top {
  width: 100%;
}
.mv__img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .mv__img {
    margin-top: 50px;
  }
}

.bg__secondview {
  background-image: url("../images/bg__secview__pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.secondview__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__wrapper.secondview__wrapper{
  padding-top: 0px;
}
.catch__sec1 {
  width: 78%;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .catch__sec1 {
    width: 100%;
  }
}

.secondview_time_top {
  background-color: #fff;   /* 背景を白に */
  padding: 30px;            /* 内側に余白 */
  text-align: center;       /* 文字を中央寄せ */
  margin-bottom: 20px;
  width: 100%;
}

.secondview_time_top p {
  font-size: 2.5rem;        /* 文字を大きく（例: 1.5倍） */
  font-weight: bold;        /* 太字に */
  color: #000;              /* 文字色を黒に（必要なら） */
  margin: 0;                /* デフォルト余白を消す */
}

@media screen and (max-width: 768px) {
.secondview_time_top {
  background-color: #fff;   /* 背景を白に */
  padding: 5px;            /* 内側に余白 */
  text-align: center;       /* 文字を中央寄せ */
  margin-bottom: 10px;
}

.secondview_time_top p {
  font-size: 1.5rem;        /* 文字を大きく（例: 1.5倍） */
  font-weight: bold;        /* 太字に */
  color: #000;              /* 文字色を黒に（必要なら） */
  margin: 0;                /* デフォルト余白を消す */
}
}

@media screen and (max-width: 768px) {
.secondview_time_top {
  background-color: #fff;   /* 背景を白に */
  padding: 5px;            /* 内側に余白 */
  text-align: center;       /* 文字を中央寄せ */
}

.secondview_time_top p {
  font-size: 1.5rem;        /* 文字を大きく（例: 1.5倍） */
  font-weight: bold;        /* 太字に */
  color: #000;              /* 文字色を黒に（必要なら） */
  margin: 0;                /* デフォルト余白を消す */
}
}



.secondview__time {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .secondview__time {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.secondview__time__inner {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .secondview__time__inner {
    width: 64%;
  }
}
.secondview__time__inner p {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .secondview__time__inner p {
    font-size: 1.9rem;
  }
}
.secondview__time__copy {
  padding: 1rem 2rem;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .secondview__time__copy {
    padding: 0;
  }
}
.secondview__time__icons {
  width: 12rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .secondview__time__icons {
    width: auto;
  }
}
.secondview__time__icons img {
  width: 11rem;
}
@media screen and (max-width: 768px) {
  .secondview__time__icons img {
    width: 6rem;
  }
}
.secondview__time__woman {
  width: 23rem;
}
@media screen and (max-width: 768px) {
  .secondview__time__woman {
    width: 14rem;
    margin-left: -10px;
  }
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cta__number {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DA0000;
  width: 51%;
  border-radius: 2rem;
  box-shadow: 0 10px 0px rgb(146, 0, 0);
  margin-top: 1rem;
  transition: all 0.1s ease;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .cta__number {
    width: 100%;
    box-shadow: 0 5px 0px rgb(146, 0, 0);
  }
}
.cta__number__icon {
  width: 10%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .cta__number__icon {
    width: 11%;
  }
}
.cta__number__text {
  font-size: 7rem;
  font-family: "DIN Alternate";
  color: white;
}
@media screen and (max-width: 768px) {
  .cta__number__text {
    font-size: 4rem;
  }
}
.cta__number:hover {
  box-shadow: 0 2px 0 #005dc1;
  transform: translateY(2px);
}
.cta__line {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #02C755;
  width: 51%;
  border-radius: 2rem;
  padding: 1rem 0;
  box-shadow: 0 10px 0px rgb(19, 115, 35);
  margin-top: 1rem;
  transition: all 0.1s ease;
}
@media screen and (max-width: 768px) {
  .cta__line {
    width: 100%;
    margin-top: 0.3rem;
    padding: 0.6rem 0;
    box-shadow: 0 5px 0px rgb(19, 115, 35);
  }
}
.cta__line__icon {
  width: 8%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .cta__line__icon {
    width: 11%;
  }
}
.cta__line__text {
  font-size: 4rem;
  color: white;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta__line__text {
    font-size: 3rem;
  }
}
.cta__line:hover {
  box-shadow: 0 2px 0 #005dc1;
  transform: translateY(2px);
}
.cta__details__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .cta__details__inner {
    flex-direction: row;
    margin-top: 0.5rem;
  }
}
.cta__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 51%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__details {
    flex-direction: column;
    width: 49%;
  }
}
.cta__detail {
  background-color: #00388D;
  font-size: 2.4rem;
  font-weight: bold;
  color: white;
  width: 33%;
  border-radius: 1rem;
  padding-bottom: 0.3rem;
}
@media screen and (max-width: 768px) {
  .cta__detail {
    font-size: 1.8rem;
    width: 90%;
    padding: 1px 15px;
    gap: 2rem;
    margin-top: 0.5rem;
  }
}
.cta__payment {
  width: 51%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cta__paymethod {
  width: 100%;
}
.cta__attention li {
  font-size: 1.2rem;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .cta__attention li {
    font-size: 1.4rem;
  }
}

#quotation {
  background-color: #00388D;
}

.quote__title {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .quote__title {
    width: 100%;
  }
}
.quote__title p {
  font-size: 1.6rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .quote__title p {
    text-align: center;
  }
}
.quote__titleimg {
  width: 100%;
  max-width: 1200px;
}

.form__wrapper {
  background-color: #f0f0f0;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 40px 20px;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
}
@media screen and (max-width: 1200px) {
  .form__wrapper {
    max-width: 800px;
  }
}
.form__inner {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 1200px) {
  .form__inner {
    margin: 2rem auto;
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .form__inner {
    margin: 0;
  }
}
.form__select, .form__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 400px;
  padding: 10px 20px;
  background-color: #ffffff;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .form__select, .form__input {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .form__select, .form__input {
    font-size: 1.2rem;
    width: 100%;
    min-width: 300px;
  }
}
.form__select::-moz-placeholder, .form__input::-moz-placeholder {
  color: #2a2a2a;
}
.form__select::placeholder, .form__input::placeholder {
  color: #2a2a2a;
}
.form__button {
  background-color: #DA0000;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 9999px;
  color: white;
  padding: 1rem 30rem;
  border: none;
  box-shadow: 0 6px 0 rgb(146, 0, 0);
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.1s ease;
}
.form__button:hover, .form__button:active {
  box-shadow: 0 2px 0 #005dc1;
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .form__button {
    padding: 1rem 7rem;
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.form__attention {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  text-align: left;
}
.form__attention a {
  border-bottom: solid 1px;
}

#trouble {
  background-color: #F0F0F0;
}

.trouble__wrapper {
  text-align: center;
}
.trouble__title {
  width: 90%;
  border-bottom: solid 6px #00388D;
  margin: 0 auto;
  text-align: start;
}
.trouble__titletext {
  font-size: 4.2rem;
  font-weight: bold;
  color: #00388D;
}
@media screen and (max-width: 768px) {
  .trouble__titletext {
    font-size: 3rem;
  }
}
.trouble__imgs {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .trouble__imgs {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
  }
}
.trouble-img {
  width: 27%;
}
@media screen and (max-width: 768px) {
  .trouble-img {
    width: 85%;
  }
}
.trouble__triangle {
  width: 7rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .trouble__triangle {
    margin-top: 1rem;
  }
}
.trouble__caution {
  width: 63%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .trouble__caution {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 77%;
  }
}

.bg__solution {
  background-image: url("../images/bg__solution.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.solution__wrapper {
  text-align: center;
}
.solution__woman {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .solution__woman {
    width: 90%;
    margin-top: 5rem;
  }
}
.solution__copy {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .solution__copy {
    width: 96%;
  }
}
.solution__caution {
  display: none;
}
@media screen and (max-width: 768px) {
  .solution__caution {
    display: block;
    color: white;
    font-size: 1.2rem;
    margin: 1rem auto;
    text-align: left;
  }
}

.cta__detailye {
  background-color: #FFF53F;
  color: #2a2a2a;
}

#price {
  background-color: #D4E5FF;
}

.price__title {
  width: 57%;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .price__title {
    width: 88%;
  }
}
.price__detail {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.price__detail img {
  width: 30%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .price__detail {
    flex-direction: column;
  }
  .price__detail img {
    width: 100%;
  }
}
.price__caution {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-top: 2rem;
}
.price__caution li {
  list-style: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .price__caution {
    width: 100%;
    max-width: none;
  }
}

.reasons__title {
  width: 66%;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .reasons__title {
    width: 92%;
  }
}
.reasons__outer {
  display: flex;
  max-width: 1200px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 5rem;
  margin: 0 auto;
  margin-top: 5rem;
}
.reasons__inner {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reasons__inner {
    flex-direction: column;
    width: 100%;
  }
}
.reasons__icon {
  width: 8rem;
  position: absolute;
  top: -3rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .reasons__icon {
    width: 10rem;
    top: -4rem;
  }
}
.reasons__pic {
  height: 267px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .reasons__pic {
    width: 100%;
    height: auto;
  }
}
.reasons__bgblue {
  background-color: #00388D;
  color: white;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .reasons__bgblue {
    width: 100%;
    height: auto;
    padding: 2rem 2rem;
    max-width: none;
    align-items: center;
  }
}
.reasons__bgblue span {
  font-size: 1.8rem;
  font-weight: 500;
}
.reasons__bgblue h3 {
  color: #FFF53F;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.reasons__bgblue p {
  font-size: 1.6rem;
}

#flow {
  background-image: url("../images/bg__flow.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.flow__title {
  color: white;
  text-align: center;
  width: 100%;
}
.flow__title h2 {
  font-size: 4.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .flow__title h2 {
    font-size: 3.2rem;
  }
}
.flow__title p {
  font-size: 1.8rem;
  margin-top: 1rem;
}
.flow__detail {
  width: 47%;
  background-color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .flow__detail {
    width: 95%;
    flex-direction: column;
  }
}
.flow__detail img {
  width: 26rem;
  height: auto;
}
.flow__text {
  display: flex;
  flex-direction: column;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .flow__text {
    padding: 0;
  }
}
.flow__text span {
  color: #00388D;
  font-family: "Anta", serif;
  font-size: 23px;
  background-color: #FFF53F;
  padding: 6px 5px 5px 5px;
  border-radius: 9999px;
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__text span {
    width: 40%;
    margin-top: 1rem;
  }
}
.flow__text h3 {
  color: #00388D;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0.5rem 0;
}
.flow__text p {
  font-size: 1.6rem;
}
.flow__triangle {
  width: 72px;
  display: block;
  margin: -1px auto;
}

#thirdcta {
  background-image: url("../images/bg__secview__pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#faq {
  background-color: #F3F3F3;
}

.faq {
  background-color: #f8f8f8;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq__title h2 {
  font-size: 4.2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq__title h2 {
    font-size: 3.2rem;
  }
}
.faq__inner {
  width: 81%;
  background-color: white;
  padding: 3rem 7rem;
  margin: 0 auto;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    width: 100%;
    padding: 2rem;
  }
}
.faq__textbold {
  font-weight: bold;
}
.faq__item {
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__item .faq__q,
.faq__item .faq__a {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.faq__item .faq__label--q {
  background-color: #a40000;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.2em 0.6em;
  border-radius: 50%;
  font-family: "Anta", serif;
}
.faq__item .faq__label--a {
  background-color: #004085;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.2em 0.6em;
  border-radius: 50%;
  font-family: "Anta", serif;
}
.faq__item p {
  margin: 0;
  font-size: 1.6rem;
}

.about__title {
  font-size: 4.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 3.2rem;
  }
}

.company-info {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 auto;
}
.company-info th {
  background-color: gray;
  color: #fff;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
}
.company-info td {
  border: 1px solid #ddd;
  padding: 1rem;
  vertical-align: top;
}
.company-info a {
  color: #007bff;
  text-decoration: none;
}
.company-info a:hover {
  text-decoration: underline;
}

.privacy {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.privacy h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}
.privacy__box {
  padding: 0.5rem 1.5rem;
  height: 150px;
  overflow-y: auto;
  background-color: #fff;
  line-height: 1.6;
  font-size: 1rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.privacy__box h3 {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 2px solid gray;
  margin-bottom: 5px;
}
.privacy__box h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
}
.privacy__box ol {
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.privacy__margin {
  margin-top: 1rem;
}

.policy__wrapper {
  display: block;
  padding-top: 100px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .policy__wrapper {
    padding-top: 30px;
  }
}
.policy__wrapper h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 30px 0 20px;
  padding: 15px 0 15px;
  font-weight: bold;
  border-bottom: 3px solid #ccc;
  border-top: 3px solid #ccc;
}
@media screen and (max-width: 768px) {
  .policy__wrapper h1 {
    font-size: 2rem;
    padding: 10px 0 10px;
  }
}
.policy__wrapper h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .policy__wrapper h2 {
    font-size: 1.6rem;
  }
}
.policy__wrapper p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .policy__wrapper p {
    font-size: 1.4rem;
  }
}
.policy__wrapper ol {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .policy__wrapper ol {
    font-size: 1.4rem;
  }
}
.policy__wrapper li {
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .policy__wrapper li {
    font-size: 1.4rem;
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.shake {
  animation: shake 0.5s ease-in-out;
}

#thanks {
  background-image: url("../images/bg__thanks.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.thanks__wrapper {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .thanks__wrapper {
    padding-top: 30px;
  }
}
.thanks__result {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
  align-items: flex-end;
}
.thanks__resultbg {
  background-color: #F0F0F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .thanks__resultbg {
    text-align: center;
  }
}
.thanks__heading {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .thanks__heading {
    font-size: 2rem;
  }
}
.thanks__tabs {
  display: flex;
}
@media screen and (max-width: 768px) {
  .thanks__tabs {
    flex-direction: column;
    align-items: center;
  }
}
.thanks__service {
  background-color: #00388D;
  font-size: 2rem;
  color: white;
  padding: 0.5rem 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .thanks__service {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
  }
}
.thanks__contents {
  background-color: white;
  font-size: 2rem;
  padding: 5px 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .thanks__contents {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
  }
}
.thanks__price {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .thanks__price {
    margin-top: 2rem;
  }
}
.thanks__number {
  font-family: "Anta";
  font-weight: bold;
  font-size: 4.2rem;
  color: #DA0000;
}
.thanks__notes {
  color: white;
  font-size: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .thanks__notes {
    font-size: 1.4rem;
  }
}
.thanks__contactbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .thanks__contactbox {
    margin-top: 3rem;
  }
}
.thanks__contactbox p {
  border: solid 2px white;
  padding: 3rem;
  color: white;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .thanks__contactbox p {
    font-size: 1.6rem;
    padding: 1rem;
  }
}
.thanks__illust--woman {
  width: 10%;
  height: auto;
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .thanks__illust--woman {
    width: 20%;
    margin-right: 1rem;
  }
}
.thanks__btn__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.thanks__btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: gray;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.thanks__btn:hover {
  background-color: lightgray;
}
@media screen and (max-width: 768px) {
  .thanks__btn {
    margin-bottom: 0;
  }
}

#thanks__cta {
  background-color: #D4E5FF;
}

.thanks__copy {
  width: 57%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .thanks__copy {
    width: 100%;
  }
}
.thanks__free {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.thanks__free h2 {
  background-color: white;
  padding: 3rem;
  font-size: 2.4rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .thanks__free h2 {
    font-size: 1.8rem;
    padding: 2rem;
  }
}
.thanks__illust--man {
  width: 16%;
  height: auto;
}/*# sourceMappingURL=style.css.map */