@charset "UTF-8";
/*********************************************************
base
*********************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: #26303b;
  font-family: "Kokoro", serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-inline: auto;
  max-width: 2000px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.dib {
  display: inline-block;
}

/*********************************************************
header
*********************************************************/
.header {
  background: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    padding-bottom: 0;
  }
}
.header__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .header__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.header__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .header__top {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 25px;
  }
}
.header__logo img {
  vertical-align: bottom;
  width: 120px;
}
.header__info {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 30px 0 auto;
}
.header__info-text, .header__info-person {
  font-size: 12px;
  font-weight: bold;
}
.header__phone {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.header__phone-icon {
  background: #ffa12a;
  margin-right: 10px;
  padding: 2px 5px 7px;
}
.header__phone-icon img {
  vertical-align: bottom;
  width: 20px;
}
.header__phone-number {
  color: #ffa12a;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.header__contact-link {
  display: inline-block;
  background: #ffa12a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
.header__contact-link:hover {
  opacity: 0.8;
}
.header__contact-link img {
  margin-right: 10px;
  vertical-align: bottom;
  width: 20px;
}
.header__toggle {
  display: none;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
}
.header__toggle::before, .header__toggle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
  transition: 0.3s;
}
.header__toggle::before {
  top: 6px;
}
.header__toggle::after {
  bottom: 6px;
}
.header__toggle--active::before {
  transform: rotate(45deg);
  top: auto;
}
.header__toggle--active::after {
  transform: rotate(-45deg);
  bottom: auto;
}
.header__nav {
  margin-top: 20px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.header__nav-list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.header__nav-link {
  position: relative;
  text-decoration: none;
  color: #333;
  text-align: center;
  display: block;
  font-weight: bold;
}
@media (min-width: 769px) {
  .header__nav-link {
    padding-bottom: 2px;
  }
}
@media (min-width: 769px) {
  .header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #ffa12a;
    transition: 0.3s;
  }
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-sub {
  display: block;
  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .header {
    padding-left: 0;
    padding-right: 0;
  }
  .header__inner {
    padding-left: 0;
    padding-right: 0;
  }
  .header__top {
    border-bottom: 1px solid #cdcdcd;
    justify-content: space-between;
    padding: 0 2% 10px;
  }
  .header__toggle {
    display: block;
    order: 1;
  }
  .header__contact, .header__info {
    display: none;
  }
  .header__nav {
    margin-top: 0;
    max-height: 0;
    overflow: auto;
    height: calc(100vh - var(--header-height));
  }
  .header__nav--open {
    margin-top: 10px;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 10px;
  }
  .header__nav-item {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 15px;
  }
  .header__contact-link {
    width: 100%;
    text-align: center;
  }
}
/*********************************************************
footer
*********************************************************/
.footer {
  position: relative;
  padding: 20px 0;
  font-size: 14px;
}
.footer__top {
  position: relative;
}
.footer__badge {
  display: none;
}
@media (min-width: 1025px) {
  .footer__badge {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 30px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 5;
  }
  .footer__badge.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 2001px) {
  .footer__badge {
    left: 50%;
    margin-left: -980px;
  }
}
.footer__top-btn {
  display: block;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  line-height: 1.2;
  transition: background 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
  z-index: 5;
}
.footer__top-btn:hover {
  background: #464646;
}
.footer__top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 2001px) {
  .footer__top-btn {
    right: 50%;
    margin-right: -990px;
  }
}
.footer__top-btn img {
  display: block;
  margin-inline: auto;
  width: 12px;
}
.footer__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}
@media (max-width: 1200px) {
  .footer__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__logo img {
  width: 150px;
}
.footer__copyright {
  font-size: 12px;
}
@media (max-width: 600px) {
  .footer__copyright {
    margin-top: 10px;
  }
}
.footer__contact {
  display: none;
}
@media (max-width: 1024px) {
  .footer__contact {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 50%;
    opacity: 0;
    translate: -50% 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
    max-width: 500px;
    z-index: 2;
  }
  .footer__contact.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .footer__contact .contact-banner__item {
    width: 49.5%;
  }
  .footer__contact .contact-banner__item:first-child a {
    background: #ffa12a;
    color: #fff;
  }
  .footer__contact .contact-banner__item:last-child a {
    background: #fff;
    color: #ffa12a;
  }
  .footer__contact .contact-banner__item a {
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 8px 12px;
    text-decoration: none;
  }
}
@media (max-width: 1024px) and (max-width: 400px) {
  .footer__contact .contact-banner__item a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) and (max-width: 350px) {
  .footer__contact .contact-banner__item a {
    font-size: 3.5vw;
    padding: 5px 7px;
  }
}
@media (max-width: 1024px) {
  .footer__contact .contact-banner__item a img {
    margin-top: 3px;
    margin-right: 10px;
    vertical-align: bottom;
    width: 20px;
  }
}
@media (max-width: 1024px) and (max-width: 350px) {
  .footer__contact .contact-banner__item a img {
    margin-right: 5px;
    width: 15px;
  }
}
@media (max-width: 1024px) and (max-width: 250px) {
  .footer__contact .contact-banner__item a img {
    display: none;
  }
}

.badge {
  width: 200px;
  height: 200px;
}
.badge a:hover {
  opacity: 0.8;
}
.badge__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}
.badge__text-top {
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding: 0 4px;
}
.badge__text-top::before, .badge__text-top::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
  display: inline-block;
}
.badge__text-top::before {
  transform: rotate(45deg);
  margin-right: 4px;
}
.badge__text-top::after {
  transform: rotate(-45deg);
  margin-left: 4px;
}
.badge__ribbon {
  position: absolute;
  top: 5px;
  left: -20px;
  transform: rotate(-15deg);
  text-align: center;
  width: 170px;
  border-radius: 2px;
  z-index: 2;
}
.badge__text-main {
  background: linear-gradient(to left, #ffa12a, #d66a00);
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 10px 20px;
}
.badge__circle {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 180px;
  height: 180px;
  border: 3px solid #d66a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #333;
  background: #fff;
}
.badge__circle p {
  font-weight: bold;
  line-height: 1.5;
}

/*********************************************************
main
*********************************************************/
/*********************************************************
mv
*********************************************************/
.mv {
  position: relative;
}
.mv__link {
  position: absolute;
  bottom: 28.8%;
  left: 7.3%;
  width: 18%;
  height: 5.4vw;
}
@media (max-width: 768px) {
  .mv__link {
    bottom: 5.5%;
    left: 27%;
    width: 46%;
    height: 15vw;
  }
}

/*********************************************************
corp-repair
*********************************************************/
.corp-repair {
  background: #def1f6;
}
.corp-repair__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  margin-inline: auto;
  padding: 100px 50px;
}
@media (max-width: 480px) {
  .corp-repair__inner {
    padding: 50px 20px;
  }
}
.corp-repair__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 600px) {
  .corp-repair__title {
    font-size: 24px;
    font-size: 6vw;
  }
}
.corp-repair__text {
  font-size: 18px;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .corp-repair__text {
    font-size: 16px;
  }
}
.corp-repair__image {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .corp-repair__image {
    margin-top: 30px;
  }
}
.corp-repair__image img {
  width: 200px;
}

/*********************************************************
service
*********************************************************/
.service {
  position: relative;
}
.service::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #cfe4f5;
  border-width: 170px 0 0 17.8vw;
  border-style: solid;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .service::after {
    border-width: 18.6vw 0 0 26.6vw;
  }
}
.service__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  padding: 100px 50px;
}
@media (max-width: 480px) {
  .service__inner {
    padding: 50px 20px;
  }
}
.service__title {
  color: #2d597a;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 600px) {
  .service__title {
    font-size: 24px;
    font-size: 5.8vw;
  }
}
.service__title > * {
  font-weight: bold;
}
.service__title-lead {
  display: block;
  font-size: 80%;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.service__title-lead-text {
  -webkit-text-emphasis-style: circle;
          text-emphasis-style: circle;
  -webkit-text-emphasis-color: #2d597a;
          text-emphasis-color: #2d597a;
}
.service__title-strong {
  font-size: 140%;
  letter-spacing: -0.05em;
}
.service__list-wrap {
  margin-top: 50px;
}
.service__list {
  display: flex;
}
@media (min-width: 769px) {
  .service__list {
    justify-content: center;
  }
}
.service__item {
  text-align: center;
  width: 30%;
}
.service__item-detail {
  margin-top: 15px;
}
.service__item-title {
  font-weight: bold;
}
.service__item-link {
  border-bottom: 1px solid;
  color: #00c4ff;
  font-size: 14px;
  margin-top: 10px;
  padding-bottom: 3px;
}
.service__item-link:hover {
  border: none;
  opacity: 0.8;
}
.service__item-link::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 9px;
  width: 9px;
  transform: rotate(45deg);
}
.service__item-img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
}
.service__item-content {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
.service__item-content-inner {
  background: #fff;
  padding: 50px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: left;
  font-size: 14px;
  line-height: 2;
}
.service__item-content.is-active {
  opacity: 1;
  visibility: visible;
}
.service__item-content.is-active .service__item-content-inner {
  transform: translateY(0);
}
.service__item-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.service__item-close::before, .service__item-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #333;
  transform-origin: center;
}
.service__item-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.service__item-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 769px) {
  .service .swiper-container {
    overflow: visible;
  }
  .service .swiper-wrapper {
    flex-wrap: wrap;
  }
  .service .swiper-slide {
    width: 30%;
  }
  .service .swiper-button-prev,
  .service .swiper-button-next,
  .service .swiper-pagination {
    display: none;
  }
}
/*********************************************************
reasons
*********************************************************/
.reasons {
  padding: 0 0 100px;
  position: relative;
}
.reasons::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #f1fafd;
  border-width: 0 81.6vw 570px 0;
  border-style: solid;
  right: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .reasons::before {
    border-width: 0 73.4vw 36vw 0;
  }
}
@media (max-width: 480px) {
  .reasons {
    padding-bottom: 50px;
  }
}
.reasons__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.reasons__head {
  display: flex;
}
.reasons__head-img {
  margin-left: 30px;
  margin-right: 50px;
}
@media (max-width: 980px) {
  .reasons__head-img {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .reasons__head-img {
    margin-right: 30px;
  }
}
@media (max-width: 480px) {
  .reasons__head-img {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.reasons__title {
  align-self: center;
  color: #2d597a;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .reasons__title {
    font-size: 36px;
    font-size: 6.2vw;
  }
}
.reasons__title-num {
  font-size: 150%;
  text-shadow: 1px 1px 5px #ffa12a;
}
.reasons__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reasons__list .reasons__item {
  margin-top: 30px;
  width: 48%;
}
@media (max-width: 600px) {
  .reasons__list .reasons__item {
    width: 100%;
  }
}
.reasons__item {
  position: relative;
  z-index: 0;
}
.reasons__item::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.3;
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  .reasons__item::before {
    opacity: 0.2;
  }
}
.reasons__item.-item1::before {
  background-image: url(../img/reason3.webp);
  bottom: 0;
  right: 50%;
  width: 120px;
  height: 90px;
}
@media (min-width: 769px) {
  .reasons__item.-item1::before {
    margin-right: -350px;
  }
}
@media (max-width: 768px) {
  .reasons__item.-item1::before {
    right: 0;
  }
}
.reasons__item.-item2::before {
  background-image: url(../img/reason2.webp);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  translate: -50%;
  width: 80px;
  height: 80px;
}
.reasons__item.-item3::before {
  background-image: url(../img/reason1.webp);
  opacity: 0.3;
  bottom: -30px;
  right: 10%;
  width: 130px;
  height: 90px;
}
.reasons__item.-tac {
  text-align: center;
}
.reasons__item-num {
  background: #2d597a;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 5px;
  margin-right: 10px;
  padding-bottom: 2px;
  width: 25px;
  min-width: 25px;
  height: 25px;
}
.reasons__item-title {
  color: #2d597a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 360px) {
  .reasons__item-title {
    font-size: 16px;
  }
}
.reasons__item-text {
  font-weight: 600;
  margin-top: 15px;
}
@media (max-width: 480px) {
  .reasons__item-text {
    font-size: 14px;
  }
}
.reasons__item-text a {
  color: #00c4ff;
  text-decoration: underline;
}
.reasons__item-text a:hover {
  text-decoration: none;
}
.reasons__item-text.-dib {
  display: inline-block;
  text-align: left;
}

.balloon {
  position: relative;
  padding: 3em 5em;
  border: 3px solid #2d597a;
}
@media (max-width: 768px) {
  .balloon {
    padding: 3em;
  }
}
@media (max-width: 480px) {
  .balloon {
    padding: 30px 10px;
  }
}
.balloon::before, .balloon::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
}
.balloon::before {
  top: -40px;
  border-style: solid;
  border-color: transparent transparent #2d597a transparent;
  border-width: 0 45px 40px 0;
}
.balloon::after {
  top: -34px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0 39px 35px 0;
  z-index: 10;
}

/*********************************************************
price
*********************************************************/
.price {
  padding-bottom: 100px;
  position: relative;
}
.price::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #cfe4f5;
  border-width: 120px 0 0 10vw;
  border-style: solid;
  left: 45%;
  top: -40px;
  rotate: 25deg;
  z-index: -1;
}
@media (max-width: 1024px) {
  .price::before {
    border-width: 18.6vw 0 0 26.6vw;
    left: 40%;
    top: 0;
  }
}
.price::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #cfe4f5;
  border-width: 170px 0 0 17.8vw;
  border-style: solid;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .price::after {
    border-width: 18.6vw 0 0 26.6vw;
  }
}
@media (max-width: 480px) {
  .price {
    padding-bottom: 50px;
  }
}
.price__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .price__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.price__title {
  color: #2d597a;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
@media (max-width: 600px) {
  .price__title {
    font-size: 24px;
    font-size: 8vw;
  }
}
.price__title::before {
  background-image: url(../img/price_title.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin-top: -10px;
  margin-left: -5.8em;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
}
@media (max-width: 600px) {
  .price__title::before {
    width: 8%;
  }
}
.price__subtitle {
  background: #3e3e3e;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-inline: auto;
  max-width: 150px;
  padding: 0 35px 5px;
  text-align: center;
}
.price__note {
  color: #2d597a;
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
}
.price__tables {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .price__tables {
    flex-direction: column;
  }
}
.price__comparison-title {
  color: #808080;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 10px;
  text-align: center;
}
@media (min-width: 1201px) {
  .price__comparison-title {
    margin-bottom: 15px;
  }
}
.price__block {
  width: 49%;
}
@media (max-width: 1200px) {
  .price__block {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .price__block:not(:first-child) {
    margin-top: 30px;
  }
}
.price__block.-ringoya {
  background: #ffa12a;
  border: 4px solid #ffa12a;
}
.price__block-title {
  margin-bottom: 10px;
  padding-top: 10px;
  text-align: center;
}
.price__block-img {
  width: 125px;
}
@media (max-width: 600px) {
  .price__wrapper {
    overflow: auto;
  }
  .price__wrapper::before {
    content: "→スクロールできます";
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    padding: 5px;
  }
}
.price__table {
  padding: 10px;
  width: 100%;
}
@media (max-width: 600px) {
  .price__table {
    width: 700px;
  }
}
.price__table th,
.price__table td {
  border: 1px solid #000;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .price__table th,
  .price__table td {
    white-space: nowrap;
  }
}
.price__table th {
  background: #eee;
  font-size: 14px;
  font-weight: bold;
}
.price__table td {
  background: #fff;
  font-size: 13px;
}
.price__table td strong {
  color: #2d597a;
  font-size: 18px;
  font-weight: bold;
}
.price__table-th {
  min-width: 5em;
}
.price__table-model span {
  font-size: 12px;
}
.price__notes {
  background: #fff;
  padding: 5px;
}
.price__note-item {
  font-size: 12px;
  margin-left: 1em;
  text-indent: -1em;
}
.price__section {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .price__section {
    margin-top: 30px;
  }
}

@media (max-width: 1024px) {
  .price__subtitle {
    border-radius: 25px;
    position: relative;
    padding: 5px 15px;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
  }
  .price__circle {
    background: #fff;
    border-radius: 50%;
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
  }
  .price__circle::before, .price__circle::after {
    background: #000;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .price__circle::before {
    width: 12px;
    height: 1px;
  }
  .price__circle::after {
    width: 1px;
    height: 12px;
  }
  .is-open .price__circle::after {
    height: 0;
  }
  .price__content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .price__content.is-open {
    opacity: 1;
  }
}
@media (min-width: 1025px) {
  .price__content {
    max-height: none;
    opacity: 1;
  }
}
/*********************************************************
form
*********************************************************/
.form {
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.form::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-color: transparent #f1fafd;
  border-width: 0 81.6vw 570px 0;
  border-style: solid;
  right: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .form::before {
    border-width: 0 73.4vw 36vw 0;
  }
}
.form__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .form__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.form__title {
  color: #2d597a;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 600px) {
  .form__title {
    font-size: 24px;
    font-size: 8vw;
  }
}
@media (max-width: 800px) {
  .form__wrapper {
    overflow: auto;
  }
}
.form__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 800px) {
  .form__steps {
    width: 900px;
  }
}
.form__steps::before {
  background: #778997;
  content: "";
  position: absolute;
  top: 25px;
  left: 8%;
  width: 85%;
  height: 2px;
  z-index: -1;
}
.form__step {
  text-align: center;
}
.form__step-number {
  background: #778997;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  margin-inline: auto;
  padding-bottom: 3px;
  width: 50px;
  height: 50px;
}
.form__step-content {
  margin-top: 15px;
}
.form__step-title {
  font-size: 18px;
  font-weight: bold;
}
.form__step-text {
  font-size: 14px;
  margin-top: 10px;
}
.form__note {
  color: #f00;
  font-size: 14px;
  margin-top: 100px;
  text-align: center;
}
.form__table {
  margin-inline: auto;
  margin-top: 50px;
}
.form__table th,
.form__table td {
  padding: 10px;
  vertical-align: top;
}
.form__table th {
  font-weight: bold;
  text-align: left;
}
.form__table input,
.form__table textarea {
  border: 1px solid #000;
  padding: 10px;
  width: 100%;
}
@media (max-width: 480px) {
  .form__table tr,
  .form__table th,
  .form__table td {
    display: block;
  }
}
.form__required {
  padding-right: 5em !important;
  position: relative;
}
.form__required::after {
  color: #f00;
  content: "※";
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 15px;
  translate: 0 -50%;
}
.form__btn {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  margin-top: 50px;
  max-width: 500px;
}
.form input[type=submit],
.form input[type=reset] {
  border: 1px solid #333;
  cursor: pointer;
  padding: 10px;
  width: 40%;
  max-width: 250px;
}
@media (max-width: 480px) {
  .form input[type=submit],
  .form input[type=reset] {
    width: 48%;
  }
}
.form input[type=submit] {
  background: #ffa12a;
  color: #fff;
  font-weight: bold;
}
.form input[type=submit]:hover {
  opacity: 0.8;
}

/*********************************************************
partner-links
*********************************************************/
.partner-links {
  background: linear-gradient(to right, #1b57a5, #69d2e9);
  padding: 50px 0;
}
.partner-links__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
@media (min-width: 601px) {
  .partner-links__inner {
    margin-inline: auto;
    max-width: 700px;
  }
}
@media (max-width: 600px) {
  .partner-links__inner {
    flex-direction: column;
  }
}
.partner-links__item {
  width: 48%;
}
@media (max-width: 600px) {
  .partner-links__item {
    margin-inline: auto;
    width: 98%;
  }
  .partner-links__item:last-child {
    margin-top: 15px;
  }
}
.partner-links__item a {
  background: #fff;
  border-radius: 5px;
  display: block;
  font-weight: bold;
  margin: 0 auto;
  max-width: 250px;
  padding: 20px;
  position: relative;
  transition: 0.3s;
}
.partner-links__item a:hover {
  background: #ccf4ff;
}
.partner-links__item a::before, .partner-links__item a::after {
  content: "";
  position: absolute;
}
.partner-links__item a::before {
  background: #5aacc3;
  border-radius: 50%;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  width: 25px;
  height: 25px;
}
.partner-links__item a::after {
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 8px;
  border-style: solid;
  height: 0;
  width: 0;
  top: 50%;
  right: 22px;
  translate: 0 -50%;
}

/*********************************************************
サンクスページ
*********************************************************/
.thanks__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  padding-top: 50px;
}
@media (max-width: 1200px) {
  .thanks__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.thanks__title {
  font-size: 24px;
  font-weight: bold;
}
.thanks__text {
  margin-top: 50px;
}
.thanks__note {
  margin-top: 15px;
}
.thanks__contact {
  margin-top: 15px;
}
.thanks__contact a {
  display: block;
  font-size: 14px;
}
.thanks__phone {
  font-size: 14px;
}
.thanks__home {
  color: #00c4ff;
  margin-top: 15px;
  text-align: center;
  text-decoration: underline;
}
.thanks__home:hover {
  text-decoration: none;
}