@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

img {
  width: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__area {
  position: fixed;
  top: 0;
  z-index: 10;
  background: #ffffff;
  width: 100%;
}
.header__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1180px;
  }
}
.header__body {
  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;
  height: 42.5px;
}
@media screen and (min-width: 768px) {
  .header__body {
    height: 95px;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__left--logo {
  width: 88.5px;
}
@media screen and (min-width: 768px) {
  .header__left--logo {
    width: 177px;
  }
}
.header__left--text {
  width: 75.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__left--text {
    width: 151px;
  }
}
.nav-area {
  position: fixed;
  top: 42.5px;
  padding: 30px 10%;
  width: 100%;
  background: #e3495f;
  z-index: 5656565166841534;
  height: calc(100% - 42.5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 768px) {
  .nav-area {
    height: calc(100% - 95px);
    top: 95px;
  }
}
.nav-area.is-active {
  visibility: visible;
  opacity: 1;
}
.nav-area__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1180px;
  margin-inline: auto;
}
.nav-area__item:last-child {
  padding-bottom: 140px;
}
.nav-area__link {
  display: block;
  padding: 15px 0;
  color: #fff;
  border-bottom: solid 1px #e86679;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .nav-area__link {
    font-size: 16px;
  }
}
.nav-area__link span {
  margin-right: 15px;
}

.nav-attention {
  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;
  width: 100%;
  margin-top: 30px;
  gap: 30px;
}
.nav-attention .separate {
  height: 40px;
  background: #ffffff;
  color: #ffffff;
  display: inline-block;
  border-left: 1px solid #ffffff;
}
.nav-attention--btn {
  color: #ffffff;
  font-size: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 250px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .nav-attention--btn {
    font-size: 18px;
  }
}

.hamburger__btn.is-active .hamburger__line--top {
  top: 50%;
  rotate: 45deg;
}
.hamburger__btn.is-active .hamburger__line--middle {
  opacity: 0;
}
.hamburger__btn.is-active .hamburger__line--bottom {
  top: 50%;
  rotate: -45deg;
}
.hamburger__lines {
  width: 25px;
  height: 15px;
  position: relative;
}
.hamburger__line {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #48142a;
}
.hamburger__line--top {
  top: 0;
}
.hamburger__line--middle {
  top: 50%;
}
.hamburger__line--bottom {
  top: 100%;
}

.top {
  margin: 0 auto;
}

.cta__area {
  width: 100%;
  background: #fff100;
}
.cta__area--nav {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.cta__inner {
  width: 90%;
  margin: 0 auto;
}
.cta__body {
  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;
  padding-block: 15px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .cta__body {
    gap: 20px;
    padding-block: 30px;
  }
}
.cta__text {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 22px;
  }
}
.cta__text::before {
  content: "";
  position: absolute;
  border-left: 1px solid #000;
  top: 5px;
  left: 0;
  width: 12px;
  height: 15px;
  rotate: -30deg;
  translate: 0% -50%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
@media screen and (min-width: 768px) {
  .cta__text::before {
    top: 10px;
    left: 0;
    width: 24px;
    height: 30px;
  }
}
.cta__text::after {
  content: "";
  position: absolute;
  border-right: 1px solid #000;
  top: 5px;
  right: 0;
  width: 12px;
  height: 15px;
  rotate: 30deg;
  translate: 0% -50%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
@media screen and (min-width: 768px) {
  .cta__text::after {
    width: 24px;
    height: 30px;
    top: 10px;
  }
}
.cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12.5px;
}
.cta__button--left {
  max-width: 112.5px;
}
@media screen and (min-width: 768px) {
  .cta__button--left {
    max-width: 225px;
  }
}
.cta__button--right {
  max-width: 134px;
}
@media screen and (min-width: 768px) {
  .cta__button--right {
    max-width: 268px;
  }
}
.banner__area {
  margin-top: 45px;
}
.banner__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .banner__inner {
    max-width: 1180px;
  }
}
.banner a {
  width: 100%;
  display: block;
}

.recommend__area {
  margin-top: 45px;
}
.recommend__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recommend__inner {
    max-width: 1180px;
  }
}
.recommend__disc {
  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;
  margin-top: 5px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .recommend__disc {
    margin-top: 30px;
    gap: 30px;
  }
}
.recommend__img {
  max-width: 322px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recommend__img {
    max-width: 644px;
  }
}
.recommend__text {
  font-size: 13px;
  line-height: 1.9230769231;
}
@media screen and (min-width: 768px) {
  .recommend__text {
    font-size: 18px;
  }
}
.recommend__r {
  max-width: 294.5px;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .recommend__r {
    max-width: 589px;
  }
}

.example__area {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .example__area {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .example__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.example__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .example__wrap {
    width: 50%;
    background: #ffffff;
    padding: 20px 20px;
  }
}
.example__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .example__inner {
    max-width: 1180px;
  }
}
.example__card {
  margin: 0 auto;
  padding: 30px 6.235% 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .example__card {
    padding: 60px 12.47% 50px;
  }
}
.example__card--grey {
  border-radius: 12.5px;
  background: #ececec;
}
.example__card--pink {
  background: #fff0f2;
}
.example__bubble {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 93.5px;
}
@media screen and (min-width: 768px) {
  .example__bubble {
    width: 187px;
  }
}
.example__title {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 10px 5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(40%, #ffb9c3));
  background: -webkit-linear-gradient(transparent 50%, #ffb9c3 40%);
  background: linear-gradient(transparent 50%, #ffb9c3 40%);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .example__title {
    font-size: 24px;
  }
}
.example__text {
  font-size: 13px;
  line-height: 2;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .example__text {
    font-size: 16px;
  }
}
.example__text--lead {
  font-weight: 500;
  margin-top: unset;
  font-size: 11.5px;
  line-height: 1.4782608696;
}
@media screen and (min-width: 768px) {
  .example__text--lead {
    font-size: 18px;
  }
}
.example__text--pink {
  color: #e74a60;
  font-weight: 500;
  display: inline-block;
}
.example__text--large {
  font-size: 15px;
  font-weight: 500;
  display: block;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .example__text--large {
    font-size: 28px;
  }
}
.example__text--xlarge {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  display: block;
}
@media screen and (min-width: 768px) {
  .example__text--xlarge {
    font-size: 30px;
  }
}
.example__graph {
  margin-top: 1em;
  max-width: 600px;
  margin: 10px auto 0;
}
.example__fee {
  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;
  gap: 10px;
  margin-top: 20px;
}
.example__zero {
  width: 92px;
}
@media screen and (min-width: 768px) {
  .example__calc {
    width: 50%;
  }
}

.point__area {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .point__area {
    margin-top: 90px;
  }
}
.point__inner {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .point__inner {
    max-width: 1180px;
  }
}
.point__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.point__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point__title {
    font-size: 26px;
  }
}
.point__title--red {
  display: block;
  margin-top: 6px;
  color: #e74a60;
  font-weight: 700;
  font-size: 17.5px;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .point__title--red {
    font-size: 32px;
  }
}
.point__title--xlarge {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .point__title--xlarge {
    font-size: 32px;
  }
}
.point__title--large {
  font-size: 16.25px;
}
@media screen and (min-width: 768px) {
  .point__title--large {
    font-size: 24px;
  }
}
.point__title--midium {
  font-weight: 500;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .point__title--midium {
    font-size: 18px;
  }
}
.point__r {
  position: absolute;
  top: 50%;
  right: -36%;
  translate: -50% -50%;
  width: 43px;
}
@media screen and (min-width: 768px) {
  .point__r {
    right: -100px;
    width: 60px;
  }
}

.card__inner {
  max-width: 345px;
  margin: 0 auto;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .card__inner {
    max-width: 1180px;
    width: 90%;
  }
}
.card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .card__list {
    gap: 40px;
    margin-top: 40px;
  }
}
.card__list--step {
  gap: 15px;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .card__list--step {
    gap: 30px;
    margin-top: 50px;
  }
}
.card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .card__wrapper {
    gap: 20px;
  }
}
.card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  position: relative;
}
.card__item--grey {
  background: #f7f7f7;
  padding-block: 20px;
}
.card__item--white {
  background: #ffffff;
  padding-block: 50px;
  padding-inline: 15px 5px;
}
@media screen and (min-width: 768px) {
  .card__item--white {
    padding-inline: initial;
  }
}
.card__head {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px dashed #bebebe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (min-width: 768px) {
  .card__head {
    padding-inline: 8.465%;
  }
}
.card__body {
  padding-inline: 20px 8.465%;
}
@media screen and (min-width: 768px) {
  .card__body {
    padding-inline: 8.465%;
    width: 100%;
  }
}
.card__body--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .card__body--flex {
    gap: 50px;
  }
}
.card__title {
  line-height: 1.5625;
  color: #e74a60;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .card__title {
    font-size: 28px;
  }
}
.card__text {
  font-size: 12px;
  margin-top: 1em;
  line-height: 2.0833333333;
}
@media screen and (min-width: 768px) {
  .card__text {
    font-size: 16px;
  }
}
.card__text--complete {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .card__text--complete {
    font-size: 28px;
  }
}
.card__index {
  width: 54px;
  position: absolute;
  left: -10px;
  top: 0%;
  translate: 0 -26.5%;
}
@media screen and (min-width: 768px) {
  .card__index {
    left: -50px;
    width: 100px;
  }
}
.card__left--1 {
  width: 87.5px;
}
@media screen and (min-width: 768px) {
  .card__left--1 {
    width: 175px;
  }
}
.card__left--2 {
  width: 73.5px;
}
@media screen and (min-width: 768px) {
  .card__left--2 {
    width: 147px;
  }
}
.card__right--1 {
  width: calc(100% - 87.5px + 5px);
}
@media screen and (min-width: 768px) {
  .card__right--1 {
    width: calc(100% - 175px + 10px);
  }
}
.card__right--2 {
  width: calc(100% - 73.5px + 5px);
}
@media screen and (min-width: 768px) {
  .card__right--2 {
    width: calc(100% - 147px + 10px);
  }
}
.card__tri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 74px;
  margin: 0 auto;
}
.card__complete {
  background: #e74a60;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 5px;
  color: #ffffff;
  border-radius: 5px;
}
.card__foot {
  background: #ffffff;
  padding-block: 25px;
  margin-block: 40px 15px;
}
@media screen and (min-width: 768px) {
  .card__foot {
    padding-block: 50px;
    margin-block: 80px 30px;
  }
}
.card__contact {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .card__contact {
    font-size: 18px;
  }
}

.card2__inner {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
}
.card2__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .card2__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 120px 40px;
    margin-top: 120px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1240px) {
  .card2__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.card2__item {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .card2__item {
    max-width: 800px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1240px) {
  .card2__item {
    max-width: 100%;
    width: 47%;
  }
}
.card2__item--3 {
  width: 100%;
}
.card2__top {
  background: #e74a60;
  border-radius: 10px 10px 0px 0px;
  max-width: 226.5px;
  width: 100%;
  height: 29px;
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .card2__top {
    max-width: 330px;
    height: 40px;
  }
}
.card2__top::before {
  content: "";
  position: absolute;
  background-image: url(../img/r_hands.png);
  background-size: cover;
  width: 16.5px;
  height: 12px;
  right: -25px;
  top: 22px;
  translate: 100% 0%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .card2__top::before {
    right: -50px;
    top: 30px;
    width: 33px;
    height: 24px;
  }
}
.card2__top--1::after {
  content: "";
  position: absolute;
  background-image: url(../img/r_card1.png);
  background-size: cover;
  width: 81.5px;
  height: 89.5px;
  right: -30px;
  top: -37px;
  translate: 100% 0%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .card2__top--1::after {
    width: 163px;
    right: -60px;
    height: 179px;
    top: -88px;
  }
}
.card2__top--2::after {
  content: "";
  position: absolute;
  background-image: url(../img/r_card2.png);
  background-size: cover;
  width: 81.5px;
  height: 89.5px;
  right: -30px;
  top: -37px;
  translate: 100% 0%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .card2__top--2::after {
    width: 163px;
    right: -60px;
    height: 179px;
    top: -88px;
  }
}
.card2__top--3::after {
  content: "";
  position: absolute;
  background-image: url(../img/r_card3.png);
  background-size: cover;
  width: 81.5px;
  height: 89.5px;
  right: -30px;
  top: -37px;
  translate: 100% 0%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .card2__top--3::after {
    width: 163px;
    right: -60px;
    height: 179px;
    top: -88px;
  }
}
.card2__index--number {
  font-size: 40px;
  font-weight: 500;
  -webkit-text-stroke: 3px #ffffff;
  text-stroke: 3px #ffffff;
  paint-order: stroke;
  color: #e74a60;
  position: absolute;
  top: -50%;
}
@media screen and (min-width: 768px) {
  .card2__index--number {
    font-size: 60px;
    top: -75%;
  }
}
.card2__index--text {
  font-size: 15px;
  font-weight: 500;
  -webkit-text-stroke: 3px #ffffff;
  text-stroke: 3px #ffffff;
  paint-order: stroke;
}
@media screen and (min-width: 768px) {
  .card2__index--text {
    font-size: 24px;
  }
}
.card2__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  background: #f7f7f7;
  border-radius: 0 10px 10px 10px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .card2__content {
    padding-block: 40px;
  }
}
.card2__head {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px dashed #000000;
  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;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .card2__head {
    border-bottom: none;
  }
}
.card2__body {
  padding-inline: 20px 8.465%;
}
@media screen and (min-width: 768px) {
  .card2__body {
    display: none;
  }
}
.card2__body--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .card2__body--pc {
    display: block;
    width: 50%;
  }
}
.card2__illust--1 {
  max-width: 79.5px;
}
@media screen and (min-width: 768px) {
  .card2__illust--1 {
    max-width: 159px;
  }
}
.card2__illust--2 {
  max-width: 77.5px;
}
@media screen and (min-width: 768px) {
  .card2__illust--2 {
    max-width: 155px;
  }
}
.card2__illust--3 {
  max-width: 77.5px;
}
@media screen and (min-width: 768px) {
  .card2__illust--3 {
    max-width: 155px;
  }
}
.card2__title {
  line-height: 1.5625;
  color: #e74a60;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .card2__title {
    font-size: 28px;
    padding-bottom: 0.5em;
  }
}
.card2__title--sp {
  display: block;
  line-height: 1.5625;
  color: #e74a60;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .card2__title--sp {
    display: none;
  }
}
.card2__text {
  font-size: 12px;
  padding-top: 1em;
  line-height: 2.0833333333;
}
@media screen and (min-width: 768px) {
  .card2__text {
    font-size: 16px;
    border-top: 1px dashed #bebebe;
  }
}
.card2__index {
  background: #e74a60;
}

.card3__inner {
  width: 100%;
  margin: 0 auto;
}
.card3__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.card3__item {
  background: #f2f2f2;
  border-radius: 5px;
  padding-inline: 8.7%;
  padding-block: 22px;
}
@media screen and (min-width: 768px) {
  .card3__item {
    padding-block: 45px;
  }
}
.card3__title {
  line-height: 1.5625;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .card3__title {
    font-size: 24px;
  }
}
.card3__text {
  font-size: 12px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .card3__text {
    font-size: 16px;
  }
}
.card3__text--title {
  background: #ffffff;
  padding-block: 0.2lh;
  padding-left: 1em;
  margin-top: 15px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .card3__text--title {
    margin-top: 30px;
  }
}
.card3__text--list {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.75;
}
.card3__text--top {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .card3__text--top {
    margin-top: 30px;
  }
}
.card3__foot {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.card3__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2px;
  margin-top: 0.7em;
}
.card3__link--img {
  width: 8px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .card3__link--img {
    width: 16px;
  }
}
.card3__link--text {
  color: #007fe0;
  font-size: 12px;
  border-bottom: 1px solid #007fe0;
  padding-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .card3__link--text {
    font-size: 16px;
  }
}
.card3__info {
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .card3__info {
    font-size: 16px;
  }
}
.card3__info--indent {
  text-indent: -3.5em;
  padding-left: 3.5em;
}

.note {
  margin-top: 1em;
}
.note__text {
  font-size: 10px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .note__text {
    font-size: 14px;
  }
}
.note__indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}
.note__indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}
.note__index {
  font-size: 0.8em;
  vertical-align: top;
}

.detail__area {
  background: #fff0f2;
  margin-top: 75px;
  padding-block: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .detail__area {
    margin-top: 150px;
    padding-block: 50px;
  }
}
.detail__inner {
  width: 90%;
  margin: 0 auto;
}
.detail__head {
  width: 100%;
  text-align: center;
}
.detail__title {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .detail__title {
    font-size: 32px;
  }
}
.detail__bubble {
  position: absolute;
  max-width: 253.5px;
  top: 10px;
  left: 50%;
  translate: -50% -100%;
}
@media screen and (min-width: 768px) {
  .detail__bubble {
    top: 20px;
    max-width: 500px;
    translate: -50% -80%;
  }
}
.detail__table {
  margin-top: 15px;
  max-width: 960px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .detail__table {
    margin-top: 30px;
  }
}
.detail__foot {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .detail__foot {
    margin-top: 30px;
  }
}
.detail__text {
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .detail__text {
    font-size: 22px;
  }
}

.app__area {
  background: #ececec;
  padding-bottom: 25px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .app__area {
    padding-bottom: 50px;
  }
}
.app__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: auto;
  aspect-ratio: 75/57;
  background: url(../img/bg_effect.png) no-repeat center center;
  background-size: contain;
  background-blend-mode: soft-light;
  z-index: -1;
}
.app__inner {
  width: 90%;
  margin: 0 auto;
}
.app__head {
  width: 100%;
}
.app__tri {
  background: #ffffff;
  height: 45px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  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;
}
@media screen and (min-width: 768px) {
  .app__tri {
    height: 90px;
  }
}
.app__text--border {
  color: #fff100;
  -webkit-text-stroke: 3px #e74a60;
  text-stroke: 3px #e74a60;
  paint-order: stroke;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app__text--border {
    font-size: 32px;
  }
}
.app__ttlbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .app__ttlbox {
    gap: 28px;
    margin-top: 50px;
  }
}
.app__title {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .app__title {
    font-size: 26px;
  }
}
.app__logo {
  width: 103px;
}
@media screen and (min-width: 768px) {
  .app__logo {
    width: 203px;
  }
}
.app__illust {
  margin-top: 15px;
  max-width: 670px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .app__illust {
    margin-top: 30px;
  }
}
.app__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.app__message {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .app__message {
    margin-top: 40px;
  }
}
.app__message--lead {
  font-weight: 500;
  font-size: 13px;
  position: relative;
  display: inline;
}
@media screen and (min-width: 768px) {
  .app__message--lead {
    font-size: 18px;
  }
}
.app__message--lead::before {
  content: "";
  position: absolute;
  border-left: 1px dashed #000;
  top: 50%;
  left: -0.5em;
  width: 10px;
  height: 20px;
  rotate: -30deg;
  translate: 0% -50%;
}
.app__message--lead::after {
  content: "";
  position: absolute;
  border-right: 1px dashed #000;
  top: 50%;
  right: -0.5em;
  width: 10px;
  height: 20px;
  rotate: 30deg;
  translate: 0% -50%;
}
.app__message--title {
  font-size: 19px;
  color: #e74a60;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .app__message--title {
    margin-top: 20px;
    font-size: 32px;
  }
}
.app__consult {
  margin-top: 15px;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .app__consult {
    margin-top: 30px;
    max-width: 640px;
  }
}
.app__note {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .app__note {
    margin-top: -80px;
  }
}
.app__note--text {
  text-align: left;
  max-width: 230px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .app__note--text {
    max-width: 460px;
  }
}

.anxcious__bg {
  background: url(../img/bg_dot.png), #e74a60;
  background-size: 375px;
}
.anxcious__bg--tri {
  background: url(../img/bg_dot.png), #e74a60;
  background-size: 375px;
  width: 100%;
  height: 45px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .anxcious__bg--tri {
    height: 90px;
  }
}
.anxcious__illust {
  max-width: 301px;
  width: 100%;
  padding-top: 15px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.anxcious__illust img {
  margin-bottom: -15px;
}
@media screen and (min-width: 768px) {
  .anxcious__illust img {
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 768px) {
  .anxcious__illust {
    padding-top: 30px;
    max-width: 450px;
  }
}

.service__head {
  margin-block: 10px;
}
@media screen and (min-width: 768px) {
  .service__head {
    margin-block: 20px;
  }
}
.service__title {
  background: #e74a60;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  padding-block: 0.2lh;
}
@media screen and (min-width: 768px) {
  .service__title {
    font-size: 22px;
  }
}
.service__table {
  border: 1px solid #d6d6d6;
  background: #ffffff;
}
.service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service__item {
  padding: 7px;
}
.service__item--head {
  background: #f3f3f3;
  font-size: 11px;
}
.service__item--point {
  font-size: 9px;
  font-weight: 300;
}
.service__item--number {
  font-size: 13px;
  font-weight: 300;
}
.service__text {
  font-size: 11px;
}
.service__text--right {
  text-align: right;
}
.service__foot {
  margin-top: 1em;
}
.service__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .service__link {
    gap: 10px;
  }
}
.service__link--img {
  width: 8px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .service__link--img {
    width: 16px;
  }
}
.service__link--text {
  color: #007fe0;
  font-size: 12px;
  border-bottom: 1px solid #007fe0;
  padding-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .service__link--text {
    font-size: 16px;
  }
}

.carousel__area {
  overflow: hidden;
  background: #e74a60;
  padding-top: 35px;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .carousel__area {
    padding-top: 70px;
  }
}
.carousel__area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  bottom: 0;
  background: url(../img/bg_debut.png) center center;
  translate: -50% 0;
  aspect-ratio: 225/208;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .carousel__area::after {
    background: url(../img/bg_debut_pc.png) center center;
  }
}
.carousel__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .carousel__inner {
    max-width: 1180px;
  }
}
.carousel__swiper {
  background: #ffffff;
  border-radius: 10px;
  padding-block: 30px 40px;
}
@media screen and (min-width: 768px) {
  .carousel__swiper {
    padding-block: 60px 80px;
  }
}
.carousel__head {
  text-align: center;
}
.carousel__head--lead {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .carousel__head--lead {
    font-size: 18px;
  }
}
.carousel__head--title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 7px;
  position: relative;
  display: inline-block;
  color: #e74a60;
}
@media screen and (min-width: 768px) {
  .carousel__head--title {
    font-size: 32px;
    margin-top: 15px;
  }
}
.carousel__head--title::before {
  content: "";
  position: absolute;
  border-left: 1px dashed #000;
  top: 60%;
  left: -1em;
  height: 53.66563146px;
  rotate: -30deg;
  translate: 0% -50%;
}
.carousel__head--title::after {
  content: "";
  position: absolute;
  border-right: 1px dashed #000;
  top: 60%;
  right: -1em;
  height: 53.66563146px;
  rotate: 30deg;
  translate: 0% -50%;
}
.carousel__foot {
  margin-top: 28.5px;
  position: relative;
  max-width: 668px;
  margin-inline: auto;
}

.swiper {
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
}
.swiper-pagination-bullet {
  /*ドットの間隔を変更*/
  margin: 0 2px !important;
  width: 5px !important;
  height: 5px !important;
  background-color: #aaaaaa !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: #e74a60 !important;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  height: 50px;
  width: 50px;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.swiper .swiper-button-prev {
  left: 5%;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-button-prev {
    left: 29.5%;
  }
}
.swiper .swiper-button-next {
  right: 5%;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-button-next {
    right: 29.5%;
  }
}
.swiper-button-next::after {
  background-image: url(../img/btn_next.png);
}
.swiper-button-prev::after {
  background-image: url(../img/btn_prev.png);
}
.swiper__card {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-inline: 8.035%;
  background: #fff0f2;
  border-radius: 5px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-row: span 2;
  justify-items: center;
  height: 322.5px;
}
.swiper__img {
  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;
  width: 100%;
}
.swiper__img--1 {
  max-width: 105px;
}
.swiper__img--2 {
  max-width: 102px;
}
.swiper__img--3 {
  max-width: 72.5px;
}
.swiper__img--4 {
  max-width: 69px;
}
.swiper__img--5 {
  max-width: 73.5px;
}
.swiper__textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1em;
}
.swiper__title {
  font-size: 15px;
  font-weight: 700;
  color: #e74a60;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .swiper__title {
    font-size: 30px;
  }
}
.swiper__text {
  font-size: 12px;
  line-height: 1.5833333333;
}
@media screen and (min-width: 768px) {
  .swiper__text {
    font-size: 16px;
  }
}
.swiper__note {
  display: block;
  font-size: 10px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .swiper__note {
    font-size: 14px;
  }
}
.swiper__foot {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.6071428571;
}
@media screen and (min-width: 768px) {
  .swiper__foot {
    font-size: 18px;
    margin-top: 40px;
  }
}

.bank__area {
  background: url(../img/bg_dot_2.png), #fff0f2;
  padding-top: 60px;
}
.bank__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bank__inner {
    max-width: 1180px;
  }
}
.bank__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.bank__image {
  max-width: 277.5px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bank__image {
    max-width: 555px;
  }
}
.bank__title {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bank__title {
    font-size: 28px;
  }
}
.bank__title--border {
  color: #ffffff;
  -webkit-text-stroke: 4px #e74a60;
  text-stroke: 4px #e74a60;
  paint-order: stroke;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .bank__title--border {
    font-size: 32px;
    -webkit-text-stroke: 8px #e74a60;
    text-stroke: 8px #e74a60;
  }
}
.bank__title--number {
  font-size: 22.5px;
}
@media screen and (min-width: 768px) {
  .bank__title--number {
    font-size: 45px;
  }
}
.faq__area {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .faq__area {
    margin-top: 70px;
  }
}
.faq__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    max-width: 1180px;
  }
}
.faq__title {
  color: #e74a60;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 32px;
  }
}
.faq__cta {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .faq__cta {
    margin-top: 60px;
  }
}

.acc__list {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .acc__list {
    margin-top: 45px;
  }
}
.acc__item {
  width: 100%;
  padding-block: 20px;
  border-bottom: 1px solid #e74a60;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .acc__item {
    max-width: unset;
  }
}
.acc__title {
  padding: 2px 1em 2px 1em;
  font-size: 12px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .acc__title {
    font-size: 16px;
    padding: 4px 1em 4px 1em;
    display: inline-block;
  }
}
.acc__title--white {
  background: #ffffff;
}
.acc__title--pink {
  margin-top: 1em;
  background: #fff0f2;
}
.acc__logo {
  width: 41px;
}
.acc__logo--float {
  float: left;
  margin: 0 0.5em 0 0;
}
@media screen and (min-width: 768px) {
  .acc__logo--float {
    margin: 0 1em 0 0;
  }
}
.acc__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-inline: 2.4% 3.2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .acc__question {
    gap: 30px;
  }
}
.acc__answer {
  background: #f2f2f2;
  border-radius: 5px;
  padding-inline: 3.65% 2.7%;
  padding-block: 20px 25px;
  margin-left: 8.7%;
  margin-top: 24px;
  display: none;
  overflow: hidden;
}
.acc__number {
  margin-top: 1em;
}
.acc__text {
  font-size: 13px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .acc__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .acc__text--question {
    text-align: left;
    width: 100%;
  }
}
.acc__text--answer {
  margin-top: 0.7em;
  line-height: 1.4615384615;
}
@media screen and (min-width: 768px) {
  .acc__text--answer {
    line-height: 1.5;
  }
}
.acc__text--list {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .acc__text--list {
    font-size: 16px;
  }
}
.acc__text--etc {
  text-align: left;
  font-size: 12px;
  margin-top: 0.5lh;
}
@media screen and (min-width: 768px) {
  .acc__text--etc {
    font-size: 16px;
  }
}
.acc__btn {
  width: 18.5px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.acc__line {
  background: #e74a60;
  display: inline-block;
  position: absolute;
  width: 18.5px;
  height: 3.5px;
}
.acc__line--col {
  rotate: 90deg;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.acc__line--col.hidden {
  rotate: 0deg;
}

.time__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  margin-top: 0.5em;
  margin-left: 1em;
}
.time__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5lh;
  margin-top: 0.5em;
}
.time__left {
  background: #ffffff;
  padding: 0.2lh;
}
.time__text {
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .time__text {
    font-size: 16px;
  }
}
.time__indent {
  text-indent: -1em;
  padding-left: 1em;
}
.time__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

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

.attention__area {
  width: 100%;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .attention__area {
    margin-top: 50px;
  }
}
.attention__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .attention__inner {
    max-width: 1180px;
  }
}

.footer__area {
  width: 100%;
  height: 45px;
  background: #000000;
  border-top: 1px solid #007fe0;
  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-top: 25px;
}
@media screen and (min-width: 768px) {
  .footer__area {
    height: 90px;
    margin-top: 50px;
  }
}
.footer__text {
  font-size: 8px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */
