@charset "UTF-8";
body {
  font-size: 18px;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #000000;
  font-weight: 400;
}

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

.hidden-xl {
  display: block;
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

.header {
  height: 59px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 0;
  }
}

.header__menu {
  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;
}
@media screen and (min-width: 768px) {
  .header__menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
  }
}

.header__logo {
  width: 148px;
  max-width: 100%;
  padding-block: 8.5px;
  padding-left: 16px;
}
.header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    display: none;
  }
}

.header__menu__hamburger {
  width: 100%;
  height: 100%;
  background-color: #84d6d6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__menu__hamburger {
    width: 100px;
    height: 100px;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-icon__bar:nth-of-type(1) {
  background-color: #ffffff;
  top: 22.05px;
  height: 1px;
  width: 19.912px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(1) {
    top: 39.38px;
    width: 33.75px;
  }
}
.drawer-icon__bar:nth-of-type(2) {
  background-color: #ffffff;
  top: 30.05px;
  height: 1px;
  width: 19.912px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(2) {
    top: 51.38px;
    width: 33.75px;
  }
}
.drawer-icon__bar:nth-of-type(3) {
  background-color: #ffffff;
  top: 38.05px;
  height: 1px;
  width: 19.912px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(3) {
    top: 63.38px;
    width: 33.75px;
  }
}

.header__menu__modal {
  position: fixed;
  background: #eef9f8;
  padding: 8px 10px;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal {
    padding: 30px;
  }
}
.header__menu__modal.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 1000;
}

.header__menu__modal__inner {
  background: #ffffff;
  padding-block: 17px 16px;
  height: 100%;
}

.header__menu__modal__prev {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #84d6d6;
  padding: 8px;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__prev {
    width: 56px;
    height: 56px;
    top: 42px;
    right: 54px;
  }
}
.header__menu__modal__prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: url(../img/modal-humbarger.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__prev::after {
    width: 40px;
    height: 40px;
  }
}
.header__menu__modal__prev a {
  display: block;
}

.header__menu__modal__button {
  margin-top: 22px;
  background-color: #757676;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.header__menu__modal__button__text {
  color: #ffffff;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__button__text {
    font-size: 24px;
  }
}

.header__menu__modal__image {
  text-align: center;
}
.header__menu__modal__image img {
  width: 154px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__image {
    text-align: left;
    padding-left: 10px;
  }
  .header__menu__modal__image img {
    width: 260px;
    height: auto;
  }
}

.header__menu__modal__lists {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 200px;
  margin-inline: auto;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-inline: auto;
    width: 873px;
    grid-template-areas: "item1 item2" "item3 item4" "item5 item6" "item7 .";
    row-gap: 32px;
    -webkit-column-gap: 300px;
       -moz-column-gap: 300px;
            column-gap: 300px;
    position: relative;
  }
  .header__menu__modal__lists::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 1px;
    height: 546px;
    background: rgba(117, 118, 118, 0.56);
  }
}

.header__menu__modal__item a {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__item a {
    font-size: 24px;
  }
}
.header__menu__modal__item:nth-of-type(1) {
  grid-area: item1;
}
.header__menu__modal__item:nth-of-type(2) {
  grid-area: item2;
}
.header__menu__modal__item:nth-of-type(3) {
  grid-area: item3;
}
.header__menu__modal__item:nth-of-type(4) {
  grid-area: item4;
}
.header__menu__modal__item:nth-of-type(5) {
  grid-area: item5;
}
.header__menu__modal__item:nth-of-type(6) {
  grid-area: item6;
}
.header__menu__modal__item:nth-of-type(7) {
  grid-area: item7;
}

.header__menu__modal__footer {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .header__menu__modal__footer {
    margin-top: 300px;
    width: 873px;
    margin-inline: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    position: relative;
  }
  .header__menu__modal__footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: url(../img/Union.svg) no-repeat center center/contain;
    width: 29.861px;
    height: 14.859px;
  }
}

.right__menu {
  height: 59px;
  width: 59px;
}
@media screen and (min-width: 768px) {
  .right__menu {
    width: 100%;
    position: relative;
  }
}

.header__menu__modal__footer__item a {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 14px;
}
.right__menu__first {
  display: none;
}
@media screen and (min-width: 768px) {
  .right__menu__first {
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff url(../img/leaf.svg) no-repeat center 20px/35px 35px;
    border: 1px solid #84d6d6;
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 100;
    color: #757676;
    text-align: center;
    font-family: "Tsukushi B Round Gothic", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding-top: 59px;
  }
}

.right__menu__login {
  display: none;
}
@media screen and (min-width: 768px) {
  .right__menu__login {
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff url(../img/login.svg) no-repeat 26px 24px/35px 35px;
    border-left: 1px solid #84d6d6;
    border-right: 1px solid #84d6d6;
    position: absolute;
    top: 200px;
    right: 0;
    z-index: 100;
    color: #757676;
    text-align: center;
    font-family: "Tsukushi B Round Gothic", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding-top: 67px;
  }
}

.right__menu__favorite {
  display: none;
}
@media screen and (min-width: 768px) {
  .right__menu__favorite {
    display: block;
    width: 100px;
    height: 100px;
    background: #ffffff url(../img/heart.svg) no-repeat center 19px/40px 40px;
    border: 1px solid #84d6d6;
    position: absolute;
    top: 300px;
    right: 0;
    z-index: 100;
    color: #757676;
    text-align: center;
    font-family: "Tsukushi B Round Gothic", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding-top: 61px;
  }
}

.header__nav {
  display: none;
}

.fv {
  width: 100%;
  height: 526px;
  background: url(../img/mv-sp.png) no-repeat center top/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 791.213px;
    background: url(../img/mv-pc.png) no-repeat right center/cover;
  }
}

.fv__logo__container {
  padding: 35px 26px 61px;
  text-align: center;
  position: absolute;
  top: 238px;
  left: 0;
  background: rgba(255, 255, 255, 0.91);
}
@media screen and (min-width: 768px) {
  .fv__logo__container {
    top: auto;
    bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .fv__logo__container {
    top: 0;
    left: 145px;
    height: 808.148px;
    padding-top: 133px;
    padding-inline: 65px 68px;
  }
}

.fv__logo__heading {
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.3px;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .fv__logo__heading {
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 1.8;
  }
}

.fv__logo__title {
  margin-top: 35px;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title {
    margin-top: 64px;
  }
}
.fv__logo__title .is-first {
  font-size: 37px;
  letter-spacing: 2.96px;
  color: #84d6d6;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .is-first {
    font-size: 64px;
    letter-spacing: 5.12px;
  }
}
.fv__logo__title .is-second {
  color: #000000;
  font-size: 21px;
  letter-spacing: 1.68px;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .is-second {
    font-size: 48px;
    letter-spacing: 3.84px;
    font-weight: 400;
  }
}
.fv__logo__title .is-third {
  color: #000000;
  font-size: 23px;
  letter-spacing: 0.84px;
  padding-right: 1px;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .is-third {
    font-size: 50px;
    letter-spacing: 4px;
  }
}
.fv__logo__title .is-fourth {
  margin-top: 2px;
  color: #000000;
  font-size: 18px;
  line-height: 35px;
  padding-right: 1px;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .is-fourth {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -1.8px;
    line-height: 56px;
    padding-right: 7px;
  }
}
.fv__logo__title .is-fifth {
  color: #000000;
  font-size: 22px;
  letter-spacing: 2.2px;
  line-height: 38px;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .is-fifth {
    font-size: 40px;
    letter-spacing: 4px;
    line-height: 73px;
  }
}
.fv__logo__title .is-sixth {
  color: #000000;
  font-size: 20px;
  letter-spacing: 2px;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .is-sixth {
    font-size: 38px;
    letter-spacing: 3.8px;
  }
}
.fv__logo__title .seventh {
  color: #000000;
  font-size: 22px;
  letter-spacing: 2.2px;
}
@media screen and (min-width: 1200px) {
  .fv__logo__title .seventh {
    font-size: 40px;
    letter-spacing: 4px;
  }
}
.fv__logo__title::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 165px;
  height: 1px;
  background: rgba(117, 118, 118, 0.56);
}
@media screen and (min-width: 1200px) {
  .fv__logo__title::before {
    width: 218px;
    top: -31px;
  }
}
.fv__logo__title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 165px;
  height: 1px;
  background: rgba(117, 118, 118, 0.56);
}
@media screen and (min-width: 1200px) {
  .fv__logo__title::after {
    width: 218px;
    bottom: -43px;
  }
}

.fv__logo {
  display: none;
}
@media screen and (min-width: 1200px) {
  .fv__logo {
    margin-top: 15.42px;
    display: block;
    width: 258px;
    margin-left: 14px;
  }
}

.fv__menu__container {
  position: absolute;
  bottom: -86px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .fv__menu__container {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    bottom: -57.79px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__menu__container {
    height: 131.869px;
  }
}

.fv__plan {
  width: 50%;
  background: #757676 url(../img/arrow-right.svg) no-repeat right 23px center/20px 20px;
  padding: 6px;
  text-align: center;
  padding-top: 7px;
  height: 100%;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  display: block;
  color: #ffffff;
  font-size: clamp(10px, 2.5vw, 14px);
  font-weight: 500;
  letter-spacing: 0.7px;
  padding-right: 43px;
  line-height: 19px;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .fv__plan {
    padding: 15px 16.11px 15px 16.89px;
    background: #757676 url(../img/arrow-right.svg) no-repeat right 81px center/31px 31px;
  }
}
.fv__plan::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 12px);
  border: 1px solid #ffffff;
}
@media screen and (min-width: 1200px) {
  .fv__plan {
    padding-top: 11px;
    font-size: 16px;
    letter-spacing: 1.28px;
    padding-right: 0;
  }
}
.fv__plan .is-first {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 1200px) {
  .fv__plan .is-first {
    font-size: 24px;
    letter-spacing: 1.92px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  .fv__plan .is-second {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.fv__plan__modal {
  width: 83.0917874396vw;
  max-width: 344px;
  background: #ffffff;
  padding: 25px 32px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .fv__plan__modal {
    max-width: none;
    width: 750px;
    padding: 25px 62px;
  }
}

.fv__plan__modal__lists {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1200px) {
  .fv__plan__modal__lists {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 67px;
       -moz-column-gap: 67px;
            column-gap: 67px;
  }
}

.fv__plan__modal__list {
  padding-block: 8px;
}
.fv__plan__modal__list:nth-of-type(n+2) {
  border-top: 1px solid #757676;
}
@media screen and (min-width: 1200px) {
  .fv__plan__modal__list:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
    border-top: none;
  }
  .fv__plan__modal__list:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .fv__plan__modal__list:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .fv__plan__modal__list:nth-of-type(4) {
    grid-column: 2/3;
    grid-row: 1/2;
    border-top: none;
  }
  .fv__plan__modal__list:nth-of-type(5) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.fv__plan__modal__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv__plan__modal__image {
  height: 64px;
  width: 64px;
}
.fv__plan__modal__image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.fv__plan__modal__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  font-family: YuGothic;
  font-weight: 500;
  font-size: clamp(10px, 2.5vw, 16px);
}

.fv__plan__modal__arrow {
  width: 13.1755813953%;
}
.fv__plan__modal__arrow svg {
  width: 100%;
  height: 100%;
}

.fv__plan__modal__prev {
  margin-top: 20px;
}

.fv__area {
  width: 50%;
  background: #84d6d6 url(../img/arrow-right.svg) no-repeat right 23px center/20px 20px;
  padding: 6px;
  text-align: center;
  padding-top: 7px;
  height: 100%;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  display: block;
  color: #ffffff;
  font-size: clamp(10px, 2.5vw, 14px);
  font-weight: 500;
  letter-spacing: 0.7px;
  padding-right: 43px;
  line-height: 19px;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .fv__area {
    padding: 15px 16.11px 15px 16.89px;
    background: #84d6d6 url(../img/arrow-right.svg) no-repeat right 81px center/31px 31px;
  }
}
.fv__area::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 12px);
  border: 1px solid #ffffff;
}
@media screen and (min-width: 1200px) {
  .fv__area {
    padding-top: 9px;
    font-size: 16px;
    letter-spacing: 1.28px;
    padding-right: 0;
  }
}
.fv__area .is-first {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 1200px) {
  .fv__area .is-first {
    font-size: 24px;
    letter-spacing: 1.92px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  .fv__area .is-second {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.fv__area__modal {
  width: 83.0917874396vw;
  max-width: 344px;
  background: #ffffff;
  padding: 48px 32px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .fv__area__modal {
    max-width: none;
    width: 750px;
    padding: 25px 62px;
  }
}

.fv__area__modal__lists {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1200px) {
  .fv__area__modal__lists {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 64px;
       -moz-column-gap: 64px;
            column-gap: 64px;
  }
}

.fv__area__modal__list {
  padding-block: 16px;
}
.fv__area__modal__list:nth-of-type(n+2) {
  border-top: 1px solid #84d6d6;
}
@media screen and (min-width: 1200px) {
  .fv__area__modal__list:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
    border-top: none;
  }
  .fv__area__modal__list:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .fv__area__modal__list:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .fv__area__modal__list:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .fv__area__modal__list:nth-of-type(5) {
    grid-column: 2/3;
    grid-row: 1/2;
    border-top: none;
  }
  .fv__area__modal__list:nth-of-type(6) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .fv__area__modal__list:nth-of-type(7) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}

.fv__area__modal__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fv__area__modal__arrow svg {
  width: 45px;
  height: 5px;
}

.report {
  margin-top: 130px;
  background: #eef9f8;
  padding-top: 64px;
  padding-bottom: 21px;
}
@media screen and (min-width: 768px) {
  .report {
    margin-top: 120px;
    padding-top: 67px;
  }
}

.planner__title {
  padding-left: 26px;
}
@media screen and (min-width: 768px) {
  .planner__title {
    padding-left: 118px;
  }
}

@media screen and (min-width: 768px) {
  .section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
  }
}

.section-title__english {
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  letter-spacing: 1.37px;
}
@media screen and (min-width: 768px) {
  .section-title__english {
    font-size: 30px;
    letter-spacing: 2.7px;
  }
}
.section-title__english::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #84d6d6;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section-title__english::before {
    width: 35px;
    height: 35px;
    top: -9px;
    left: -18px;
  }
}
.section-title__english::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 44px;
  height: 2px;
  background: #84d6d6;
}
@media screen and (min-width: 768px) {
  .section-title__english::after {
    bottom: auto;
    top: 0;
    left: auto;
    right: -24px;
    width: 1px;
    height: 100%;
  }
}

.planner__title__japanese {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .planner__title__japanese {
    margin-top: 0;
    font-size: 20px;
  }
}

.section-title__japanese {
  margin-top: 8px;
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .section-title__japanese {
    margin-top: 0;
    font-size: 20px;
  }
}

.planner__container__title {
  margin-top: 24px;
  margin-left: 32px;
}
@media screen and (min-width: 768px) {
  .planner__container__title {
    margin-top: 64px;
    margin-left: 146px;
  }
}

.section-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-subtitle__english {
  color: #84d6d6;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 1.37px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-subtitle__english {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}
.section-subtitle__english::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
  width: 8px;
  height: 8px;
  background: #d9d9d9;
}
.section-subtitle__japanese {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .section-subtitle__japanese {
    font-size: 20px;
  }
}

.planner__swiper {
  margin-top: 24px;
  margin-left: 17px;
}
@media screen and (min-width: 768px) {
  .planner__swiper {
    margin-left: 0;
  }
}

.planner__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #ffffff;
}

.planner__card__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.planner__card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.planner__card__body {
  position: relative;
  -webkit-box-flex: 2.2543859649;
      -ms-flex: 2.2543859649;
          flex: 2.2543859649;
  padding-block: 11px 9px;
  padding-left: 8px;
  padding-right: 8px;
}
@media screen and (min-width: 768px) {
  .planner__card__body {
    padding: 15px 33px 20px 37px;
    -webkit-box-flex: 1.8987341772;
        -ms-flex: 1.8987341772;
            flex: 1.8987341772;
  }
}

.planner__name {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .planner__name {
    font-size: 22px;
  }
}

.planner__position {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.planner__card__area {
  margin-top: 6px;
  padding-top: 4px;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .planner__card__area {
    margin-top: 18px;
  }
}
.planner__card__area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 59px);
  height: 1px;
  background: #757676;
}
@media screen and (min-width: 768px) {
  .planner__card__area::after {
    top: -16px;
    width: 100%;
  }
}

.planner__area__title {
  color: #84d6d6;
  font-size: 10px;
  padding: 3px 7px;
  border: 1px solid #84d6d6;
  white-space: nowrap;
  text-align: center;
}

.area__text {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000000;
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .area__text {
    font-size: 14px;
  }
}

.area__name {
  white-space: nowrap;
}

.planner__card__favorite {
  position: absolute;
  top: 10px;
  right: 18px;
}
.planner__card__favorite img {
  width: 25px;
  height: 25px;
}

.planner-swiper-button-prev,
.planner-swiper-button-next {
  width: 28px;
  height: 28px;
  background: rgba(132, 214, 214, 0.6) url(../img/arrow-right.svg) no-repeat center center/13.125px 13.125px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .planner-swiper-button-prev,
  .planner-swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(132, 214, 214, 0.6) url(../img/arrow-right.svg) no-repeat center center/16px 16px;
  }
}
.planner-swiper-button-prev::after,
.planner-swiper-button-next::after {
  content: "";
}

.planner-swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 10px;
  top: 62px;
}

.planner-swiper-button-next {
  right: 44px;
  top: 62px;
}

.report__swiper__container {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .report__swiper__container {
    margin-top: 72px;
  }
}

.report__swiper__title {
  margin-left: 32px;
}
@media screen and (min-width: 768px) {
  .report__swiper__title {
    margin-left: 146px;
  }
}

.report__swipe__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.report-swiper-slide {
  background: #ffffff;
  padding: 11px 8px;
}

.report__swiper {
  margin-top: 24px;
  margin-left: 16px;
}

.report-card {
  border: 1px solid #84d6d6;
  padding: 10px 9px;
  height: 100%;
}

.report-card__image {
  position: relative;
}
.report-card__image img {
  width: 100%;
  height: auto;
}

.report-card__favorite {
  position: absolute;
  top: 5px;
  right: 8px;
  width: 26px;
  height: 26px;
}

.report-card__body {
  margin-top: -44px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  padding: 16px 14px 11px;
  background: rgba(255, 255, 255, 0.88);
  margin-inline: 7px;
}

.report-card__title {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid #757676;
}

.report-card__type {
  margin-top: 4px;
  display: inline-block;
  padding: 2px 8px;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  background: #abd07b;
}

.report-card__type-orange {
  margin-top: 4px;
  display: inline-block;
  padding: 2px 8px;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  background: #f1b04e;
}

.report-card__area {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.report-card__area-label {
  color: #84d6d6;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  padding: 3px;
  border: 1px solid #84d6d6;
}

.report-card__area-name {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.report-card__tag {
  padding: 4px 6px;
  background: #84d6d6;
  border-radius: 45px;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.report-card__button {
  text-align: right;
  position: absolute;
  bottom: 29px;
  right: 62px;
}
.report-card__button a {
  display: inline-block;
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
}
.report-card__button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -43px;
  width: 135px;
  height: 1px;
  background: #757676;
}
.report-card__button a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: -43px;
  width: 15px;
  height: 1px;
  background: #757676;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.report-swiper-button-prev,
.report-swiper-button-next {
  width: 28px;
  height: 28px;
  background: rgba(132, 214, 214, 0.6) url(../img/arrow-right.svg) no-repeat center center/13.125px 13.125px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .report-swiper-button-prev,
  .report-swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(132, 214, 214, 0.6) url(../img/arrow-right.svg) no-repeat center center/16px 16px;
  }
}
.report-swiper-button-prev::after,
.report-swiper-button-next::after {
  content: "";
}

.report-swiper-button-prev {
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.report-swiper-button-next {
  right: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about {
  margin-top: 66px;
  background: #ffffff url(../img/about-logo.png) no-repeat 34px 568px/379px auto;
  margin-bottom: 8px;
}
@media screen and (min-width: 1200px) {
  .about {
    margin-block: 73px 64px;
    background: #ffffff url(../img/about-logo.png) no-repeat right 314px/1004px auto;
  }
}

.about__title {
  margin-left: 23px;
}
@media screen and (min-width: 768px) {
  .about__title {
    margin-left: 115px;
  }
}

.about__text {
  margin-top: 45px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 80px;
  }
}

.about__text__head {
  color: #202020;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(18px, 5.0724637681vw, 21px);
  line-height: 40px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .about__text__head {
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 3px;
    font-size: clamp(26px, 7.2463768116vw, 30px);
  }
}
@media screen and (min-width: 1200px) {
  .about__text__head {
    font-size: 36px;
    line-height: 60px;
    letter-spacing: 0.01em;
    font-size: clamp(32px, 8.6956521739vw, 36px);
  }
}
.about__text__head .is-first {
  color: #84d6d6;
  font-size: 33px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .about__text__head .is-first {
    font-size: 40px;
    letter-spacing: 4.4px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text__head .is-first {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.01em;
  }
}

.about__text__body {
  margin-top: 24px;
  color: #202020;
  text-align: center;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(14px, 3.8647342995vw, 16px);
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.005em;
}
@media screen and (min-width: 1200px) {
  .about__text__body {
    margin-top: 56px;
    font-size: 18px;
    line-height: 40px; /* 222.222% */
    letter-spacing: 0.9px;
    padding-right: 19px;
  }
}

.about__text__second {
  margin-top: 40px;
}

.about__text__third {
  margin-top: 40px;
}

.about__button__container {
  text-align: center;
}

.about__button__comment {
  display: inline-block;
  margin-top: 54px;
  color: #84d6d6;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .about__button__comment {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.about__button__comment::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -26px;
  width: 23px;
  height: 1px;
  background: #84d6d6;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.about__button__comment::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -26px;
  width: 23px;
  height: 1px;
  background: #84d6d6;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.about__button {
  margin-top: 23.28px;
}
.about__button a {
  padding: 20px 32px;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  background: #84d6d6;
}
@media screen and (min-width: 1200px) {
  .about__button a {
    font-size: 20px;
    letter-spacing: 1.6px;
    padding: 21px 64px;
  }
}

.about__slider__container {
  margin-top: 63.72px;
}
@media screen and (min-width: 768px) {
  .about__slider__container {
    margin-top: 70px;
  }
}

.about__slider__image img {
  width: 100%;
  height: auto;
}

.recommend {
  background: url(../img/recommend-bg.png) no-repeat center center/cover;
  padding-block: 58px 72px;
}
@media screen and (min-width: 768px) {
  .recommend {
    padding-block: 65px 70px;
  }
}

.recommend__title {
  margin-left: 26px;
}
@media screen and (min-width: 768px) {
  .recommend__title {
    margin-left: 115px;
  }
}

.recommend__card__container {
  margin-top: 48px;
  margin-inline: 8.4541062802vw 9.9033816425vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  padding: 9.1787439614vw 4.347826087vw 5.7971014493vw 7.0048309179vw;
  background: #eef9f8;
}
@media screen and (min-width: 1200px) {
  .recommend__card__container {
    margin-top: 64px;
    margin-inline: 100px 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 10px;
    padding-block: 59px 40px;
    gap: 70px;
    row-gap: 38px;
  }
}

.recommend__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #ffffff;
  min-height: 90px;
}
@media screen and (min-width: 1200px) {
  .recommend__card {
    width: 342px;
    height: 125px;
  }
}

.recommend__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.recommend__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommend__image::before {
  content: "";
  position: absolute;
  top: -13.4px;
  left: -11px;
  width: 35.082px;
  height: 35.266px;
  background: #d684b8;
}

.recommend__card:nth-of-type(1) .recommend__image::before {
  background: #d684b8;
}
.recommend__card:nth-of-type(2) .recommend__image::before {
  background: #84b6d6;
}
.recommend__card:nth-of-type(3) .recommend__image::before {
  background: #f1b04e;
}
.recommend__card:nth-of-type(4) .recommend__image::before {
  background: #d6bf84;
}
.recommend__card:nth-of-type(5) .recommend__image::before {
  background: #84d6d6;
}

.recommend__card__body {
  -webkit-box-flex: 1.679245283;
      -ms-flex: 1.679245283;
          flex: 1.679245283;
}
@media screen and (min-width: 768px) {
  .recommend__card__body {
    -webkit-box-flex: 1.736;
        -ms-flex: 1.736;
            flex: 1.736;
  }
}

.recommend__card__link {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.recommend__card__link a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.8647342995vw, 18px);
  font-weight: 500;
  line-height: 1.6875;
}
@media screen and (min-width: 768px) {
  .recommend__card__link a {
    font-size: 16px;
    line-height: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__card__link a {
    font-size: 20px;
    line-height: 27px;
  }
}
.recommend__card__link::before {
  content: "";
  position: absolute;
  bottom: 13px;
  right: 13.65px;
  width: 37.505px;
  height: 1px;
  background: #757676;
  max-width: 37.505px;
}
.recommend__card__link::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 12px;
  width: 8px;
  height: 1px;
  background: #757676;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.popular {
  padding-block: 69px 64px;
  background: #f4f4f4;
}
@media screen and (min-width: 1200px) {
  .popular {
    padding-block: 73px 82px;
  }
}

.popular__title {
  margin-left: 25px;
}
@media screen and (min-width: 1200px) {
  .popular__title {
    margin-left: 118px;
  }
}

.popular__container__title {
  margin-top: 24px;
  margin-left: 32px;
}
@media screen and (min-width: 1200px) {
  .popular__container__title {
    margin-top: 64px;
    margin-left: 146px;
  }
}

.popular__swiper {
  margin-left: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .popular__swiper {
    margin: 0;
    padding-inline: 130px;
  }
}

.popular__swipe__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1200px) {
  .popular__swipe__wrapper {
    margin-inline: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px 16px;
  }
}

.popular-swiper-slide {
  padding: 11px 8px;
  background: #ffffff;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(1) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .popular-swiper-slide:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .popular-swiper-slide:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

.popular-card {
  border: 1px solid #84d6d6;
  padding: 2.4154589372vw 2.1739130435vw 12.6207729469vw 2.1739130435vw;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .popular-card {
    padding: 10px 9px 52.25px 9px;
  }
}

.popular-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 260/184;
}
.popular-card__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popular-card__favorite {
  position: absolute;
  top: 5px;
  right: 8px;
  width: 26px;
  height: 26px;
}

.popular-card__body {
  margin-top: -44px;
  margin-bottom: 6.75px;
  position: relative;
  z-index: 1;
  padding: 3.8647342995vw 3.3816425121vw 2.6570048309vw;
  background: rgba(255, 255, 255, 0.88);
  margin-inline: 7px;
}

.popular-card__container {
  display: grid;
}

@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(1) .popular-card__body {
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(1) .popular-card__container {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(1) .popular-card__planner {
    margin-top: 11.5px;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(1) .popular-card__report {
    margin-top: 16px;
    border-top: 1px solid #757676;
    padding-top: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(1) .popular-card__report__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(2) .popular-card__container, .popular-swiper-slide:nth-of-type(3) .popular-card__container {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(2) .popular-card__body, .popular-swiper-slide:nth-of-type(3) .popular-card__body {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 60px auto auto 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(2) .popular-card__type, .popular-swiper-slide:nth-of-type(3) .popular-card__type {
    padding: 2px 6px;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(2) .popular-card__report, .popular-swiper-slide:nth-of-type(3) .popular-card__report {
    display: grid;
    grid-template-rows: 60px 1fr;
    grid-row: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(2) .popular-card__report__title, .popular-swiper-slide:nth-of-type(3) .popular-card__report__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 1200px) {
  .popular-swiper-slide:nth-of-type(2) .popular-card__report__text, .popular-swiper-slide:nth-of-type(3) .popular-card__report__text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.popular-card__title {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(12px, 3.8647342995vw, 16px);
  padding-bottom: 9px;
  border-bottom: 1px solid #757676;
}
@media screen and (min-width: 1200px) {
  .popular-card__title {
    padding-bottom: 0;
    border-bottom: none;
    height: auto;
  }
}

.popular-card__type {
  margin-top: 4px;
  display: inline-block;
  padding: 0.7246376812vw 1.9323671498vw;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(8px, 2.4154589372vw, 10px);
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .popular-card__type {
    font-size: 14px;
  }
}
.popular-card__type.is-first {
  background: #abd07b;
}
@media screen and (min-width: 1200px) {
  .popular-card__type.is-first {
    margin-top: 34px;
  }
}
.popular-card__type.is-second {
  background: #d684b8;
}
@media screen and (min-width: 1200px) {
  .popular-card__type.is-second {
    margin-top: 0;
  }
}
.popular-card__type.is-third {
  background: #f1b04e;
}
@media screen and (min-width: 1200px) {
  .popular-card__type.is-third {
    margin-top: 0;
  }
}

.popular-card__area {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .popular-card__area {
    margin-top: 11px;
  }
}

.popular-card__area-label {
  color: #84d6d6;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  padding: 3px;
  border: 1px solid #84d6d6;
}

.popular-card__area-name {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .popular-card__area-name {
    font-size: 14px;
  }
}

.popular-card__tags.is-first {
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .popular-card__tags.is-first {
    margin-top: 25px;
  }
}
.popular-card__tags.is-second, .popular-card__tags.is-third {
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .popular-card__tags.is-second, .popular-card__tags.is-third {
    margin-top: 0;
  }
}

.popular-card__tag {
  padding: 5px 5.5px;
  background: #84d6d6;
  border-radius: 45px;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(8px, 2.8985507246vw, 12px);
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .popular-card__tag {
    padding: 2px 6px 2px 4px;
  }
}

@media screen and (min-width: 1200px) {
  .popular-card__container2 {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    border-top: 1px solid #757676;
    padding-top: 16px;
  }
}

.popular-card__report {
  display: none;
}
@media screen and (min-width: 1200px) {
  .popular-card__report {
    display: grid;
  }
}

.popular-card__report__title {
  color: #84d6d6;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.popular-card__report__text {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.popular-card__planner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: relative;
  margin-left: 5.5px;
}
.popular-card__planner::before {
  content: "";
  position: absolute;
  top: -3.75px;
  left: -7px;
  width: 19px;
  height: 19px;
  background: #84d6d6;
}

.popular-card__planner__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1200px) {
  .popular-card__planner__image {
    width: 65px;
    height: 65px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.popular-card__planner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popular-card__planner__body {
  -webkit-box-flex: 2.7076923077;
      -ms-flex: 2.7076923077;
          flex: 2.7076923077;
}

.popular-card__charge {
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(8px, 2.4154589372vw, 10px);
  font-weight: 500;
}

.popular-card__name {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(12px, 3.3816425121vw, 14px);
  font-weight: 500;
}

.popular-card__position {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 2.8985507246vw, 12px);
  font-weight: 500;
}

.popular-card__button {
  display: inline-block;
  text-align: right;
  position: absolute;
  bottom: 18px;
  right: 62px;
}
.popular-card__button a {
  display: inline-block;
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
}
.popular-card__button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -43px;
  width: 135px;
  height: 1px;
  background: #757676;
}
.popular-card__button a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: -43px;
  width: 15px;
  height: 1px;
  background: #757676;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.popular-card__no {
  position: absolute;
  top: 0;
  left: 16px;
  display: inline-block;
  text-align: center;
  padding-top: 2px;
  width: 46px;
  height: 60px;
}
.popular-card__no.is-gold {
  background: url(../img/popular-gold-ribon.png) no-repeat center center/46px 60px;
}
.popular-card__no.is-silver {
  background: url(../img/popular-silver-ribon.png) no-repeat center center/46px 60px;
}
.popular-card__no.is-bronze {
  background: url(../img/popular-blonze-ribon.png) no-repeat center center/46px 60px;
}

.popular-card__no__text {
  display: inline-block;
  color: #ffffff;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 12px;
}

.text-no {
  display: inline-block;
  color: #ffffff;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 20px;
  margin-top: -5px;
}

.popular-swiper-button-prev,
.popular-swiper-button-next {
  width: 28px;
  height: 28px;
  background: #cfcfcf url(../img/arrow-right.svg) no-repeat center center/13.125px 13.125px;
  border-radius: 50%;
}
@media screen and (min-width: 1200px) {
  .popular-swiper-button-prev,
  .popular-swiper-button-next {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .popular-swiper-button-prev,
  .popular-swiper-button-next {
    width: 40px;
    height: 40px;
    background: #cfcfcf url(../img/arrow-right.svg) no-repeat center center/16px 16px;
  }
}
.popular-swiper-button-prev::after,
.popular-swiper-button-next::after {
  content: "";
}

.popular-swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 10px;
}

.popular__button__container {
  margin-top: 48px;
}

.gray-button__container {
  text-align: center;
}

.gray-button {
  background: #757676;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 3.8647342995vw 5.7971014493vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .gray-button {
    padding: 16px 24px;
  }
}

.gray-button__text {
  text-align: left;
  color: #ffffff;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(12px, 3.8647342995vw, 16px);
}
@media screen and (min-width: 1200px) {
  .gray-button__text {
    font-size: 24px;
  }
}

.gray-button__arrow {
  display: grid;
  place-content: center;
  width: 6.5217391304vw;
  height: 1.3888888889vw;
}
.gray-button__arrow svg {
  width: 100%;
  height: auto;
}

.plan-report {
  background: #F4F4F4;
  padding-inline: 24px;
  padding-bottom: 48px;
}
@media screen and (min-width: 1200px) {
  .plan-report {
    padding-inline: 100px;
  }
}

.plan-report__inner {
  background: #ffffff;
  padding-inline: 2.8985507246vw;
  padding-bottom: 48px;
}

.plan-report__head__container__title {
  padding-top: 48px;
  margin-left: 22.47px;
}
@media screen and (min-width: 1200px) {
  .plan-report__head__container__title {
    padding-top: 65px;
    margin-left: 30px;
  }
}

.plan-report__container__title__english,
.plan-report__container__title__japanese {
  font-size: clamp(12px, 3.8647342995vw, 16px);
  letter-spacing: 0.01em;
}

.plan-report__head__container__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.690821256vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.planner-report__body__container {
  margin-top: 24px;
  background: #eef9f8;
  padding-block: 8.2125603865vw 11.5942028986vw;
}
@media screen and (min-width: 1200px) {
  .planner-report__body__container {
    margin-top: 67px;
    padding-block: 59px 40px;
  }
}

.plan-report__card__container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
  padding-inline: 5.7971014493vw;
}
@media screen and (min-width: 1200px) {
  .plan-report__card__container {
    padding-inline: 60px;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.plan-report__card__wrapper {
  text-align: center;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60px 1fr;
}

.plan-card__head__title {
  display: inline-block;
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
}
.plan-card__head__title.is-first::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  width: 31px;
  height: 30px;
  z-index: -1;
  background: #D684B8;
}
.plan-card__head__title.is-second::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  width: 31px;
  height: 30px;
  z-index: -1;
  background: #F1B04E;
}
.plan-card__head__title.is-third::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  width: 31px;
  height: 30px;
  z-index: -1;
  background: #ABD07B;
}

.plan-report__card {
  background: #ffffff;
  padding: 10px 8px;
}
@media screen and (min-width: 1200px) {
  .plan-report__card {
    padding: 20px 15px;
  }
}

.plan-report__card__inner {
  border: 1px solid #84d6d6;
  padding: 11px 9px;
}
@media screen and (min-width: 1200px) {
  .plan-report__card__inner {
    padding: 3px 9px;
  }
}

.plan-report__image {
  width: 100%;
  aspect-ratio: 260/184;
  position: relative;
}
.plan-report__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plan-report__favorite {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 26px;
  height: 26px;
}

.plan-report__body {
  text-align: left;
  padding: 4.5893719807vw 3.3816425121vw 3.3816425121vw;
  background: rgba(255, 255, 255, 0.88);
  margin: -7.6086956522vw 1.690821256vw 3.9251207729vw;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .plan-report__body {
    margin: 0 7px 16.25px;
    padding: 0;
  }
}

.plan-report__title {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(12px, 3.8647342995vw, 16px);
  padding-bottom: 6px;
  border-bottom: 1px solid #757676;
}

.plan-report__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.plan-report__area-label {
  color: #84d6d6;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid #84d6d6;
  padding: 4px;
}

.plan-report__area-name {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 2.8985507246vw, 12px);
  font-weight: 500;
}

.plan-report__tags {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.plan-report__tag {
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 2.8985507246vw, 12px);
  font-weight: 500;
  padding: 2px 6px 2px 4px;
  background: #84d6d6;
  border-radius: 45px;
  white-space: nowrap;
}

.plan-report__planner {
  display: grid;
  grid-template-columns: 65px 1fr;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  text-align: left;
  padding-inline: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan-report__planner__image {
  width: 100%;
  height: 100%;
}
.plan-report__planner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plan-report__charge {
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(8px, 2.4154589372vw, 10px);
  font-weight: 500;
  line-height: 2em;
}

.plan-report__name {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(12px, 3.3816425121vw, 14px);
  font-weight: 500;
}

.plan-report__position {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 2.8985507246vw, 12px);
  font-weight: 500;
}

.plan-report__button__container {
  margin-top: 12px;
}

.pick-up {
  background: #eef9f8;
  padding: 109px 26px 72px;
}
@media screen and (min-width: 1200px) {
  .pick-up {
    padding: 64px 100px 128px;
  }
}

.pick-up__box__container {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  padding-inline: 24px;
}
@media screen and (min-width: 1200px) {
  .pick-up__box__container {
    margin-top: 64px;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    padding-block: 36px 22px;
    -webkit-column-gap: 120px;
       -moz-column-gap: 120px;
            column-gap: 120px;
    padding-inline: 95px;
  }
}

.pick-up__box {
  padding-block: 48px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 32px;
  text-align: center;
  position: relative;
}
.pick-up__box:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 229px;
  height: 1px;
  background: #757676;
}
@media screen and (min-width: 1200px) {
  .pick-up__box:nth-of-type(n+2)::before {
    width: 1px;
    height: 193px;
    top: 50%;
    left: -75.6px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.pick-up__box__title {
  justify-self: center;
  width: auto;
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(16px, 4.8309178744vw, 20px);
  font-weight: 400;
  position: relative;
}
.pick-up__box__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(60deg);
          transform: translateY(-50%) rotate(60deg);
  left: -64px;
  width: 30px;
  height: 1px;
  background: #84d6d6;
}
.pick-up__box__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-60deg);
          transform: translateY(-50%) rotate(-60deg);
  right: -64px;
  width: 30px;
  height: 1px;
  background: #84d6d6;
}

.pick-up__box__tags {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 8px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .pick-up__box__tags {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.pick-up__box__tag {
  padding: 4px 8px;
  background: #84d6d6;
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(12px, 3.8647342995vw, 16px);
  font-weight: 500;
  border-radius: 45px;
  white-space: nowrap;
}

.voice {
  padding: 64px 15px;
}
@media screen and (min-width: 1200px) {
  .voice {
    padding: 64px 100px 70px;
  }
}

.voice__title {
  margin-left: 10px;
}

.new-voice__card__container {
  background: #C8C8C8;
  padding-block: 24px 42px;
  margin-top: 64px;
}
.new-voice__head__container__title {
  margin-left: 16px;
}

.new-voice__container__title__english {
  color: #ffffff;
}

.new-voice__container__title__japanese {
  color: #000000;
}

.voice__swiper__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.voice__card {
  margin-top: 24px;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  row-gap: 8px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
  padding: 3.8647342995vw 3.1400966184vw 3.3816425121vw;
  background: #ffffff;
}
@media screen and (min-width: 1200px) {
  .voice__card {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    grid-template-rows: 30px 25px auto auto;
    grid-template-columns: 229px 1fr auto;
    row-gap: 8px;
    padding: 28px 84px 31px 27px;
  }
}

.voice__card__image {
  grid-row: 1/5;
  grid-column: 1/2;
  max-width: 125px;
  aspect-ratio: 125/144;
  width: 30.193236715vw;
}
@media screen and (min-width: 1200px) {
  .voice__card__image {
    grid-row: 1/5;
    grid-column: 1/2;
    width: 229px;
    height: 236px;
    max-width: none;
  }
}
.voice__card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__card__text__container {
  display: contents;
}

.voice__card__title {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: clamp(14px, 3.8647342995vw, 16px);
  grid-row: 1/2;
  grid-column: 2/3;
  display: inline-block;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .voice__card__title {
    grid-row: 1/2;
    grid-column: 2/3;
    font-size: 20px;
    height: 30px;
    line-height: 1;
  }
}

.voice__card__star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-row: 2/3;
  grid-column: 2/3;
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .voice__card__star {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 20px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 25px;
  }
}

.voice__card__star__title {
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 14px);
  font-weight: 500;
}

.voice__card__star__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.voice__card__star__image {
  width: 18px;
  height: 18px;
}
.voice__card__star__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.voice__card__label {
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 12px);
  font-weight: 500;
  background: #f1b04e;
  padding: 2px 8px;
  grid-row: 4/5;
  grid-column: 2/3;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1200px) {
  .voice__card__label {
    grid-row: 4/5;
    grid-column: 2/3;
    height: 20px;
  }
}

.voice__card__text__wrapper {
  grid-row: 3/4;
  grid-column: 2/4;
  height: auto;
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .voice__card__text__wrapper {
    font-size: 16px;
    grid-row: 3/4;
    grid-column: 2/4;
  }
}

.voice__card__text {
  overflow: hidden;
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 14px);
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .voice__card__text {
    font-size: 16px;
  }
}

.voice__card__name__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.voice__card__name__image {
  width: 18px;
  height: 18px;
}
.voice__card__name__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.voice__card__name {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 12px);
  font-weight: 500;
}

.voice__card__age {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 12px);
  font-weight: 500;
}

.voice__card__gender {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 12px);
  font-weight: 500;
}

.voice__card__planner {
  margin-top: -8px;
  grid-row: 5/6;
  grid-column: 1/3;
  height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto auto;
  width: 100%;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media screen and (min-width: 1200px) {
  .voice__card__planner {
    grid-row: 1/3;
    grid-column: 3/4;
    grid-template-columns: 57px auto 1fr;
    grid-template-rows: 18px 39px;
    height: auto;
  }
}

.voice__card__planner__image {
  grid-row: 1/3;
  grid-column: 1/2;
  width: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1200px) {
  .voice__card__planner__image {
    grid-row: 1/3;
    grid-column: 1/2;
    height: auto;
  }
}
.voice__card__planner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__card__planner__charge {
  grid-row: 1/2;
  grid-column: 2/3;
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 14px);
  font-weight: 500;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .voice__card__planner__charge {
    grid-row: 1/2;
    grid-column: 2/3;
    height: auto;
  }
}

.voice__card__planner__name {
  font-size: clamp(12px, 3.8647342995vw, 16px);
  grid-row: 2/3;
  grid-column: 2/3;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .voice__card__planner__name {
    grid-row: 2/3;
    grid-column: 2/3;
    height: auto;
  }
}

.voice__card__planner__star {
  margin-top: 7px;
  grid-row: 3/4;
  grid-column: 1/3;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (min-width: 1200px) {
  .voice__card__planner__star {
    grid-row: 1/3;
    grid-column: 3/4;
  }
}

.voice__card__planner__star__image {
  width: 14px;
  height: 14px;
}
.voice__card__planner__star__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.voice__card__planner__star__score {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(10px, 3.3816425121vw, 12px);
  font-weight: 500;
}

.voice__card__planner__star__number {
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(8px, 3.3816425121vw, 12px);
  font-weight: 500;
  text-decoration-line: underline;
}

.voice__card__new {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  color: #ffffff;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 10px;
  font-weight: 400;
  padding-top: 9px;
  padding-left: 6.7px;
  background: url(../img/voice-new.png) no-repeat center center/contain;
}

.voice__card__button {
  display: inline-block;
  position: absolute;
  bottom: 29px;
  right: 62px;
}
.voice__card__button a {
  display: inline-block;
  color: #757676;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: clamp(12px, 3.8647342995vw, 16px);
  font-weight: 500;
  letter-spacing: 1.6px;
}
.voice__card__button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -43px;
  width: 135px;
  height: 1px;
  background: #757676;
}
.voice__card__button a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: -43px;
  width: 15px;
  height: 1px;
  background: #757676;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.voice-swiper-button-prev,
.voice-swiper-button-next {
  width: 28px;
  height: 28px;
  background: rgba(132, 214, 214, 0.6) url(../img/arrow-right.svg) no-repeat center center/13.125px 13.125px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .voice-swiper-button-prev,
  .voice-swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(132, 214, 214, 0.6) url(../img/arrow-right.svg) no-repeat center center/16px 16px;
  }
}
.voice-swiper-button-prev::after,
.voice-swiper-button-next::after {
  content: "";
}

.voice-swiper-button-prev {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.voice-swiper-button-next {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.instagram {
  background: url(../img/recommend-bg.png) no-repeat center center/cover;
  padding-block: 64px 64px;
}
@media screen and (min-width: 768px) {
  .instagram {
    padding-block: 65px 70px;
  }
}

.instagram__title {
  margin-left: 26px;
}
@media screen and (min-width: 1200px) {
  .instagram__title {
    margin-left: 118px;
  }
}

.instagram__images {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  padding-inline: 38px;
  row-gap: 16px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (min-width: 1200px) {
  .instagram__images {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    padding-inline: 100px;
    row-gap: 24px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.instagram__image:nth-of-type(4), .instagram__image:nth-of-type(8) {
  display: none;
}
@media screen and (min-width: 1200px) {
  .instagram__image:nth-of-type(4), .instagram__image:nth-of-type(8) {
    display: block;
  }
}

.index {
  background: #F7F7F7;
  display: grid;
  -webkit-column-gap: 61px;
     -moz-column-gap: 61px;
          column-gap: 61px;
  row-gap: 48px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  padding-block: 48px 16px;
}
@media screen and (min-width: 1200px) {
  .index {
    padding-inline: 6.9444444444vw;
  }
}

.footer__left__container {
  grid-row: 1/2;
  grid-column: 1/2;
  text-align: center;
}

.footer__logo img {
  width: 116px;
  height: 32px;
}
@media screen and (min-width: 1200px) {
  .footer__logo img {
    width: 160px;
    height: auto;
  }
}

.footer__sns {
  margin-top: 32px;
}

.footer__sns__text {
  color: #757676;
  display: inline-block;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .footer__sns__text {
    font-size: 16px;
  }
}
.footer__sns__text::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(60deg);
          transform: translateY(-50%) rotate(60deg);
  left: -20px;
  width: 16px;
  height: 1px;
  background: #757676;
}
@media screen and (min-width: 1200px) {
  .footer__sns__text::before {
    width: 21px;
  }
}
.footer__sns__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-60deg);
          transform: translateY(-50%) rotate(-60deg);
  right: -20px;
  width: 16px;
  height: 1px;
  background: #757676;
}
@media screen and (min-width: 1200px) {
  .footer__sns__text::after {
    width: 21px;
  }
}

.footer__sns__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__sns__icons a {
  display: inline-block;
}
.footer__sns__icons a:nth-of-type(1) {
  width: 13.002px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .footer__sns__icons a:nth-of-type(1) {
    width: 16.252px;
  }
}
.footer__sns__icons a:nth-of-type(2) {
  width: 14.667px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .footer__sns__icons a:nth-of-type(2) {
    width: 18.333px;
  }
}
.footer__sns__icons a:nth-of-type(3) {
  width: 16px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .footer__sns__icons a:nth-of-type(3) {
    width: 20px;
  }
}
.footer__sns__icons a:nth-of-type(4) {
  width: 16px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .footer__sns__icons a:nth-of-type(4) {
    width: 20px;
  }
}

.footer__right__container {
  grid-row: 1/2;
  grid-column: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.footer__right__index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1200px) {
  .footer__right__index {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__index__item a {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .footer__index__item a {
    font-size: 16px;
  }
}

.footer__right__introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1200px) {
  .footer__right__introduction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}

.footer__introduction__item a {
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .footer__introduction__item a {
    font-size: 16px;
  }
}

.footer__bottom__container {
  grid-row: 2/3;
  grid-column: 1/3;
  width: 100%;
  text-align: center;
}

.footer__bottom__index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.footer__bottom__index::after {
  content: "";
  position: absolute;
  top: 0;
  left: 52px;
  width: calc(100% - 104px);
  height: 1px;
  background: #757676;
}
@media screen and (min-width: 1200px) {
  .footer__bottom__index::after {
    left: 100px;
    width: calc(100% - 200px);
  }
}

.footer__bottom__item {
  padding-block: 16px;
  color: #000000;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.footer {
  background-color: #84d6d6;
  padding-block: 8px;
  padding-inline: 57px;
  text-align: center;
}

.footer__text {
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 7px;
  letter-spacing: 0.7px;
}

.footer__attention {
  color: #ffffff;
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 7px;
  letter-spacing: 0.7px;
}