@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

.l-inner {
  width: 100%;
  max-width: 1130px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* accordion */
/* card */
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.card__img img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 1px solid #CDD2D7;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 13px 20px 25px;
}

.card__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.44;
  color: #02617B;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.card__text {
  font-size: 14px;
  line-height: 1.57;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
}

/* heading */
.heading {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 24px;
  }
}
.heading .gold {
  color: #B4821E;
}
.heading .blue {
  color: #02617B;
}

/* 更新用 */
/* wrapper */
.wrapper {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 40px 0;
  }
}

/* case */
/* faq */
/* flow */
.flow {
  background: #E9F6F5;
}

/* service */
.service {
  font-family: "Noto Sans JP", sans-serif;
}

/* support */
/* main-visual */
.main-visual {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-visual {
    margin-bottom: 60px;
  }
}

.main-visual-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 850px;
  max-width: 92%;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #F6ECD6;
  border-radius: 6px;
  border: 1px solid #E7DCC5;
  padding: 9px 10px 9px 92px;
}
@media screen and (max-width: 767px) {
  .main-visual-box {
    width: 370px;
    max-width: 98%;
    padding: 4px 5px 4px 35px;
    bottom: 5px;
  }
}
.main-visual-box::before {
  position: absolute;
  content: "";
  width: 56px;
  height: 54px;
  left: 17px;
  top: -3px;
  background: url(../images/icon/reviews-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .main-visual-box::before {
    width: 25px;
    height: 25px;
    left: 5px;
    top: -1px;
  }
}

.main-visual-box__text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .main-visual-box__text {
    font-size: 10px;
  }
}
.main-visual-box__text span {
  font-weight: 900;
  position: relative;
}
.main-visual-box__text span::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -4px;
}
@media screen and (max-width: 767px) {
  .main-visual-box__text span::before {
    width: 3px;
    height: 3px;
    top: -2px;
  }
}
.main-visual-box__text .orange {
  color: #EE7700;
}
.main-visual-box__text .orange::before {
  background: #EE7700;
}
.main-visual-box__text .blue {
  color: #00617B;
}
.main-visual-box__text .blue::before {
  background: #00617B;
}

.main-visual-box__link {
  display: block;
  width: 290px;
  min-width: 290px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 10, 20, .15);
          box-shadow: 0px 1px 4px rgba(0, 10, 20, .15);
  padding: 9px 25px;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .main-visual-box__link {
    width: 125px;
    min-width: 125px;
    font-size: 7px;
    border-radius: 6px;
    padding: 5px 10px;
  }
}
.main-visual-box__link::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background: url(../images/icon/arrow-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .main-visual-box__link::after {
    width: 5px;
    height: 12px;
    right: 8px;
  }
}
.main-visual-box__link:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* plan */
.inner.w-1200 {
  max-width: 1200px;
}

.price-plan__video-wrapper {
  width: 710px;
  max-width: 100%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .price-plan__video-wrapper {
    margin-bottom: 20px;
  }
}

.price-plan__video {
  width: 100%;
  padding-top: 56.338028169%;
  position: relative;
}
.price-plan__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .price-plan__video iframe {
    border-radius: 10px;
  }
}

.section-head__read.mb-5 {
  margin-bottom: 5px;
}

.price-plan__text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .price-plan__text {
    font-size: 20px;
  }
}

.price-plan {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .price-plan {
    margin-top: 30px;
  }
}

.plan-item {
  font-family: "Noto Sans JP", sans-serif;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .plan-item {
    padding: 15px;
  }
}

.plan-item-img {
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .plan-item-img {
    margin: 0;
  }
}

.plan-item-list dt {
  width: 16%;
}
.plan-item-list dd {
  width: calc(84% - 10px);
  font-weight: 900;
}

.plan-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .plan-item-text {
    display: block;
  }
}

.plan-item-price {
  font-size: 24px;
  font-weight: 900;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .plan-item-price {
    display: block;
    font-size: 18px;
    margin-right: 0;
  }
}
.plan-item-price span {
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  color: #EE7602;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .plan-item-price span {
    font-size: 36px;
  }
}

/* section-closing */
.section-closing.free {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .section-closing.free {
    padding: 30px 15px;
  }
}
.section-closing.free .section-closing__img {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .section-closing.free .section-closing__img {
    margin: 0 auto 10px;
  }
}
.section-closing.free .closing-item__img {
  margin-bottom: 15px;
}
.section-closing.woman {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .section-closing.woman {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-closing.woman .section-closing__img {
    margin: 0 auto 10px;
  }
}
/*# sourceMappingURL=update.css.map */
