@charset "UTF-8";
html {
  font-size: 0.694vw;
}

@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  color: #072334;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.pc_n {
  display: none;
}
@media (max-width: 767px) {
  .pc_n {
    display: block;
  }
}

.sp_n {
  display: block;
}
@media (max-width: 767px) {
  .sp_n {
    display: none;
  }
}

img {
  width: 100%;
}

.wrap {
  background-color: #C5C5C5;
  overflow: hidden;
}

.inner {
  max-width: 82.9rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .inner {
    max-width: none;
    margin-left: 3.3rem;
  }
}

.head {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 5.8rem;
  font-weight: 900;
  line-height: normal;
  position: relative;
  left: -10.47rem;
}
@media (max-width: 767px) {
  .head {
    font-size: 2.8rem;
    left: 0;
  }
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

p {
  line-height: 1.6;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header__inner {
  padding-left: 4.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .header__inner {
    padding-left: 1.7rem;
    padding-right: 0;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  width: 12.7rem;
  height: 6.5rem;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .header__logo {
    width: 9.2rem;
    margin-top: 1.6rem;
  }
}

.header__menu-button {
  width: 5.7rem;
  height: 5.7rem;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  top: 2.1rem;
  right: 2.5rem;
}
@media (max-width: 767px) {
  .header__menu-button {
    width: 3.6rem;
    height: 3.6rem;
    top: 1.6rem;
    right: 1.6rem;
  }
}
.header__menu-button span {
  display: inline-block;
  background-color: #000;
  width: 2.85rem;
  height: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
@media (max-width: 767px) {
  .header__menu-button span {
    width: 1.8rem;
    height: 0.2rem;
  }
}
.header__menu-button span:nth-of-type(1) {
  top: 2.375rem;
}
@media (max-width: 767px) {
  .header__menu-button span:nth-of-type(1) {
    top: 1.5rem;
  }
}
.header__menu-button span:nth-of-type(2) {
  top: 3.3rem;
}
@media (max-width: 767px) {
  .header__menu-button span:nth-of-type(2) {
    top: 2rem;
  }
}

/* ===== Global Navigation (Overlay) ===== */
body.is-gnav-open {
  overflow: hidden;
  height: 100%;
}

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.global-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-nav__inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 438px;
  padding-left: 7.3rem;
  padding-top: 10.5rem;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .global-nav__inner {
    width: 26.6rem;
    padding-left: 2.3rem;
    padding-top: 4.3rem;
  }
}

.global-nav.is-open .global-nav__inner {
  transform: translateX(0);
  background-color: #C5C5C5;
}

.global-nav__close {
  position: absolute;
  top: 2.1rem;
  right: 2.5rem;
  width: 5.7rem;
  height: 5.7rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
}
@media (max-width: 767px) {
  .global-nav__close {
    width: 3.6rem;
    height: 3.6rem;
    top: 1.6rem;
    right: 1.6rem;
  }
}
.global-nav__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.85rem;
  height: 0.3rem;
  background: #000;
  transform-origin: center;
}
.global-nav__close span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.global-nav__close span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .global-nav__close span {
    width: 1.2rem;
    height: 0.2rem;
  }
}

.global-nav__list {
  margin-top: 7.6rem;
}

.global-nav__item:nth-of-type(n+2) {
  margin-top: 4.7rem;
}
@media (max-width: 767px) {
  .global-nav__item:nth-of-type(n+2) {
    margin-top: 3.2rem;
  }
}

.global-nav__link {
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding-left: 2.8rem;
  position: relative;
}
.global-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.4rem;
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border-radius: 50%;
  background: url(../img/line04.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .global-nav__link::before {
    width: 1.35rem;
    height: 1.35rem;
    left: 0.7rem;
    top: -0.5rem;
  }
}

.global-nav__label-jp {
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 24.205px;
  font-style: normal;
  font-weight: 700;
  line-height: 0; /* 0% */
}
@media (max-width: 767px) {
  .global-nav__label-jp {
    font-size: 1.8rem;
  }
}

.global-nav__label-en {
  color: #000;
  font-family: "BioRhyme Expanded";
  font-size: 13.447px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: block;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .global-nav__label-en {
    font-size: 1rem;
  }
}

.line-register__button-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.footer {
  padding-left: 17.8rem;
  padding-right: 19.8rem;
  padding-bottom: 8.3rem;
  padding-top: 8.3rem;
  border-top: 1px solid #9D9D9D;
  background: #000;
}
@media (max-width: 767px) {
  .footer {
    padding-left: 0;
    padding-right: 0;
    border-top: none;
    padding-top: 5.4rem;
    padding-bottom: 11.7rem;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .footer__brand {
    order: 2;
    margin-top: 5.8rem;
  }
}

.footer__logo {
  width: 14.8rem;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 9.2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__copyright {
  color: #fff;
  /* SP本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem; /* 142.857% */
  letter-spacing: -0.0266rem;
  margin-top: 12.4rem;
  text-align: left;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 2rem;
    text-align: center;
    color: #fff;
  }
}

.footer__navs {
  display: flex;
  gap: 17.9rem;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .footer__navs {
    flex-direction: column;
    gap: 2.1rem;
    margin-left: 7.4rem;
  }
}

.footer__nav-list02 .footer__nav-item::after {
  content: "";
  position: absolute;
  background: url(../img/note02.png) no-repeat center center/cover;
  width: 1.4rem;
  height: 1.4rem;
  left: -2.3rem;
  top: 50%;
  transform: translateY(-50%);
}

.footer__nav-item {
  position: relative;
}
.footer__nav-item:nth-of-type(n+2) {
  margin-top: 2.1rem;
}
.footer__nav-item a {
  color: #000;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  color: #fff;
}

.fv {
  position: relative;
}
.fv img {
  width: 100%;
}

.fv__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 11.4rem;
}
@media (max-width: 767px) {
  .fv__content {
    width: 100%;
    top: 7.4rem;
  }
}

.fv__title {
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 5.2069rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
}
@media (max-width: 767px) {
  .fv__title {
    width: 100%;
    font-size: 2.82rem;
  }
}
.fv__title::after {
  content: "い　き";
  position: absolute;
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.686rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6744rem;
  top: -2.1rem;
  width: 7.5rem;
  left: 40%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .fv__title::after {
    font-size: 0.913rem;
    left: 43%;
    top: -0.9rem;
  }
}
.fv__title span {
  font-size: 8rem;
  display: inline-block;
  margin-top: -1.2rem;
}
@media (max-width: 767px) {
  .fv__title span {
    font-size: 4.3rem;
  }
}

.catchphrase {
  text-align: center;
  margin-top: -8.5rem;
  position: relative;
  z-index: 2;
  left: 0.8rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid #9D9D9D;
}
@media (max-width: 767px) {
  .catchphrase {
    left: 0;
    margin-top: -3.1rem;
  }
}

.catchphrase__text {
  color: #000;
  font-family: "BioRhyme Expanded";
  font-size: 11.6658rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: left;
  display: inline-block;
}
@media (max-width: 767px) {
  .catchphrase__text {
    font-size: 3.6rem;
  }
}

.ranking {
  padding-top: 8.2rem;
  padding-bottom: 10.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .ranking {
    padding-top: 3.2rem;
    padding-bottom: 5.2rem;
  }
}

.ranking__title {
  position: absolute;
  left: 0;
  top: 0;
}
.ranking__title::after {
  background-color: #9D9D9D;
  height: 42rem;
  width: 0.1rem;
  content: "";
  position: absolute;
  left: 13.3rem;
  top: 0;
}
@media (max-width: 767px) {
  .ranking__title::after {
    height: 18.6rem;
    left: 3.3rem;
  }
}

.ranking__title-inner {
  position: relative;
}

.ranking__number {
  color: #000;
  font-family: "BioRhyme Expanded";
  font-size: 1.9213rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 4rem;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .ranking__number {
    margin-top: 0.9rem;
    margin-left: 0;
    gap: 0.3rem;
  }
}

@media (max-width: 767px) {
  .ranking__number-mark, .ranking__number-value {
    font-size: 0.741rem;
  }
}

.ranking__heading {
  color: #000;
  font-family: "BioRhyme Expanded";
  font-size: 2.4rem;
  font-weight: 300;
  transform: rotate(90deg);
  position: absolute;
  top: 13.3rem;
  left: -4.5rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ranking__heading {
    font-size: 1.051rem;
    top: 5.6rem;
    left: -3.1rem;
  }
}

.ranking__subheading {
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 3.1071rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4039rem;
  position: relative;
  display: inline-block;
  left: -1.4rem;
}
@media (max-width: 767px) {
  .ranking__subheading {
    font-size: 1.588rem;
    left: 0;
    letter-spacing: 0.2064rem;
  }
}
.ranking__subheading::after {
  content: "※";
  position: absolute;
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.3601rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  left: -2.3rem;
  top: 0.7rem;
}
@media (max-width: 767px) {
  .ranking__subheading::after {
    font-size: 1rem;
    top: -0.1rem;
    left: -1.6rem;
  }
}

.ranking__image-box {
  width: 67.8338rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -3.61rem;
}
@media (max-width: 767px) {
  .ranking__image-box {
    width: 26.7rem;
    text-align: center;
    margin-top: -0.3rem;
  }
}

.ranking__image {
  margin-top: 5.7rem;
}
@media (max-width: 767px) {
  .ranking__image {
    margin-top: 1.6rem;
  }
}

.ranking__inner {
  max-width: 86.1996rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .ranking__inner {
    max-width: none;
    margin-left: 3.3rem;
    padding-left: 2.1rem;
    padding-right: 2.7rem;
  }
}

.ranking__subheading-text {
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.3601rem;
  font-weight: 700;
  margin-top: 1.16rem;
}
@media (max-width: 767px) {
  .ranking__subheading-text {
    font-size: 1rem;
  }
}

.media {
  padding-top: 8rem;
  padding-bottom: 13.2rem;
  position: relative;
  border-top: 1px solid #9D9D9D;
}
@media (max-width: 767px) {
  .media {
    padding-top: 3.1rem;
    padding-bottom: 5rem;
  }
}
.media .ranking__heading {
  top: 10.3rem;
  left: -1.6rem;
}
@media (max-width: 767px) {
  .media .ranking__heading {
    top: 4.1rem;
  }
}
@media (max-width: 767px) {
  .media .ranking__number {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .media__inner {
    padding-right: 3.1rem;
  }
}

.media__content {
  height: 30.9rem;
  background-color: #fff;
  padding-top: 3.3rem;
}
@media (max-width: 767px) {
  .media__content {
    height: 49.8rem;
  }
}

.media__heading {
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.7001rem;
  font-weight: 700;
}

.media__image-box {
  width: 63.9rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .media__image-box {
    width: 22.3rem;
  }
}

.media__image-box02 {
  width: 100%;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .media__image-box02 {
    margin-top: 2.6rem;
  }
}

.art {
  padding-top: 7.8rem;
  padding-bottom: 13.1rem;
  position: relative;
  border-top: 1px solid #9D9D9D;
}
@media (max-width: 767px) {
  .art {
    padding-top: 1.3rem;
    padding-bottom: 5.8rem;
  }
}
.art .ranking__title {
  top: -1.1rem;
}
@media (max-width: 767px) {
  .art .ranking__title {
    top: 0.7rem;
  }
}
.art .ranking__heading {
  top: 20rem;
  left: -10rem;
}
@media (max-width: 767px) {
  .art .ranking__heading {
    left: -5.4rem;
    top: 8rem;
  }
}

@media (max-width: 767px) {
  .art__inner {
    margin-left: 3.3rem;
    padding-left: 1.5rem;
    padding-right: 0;
  }
}

.art__text {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
  margin-top: 4.67rem;
}
@media (max-width: 767px) {
  .art__text {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    line-height: 1.4285714286;
    padding-right: 1.9rem;
  }
}

.art__block02 {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .art__block02 {
    margin-top: 1.5rem;
  }
}
.art__block02 .art__heading {
  left: -2.6rem;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .art__block02 .art__heading {
    font-size: 1.8rem;
    left: 0;
  }
}
.art__block02 .art__image-box {
  margin-top: 4.7rem;
}
@media (max-width: 767px) {
  .art__block02 .art__image-box {
    margin-top: 1.8rem;
  }
}
.art__block02 .art__text {
  margin-top: 2.7rem;
}
@media (max-width: 767px) {
  .art__block02 .art__text {
    margin-top: 1.7rem;
  }
}

.art__block03 {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .art__block03 {
    margin-top: 1.1rem;
  }
}
.art__block03 .art__heading {
  white-space: nowrap;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .art__block03 .art__heading {
    font-size: 2rem;
  }
}
.art__block03 .art__image-box {
  margin-top: 3.4rem;
}
@media (max-width: 767px) {
  .art__block03 .art__image-box {
    margin-top: 1.8rem;
  }
}
.art__block03 .art__heading {
  left: 0;
}

.art__block01 .art__image-box {
  margin-top: -4rem;
}
@media (max-width: 767px) {
  .art__block01 .art__image-box {
    margin-top: -1.4rem;
  }
}

.koke-section {
  position: relative;
  padding-top: 6.3rem;
  border-top: 1px solid #9D9D9D;
  padding-bottom: 13.7rem;
}
@media (max-width: 767px) {
  .koke-section {
    padding-top: 2rem;
    padding-bottom: 8rem;
  }
}
.koke-section .ranking__number {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .koke-section .ranking__number {
    margin-top: 1.4rem;
  }
}
.koke-section .ranking__heading {
  top: 17.3rem;
  left: -7.3rem;
}
@media (max-width: 767px) {
  .koke-section .ranking__heading {
    top: 6.6rem;
    left: -4.2rem;
  }
}
@media (max-width: 767px) {
  .koke-section .inner {
    padding-right: 0;
  }
}

.koke-heading02 {
  color: #1E1E1E;
  white-space: nowrap;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .koke-heading02 {
    font-size: 1.8rem;
  }
}

.koke-text {
  margin-top: 4.3rem;
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .koke-text {
    margin-top: 1rem;
    line-height: 1.4285714286;
    font-size: 1.4rem;
    padding-right: 2.8rem;
  }
}

.koke-block--difficult {
  margin-top: 2.1rem;
}
@media (max-width: 767px) {
  .koke-block--difficult {
    margin-top: 4.4rem;
  }
}
.koke-block--difficult .koke-heading02 {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .koke-block--difficult .koke-heading02 {
    font-size: 2rem;
  }
}
.koke-block--difficult .koke-heading02 {
  left: 0;
}
.koke-block--difficult .koke-text {
  margin-top: 2.1rem;
}
@media (max-width: 767px) {
  .koke-block--difficult .koke-text {
    margin-top: 2.6rem;
  }
}
.koke-block--difficult .koke-image-box {
  margin-top: 1.9rem;
  height: 44rem;
}
@media (max-width: 767px) {
  .koke-block--difficult .koke-image-box {
    height: 21.5rem;
  }
}
.koke-block--difficult .koke-image-box img {
  height: 100%;
}

.koke-block--solution {
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .koke-block--solution {
    margin-top: 3.2rem;
  }
}
.koke-block--solution .koke-text {
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .koke-block--solution .koke-text {
    font-size: 1.4rem;
    margin-top: 1.1rem;
  }
}
.koke-block--solution .koke-heading02 {
  left: 0;
}

.koke-block--intro .koke-image-box {
  margin-top: -4.2rem;
  height: 44rem;
}
@media (max-width: 767px) {
  .koke-block--intro .koke-image-box {
    height: 21.5rem;
  }
}
.koke-block--intro .koke-image-box img {
  height: 100%;
}
@media (max-width: 767px) {
  .koke-block--intro .koke-image-box {
    margin-top: -1.2rem;
  }
}

.koke-block--why {
  margin-top: 9.6rem;
}
@media (max-width: 767px) {
  .koke-block--why {
    margin-top: 4.4rem;
  }
}
.koke-block--why .koke-text {
  margin-top: 1.8rem;
}
@media (max-width: 767px) {
  .koke-block--why .koke-text {
    margin-top: 2.1rem;
  }
}
.koke-block--why .koke-heading02 {
  left: 0;
  padding-bottom: 2.7rem;
  padding-top: 2.3rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 5rem;
}
@media (max-width: 767px) {
  .koke-block--why .koke-heading02 {
    font-size: 2rem;
    padding-top: 0.7rem;
    padding-bottom: 0.8rem;
    margin-right: 2.8rem;
    white-space: normal;
  }
}

.function__images--main {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .function__images--main {
    margin-top: -1.2rem !important;
    gap: 2.4rem;
  }
  .function__images--main img {
    height: 21.5rem;
    display: inline-block;
  }
}

.koke-block--reason-list {
  margin-top: 6.6rem;
}
@media (max-width: 767px) {
  .koke-block--reason-list {
    margin-top: 2.6rem;
  }
}
.koke-block--reason-list .koke-reason__text {
  position: relative;
}
.koke-block--reason-list .koke-reason__text::after {
  content: "";
  position: absolute;
  background: url(../img/line.png) no-repeat center center/cover;
  width: 3.8rem;
  height: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  top: -2.9rem;
}
@media (max-width: 767px) {
  .koke-block--reason-list .koke-reason__text::after {
    left: 45%;
  }
}
.koke-block--reason-list .koke-text {
  margin-top: 3.6rem;
}
@media (max-width: 767px) {
  .koke-block--reason-list .koke-text {
    margin-top: 3.3rem;
  }
}

.koke-heading03 {
  color: #26468D;
  text-align: center;
  font-size: 3.8655rem;
  font-weight: 900;
  width: 78.4rem;
  height: 9.9rem;
  border-radius: 1.5032rem;
  background: #FFF;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .koke-heading03 {
    width: 26.1rem;
    height: 4.6rem;
    font-size: 1.8rem;
    margin-left: 2rem;
    border-radius: 0.7rem;
  }
}
.koke-heading03::after {
  content: "";
  position: absolute;
  background: url(../img/triangle01.png) no-repeat center center/cover;
  width: 3.1138rem;
  height: 2.6037rem;
  flex-shrink: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5rem;
}
@media (max-width: 767px) {
  .koke-heading03::after {
    width: 1.45rem;
    height: 1.45rem;
    bottom: -1.4rem;
  }
}

.koke-reason-list {
  margin-top: 6.39rem;
}
@media (max-width: 767px) {
  .koke-reason-list {
    width: 26.1rem;
    margin-top: 1.6rem;
    margin-right: auto;
    padding-top: 1.9rem;
    margin-left: 2rem;
    bor: 0.7rem;
  }
}

.koke-reason-item {
  padding-top: 4.9rem;
  background-color: #fff;
  border-radius: 1.5032rem;
  text-align: center;
  background: #FFF;
  position: relative;
}
@media (max-width: 767px) {
  .koke-reason-item {
    padding-top: 1.9rem;
    border-radius: 0.7rem;
  }
}
.koke-reason-item::after {
  content: "";
  position: absolute;
  width: 8.5rem;
  height: 8.1604rem;
  flex-shrink: 0;
  top: -4rem;
  left: -2.6rem;
}
@media (max-width: 767px) {
  .koke-reason-item::after {
    width: 4rem;
    height: 3.8rem;
    top: -2rem;
    left: -2.2rem;
  }
}
.koke-reason-item:nth-of-type(n+2) {
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(n+2) {
    margin-top: 2.6rem;
  }
}
.koke-reason-item:nth-of-type(1) {
  padding-bottom: 3.7rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(1) {
    padding-bottom: 1.8rem;
  }
}
.koke-reason-item:nth-of-type(1) .koke-reason__desc {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(1) .koke-reason__desc {
    margin-top: 3.4rem;
  }
}
.koke-reason-item:nth-of-type(1)::after {
  background: url(../img/one.png) no-repeat center center/cover;
}
.koke-reason-item:nth-of-type(2) {
  padding-bottom: 4.7rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(2) {
    padding-bottom: 2.1rem;
  }
}
.koke-reason-item:nth-of-type(2) .koke-reason__desc {
  margin-top: 6.11rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(2) .koke-reason__desc {
    margin-top: 3.7rem;
  }
}
.koke-reason-item:nth-of-type(2) .koke-reason__desc::before {
  position: absolute;
  content: "";
  width: 26.4rem;
  bottom: 6rem;
  left: 47%;
  transform: translateX(-50%);
  background-color: #26468D;
  height: 0.4rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(2) .koke-reason__desc::before {
    height: 0.2rem;
    width: 13.2rem;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(2) .koke-reason__desc::after {
    bottom: 2.8rem;
  }
}
.koke-reason-item:nth-of-type(2)::after {
  background: url(../img/two.png) no-repeat center center/cover;
}
.koke-reason-item:nth-of-type(3) {
  padding-bottom: 5.3rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(3) {
    padding-bottom: 2.5rem;
  }
}
.koke-reason-item:nth-of-type(3) .koke-reason__desc {
  margin-top: 5.48rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(3) .koke-reason__desc {
    margin-top: 3rem;
  }
}
.koke-reason-item:nth-of-type(3) .koke-reason__desc::before {
  position: absolute;
  content: "";
  width: 43.1rem;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26468D;
  height: 0.4rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(3) .koke-reason__desc::before {
    height: 0.2rem;
    width: 17.4rem;
    bottom: 0;
    left: 47%;
  }
}
.koke-reason-item:nth-of-type(3) .koke-reason__desc::after {
  bottom: 0;
  width: 37.3rem;
}
@media (max-width: 767px) {
  .koke-reason-item:nth-of-type(3) .koke-reason__desc::after {
    width: 20.1rem;
    bottom: 3rem;
    left: 47%;
  }
}
.koke-reason-item:nth-of-type(3)::after {
  background: url(../img/tree.png) no-repeat center center/cover;
}

.koke-reason__title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 3.0065rem;
  font-weight: 900;
  position: relative;
}
@media (max-width: 767px) {
  .koke-reason__title {
    font-size: 1.4rem;
  }
}
.koke-reason__title::after {
  content: "";
  position: absolute;
  background: url(../img/line.png) no-repeat center center/cover;
  width: 4.295rem;
  height: 1.4058rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.3rem;
}
@media (max-width: 767px) {
  .koke-reason__title::after {
    width: 2rem;
    height: 0.8rem;
    bottom: -2.3rem;
  }
}

.koke-reason__desc {
  color: #26468D;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 3.8655rem;
  font-weight: 900;
  line-height: 6.2277rem;
  letter-spacing: -0.0734rem;
  position: relative;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .koke-reason__desc {
    font-size: 1.8rem;
    line-height: 1.6111111111;
  }
}
.koke-reason__desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #26468D;
  width: 100%;
  height: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .koke-reason__desc::after {
    height: 0.2rem;
  }
}

.koke-block--feature {
  margin-top: 9.2rem;
}
@media (max-width: 767px) {
  .koke-block--feature {
    margin-top: 2.4rem;
  }
}
.koke-block--feature .koke-text {
  margin-top: 1.9rem;
}
@media (max-width: 767px) {
  .koke-block--feature .koke-text {
    margin-top: 1.3rem;
  }
}
.koke-block--feature .koke-image-box {
  margin-top: 5.2rem;
}
@media (max-width: 767px) {
  .koke-block--feature .koke-image-box {
    margin-top: 2.8rem;
    height: 21.5rem;
  }
  .koke-block--feature .koke-image-box img {
    height: 100%;
  }
}
.koke-block--feature .koke-text--margin {
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .koke-block--feature .koke-text--margin {
    margin-top: 1.8rem;
  }
}
.koke-block--feature .koke-image-box02 {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .koke-block--feature .koke-image-box02 {
    margin-top: 1.3rem;
    height: 21.5rem;
  }
  .koke-block--feature .koke-image-box02 img {
    height: 100%;
    object-fit: cover;
  }
}
.koke-block--feature .koke-heading02 {
  margin-top: 13.6rem;
  left: 0;
  padding-top: 2.7rem;
  padding-bottom: 4.3rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .koke-block--feature .koke-heading02 {
    margin-top: 6.9rem;
    padding-top: 0.8rem;
    padding-bottom: 0.7rem;
  }
}

.koke-block--solution .koke-image-box {
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .koke-block--solution .koke-image-box {
    margin-top: -1.2rem;
    height: 21.5rem;
  }
  .koke-block--solution .koke-image-box img {
    height: 100%;
  }
}

.development {
  padding-top: 9.2rem;
  padding-bottom: 12.7rem;
  position: relative;
  border-top: 1px solid #9D9D9D;
}
@media (max-width: 767px) {
  .development {
    padding-top: 1.9rem;
    padding-bottom: 9rem;
  }
}
.development .ranking__number {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .development .ranking__number {
    margin-top: 1.6rem;
  }
}
.development .ranking__heading {
  top: 20.3rem;
  left: -10.8rem;
}
@media (max-width: 767px) {
  .development .ranking__heading {
    top: 8.1rem;
    left: -5.8rem;
  }
}

.development__main .development__main-image-box {
  margin-top: -4.5rem;
}
@media (max-width: 767px) {
  .development__main .development__main-image-box {
    margin-top: -1.5rem;
    height: 21.5rem;
  }
  .development__main .development__main-image-box img {
    height: 100%;
  }
}
.development__main .development__main-text {
  color: #1E1E1E;
  margin-top: 2.37rem;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .development__main .development__main-text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding-right: 2.8rem;
  }
}

.development__point-label {
  width: 18.7rem;
  height: 6.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2.9rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  border-radius: 7.9085rem;
  background: #FFF;
}
@media (max-width: 767px) {
  .development__point-label {
    width: 10.7rem;
    height: 2.5rem;
    font-size: 1.7rem;
    border-radius: 10rem;
  }
}

.development__point-text {
  color: #1E1E1E;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .development__inner {
    padding-right: 0;
  }
}

.point01 {
  margin-top: 5.8rem;
}
@media (max-width: 767px) {
  .point01 {
    margin-top: 4.7rem;
  }
}
.point01 .development__point-heading {
  margin-top: 2.2rem;
  left: 0;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .point01 .development__point-heading {
    margin-top: 1.6rem;
    font-size: 1.8rem;
  }
}
.point01 .development__point-image-box {
  margin-top: 1.9rem;
}
@media (max-width: 767px) {
  .point01 .development__point-image-box {
    margin-top: 1.8rem;
    height: 21.5rem;
  }
  .point01 .development__point-image-box img {
    height: 100%;
  }
}
.point01 .development__point-text {
  margin-top: 2.47rem;
}
@media (max-width: 767px) {
  .point01 .development__point-text {
    padding-right: 2.8rem;
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.point01 .development__color-image-box {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 767px) {
  .point01 .development__color-image-box {
    gap: 1.5rem;
    margin-top: 1.8rem;
    margin-right: 3rem;
  }
}

.development__point-text {
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .development__point-text {
    font-size: 1.6rem;
  }
}

.point02 {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .point02 {
    margin-top: 5.5rem;
  }
}
.point02 .development__point-heading {
  left: 0;
  margin-top: 2rem;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .point02 .development__point-heading {
    margin-top: 0.4rem;
    font-size: 1.8rem;
  }
}
.point02 .development__point-image-box {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .point02 .development__point-image-box {
    margin-top: 1.3rem;
    height: 21.5rem;
  }
  .point02 .development__point-image-box img {
    height: 100%;
  }
}
.point02 .development__point-text {
  margin-top: 2.47rem;
}
@media (max-width: 767px) {
  .point02 .development__point-text {
    margin-top: 1.8rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding-right: 2.8rem;
  }
}

.point03 {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .point03 {
    margin-top: 5.1rem;
  }
}
.point03 .development__point-heading {
  margin-top: 2.44rem;
  left: 0;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .point03 .development__point-heading {
    margin-top: 1rem;
    font-size: 1.8rem;
    padding-right: 0;
  }
}
.point03 .development__point-image-box {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .point03 .development__point-image-box {
    margin-top: 1.3rem;
    height: 21.5rem;
  }
  .point03 .development__point-image-box img {
    height: 100%;
  }
}
.point03 .development__point-text {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .point03 .development__point-text {
    padding-right: 2.8rem;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    line-height: 1.4285714286;
  }
}

.point04 {
  margin-top: 3.8rem;
}
@media (max-width: 767px) {
  .point04 {
    margin-top: 4.3rem;
  }
}
.point04 .development__point-heading {
  margin-top: 2.2rem;
  left: 0;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .point04 .development__point-heading {
    margin-top: 1.2rem;
    font-size: 1.8rem;
  }
}
.point04 .development__point-image-box {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .point04 .development__point-image-box {
    margin-top: 1.3rem;
    height: 20.5rem;
  }
  .point04 .development__point-image-box img {
    height: 100%;
  }
}
.point04 .development__point-text {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .point04 .development__point-text {
    margin-top: 2.4rem;
    padding-right: 2.8rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.point05 {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .point05 {
    margin-top: 0.6rem;
  }
}
.point05 .development__point-heading {
  left: 0;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .point05 .development__point-heading {
    font-size: 1.8rem;
    margin-top: 1.3rem;
  }
}
.point05 .development__point-text {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .point05 .development__point-text {
    font-size: 1.4rem;
    margin-top: 0.2rem;
  }
}
.point05 .development__point-image-box {
  margin-top: 5.5rem;
}
@media (max-width: 767px) {
  .point05 .development__point-image-box {
    height: 21.5rem;
    margin-top: 2.1rem;
  }
  .point05 .development__point-image-box img {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .development__point-heading {
    font-size: 1.8rem;
    margin-right: 2.8rem;
  }
}

.function {
  padding-top: 4.5rem;
  position: relative;
  padding-bottom: 12.2rem;
  border-top: 1px solid #9D9D9D;
}
@media (max-width: 767px) {
  .function {
    padding-top: 2.3rem;
    padding-bottom: 7.5rem;
  }
}
.function .ranking__heading {
  top: 14.5rem;
  left: -5.5rem;
}
@media (max-width: 767px) {
  .function .ranking__heading {
    top: 6.1rem;
    left: -3.4rem;
  }
}
@media (max-width: 767px) {
  .function .ranking__number {
    margin-top: 1.4rem;
  }
}

@media (max-width: 767px) {
  .function__inner {
    padding-right: 0;
  }
}

.function__block--design .function__images {
  margin-top: 4.6rem;
}
.function__block--design .function__images img {
  display: inline-block;
}
.function__block--design .function__images img:nth-of-type(n+2) {
  margin-top: 2.47rem;
}
.function__block--design .function__text {
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .function__block--design .function__text {
    font-size: 1.4rem;
    padding-right: 2.8rem;
    margin-top: 1.3rem;
  }
}
.function__block--design .function__text02 {
  margin-top: 7.8rem;
}

.function__text {
  color: #1E1E1E;
  margin-top: 1.9rem;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
}

.function__block--designer {
  margin-top: 4.4rem;
}
.function__block--designer .function__subheading {
  margin-top: 4.4rem;
}
.function__block--designer .function__images--designer {
  margin-top: -4.1rem;
}

.lineup__container {
  max-width: 103.4rem;
  margin-left: auto;
  margin-right: auto;
}

.lineup__number {
  color: #000;
  font-family: "Cormorant Garamond";
  font-size: 1.6733rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .lineup__number {
    position: relative;
    top: -0.2rem;
    font-size: 0.741rem;
  }
}

.lineup__item:nth-of-type(n+2) {
  margin-top: 9.9rem;
}
.lineup__item:nth-of-type(3) .lineup__images {
  margin-top: 5rem;
}
.lineup__item:nth-of-type(3) .lineup__description {
  margin-top: 2.3rem;
}
.lineup__item:nth-of-type(3) .lineup__note {
  margin-top: 3.7rem;
}

.lineup__button-wrapper {
  margin-top: 5.7rem;
}

.lineup__button {
  width: 46.5rem;
  display: flex;
  flex-direction: column;
  height: 9.4rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFF600;
  padding-top: 1.45rem;
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4453rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 5rem;
}

.lineup__button-note {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Zen Kaku Gothic New";
  font-size: 2.8906rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-align: left;
  padding-left: 10.84rem;
  position: relative;
}
@media (max-width: 767px) {
  .lineup__button-note {
    padding-left: 7.5rem;
    font-size: 2rem;
    border-radius: 0.5rem;
  }
}
.lineup__button-note::after {
  content: "";
  position: absolute;
  background: url(../img/line02.png) no-repeat center center/cover;
  width: 3.18rem;
  height: 3.18rem;
  top: 0.4rem;
  right: 11.1rem;
}
@media (max-width: 767px) {
  .lineup__button-note::after {
    width: 2.2rem;
    height: 2.2rem;
    right: 7.5rem;
  }
}

.supervision-section {
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .supervision-section {
    padding-bottom: 5.9rem;
  }
}
.supervision-section .lineup__heading {
  font-size: 2.2rem;
}
.supervision-section .lineup__title {
  gap: 3.4rem;
}
.supervision-section .lineup__number {
  position: relative;
  left: 1.5rem;
}

.supervision__container {
  margin-top: 2.4rem;
  max-width: 78.7rem;
  margin-left: auto;
  margin-right: auto;
}

.supervision__supervisor-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}

.supervision__supervisor-label {
  margin-top: 2.8rem;
}

.supervision__profile {
  margin-top: 4.3rem;
}

.supervision__name {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}

.supervision__works {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .supervision__works {
    margin-top: 2rem;
  }
}

.supervision__works-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 3rem;
  font-weight: 700;
  padding-top: 2.3rem;
  padding-bottom: 2.6rem;
  border-top: 2px solid #9D9D9D;
  border-bottom: 2px solid #9D9D9D;
}
@media (max-width: 767px) {
  .supervision__works-title {
    padding-top: 0.8rem;
    padding-bottom: 1.2rem;
  }
}

.supervision__works-list {
  padding-bottom: 2.88rem;
  border-bottom: 2px solid #9D9D9D;
  margin-top: 2.5rem;
}

.voice-section__container {
  max-width: 78.9rem;
  margin-left: auto;
  margin-right: auto;
}

.ranking__heading {
  top: 14.5rem;
  left: -4.5rem;
}
@media (max-width: 767px) {
  .ranking__heading {
    top: 5.6rem;
    left: -3.1rem;
  }
}

.function__block--design .function__images {
  margin-top: -4.6rem;
}
.function__block--design .function__images img {
  display: inline-block;
}
.function__block--design .function__images img:nth-of-type(n+2) {
  margin-top: 2.47rem;
}
.function__block--design .function__text {
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .function__block--design .function__text {
    margin-top: 1.3rem;
  }
}
.function__block--design .function__text02 {
  margin-top: 3.8rem;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .function__block--design .function__text02 {
    margin-top: 1.8rem;
    font-size: 1.6rem;
  }
}

.function__text {
  color: #1E1E1E;
  margin-top: 1.9rem;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .function__text {
    margin-top: 1.3rem;
    line-height: 1.4285714286;
    font-size: 1.4rem;
  }
}

.function__block--feature {
  margin-top: 13.1rem;
}
@media (max-width: 767px) {
  .function__block--feature {
    margin-right: 0rem;
    margin-top: 3.4rem;
  }
}
.function__block--feature .function__text {
  margin-top: 2.7rem;
}
@media (max-width: 767px) {
  .function__block--feature .function__text {
    margin-top: 0.8rem;
    margin-right: 1rem;
    font-size: 1.4rem;
    margin-right: 2.8rem;
  }
}
.function__block--feature .function__heading {
  left: 0;
  font-size: 4.8rem;
  padding-top: 2.7rem;
  padding-bottom: 2.3rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .function__block--feature .function__heading {
    font-size: 2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.7rem;
    margin-right: 2.8rem;
  }
}
.function__block--feature .function__images {
  margin-top: 5.8rem;
}
@media (max-width: 767px) {
  .function__block--feature .function__images {
    margin-top: 2.1rem;
    margin-right: 2.9rem;
  }
}
.function__block--feature .function__images img {
  display: inline-block;
  border-radius: 1.6rem;
}
.function__block--feature .function__images img:nth-of-type(n+2) {
  margin-top: 4.7rem;
}
@media (max-width: 767px) {
  .function__block--feature .function__images img:nth-of-type(n+2) {
    margin-top: 1.7rem;
  }
}
.function__block--feature .function__text03 {
  margin-top: 5.7rem;
}
@media (max-width: 767px) {
  .function__block--feature .function__text03 {
    margin-top: 1.7rem;
  }
}
.function__block--feature .function__image-box {
  height: 44.4rem;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .function__block--feature .function__image-box {
    height: 21.5rem;
  }
}
.function__block--feature .function__image-box img {
  height: 100%;
}

.function__block--designer {
  margin-top: 1.8rem;
}
@media (max-width: 767px) {
  .function__block--designer {
    margin-top: 1.4rem;
  }
}
.function__block--designer .function__subheading {
  margin-top: 12.1rem;
  left: 0;
  font-size: 5rem;
  padding-top: 2.7rem;
  padding-bottom: 2.3rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .function__block--designer .function__subheading {
    margin-top: 4.8rem;
    font-size: 2rem;
    padding-top: 0.9rem;
    padding-bottom: 0.6rem;
    margin-right: 2.8rem;
  }
}
.function__block--designer .function__images--designer {
  margin-top: 5.8rem;
}
@media (max-width: 767px) {
  .function__block--designer .function__images--designer {
    margin-top: 2.6rem;
    height: 21.5rem;
  }
  .function__block--designer .function__images--designer img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .function__block--designer .function__text {
    padding-right: 2.8rem;
  }
}
.function__block--designer .function__heading {
  left: 0;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .function__block--designer .function__heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .function__heading {
    padding-right: 3.7rem;
  }
}

.lineup {
  padding-bottom: 19.2rem;
}
@media (max-width: 767px) {
  .lineup {
    padding-bottom: 7.1rem;
  }
}

.lineup__container {
  max-width: 103.4rem;
  margin-left: auto;
  margin-right: auto;
}

.lineup__title {
  padding-top: 3.05rem;
  padding-bottom: 3.05rem;
  border-top: 1px solid #9D9D9D;
  border-bottom: 1px solid #9D9D9D;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .lineup__title {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    gap: 1rem;
  }
}

.lineup__number {
  color: #000;
  font-family: "Cormorant Garamond";
  font-size: 1.6733rem;
  font-weight: 400;
}

.lineup__number-value {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  font-family: "BioRhyme Expanded";
  font-size: 1.6733rem;
}
@media (max-width: 767px) {
  .lineup__number-value {
    font-size: 0.741rem;
    margin-left: -0.4rem;
    margin-right: -0.4rem;
  }
}

@media (max-width: 767px) {
  .lineup__number-paren {
    font-size: 0.741rem;
  }
}

.lineup__heading {
  color: #000;
  font-family: "BioRhyme Expanded";
  font-size: 2.3726rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .lineup__heading {
    font-size: 1.051rem;
  }
}

.lineup__subtitle {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-top: 3.1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .lineup__subtitle {
    font-size: 2.8rem;
    margin-top: 1.3rem;
  }
}

.lineup__items {
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  .lineup__items {
    margin-top: 1.3rem;
  }
}

.lineup__item-title {
  width: 40.9024rem;
  height: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.585px solid #000;
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.1707rem; /* 144.124% */
  letter-spacing: -0.0418rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .lineup__item-title {
    width: 17.7rem;
    height: 2.8rem;
    font-size: 1.4rem;
  }
}

.lineup__images {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.9rem;
}
@media (max-width: 767px) {
  .lineup__images {
    margin-top: 1.2rem;
  }
}

.lineup__description {
  color: #1E1E1E;
  text-align: center;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  margin-top: 1.8rem;
}
@media (max-width: 767px) {
  .lineup__description {
    font-size: 1rem;
    margin-top: 1.3rem;
  }
}

.lineup__note {
  color: #1E1E1E;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  margin-top: 1.7rem;
  width: 78.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .lineup__note {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-left: 2.5rem;
    width: auto;
    margin-right: 2.8rem;
    margin-top: 0;
  }
}

.lineup__item:nth-of-type(n+2) {
  margin-top: 9.9rem;
}
@media (max-width: 767px) {
  .lineup__item:nth-of-type(n+2) {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .lineup__item:nth-of-type(3) {
    margin-top: 6.2rem;
  }
}
.lineup__item:nth-of-type(3) .lineup__images {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .lineup__item:nth-of-type(3) .lineup__images {
    margin-top: 1rem;
  }
}
.lineup__item:nth-of-type(3) .lineup__description {
  margin-top: 2.3rem;
}
@media (max-width: 767px) {
  .lineup__item:nth-of-type(3) .lineup__description {
    margin-top: 1.3rem;
  }
}
.lineup__item:nth-of-type(3) .lineup__note {
  margin-top: 3.7rem;
}
@media (max-width: 767px) {
  .lineup__item:nth-of-type(3) .lineup__note {
    margin-top: 0.7rem;
  }
}

.lineup__button-wrapper {
  margin-top: 5.7rem;
}
@media (max-width: 767px) {
  .lineup__button-wrapper {
    margin-top: 4rem;
    margin-left: 2.5rem;
    margin-right: 2.8rem;
  }
}

.lineup__button {
  width: 46.5rem;
  display: flex;
  flex-direction: column;
  height: 9.4rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFF600;
  padding-top: 1.45rem;
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4453rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 5rem;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .lineup__button {
    width: 32.2rem;
    height: 6.5rem;
    padding-top: 1rem;
    font-size: 1rem;
  }
}

.supervision-section {
  padding-bottom: 15rem;
}
@media (max-width: 767px) {
  .supervision-section {
    padding-bottom: 5.6rem;
  }
}
.supervision-section .lineup__heading {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .supervision-section .lineup__heading {
    font-size: 1.051rem;
  }
}
.supervision-section .lineup__title {
  gap: 3.4rem;
}
@media (max-width: 767px) {
  .supervision-section .lineup__title {
    gap: 3rem;
  }
}
.supervision-section .lineup__number {
  position: relative;
  left: 1.5rem;
}
@media (max-width: 767px) {
  .supervision-section .lineup__number {
    top: -0.3rem;
  }
}

.supervision__container {
  margin-top: 2.4rem;
  max-width: 78.7rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .supervision__container {
    margin-top: 2rem;
  }
}

.supervision__supervisor-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .supervision__supervisor-title {
    font-size: 2.8rem;
  }
}

.supervision__supervisor-label {
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .supervision__supervisor-label {
    margin-top: 1rem;
    margin-left: 2.5rem;
    margin-right: 2.7rem;
  }
}

.supervision__profile {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .supervision__profile {
    margin-top: 2.9rem;
  }
}

.supervision__name {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .supervision__name {
    font-size: 2.8rem;
  }
}

.supervision__bio {
  color: #1E1E1E;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .supervision__bio {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 0.3rem;
    margin-left: 2.5rem;
    margin-right: 2.7rem;
  }
}

.supervision__works {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .supervision__works {
    margin-top: 1.5rem;
    margin-left: 2.5rem;
    margin-right: 2.7rem;
  }
}

.supervision__works-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 3rem;
  font-weight: 700;
  padding-top: 2.3rem;
  padding-bottom: 2.6rem;
  border-top: 2px solid #9D9D9D;
  border-bottom: 2px solid #9D9D9D;
}
@media (max-width: 767px) {
  .supervision__works-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }
}

.supervision__works-list {
  padding-bottom: 2.88rem;
  border-bottom: 2px solid #9D9D9D;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .supervision__works-list {
    margin-top: 1.4rem;
    padding-bottom: 1.4rem;
  }
}

.supervision__works-item {
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  padding-left: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .supervision__works-item {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.supervision__works-item::after {
  content: "・";
  position: absolute;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  color: #1E1E1E;
  top: 0;
  left: 0;
}

.voice-section {
  padding-bottom: 9.2rem;
}
@media (max-width: 767px) {
  .voice-section {
    padding-bottom: 4.2rem;
  }
}

.voice-section__container {
  max-width: 78.9rem;
  margin-left: auto;
  margin-right: auto;
}

.voice-section__voices {
  margin-top: 4.3rem;
}
@media (max-width: 767px) {
  .voice-section__voices {
    margin-top: 2rem;
  }
}

.voice-section__voices-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .voice-section__voices-title {
    font-size: 2.8rem;
  }
}

.voice-section__voice-list {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .voice-section__voice-list {
    margin-left: 2.7rem;
    margin-right: 2.6rem;
    margin-top: 2.9rem;
  }
}

.voice-section__voice-item {
  padding: 3.2rem 6.4rem 4.1rem 6.2rem;
  background-color: #FFF9DE;
  border-radius: 4rem 4rem 4rem 0;
  background: #fff;
  position: relative;
  height: 22.8rem;
}
@media (min-width: 768px) {
  .voice-section__voice-item:last-of-type {
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .voice-section__voice-item {
    height: 28.9rem;
    padding: 3.4rem 2.2rem 0 2.5rem;
  }
}
.voice-section__voice-item::after {
  content: "";
  position: absolute;
  background: url(../img/Subtract.png) no-repeat center center/cover;
  width: 4.4rem;
  height: 4.4rem;
  bottom: -4.4rem;
  left: 0rem;
}
.voice-section__voice-item:nth-of-type(n+2) {
  margin-top: 7.8rem;
}
@media (max-width: 767px) {
  .voice-section__voice-item:nth-of-type(n+2) {
    margin-top: 5.4rem;
  }
}

.voice-section__voice-person {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem; /* 142.857% */
  letter-spacing: -0.0266rem;
  width: 8.7rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D9D9D9;
}

.voice-section__voice-headline {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.7rem; /* 150% */
  letter-spacing: -0.0342rem;
  margin-top: 0.5rem;
}

.voice-section__voice-text {
  color: #000;
  /* SP本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.0266rem;
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .voice-section__voice-text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.voice-section__campaign {
  padding-top: 12.1rem;
}
@media (max-width: 767px) {
  .voice-section__campaign {
    padding-top: 8.8rem;
    margin-left: 2.5rem;
    margin-right: 2.8rem;
  }
}

.voice-section__campaign-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .voice-section__campaign-title {
    font-size: 2.8rem;
  }
}

.voice-section__campaign-lead {
  margin-top: 2.5rem;
  color: #1E1E1E;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .voice-section__campaign-lead {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-top: 2.7rem;
  }
}

.voice-section__campaign-list {
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .voice-section__campaign-list {
    margin-top: 3.1rem;
  }
}
.voice-section__campaign-list li {
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  padding-left: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .voice-section__campaign-list li {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding-left: 1.9rem;
  }
}
.voice-section__campaign-list li span {
  display: inline-block;
  margin-left: 2.5rem;
}
.voice-section__campaign-list li::after {
  content: "・";
  position: absolute;
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  left: 0;
  top: 0;
}

.voice-section__campaign-btn-wrapper {
  margin-top: 2.9rem;
}
@media (max-width: 767px) {
  .voice-section__campaign-btn-wrapper {
    margin-top: 1.7rem;
  }
}

.voice-section__campaign-btn {
  width: 46.4rem;
  height: 8.8rem;
  display: flex;
  align-items: center;
  border-radius: 5rem;
  background-color: #27B24E;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10.5rem;
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 2.8876rem;
  font-weight: 900;
  position: relative;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .voice-section__campaign-btn {
    width: 32.2rem;
    font-size: 2rem;
    padding-left: 7.3rem;
    height: 6.1rem;
  }
}
.voice-section__campaign-btn::after {
  content: "";
  position: absolute;
  width: 5.1977rem;
  height: 5.0533rem;
  background: url(../img/line-icon.png) no-repeat center center/cover;
  top: 50%;
  transform: translateY(-50%);
  left: 3.75rem;
}
@media (max-width: 767px) {
  .voice-section__campaign-btn::after {
    width: 3.6rem;
    height: 3.5rem;
    left: 2.6rem;
  }
}

.voice-section__caution {
  margin-top: 5.6rem;
}
@media (max-width: 767px) {
  .voice-section__caution {
    margin-top: 5.9rem;
  }
}

.voice-section__caution-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .voice-section__caution-title {
    font-size: 2.8rem;
  }
}

.voice-section__caution-text {
  margin-top: 2.7rem;
  color: #1E1E1E;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .voice-section__caution-text {
    font-size: 1rem;
    margin-left: 2.5rem;
    margin-right: 2.9rem;
  }
}

.footer .voice-section__faq {
  padding-top: 3.8rem;
}
@media (max-width: 767px) {
  .footer .voice-section__faq {
    padding-top: 4.2rem;
  }
}

.voice-section__faq-title {
  color: #1E1E1E;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .voice-section__faq-title {
    font-size: 2.8rem;
  }
}

.voice-section__faq-list {
  margin-top: 3.8rem;
}
@media (max-width: 767px) {
  .voice-section__faq-list {
    margin-left: 2.5rem;
    margin-right: 2.8rem;
    margin-top: 1.8rem;
  }
}

.voice-section__faq-item:nth-of-type(n+2) {
  margin-top: 1.5rem;
}

.voice-section__faq-q {
  font-size: 2rem;
}

.voice-section__faq-question {
  padding-top: 1.45rem;
  padding-bottom: 1.45rem;
  display: flex;
  align-items: center;
  padding-left: 1.6rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background: #7E7E7E;
  color: #FFF;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5501rem; /* 159.384% */
  position: relative;
}
@media (max-width: 767px) {
  .voice-section__faq-question {
    font-size: 1.4rem;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 1.4285714286;
    padding-right: 3.4rem;
  }
}
.voice-section__faq-question::after {
  content: "";
  position: absolute;
  width: 2.1rem;
  height: 2.1rem;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.6rem;
}
@media (max-width: 767px) {
  .voice-section__faq-question::after {
    right: 1.3rem;
  }
}
.voice-section__faq-question::before {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 0.1rem;
  flex-shrink: 0;
  background: #000;
  top: 50%;
  transform: translateY(-50%);
  right: 1.1rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .voice-section__faq-question::before {
    right: 1.8rem;
  }
}
.voice-section__faq-question span {
  display: inline-block;
  margin-right: 1.6rem;
}

.voice-section__faq-answer {
  border-radius: 0 0 0.5rem 0.5rem;
  background: #FFF;
  padding: 1rem 0.6rem 1rem 1.6rem;
  color: #1E1E1E;
  display: flex;
  align-items: flex-start;
  /* PC本文 */
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .voice-section__faq-answer {
    font-size: 1.4rem;
    padding-right: 1.5rem;
  }
}
.voice-section__faq-answer span {
  display: inline-block;
  margin-right: 1.6rem;
}

.voice-section__faq-a {
  font-size: 2rem;
}

.voice-section__faq-btns {
  margin-top: 3.9rem;
}
.voice-section__faq-btns a {
  border-radius: 5rem;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .voice-section__faq-btns {
    margin-top: 3rem;
  }
}

.voice-section__faq-product-link {
  width: 46.5rem;
  height: 8.8rem;
  border-radius: 0.5rem;
  background: #FFF600;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.69rem;
  padding-left: 14.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .voice-section__faq-product-link {
    width: 32.2rem;
    height: 6.1rem;
    padding-left: 7.5rem;
    font-size: 2rem;
  }
}
.voice-section__faq-product-link::after {
  content: "";
  position: absolute;
  background: url(../img/line04.png) no-repeat center center/cover;
  width: 2.2rem;
  height: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  right: 14.6rem;
}
@media (max-width: 767px) {
  .voice-section__faq-product-link::after {
    right: 7.5rem;
  }
}

.line-register {
  position: fixed;
  bottom: 5.2rem;
  right: 0;
  width: 33.8rem;
  height: 18.7rem;
  border-radius: 0.3125rem 0 0 0.3125rem;
  background: #27B24E;
  z-index: 9999;
}
@media (max-width: 767px) {
  .line-register {
    display: none;
  }
}
.line-register::after {
  content: "";
  position: absolute;
  background: url(../img/11.30.png) no-repeat center center/cover;
  width: 5.6rem;
  height: 5.6rem;
  left: -1rem;
  top: -1.6rem;
}

.line-register__text {
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  padding-top: 2.3rem;
}
.line-register__text span {
  font-size: 3.55rem;
}

.line-register__highlight {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  top: 0.3rem;
}

.line-register__button {
  width: 30.6rem;
  background-color: #fff;
  color: #27B24E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 900;
  padding-left: 7.4rem;
  height: 6.47rem;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.7rem;
  position: relative;
  margin-top: 1.65rem;
}
.line-register__button::after {
  content: "";
  position: absolute;
  background: url(../img/line-icon02.png) no-repeat center center/cover;
  width: 3.2rem;
  height: 2.9rem;
  left: 1.4rem;
}

.lineup__images-swiper {
  height: 32.7rem;
}
@media (max-width: 767px) {
  .lineup__images-swiper {
    height: 22.6rem;
  }
}
.lineup__images-swiper .swiper-wrapper {
  height: 100%;
  position: relative;
}
.lineup__images-swiper .swiper-button-prev01, .lineup__images-swiper .swiper-button-next01 {
  position: absolute;
  width: 3rem;
  z-index: 2;
  top: 54%;
  transform: translateY(-50%);
}
.lineup__images-swiper .swiper-button-prev01 {
  left: 0.7rem;
}
.lineup__images-swiper .swiper-button-next01 {
  right: 0.7rem;
}

@media (min-width: 768px) {
  .line-register__button-sp {
    display: none;
  }
}

.function__image-box {
  margin-top: 4.6rem;
}

.function__heading--feature {
  margin-top: 13.5rem;
}
@media (max-width: 767px) {
  .function__heading--feature {
    margin-top: 4.5rem;
  }
}

@media (max-width: 767px) {
  .function__heading02 {
    white-space: nowrap;
  }
}

.koke-intro-texts {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .koke-intro-texts {
    margin-right: 2.8rem;
  }
}

.koke-intro-text {
  color: #1E1E1E;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .koke-intro-text {
    font-size: 1.4rem;
  }
}
.koke-intro-text:nth-of-type(n+2) {
  margin-top: 2.1rem;
}/*# sourceMappingURL=style.css.map */