@charset "UTF-8";
body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  color: #313131;
  line-height: 1.7;
  background: #fff;
}

.heading {
  padding-bottom: 47px;
}

.heading__title {
  font-family: "Roboto", serif;
  font-size: 13px;
  line-height: 1.44;
}

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

.header {
  padding: 15px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 37px 0 77px;
  }
}

.header__inner {
  padding: 0 15px;
  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 (min-width: 768px) {
  .header__inner {
    max-width: 1226px;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logo img {
  width: 100px;
  height: auto;
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

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

@media (min-width: 768px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(20px, 4vw, 55px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.header__nav-item {
  font-family: "Roboto", serif;
  font-size: 14px;
  line-height: 3.5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-item:last-child {
  margin-left: clamp(20px, 3vw, 60px);
  padding: 0 clamp(30px, 4vw, 78px) 0 clamp(30px, 4vw, 73px);
  border-radius: 71px;
  border: 1px solid #F7711C;
  background: #FFF;
}
.header__nav-item:last-child::after {
  content: "";
  display: inline-block;
  background: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__nav-item:hover {
  opacity: 0.6;
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  z-index: 51;
  position: relative;
  cursor: pointer;
}
.header__btn.is-checked .drawer-icon:nth-of-type(1) {
  position: absolute;
  top: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__btn.is-checked .drawer-icon:nth-of-type(2) {
  display: none;
}
.header__btn.is-checked .drawer-icon:nth-of-type(3) {
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .header__btn {
    display: none;
  }
}

.drawer-icon {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #F7711C;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer-content {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 50;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__header {
  padding: 15px;
}

.drawer-content__header-logo img {
  width: 100px;
}

.drawer-content__nav {
  padding-left: 25px;
  margin-top: 13px;
}

.drawer-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.drawer-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}

.drawer-content__img img {
  width: 14px;
}

.drawer-content__link {
  color: #313131;
  font-family: "Roboto", serif;
  font-size: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer-content__link:hover {
  opacity: 0.6;
}
.drawer-content__link--reservation {
  padding: 10px 39px 10px 33px;
  border: 1px solid #F7711C;
  border-radius: 71px;
  position: relative;
}
.drawer-content__link--reservation::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 22px;
}

.fv__inner {
  padding: 0 15px;
  position: relative;
}
@media (min-width: 768px) {
  .fv__inner {
    padding-left: 102px;
  }
}
.fv__inner::before {
  content: "Changing the world";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 58px;
  left: 84%;
  color: rgba(49, 49, 49, 0.3);
  font-family: "Roboto", serif;
  font-size: 20px;
  white-space: nowrap;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 768px) {
  .fv__inner::before {
    top: 221px;
    left: 90%;
    font-size: 50px;
    line-height: 1.3;
  }
}
.fv__inner::after {
  content: "with a single service";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 58px;
  left: 74%;
  color: rgba(49, 49, 49, 0.3);
  font-family: "Roboto", serif;
  font-size: 20px;
  white-space: nowrap;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 768px) {
  .fv__inner::after {
    top: 221px;
    left: 83%;
    font-size: 50px;
    line-height: 1.3; /* 136% */
  }
}

.fv__topic {
  font-size: 20px;
  font-weight: 700;
  font-size: clamp(10px, 5.3333333333vw, 40px);
}
@media (min-width: 768px) {
  .fv__topic {
    font-size: clamp(48px, 6.484375vw, 83px);
  }
}

.fv__img {
  margin-top: 71px;
}
@media (min-width: 768px) {
  .fv__img {
    text-align: right;
  }
}
.fv__img img {
  width: 100%;
}
@media (min-width: 768px) {
  .fv__img img {
    max-width: 827px;
  }
}

.about {
  padding: 30px 0;
  background: #F6F8F8;
}
@media (min-width: 768px) {
  .about {
    margin-top: -147px;
    padding: 0 0 169px 0;
  }
}

.about__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .about__inner {
    padding: 0 0 0 106px;
    position: relative;
  }
}

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

@media (min-width: 768px) {
  .about__img1 {
    width: clamp(300px, 44.296875vw, 567px);
    position: absolute;
    top: 267px;
    left: 0;
  }
}

@media (min-width: 768px) {
  .about__img2 {
    width: clamp(200px, 33.4375vw, 500px);
    position: absolute;
    top: 459px;
    right: 104px;
  }
}

@media (min-width: 768px) {
  .about__content {
    padding-top: 738px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 51px;
  }
}

.about__topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 100px;
}
@media (min-width: 768px) {
  .about__topic {
    gap: 212px;
  }
}

.about__title {
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 47px;
    line-height: 1.36;
  }
}

.about__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media (min-width: 768px) {
  .about__text-group {
    max-width: 510px;
    gap: 17px;
  }
}

.about__text {
  font-weight: 700;
  line-height: 2.06;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 17px;
    line-height: 1.94;
  }
}

.about__img {
  margin-top: 23px;
}
@media (min-width: 768px) {
  .about__img img {
    margin-right: -15px;
    margin-bottom: -89px;
    max-width: 635px;
    width: 100%;
  }
}

.reason {
  padding: 100px 0 20px;
}
@media (min-width: 768px) {
  .reason {
    padding: 191px 0 193px;
  }
}

.reason__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .reason__inner {
    padding: 0 90px 0 106px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 147px;
}
@media (min-width: 768px) {
  .reason__list {
    gap: 85px;
  }
}

@media (min-width: 768px) {
  .reason__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reason__item:nth-child(1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
  .reason__item:nth-child(1) .reason__topics {
    margin-right: 31px;
    width: clamp(300px, 41.40625vw, 540px);
  }
  .reason__item:nth-child(1) .item__img {
    position: absolute;
    left: -106px;
  }
  .reason__item:nth-child(1) .item__img img {
    width: clamp(300px, 42.265625vw, 500px);
  }
  .reason__item:nth-child(2) {
    gap: 40px;
  }
  .reason__item:nth-child(2) .item__img {
    width: 524px;
  }
  .reason__item:nth-child(3) {
    margin-top: 17px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 72px;
  }
  .reason__item:nth-child(3) .item__img {
    width: 469px;
  }
}

@media (min-width: 768px) {
  .reason__topics {
    width: 520px;
  }
}

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

.item__topic-number {
  display: block;
  font-family: "Roboto", serif;
  font-size: 55px;
  line-height: 0.87;
}
@media (min-width: 768px) {
  .item__topic-number {
    font-size: 110px;
    line-height: 0.43;
  }
}

.item__topic-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .item__topic-title {
    font-size: clamp(20px, 2.34375vw, 30px);
    line-height: 2.1;
  }
}

.item__content {
  margin-top: 45px;
}

.item__text {
  font-weight: 700;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .item__text {
    font-size: 17px;
    line-height: 1.8;
  }
}

.item__img {
  margin-top: 53px;
}
@media (min-width: 768px) {
  .item__img {
    margin-top: 0;
  }
}
.item__img img {
  width: 100%;
}

.course {
  padding: 100px 0 20px;
}
@media (min-width: 768px) {
  .course {
    padding: 0 0 110px;
  }
}

.course__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .course__inner {
    padding: 0 99px 0 106px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.course__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
}
@media (min-width: 768px) {
  .course__list {
    gap: 130px;
  }
}

@media (min-width: 768px) {
  .course__item {
    padding-left: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 29px;
  }
}

.course__topic-sub {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.4;
}
@media (min-width: 768px) {
  .course__topic-sub {
    font-size: 20px;
    line-height: 1.8;
  }
}

.course__topic-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .course__topic-title {
    font-size: 25px;
    line-height: 1.4;
  }
}

.course__text {
  margin-top: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .course__text {
    margin-top: 21px;
  }
}

.course__item-list {
  margin-top: 28px;
  padding: 13px 11px 8px 14px;
  background: #F6F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .course__item-list {
    margin-top: 21px;
    padding: 20px 20px 26px 36px;
    gap: 9px;
  }
}

.course__item-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
@media (min-width: 768px) {
  .course__item-item {
    gap: 17px;
  }
}

.course__item-item--1 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.course__item-icon {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  background: #F7711C;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .course__item-icon {
    width: 20px;
    height: 20px;
  }
}
.course__item-icon::before {
  content: "✓";
  position: absolute;
  color: #fff;
  font-size: 12px;
  line-height: 3;
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.course__item-text {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 768px) {
  .course__item-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.course__item-text--1 {
  margin-top: -4px;
}

.course__btn,
.trainer__btn {
  padding: 10px 56px 11px 54px;
  display: block;
  width: 189px;
  height: 38px;
  position: relative;
  margin: 34px auto 0;
  border: 1px solid #F7711C;
  border-radius: 71px;
  color: #F7711C;
  font-family: "Roboto", serif;
  font-size: 12px;
  letter-spacing: 0.6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .course__btn,
  .trainer__btn {
    margin: 25px 0 0;
  }
}
.course__btn::after,
.trainer__btn::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.png);
  background-size: contain;
  width: 9px;
  height: 9px;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.course__btn:hover,
.trainer__btn:hover {
  opacity: 0.6;
}

.course__img {
  margin-top: 83px;
}
@media (min-width: 768px) {
  .course__img img {
    max-width: 360px;
    width: 100%;
  }
}

.trainer {
  padding: 100px 0 40px;
  background: #F6F8F8;
}
@media (min-width: 768px) {
  .trainer {
    padding: 83px 0 52px;
  }
}

.trainer__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .trainer__inner {
    padding: 0 30px 0 30px;
    max-width: 1135px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .trainer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.trainer__topic {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
}

.trainer__text {
  margin-top: 28px;
  font-weight: 700;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .trainer__text {
    max-width: 410px;
  }
}

@media (min-width: 768px) {
  .trainer__btn {
    margin: 34px 0 0;
  }
}

.trainer__img {
  margin-top: 83px;
}
@media (min-width: 768px) {
  .trainer__img {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .trainer__img img {
    max-width: 395px;
    width: 100%;
  }
}

.studio {
  padding: 100px 0 40px;
}
@media (min-width: 768px) {
  .studio {
    padding: 139px 0 168px;
  }
}

.studio__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .studio__inner {
    max-width: 1002px;
    margin: 0 auto;
  }
}

.heading--center {
  text-align: center;
}

.studio__list {
  padding: 0 20px 23px 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .studio__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 29px;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  .studio__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.studio__item {
  padding: 34px 22px 31px 21px;
  background: #F1F3F4;
}
.studio__item:nth-child(4) .studio__item-text {
  margin-top: 31px;
}

.studio__item-name {
  text-align: center;
  font-size: 20px;
}

.studio__item-img {
  margin-top: 15px;
  text-align: center;
}
.studio__item-img img {
  width: 228px;
}

.studio__item-address {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.26px;
}

.studio__item-text {
  margin-top: 11px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.26px;
}

.studio__btn {
  margin: 17px auto 0;
  padding: 8px 52px 8px 34px;
  display: block;
  border: 1px solid #313131;
  border-radius: 21px;
  width: 224px;
  height: 37px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.26px;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.studio__btn::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background: url(../img/up.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 52%;
  right: 33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.studio__btn:hover {
  opacity: 0.6;
}

.studio__text {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.55px;
}
@media (min-width: 768px) {
  .studio__text {
    margin-top: 36px;
    font-size: 12px;
    line-height: 1.52;
    letter-spacing: 0.6px;
  }
}

.footer {
  padding: 51px 0 15px;
}
@media (min-width: 768px) {
  .footer {
    padding: 84px 0 55px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__nav-list {
  padding: 0 20px 0 19px;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 285px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 18px;
  background: #6D7474;
}
@media (min-width: 768px) {
  .footer__nav-list {
    padding: 84px 108px 74px 267px;
    width: 1066px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 18px 56px;
  }
}

.footer__nav-item {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 3.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__nav-item:hover {
  opacity: 0.6;
}

.footer__nav-link img {
  width: 22px;
  height: 23px;
}

.footer__content {
  padding: 0 15px;
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .footer__content {
    padding: 0 119px;
  }
}

.footer__logo img {
  width: 100px;
}
@media (min-width: 768px) {
  .footer__logo img {
    width: 165px;
  }
}

.copy small {
  font-family: "Roboto", serif;
  font-size: 10px;
  line-height: 4.95;
}