@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1170px) {
  html {
    font-size: 1.3675213675vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2B2B;
  background: #fff;
}
body.top {
  background: #F7F7F7;
}

a,
button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}

a {
  display: inline-block;
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.js-fadein {
  opacity: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}

.js-fadein.is-active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 500px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.c-breadcrumb {
  padding-bottom: 1.5625rem;
}

.c-breadcrumb__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-breadcrumb__nav li {
  font-size: max(10px, 1rem);
  line-height: 1.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-breadcrumb__nav li:nth-child(n+2) {
  padding-left: 0;
}
.c-breadcrumb__nav li:nth-child(n+2)::before {
  content: ">";
}
.c-breadcrumb__nav li:first-child a {
  padding-left: 0;
}
.c-breadcrumb__nav li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 220px;
  -ms-flex-negative: initial;
      flex-shrink: initial;
}
.c-breadcrumb__nav li:last-child::before {
  margin-right: 0.5em;
}
.c-breadcrumb__nav li a {
  padding-inline: 0.5em;
  display: inline-block;
}

.c-button {
  display: inline-block;
  padding: 0.25rem 1.625rem;
  font-size: max(10px, 0.875rem);
  line-height: 1.5rem;
  text-align: center;
  color: #fff;
  background: none;
  border-radius: 50vmax;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 0.0625rem #fff;
}
@media screen and (max-width: 767px) {
  .c-button {
    padding: 0.125rem 1.25rem;
    font-size: max(10px, 0.75rem);
  }
}
@media (hover: hover) {
  .c-button:hover {
    opacity: 1;
    background: #fff;
    color: #2B2B2B;
  }
}
.c-button.--green {
  background: #06C755;
  color: #fff;
  border: solid 0.0625rem #06C755;
}
@media (hover: hover) {
  .c-button.--green:hover {
    opacity: 1;
    background: #fff;
    color: #06C755;
  }
}
.c-button.--black {
  background: #2B2B2B;
  border: solid 0.0625rem #2B2B2B;
  padding: 0.4375rem 3.4375rem;
}
@media (hover: hover) {
  .c-button.--black:hover {
    opacity: 1;
    background: #fff;
    color: #2B2B2B;
  }
}
.c-button.--white {
  background: #fff;
  border: solid 0.0625rem #fff;
  color: #2B2B2B;
  padding: 0.3125rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-button.--white {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .c-button.--white:hover {
    opacity: 1;
    background: #2B2B2B;
    color: #fff;
  }
}
.c-button.--header.--green {
  background: none;
  color: #06C755;
}
@media (hover: hover) {
  .c-button.--header.--green:hover {
    opacity: 1;
    background: #06C755;
    color: #fff;
  }
}
.c-button.--black02 {
  border: solid 0.0625rem #2B2B2B;
  color: #2B2B2B;
}
@media (hover: hover) {
  .c-button.--black02:hover {
    opacity: 1;
    background: #2B2B2B;
    color: #fff;
  }
}

@media (hover: hover) {
  .c-card01:hover {
    opacity: 1;
  }
  .c-card01:hover .c-card01__image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.c-card01__image {
  aspect-ratio: 247/372;
  overflow: hidden;
}
.c-card01__image img {
  -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;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card01__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}
.c-card01__wrapper::after {
  content: "";
  background: url(../images/icon_link_arrow.svg) no-repeat center/contain;
  width: 1.6875rem;
  aspect-ratio: 1/1;
}

.c-card01__info {
  margin-inline: 0.9375rem;
  color: #fff;
}

.c-card01__catch {
  font-size: max(10px, 0.875rem);
  line-height: 1.25rem;
}

.c-card01__name {
  margin-top: 0.3125rem;
  font-size: 1.125rem;
}

.c-card02__image {
  aspect-ratio: 1/1;
}
.c-card02__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}

.c-card02__catch {
  font-size: max(10px, 1rem);
  font-weight: bold;
  line-height: 1.4375rem;
  margin-top: 0.5rem;
}

.c-card02__name {
  margin-top: 0.5625rem;
  font-size: max(10px, 0.875rem);
  font-weight: bold;
  line-height: 1.25rem;
}

.c-card02__text {
  margin-top: 0.5625rem;
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
}

.c-card03__meta {
  display: grid;
  grid-template-columns: 5rem -webkit-max-content;
  grid-template-columns: 5rem max-content;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-card03__date {
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
}

.c-card03__category {
  min-width: 5.625rem;
  text-align: center;
  background: #2B2B2B;
  color: #fff;
  border-radius: 0.25rem;
  font-size: max(10px, 0.875rem);
  line-height: 1.25rem;
  padding: 0.3125rem 1rem 0.375rem;
}

.c-card03__title {
  font-weight: normal;
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .c-card03__title {
    margin-top: 1rem;
  }
}

.c-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-sns__item.--insta {
  width: 1.3125rem;
  aspect-ratio: 21/22;
}
.c-sns__item.--youtube {
  width: 2rem;
  aspect-ratio: 1/1;
}
.c-sns__item.--tiktok {
  width: 1.5rem;
  aspect-ratio: 1/1;
}
.c-sns__item a {
  display: block;
}
.c-sns__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  text-align: center;
}
.c-title::before {
  display: block;
  content: attr(data-en);
  font-size: 3rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2291666667;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title::before {
    font-size: 2.5rem;
    line-height: 1.225;
  }
}
.c-title.--white {
  color: #fff;
}
.c-title.--left {
  text-align: left;
}
.c-title.--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-title.--flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}
.c-title.--nomal {
  font-size: 1rem;
  font-weight: normal;
}
.c-title.--nomal::before {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-title.--nomal {
    font-size: 1rem;
  }
  .c-title.--nomal::before {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    line-height: 1.2291666667;
  }
}

.p-about {
  padding-top: 9.8125rem;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-top: 3.5625rem;
    padding-bottom: 7.5rem;
  }
}

.p-about__title {
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.6875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.p-about__title::after {
  content: "";
  background: #000;
  width: 22.4375rem;
  height: 1px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 2.5rem;
    line-height: 3.0625rem;
  }
  .p-about__title::after {
    width: 8.5625rem;
  }
}

.p-about__wrapper {
  display: grid;
  grid-template-columns: 48.0357142857% 1fr;
  -webkit-column-gap: 4.75rem;
     -moz-column-gap: 4.75rem;
          column-gap: 4.75rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about__wrapper {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-about__catch {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.5rem;
  letter-spacing: 0.02em;
}
.p-about__catch span {
  color: #B9A92F;
}
@media screen and (max-width: 767px) {
  .p-about__catch {
    font-size: 1.25rem;
    line-height: 2.1875rem;
    letter-spacing: -0.02em;
  }
}

.p-about__text {
  font-size: max(10px, 1rem);
  line-height: 1.875rem;
  margin-top: 1.5rem;
}
.p-about__text span {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    letter-spacing: -0.04em;
  }
}

.p-about__image {
  margin-top: 2rem;
  aspect-ratio: 508/275;
  width: 94.4237918216%;
}
.p-about__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-about__image {
    width: 100%;
  }
}

.p-about__list {
  margin-top: 1.1875rem;
  counter-reset: num;
}
@media screen and (max-width: 767px) {
  .p-about__list {
    margin-top: 4.75rem;
  }
}

.p-about__item {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about__item + .p-about__item {
  margin-top: 2.5rem;
}
.p-about__item:nth-child(4n+1) .p-about__icon::after {
  top: -0.5625rem;
  right: -0.4375rem;
}
.p-about__item:nth-child(4n+2) .p-about__icon::after {
  bottom: -0.0625rem;
  right: -1.1875rem;
}
.p-about__item:nth-child(4n+3) .p-about__icon::after {
  bottom: -0.6875rem;
  left: -0.875rem;
}
.p-about__item:nth-child(4n+4) .p-about__icon::after {
  top: -0.875rem;
  left: -0.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__item {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-about__icon {
  width: 5.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #000;
  position: relative;
  display: grid;
  place-items: center;
}
.p-about__icon::before {
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 3.125rem;
  text-align: center;
}
.p-about__icon::after {
  content: "";
  background: #F7F7F7;
  width: 2.6875rem;
  aspect-ratio: 1/1;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .p-about__itemConts {
    margin-top: 2.1875rem;
  }
}

.p-about__head {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 2rem;
}

.p-about__itemTxt {
  font-size: max(10px, 1rem);
  line-height: 1.875rem;
  margin-top: 1rem;
  margin-right: -0.625rem;
  letter-spacing: -0.02em;
}
.p-about__itemTxt span {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-about__itemTxt {
    margin-right: 0;
  }
}

.p-about__box {
  margin-top: 8.5rem;
  border: solid 1px #2B2B2B;
  border-radius: 1rem;
  background: #fff;
  padding: 2.625rem 1.8125rem 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    margin-inline: -0.875rem;
    border-radius: 1.5rem;
    padding: 2.75rem 0.9375rem 4.25rem;
  }
}

.p-about__boxTitle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.1875rem;
  margin-inline: 2.1875rem;
}
.p-about__boxTitle span {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__boxTitle {
    font-size: 1.4375rem;
    line-height: 2.0625rem;
    margin-inline: -0.3125rem;
    letter-spacing: -0.02em;
  }
  .p-about__boxTitle span {
    font-size: 1.0625rem;
  }
}

.p-about__boxMovie {
  display: grid;
  grid-template-columns: 30rem 1fr;
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-about__boxMovie {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-about__boxYoutube {
  aspect-ratio: 480/270;
  margin-top: 0.8125rem;
}
.p-about__boxYoutube iframe {
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-about__boxYoutube {
    margin-top: 0;
    aspect-ratio: 339/191;
  }
}

@media screen and (max-width: 767px) {
  .p-about__boxWrapper {
    margin-top: 2.5rem;
  }
}

.p-about__boxText {
  font-size: 1.125rem;
  line-height: 2.0625rem;
  margin-inline: -0.3125rem;
  letter-spacing: -0.04em;
}

.p-about__boxNote {
  margin-top: 1.5rem;
  font-size: max(10px, 0.875rem);
  line-height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-about__boxNote {
    text-align: center;
  }
}

.p-about__boxList {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-about__boxList {
    display: block;
  }
}

.p-about__boxItem {
  aspect-ratio: 251/141;
}
.p-about__boxItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-about__boxItem {
    width: 82.5443786982%;
    margin-inline: auto;
    aspect-ratio: 279/157;
  }
  .p-about__boxItem + .p-about__boxItem {
    margin-top: 1rem;
    aspect-ratio: 280/140;
  }
}

.p-achievements {
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-achievements {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-achievements__inner {
  max-width: 1106px;
}
@media screen and (max-width: 767px) {
  .p-achievements__inner {
    max-width: 500px;
  }
}

.p-achievements__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-achievements__images {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.p-achievements__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-achievements__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.375rem 2.1875rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-achievements__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.375rem 1.25rem;
  }
}

.p-cource {
  border-radius: 1rem;
  background: #fff;
  overflow: clip;
  counter-increment: abc;
  padding-bottom: 2.5rem;
}

.p-cource__title {
  background: #2B2B2B;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.1875rem;
}
.p-cource__title::before {
  content: counter(abc, upper-alpha) "：";
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-cource__title {
    font-size: 1.1875rem;
    line-height: 1.8125rem;
  }
}

.p-cource__text {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.625rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cource__text {
    font-size: max(10px, 1rem);
    line-height: 1.75rem;
  }
}

.p-cource__list {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 5.0625rem;
     -moz-column-gap: 5.0625rem;
          column-gap: 5.0625rem;
}
.p-cource__list.--4col {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cource__list {
    margin-top: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
		align-items: self-start;
    gap: 1.5rem;
    margin-inline: 1.5625rem;
  }
  .p-cource__list.--4col {
    gap: 1.0625rem;
  }
  .p-cource__list.--4col .p-cource__item {
/*     display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto; */
	  display: block;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: 100%;
        /* padding-left: 1.1rem; */
        max-width: -webkit-fill-available;
        margin: auto;
        justify-items: center;
  }
  .p-cource__list.--4col .p-cource__item::before {
    content: none;
  }
  .p-cource__list.--4col .p-cource__item.--personal::before {
    content: "大橋源紀 直接指導";
/*     width: 13.5rem; */
	      width: 100%;
  }
}

.p-cource__item.--popular::before {
  content: "一番人気";
  text-align: center;
  width: 100%;
  display: block;
  color: #fff;
  background: #C3B867;
  font-size: max(10px, 0.875rem);
  font-weight: bold;
  line-height: 1.25rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}
.p-cource__item.--personal::before {
  content: "大橋源紀 直接指導";
  background: #6E6E6E;
  text-align: center;
  width: 100%;
  display: block;
  color: #fff;
  font-size: max(10px, 0.875rem);
  font-weight: bold;
  line-height: 1.25rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-cource__item {
    display: grid;
    grid-template-columns: 1.625rem 1fr;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }
  .p-cource__item::before {
    content: "";
    background: none;
    width: 1.625rem;
    display: inline-block;
  }
  .p-cource__item.--popular {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-cource__item.--popular::before {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 10px;
    line-height: 12px;
    width: auto;
    margin-bottom: 0;
    letter-spacing: 0.2em;
  }
  .p-cource__item.--personal {
    display: block;
    text-align: center;
    max-width: 13.5rem;
    margin-inline: auto;
  }
}

.p-cource__price {
  font-size: 2.1875rem;
  font-weight: bold;
  line-height: 3.1875rem;
}
.p-cource__price span {
  font-size: 1.125rem;
  font-weight: normal;
  display: inline-block;
  line-height: 1;
  margin-left: -0.2em;
}
.p-cource__price.--plus1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-cource__price.--plus1 span {
  margin-left: 0;
}
.p-cource__price.--plus1::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 3.0625rem;
  aspect-ratio: 1/1;
  display: inline-block;
  margin-left: 0.5rem;
  background: url(../images/icon_plus1.svg) no-repeat center/contain;
}
.p-cource__price.--plus2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-cource__price.--plus2 span {
  margin-left: 0;
}
.p-cource__price.--plus2::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 3.0625rem;
  aspect-ratio: 1/1;
  display: inline-block;
  margin-left: 0.5rem;
  background: url(../images/icon_plus2.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-cource__price {
    font-size: 1.875rem;
    line-height: 2.6875rem;
  }
  .p-cource__price span {
    font-size: max(10px, 1rem);
  }
  .p-cource__price.--plus1, .p-cource__price.--plus2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.375rem;
       -moz-column-gap: 0.375rem;
            column-gap: 0.375rem;
  }
  .p-cource__price.--plus1::after, .p-cource__price.--plus2::after {
    margin-left: 0;
  }
}

.p-cource__catch {
  text-align: center;
  font-size: max(10px, 1rem);
  font-weight: bold;
  line-height: 1.4375rem;
  margin-top: 2.25rem;
}

.p-cource__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6875rem;
     -moz-column-gap: 1.6875rem;
          column-gap: 1.6875rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-cource__details {
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-inline: 1rem;
  }
}

.p-cource__detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-size: max(10px, 1rem);
  line-height: 1.8125rem;
}
.p-cource__detail::before {
  content: "";
  width: 2.5rem;
  aspect-ratio: 1/1;
  display: inline-block;
  background: #2B2B2B;
}
.p-cource__detail.--only::before {
  mask: url(../images/icon_only.svg) no-repeat center/contain;
  -webkit-mask: url(../images/only.png) no-repeat center/contain;
}
.p-cource__detail.--training::before {
  mask: url(../images/icon_training.svg) no-repeat center/contain;
  -webkit-mask: url(../images/icon_training.svg) no-repeat center/contain;
}
.p-cource__detail.--bone::before {
  mask: url(../images/icon_bone.svg) no-repeat center/contain;
  -webkit-mask: url(../images/bone.png) no-repeat center/contain;
}
.p-cource__detail.--meal::before {
  mask: url(../images/icon_meal.svg) no-repeat center/contain;
  -webkit-mask: url(../images/meal.png) no-repeat center/contain;
}
.p-cource__detail.--company::before {
  mask: url(../images/icon_company.svg) no-repeat center/contain;
  -webkit-mask: url(../images/icon_company.svg) no-repeat center/contain;
}
.p-cource__detail.--posing::before {
  mask: url(../images/icon_posing.svg) no-repeat center/contain;
  -webkit-mask: url(../images/posing.png) no-repeat center/contain;
}

.p-cta {
  text-align: center;
  color: #fff;
  padding-top: 5.5625rem;
  padding-bottom: 3.6875rem;
  position: relative;
  z-index: 1;
}
.p-cta::before {
  content: "";
  background: url(../images/common_image.png) no-repeat center/cover;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2B2B2B;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}

.p-cta__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.875rem;
}
.p-cta__title span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.1875rem;
}

.p-cta__buttons {
  margin-top: 2.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__buttons {
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.p-cta__button a {
  padding: 0.8125rem 1.5625rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.p-cta__text {
  font-size: max(10px, 1rem);
  margin-top: 2.125rem;
  line-height: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-top: 2.625rem;
    font-size: max(10px, 0.875rem);
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer {
    z-index: 10;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__icon {
    padding: 1rem 1.25rem;
    display: inline-block;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 11;
    font-size: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__bars {
    display: inline-block;
    width: 1.125rem;
    vertical-align: bottom;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__bar {
    display: block;
    margin-top: 4px;
    background: #fff;
    width: 100%;
    height: 1px;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 50vmax;
  }
  .p-drawer__bar:first-child {
    margin-top: 0;
  }
  .is-opened .p-drawer__bar:nth-child(2) {
    background: transparent;
  }
  .is-opened .p-drawer__bar:first-child {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
    width: 100%;
    height: 1px;
  }
  .is-opened .p-drawer__bar:last-child {
    -webkit-transform: translateY(-5px) rotate(-45deg);
            transform: translateY(-5px) rotate(-45deg);
    width: 100%;
    height: 1px;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__bg {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-drawer__bg.is-opened {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 10;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    width: 100%;
    color: #fff;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
    background: #2B2B2B;
  }
  .p-drawer__content.is-opened {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__line {
    position: relative;
    z-index: 11;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__inner {
    width: 100%;
    background: #2B2B2B;
    color: #fff;
    padding-top: 4.5625rem;
    padding-bottom: 5.375rem;
    margin-top: 4.0625rem;
    overflow: auto;
    max-height: calc(100vh - 4.0625rem);
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__button a {
    display: block;
    padding: 0.5625rem 1.25rem;
    font-size: max(10px, 0.875rem);
  }
  .p-drawer__button + .p-drawer__button {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__wrapper {
    display: grid;
    grid-template-columns: -webkit-max-content auto;
    grid-template-columns: max-content auto;
    -webkit-column-gap: 3.4375rem;
       -moz-column-gap: 3.4375rem;
            column-gap: 3.4375rem;
    margin-top: 2.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__navItem a {
    font-size: max(10px, 0.875rem);
    line-height: 1.25rem;
    padding: 0.5rem 0 0.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__navItem.--top {
    margin-bottom: 0.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__gym a {
    font-size: max(10px, 0.875rem);
    line-height: 1.25rem;
    padding: 0.5rem 0;
    text-decoration: underline;
  }
/*   .p-drawer__gym a::before {
    content: "ー ";
  } */
}

@media screen and (max-width: 767px) {
  .p-drawer__bottom {
    margin-top: 3.375rem;
    font-size: max(10px, 1.125rem);
    line-height: 1.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__sns {
    margin-top: 1.625rem;
  }
}

.p-faq {
  padding-top: 8.5rem;
  padding-bottom: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 7.5rem;
    padding-bottom: 3.25rem;
  }
}

.p-faq__list {
  margin-top: 3.75rem;
}

.p-faq__item + .p-faq__item {
  margin-top: 1.8125rem;
}

.p-faq__q {
  font-size: max(10px, 1rem);
  font-weight: normal;
  line-height: 1.4375rem;
  display: grid;
  grid-template-columns: 1em 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8125rem;
     -moz-column-gap: 0.8125rem;
          column-gap: 0.8125rem;
  cursor: pointer;
  padding: 1.5625rem 4.625rem 1.5625rem 1rem;
  background: #fff;
  border-radius: 50vmax;
  position: relative;
}
.p-faq__q::before {
  content: "Q";
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.p-faq__q::after {
  content: "";
  background: url(../images/icon_faq_arrow.svg) no-repeat center/contain;
  width: 2.625rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -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;
}
.p-faq__q.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    border-radius: 1rem;
    padding: 1.5625rem 1rem;
  }
  .p-faq__q::before {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .p-faq__q::after {
    display: none;
  }
}

.p-faq__conts {
  display: grid;
  grid-template-columns: 1em 1fr;
  padding: 1.8125rem 1rem 0;
  -webkit-column-gap: 1.1875rem;
     -moz-column-gap: 1.1875rem;
          column-gap: 1.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-faq__conts::before {
  content: "A";
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8125rem;
}

.p-faq__a {
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
}

.p-feature {
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-feature__title {
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 2.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.p-feature__title span {
  font-size: 1.125rem;
  letter-spacing: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: 2.5rem;
  }
}

.p-feature__list {
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-feature__list.--top {
  margin-top: 3.5rem;
}
.p-feature__list.--top .p-feature__item {
  min-width: 9.625rem;
}
.p-feature__list.--bottom {
  margin-top: 2.5rem;
}
.p-feature__list.--bottom .p-feature__item {
/*   width: 14.375rem; */
	    width: 45%;
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    width: 100%;
  }
  .p-feature__list.--top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 1.5rem;
  }
  .p-feature__list.--bottom .p-feature__item {
    width: 100%;
  }
}

.p-feature__item {
  text-align: center;
}

.p-feature__label {
  border-radius: 0.25rem;
  background: #2B2B2B;
  color: #fff;
  font-size: max(10px, 1rem);
  font-weight: bold;
  line-height: 1.4375rem;
  padding: 0.25rem 1rem;
}

.p-feature__text {
  margin-top: 0.4375rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.p-feature__text.--lg {
  font-size: 1.5rem;
}
.p-feature__text.--lg span {
  font-size: max(10px, 1rem);
  line-height: 1;
}

.p-feature__tags {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-feature__tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.4375rem;
  border: solid 1px #2B2B2B;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2.375rem;
}
.p-feature__tag::before {
  content: "#";
}
@media screen and (max-width: 767px) {
  .p-feature__tag {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-feature__image {
  margin-top: 0.625rem;
}
.p-feature__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-feature__review {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__review {
    margin-top: 8.5rem;
  }
}

.p-footer {
  background: #2B2B2B;
  color: #fff;
}

.p-footer__top {
  position: relative;
}

.p-footer__image {
  aspect-ratio: 1280/546;
  opacity: 0.6;
}
.p-footer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-footer__image {
    aspect-ratio: 390/546;
  }
}

.p-footer__title {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: #fff;
  -moz-text-align-last: justify;
       text-align-last: justify;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 100%;
}
.p-footer__title span {
  font-size: 6.25vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-footer__title {
    padding-inline: 0.6875rem;
  }
  .p-footer__title span {
    font-size: 3.75rem;
    line-height: 1.2;
    display: block;
  }
}

.p-footer__main {
  padding-top: 6.5rem;
  padding-bottom: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    padding-top: 12.1875rem;
    padding-bottom: 3.875rem;
  }
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 3.375rem;
  }
}

.p-footer__logo {
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 2.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-footer__logo span {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  display: block;
  text-align: center;
}
.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo span {
    font-size: 8px;
  }
}

.p-footer__catch {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 400;
}

.p-footer__sns {
  margin-top: 1.625rem;
}

.p-footer__copy {
  display: block;
  font-size: max(10px, 0.75rem);
  line-height: 1.0625rem;
  margin-top: 1.625rem;
}

.p-footer__links {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  -webkit-column-gap: 3.4375rem;
     -moz-column-gap: 3.4375rem;
          column-gap: 3.4375rem;
  margin-top: -0.5rem;
}

.p-footer__navItem a {
  font-size: max(10px, 0.875rem);
  line-height: 1.25rem;
  padding: 0.5rem 0 0.5625rem;
}

.p-footer__navItem.--top {
  margin-bottom: 0.4375rem;
}

.p-footer__navItem:last-child a {
  padding-bottom: 0;
}

.p-footer__gym a {
  font-size: max(10px, 0.875rem);
  line-height: 1.25rem;
  padding: 0.5rem 0;
  text-decoration: underline;
}
/* .p-footer__gym a::before {
  content: "ー ";
} */

.p-footer__buttons {
  min-width: 10.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__buttons {
    width: 100%;
  }
}

.p-footer__button {
  width: 100%;
  text-align: center;
}
.p-footer__button a {
  display: block;
  padding-block: 0.5625rem;
}
.p-footer__button a.--green {
  background: transparent;
  color: #06C755;
  border: 1px solid #06C755;
}
.p-footer__button a.--green:hover {
  background: #06C755;
  color: #fff;
}
.p-footer__button + .p-footer__button {
  margin-top: 1.5rem;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}
.p-header.is-black {
/*   background: #fff;
  color: #2B2B2B; */
	background: #2B2B2B;
    color: #ffffff;
}
.p-header.is-black .c-button {
/*   border: solid 0.0625rem #2B2B2B;
  color: #2B2B2B; */
  border: solid 0.0625rem #fff;
  color: #fff;
}
.p-header.is-black .c-button:hover {
  background: #2B2B2B;
  color: #fff;
}
.p-header.is-black .c-button.--green {
  border: solid 0.0625rem #06C755;
  color: #fff;
  background: #06C755;
}
@media (hover: hover) {
  .p-header.is-black .c-button.--green:hover {
    background: #fff;
    color: #06C755;
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-black .p-drawer__bar {
/*     background: #2B2B2B; */
	      background: #ffffff;
  }
  .p-header.is-black:has(.is-opened) {
    color: #fff;
  }
  .p-header.is-black:has(.is-opened) .p-drawer__bar {
    background: #fff;
  }
  .p-header.is-black:has(.is-opened) .p-drawer__bar:nth-child(2) {
    background: transparent;
  }
  .p-header.is-black:has(.is-opened) .c-button {
    border: solid 0.0625rem #fff;
    color: #fff;
  }
  .p-header.is-black:has(.is-opened) .c-button.--green {
    border: solid 0.0625rem #06C755;
  }
}

.p-header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0.75rem 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0.6875rem 0 0.6875rem 1.1875rem;
  }
}

.p-header__top {
  position: relative;
  z-index: 11;
}

.p-header__logo {
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.p-header__logo span {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    font-size: 1.375rem;
  }
  .p-header__logo span {
    font-size: 8px;
  }
}

.p-header__nav {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__navLink {
  padding: 0.75rem 1rem;
}

.p-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
  }
}

.p-message {
  background: #EEEEEE;
  padding-top: 4.125rem;
  padding-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message .l-inner {
    padding: 0 1.875rem;
  }
}

.p-message__wrapper {
  display: grid;
  grid-template-columns: 12.375rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 4.875rem;
     -moz-column-gap: 4.875rem;
          column-gap: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-message__wrapper {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-message__image {
  margin-top: 0.6875rem;
}
.p-message__image img {
  aspect-ratio: 198/330;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.p-message__image figcaption {
  margin-top: 26px;
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-message__image {
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-column-gap: 1.125rem;
       -moz-column-gap: 1.125rem;
            column-gap: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-message__conts {
    margin-top: 0.5625rem;
  }
}

.p-message__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-message__title {
    font-size: 1.125rem;
    line-height: 2.5rem;
  }
}

.p-message__text {
  margin-top: 1.375rem;
  font-size: max(10px, 0.875rem);
  line-height: 1.875rem;
  letter-spacing: 0.03em;
}
.p-message__text + .p-message__text {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    margin-top: 0.625rem;
    font-size: max(10px, 0.875rem);
  }
}

.p-mv {
  width: 100%;
  aspect-ratio: 1282/692;
  position: relative;
  z-index: 1;
}
.p-mv::before {
  content: "";
  background: url(../images/common_image.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.p-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background: rgba(0, 0, 0, .5); */
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv {
    aspect-ratio: 391/692;
  }
}

.p-mv__wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-x: clip;
  color: #fff;
  text-align: center;
  padding-top: 19.609375vw;
}
/* .p-mv__wrapper::before, .p-mv__wrapper::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  z-index: -1;
}
.p-mv__wrapper::before {
  width: 20.6875rem;
  aspect-ratio: 331/443;
  right: calc(50% + 13.3125rem);
  background: url(../images/mv_woman.png) no-repeat center/contain;
}
.p-mv__wrapper::after {
  width: 35.8125rem;
  aspect-ratio: 573/428;
  left: calc(50% + 5.25rem);
  background: url(../images/mv_man.png) no-repeat center/contain;
} */
@media screen and (max-width: 767px) {
  .p-mv__wrapper {
    display: grid;
    place-items: center;
  }
  .p-mv__wrapper::before, .p-mv__wrapper::after {
    bottom: -2.0625rem;
  }
  .p-mv__wrapper::before {
    width: 10.625rem;
    aspect-ratio: 170/228;
    right: auto;
    left: 0.75rem;
  }
  .p-mv__wrapper::after {
    width: 17.6875rem;
    aspect-ratio: 283/212;
    left: auto;
    right: -4rem;
  }
}

.p-mv__top {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.p-mv__title {
  font-family: "Open Sans", sans-serif;
  font-size: 5.375rem;
  font-weight: 500;
  line-height: 6.5625rem;
}
.p-mv__title::after {
  content: attr(data-en);
  display: block;
  font-size: 1.6875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 3.625rem;
    letter-spacing: -0.01em;
    line-height: 4.4375rem;
    margin-top: 0.4375rem;
  }
  .p-mv__title::after {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}

.p-mv__catch {
  margin-top: 6.640625vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 33.1875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__catch {
    margin-top: 4.375rem;
    min-width: auto;
  }
}

.p-mv__text {
  background: #2B2B2B;
  padding: 0 0.9375rem;
}
.p-mv__text span {
  font-size: 1.5rem;
  line-height: 2.8125rem;
  letter-spacing: 0.04em;
}
.p-mv__text + .p-mv__text {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    background: none;
  }
  .p-mv__text span {
    display: block;
    font-size: 1.125rem;
    line-height: 2.125rem;
  }
}

.p-price {
  padding-top: 6.5rem;
  padding-bottom: 4.25rem;
  background: #EEEEEE;
}

.p-price__note {
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
  text-align: center;
  margin-top: 1rem;
}
.p-price__note::before {
  content: "※";
}
@media screen and (max-width: 767px) {
  .p-price__note {
    margin-inline: -1.25rem;
  }
}

.p-price__item {
  margin-top: 3rem;
}
.p-price__item + .p-price__item {
  margin-top: 4rem;
}

.p-review {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #2B2B2B;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-review {
    padding: 2.5rem 0.875rem 2.9375rem;
  }
}

.p-review__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.6875rem;
     -moz-column-gap: 0.6875rem;
          column-gap: 0.6875rem;
}

.p-review__star {
  width: 2.0625rem;
  aspect-ratio: 1/1;
}
.p-review__star img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-review__title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2.5rem;
  text-align: center;
  margin-top: 0.5rem;
}
.p-review__title::before {
  content: attr(data-en);
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  line-height: 3.6875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-review__title::before {
    font-size: 2.5rem;
    line-height: 3.0625rem;
  }
}

.p-review__wrapper {
  margin-top: 2.5rem;
  counter-reset: rank;
}

.p-review__list {
  display: grid;
  grid-template-columns: 50.6743737958% 1fr;
  gap: 1.375rem 5.6875rem;
}
@media screen and (max-width: 767px) {
  .p-review__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-review__item {
  counter-increment: rank;
}
.p-review__item:first-child {
  grid-row: span 2;
}

.p-review__band {
  background: #EEEEEE;
  border-radius: 0.25rem;
  padding: 0.3125rem 1.125rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-review__band {
    padding: 0.5rem;
  }
}

.p-review__catch {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2.5rem;
}
.p-review__catch span {
  font-size: max(10px, 0.875rem);
  margin-left: 0.5em;
}
.p-review__catch.--1st {
  font-size: 1.25rem;
}
.p-review__catch.--1st span {
  font-size: max(10px, 1rem);
}
.p-review__catch::before {
  font-size: 1.5rem;
  line-height: 2.5rem;
  content: counter(rank) "位 ";
  margin-right: 1.5rem;
}
.p-review__catch.--more {
  font-size: max(10px, 1rem);
}
.p-review__catch.--more span {
  font-size: max(10px, 0.75rem);
  margin-left: 0;
}
.p-review__catch.--more::before {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-review__catch::before {
    margin-right: 1rem;
  }
}

.p-review__texts {
  margin-top: 1rem;
}

.p-review__text {
  font-size: max(10px, 1rem);
  line-height: 2rem;
}
.p-review__text.--1st {
  line-height: 2.5rem;
}
.p-review__text::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .p-review__text {
    display: grid;
    grid-template-columns: 1em 1fr;
    letter-spacing: -0.02em;
    margin-left: -2px;
  }
  .p-review__text.--1st {
    line-height: 2rem;
  }
}

.p-review__more {
  margin-top: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  background: #EEEEEE;
  border-radius: 0.25rem;
  padding: 0.375rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-review__more {
    margin-top: 2.375rem;
    padding: 0 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.p-store-list {
  padding: 5rem 0;
  background: #2B2B2B;
}

.p-store-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-store-list__list {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.p-store-list__image {
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}
.p-store-list__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/230;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-store-list__image img {
    aspect-ratio: 342/230;
  }
}

.p-store-list__info {
  margin-top: 1.5rem;
  color: #fff;
}

.p-store-list__title {
  font-size: max(10px, 1rem);
  font-weight: 700;
  line-height: 1.4375;
}

.p-store-list__access {
  margin-top: 0.5rem;
  font-size: max(10px, 0.875rem);
  font-weight: 400;
  line-height: 1.5;
}

.p-store-list__address {
  margin-top: 0.5rem;
  font-size: max(10px, 0.875rem);
  font-weight: 400;
  line-height: 1.5;
}

.p-store-list__button {
  margin-top: 1.5rem;
  text-align: center;
}

.p-store {
  padding-top: 7.9375rem;
  padding-bottom: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .p-store {
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  aspect-ratio: 628/471;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .swiper-slide img {
aspect-ratio: 630/740;
  }
}

.c-card01__image img{
	  width: 300px;
	  aspect-ratio: 628/471;
}

.p-store__inner {
  max-width: 59.375rem;
}

.p-store__box {
  margin-top: 4.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-store__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
    margin-top: 3.75rem;
  }
}

.p-store__map {
  width: 25.0625rem;
}
@media screen and (max-width: 767px) {
  .p-store__map {
    width: 100%;
  }
}
.p-store__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 401/411;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-store__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
}
@media screen and (max-width: 767px) {
  .p-store__title {
    font-size: 1.25rem;
  }
}

.p-store__address {
  margin-top: 1rem;
}

.p-store__addressText {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}

.p-store__access {
  margin-top: 1.9375rem;
}

.p-store__accessText {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}
.p-store__accessText + .p-store__accessText {
  margin-top: 1.5em;
}

.p-top-news {
  padding-top: 4.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 3.25rem;
    padding-bottom: 6rem;
  }
}

.p-top-news__wrapper {
  display: grid;
  grid-template-columns: 15.625rem 1fr;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-top-news__button {
  margin-top: 3.375rem;
}
.p-top-news__button a {
  min-width: 12.1875rem;
  text-transform: uppercase;
  font-size: max(10px, 1rem);
  line-height: 1.4375rem;
  padding-block: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__button {
    margin-top: 1.375rem;
  }
}

.p-top-news__item + .p-top-news__item {
  margin-top: 1.5rem;
}

.p-top-news__link {
  display: grid;
  grid-template-columns: 12.1875rem 1fr;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-news__link {
    grid-template-columns: 1fr;
  }
}

.p-top-trainer {
  background: #2B2B2B;
  padding-top: 4.5rem;
  padding-bottom: 7.5rem;
}

.p-top-trainer__note {
  font-size: max(10px, 0.75rem);
  line-height: 1.4166666667;
  color: #fff;
  text-align: center;
  margin-top: 0.5rem;
}

.p-top-trainer__slider {
  margin-top: 3.5rem;
  width: 100%;
}

.p-top-trainer__slider .swiper-slide {
  width: 15.4375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-trainer {
  padding-top: 11.6875rem;
  padding-bottom: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .p-trainer {
    padding-top: 6.25rem;
    padding-bottom: 5rem;
  }
}

.p-trainer__inner {
  max-width: 51.875rem;
}

.p-trainer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.375rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-trainer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
  }
}

.p-trainer__image {
  width: 22.0625rem;
}
@media screen and (max-width: 767px) {
  .p-trainer__image {
    width: 100%;
  }
}
.p-trainer__image img {
  width: 100%;
  height: auto;
	border-radius: 10px;
}

.p-trainer__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
.p-trainer__title span {
  display: block;
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}

.p-trainer__sns {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
}

.p-trainer__snsItem.--insta img {
  width: 1.5rem;
}
.p-trainer__snsItem.--x img {
  width: 0.875rem;
}
.p-trainer__snsItem a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-trainer__career {
  margin-top: 1.5rem;
}

.p-trainer__careerTitle {
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.4375;
}

.p-trainer__list {
  margin-top: 0.5625rem;
}

.p-trainer__year {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}

.p-trainer__desc {
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1.5;
}

.p-trainer__button {
  margin-top: 1.5rem;
  text-align: center;
}

.p-trial {
  padding-top: 4.25rem;
  padding-bottom: 6.5rem;
  background: #EEEEEE;
}

.p-trial__box {
  background: #fff;
  border-radius: 1rem;
  width: 98.3928571429%;
  margin-inline: auto;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-trial__box {
    padding: 2rem 0;
    width: 100%;
  }
}

.p-trial__list {
  margin-top: 3.5rem;
  padding-inline: 2.25rem;
  counter-reset: trial;
}
@media screen and (max-width: 767px) {
  .p-trial__list {
    padding-inline: 0;
  }
}

.p-trial__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10.4375rem;
     -moz-column-gap: 10.4375rem;
          column-gap: 10.4375rem;
  counter-increment: trial;
}
.p-trial__item + .p-trial__item {
  margin-top: 4rem;
}
.p-trial__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-trial__item.--lg {
  -webkit-column-gap: 4.125rem;
     -moz-column-gap: 4.125rem;
          column-gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-trial__item {
    display: block;
  }
}

.p-trial__image {
  width: 42.1052631579%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 400/265;
}
.p-trial__image.--lg {
  aspect-ratio: 1/1;
}
.p-trial__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-trial__image {
    width: 100%;
    aspect-ratio: 342/265;
  }
}

@media screen and (max-width: 767px) {
  .p-trial__conts {
    margin-top: 1.5rem;
    padding-inline: 0.5rem;
  }
}

.p-trial__head {
  display: grid;
  grid-template-columns: 3.875rem 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-trial__head::before {
  content: counter(trial);
  font-family: "Open Sans", sans-serif;
  background: #C3B867;
  border-radius: 50%;
  width: 3.875rem;
  aspect-ratio: 1/1;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  font-weight: bold;
  line-height: 1;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-trial__head {
    grid-template-columns: 3.375rem 1fr;
  }
  .p-trial__head::before {
    width: 3.375rem;
    font-size: 2rem;
  }
}

.p-trial__catch {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.1875rem;
}
.p-trial__catch span {
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-trial__catch {
    font-size: 1.25rem;
    line-height: 1.8125rem;
    letter-spacing: -0.02em;
  }
  .p-trial__catch span {
    font-size: 1.125rem;
    display: block;
  }
}

.p-trial__text {
  margin-top: 1.5rem;
  font-size: max(10px, 1rem);
  line-height: 1.875rem;
  letter-spacing: 0.03em;
}

.p-trial__info {
  margin-top: 1.5rem;
}
.p-trial__info dt {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.875rem;
  letter-spacing: 0.03em;
}
.p-trial__info dt::before {
  content: "■";
  margin-right: 0.5em;
}
.p-trial__info dd {
  font-size: max(10px, 1rem);
  line-height: 1.875rem;
  letter-spacing: 0.03em;
}
.p-trial__info dd::before {
  content: "・";
  margin-right: 0.5em;
}

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

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

.u-overflowHidden {
  overflow: hidden !important;
}

.p-store__access p{margin: 0.6rem 0;}
.p-store__access a{margin: 1rem 0;}

.header-logo{
	width: 150px;
    padding: 0.5rem;
}

.footer-logo{
	width: 150px;
    padding: 0.5rem;
}

	.mv-logo{
    width: 400px;
    margin: 1.6rem auto;
	}
.title-logo{
    width: 270px;
    padding: 0.5rem;
    margin: auto;
}
@media screen and (max-width: 767px) {
.header-logo {
    width: 110px;
	}
	.footer-logo{
	width: 110px;
    padding: 0.5rem;
}
	.mv-logo{
		    width: 250px;
    margin: 1.6rem auto;
	}
	.title-logo{
		width: 220px;
    padding: 0.5rem;
		    margin: auto;
}
}

/* ===================================
   レイアウト／共通
=================================== */
.p-feature__list{ display:flex; gap:48px; flex-wrap:nowrap; }

.p-feature__item{ text-align:center; width:240px; /* PC */ }
@media(max-width:767px){ .p-feature__item{ width:48%; } }

/* ラベル（黒背景のヘッダー） */
.p-feature__label{
  background:#222; color:#fff; font-weight:700;
  border-radius:6px; padding:.4rem 0; margin-bottom:16px;
}

/* Canvas を高さ固定 (= 伸びない) */
.chart-box{ height:110px; }
.chart-box canvas{
  width:100% !important;
  height:110px !important;        /* ここで “無限に伸びる” 問題を抑止 */
}

/* 凡例（下のテキスト） */
.chart-legend{ display:flex; justify-content:space-between; margin-top:8px; font-weight:700; }
.chart-legend span{ flex:1; font-size:.85rem; }

/* モバイルで少し低く */
@media(max-width:767px){
  .chart-box{ height:80px; }
  .chart-box canvas{ height:80px !important; }
}

.p-feature__list.--top .p-feature__item {
    width: 145px;	
}


@media screen and (max-width: 767px) {
.p-cource__list.--4col > li > p {
        font-size: 1.875rem;
        line-height: 2.6875rem;
        width: 100%;
        text-align: left;
        padding-left: 40px;
    }
}
/*# sourceMappingURL=styles.css.map */
.section-wrap {
  margin-top: 60px;
}
.section-inner {
    width: 80%;
    margin: 0 auto;
    max-width: 800;
    padding: 4rem 0;
}
.section-inner2 {
  width: 60%;
  margin: 0 auto;
  max-width: 2300px;
}
.section-inner3 {
  width: 80%;
  margin: 0 auto;
  max-width: 2300px;
}
/*
Header
*/

/*
Campaign
*/
.campaign {
  background-size: cover;
  position: relative;
  width: 100%;
  height: 470px;
  margin: 0 auto;
}
.campaign2 {
  background-color: #c3b867;
}
.campaign::before {
  /* 透過した白を重ねる */
  background-color: rgba(254, 254, 254, 0.815);
  /* どの範囲に重ねるかを指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}
.campaign-text-box {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
.campaign-subttl {
  font-size: 25px;
  color: #c3b867;
  margin: 0 auto;
}
.campaign-ttl {
  margin: 0 auto 70px;
  font-size: 50px;
  color: #333;
}
.campaign-list {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 67%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
@media screen and (max-width: 980px) {
  .campaign {
    width: 100vw;
    height: 90vh;
  }
  .campaign-text-box {
    top: 11%;
  }
  .campaign-list {
    display: block;
    top: 52%;
  }
  .campaign-ttl {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .campaign-subttl {
    font-size: 20px;
  }
  .campaign-image {
    width: 70vw;
    height: 20vh;
    margin-top: 20px;
  }
}

/*
NEWS
*/
.news-ttx {
  text-align: center;
  font-size: 15px;
  color: #c3b867;
  font-weight: bold;
  margin: 0 auto;
}
.news-tag {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 40px auto;
}
.news-wrap {
  margin-top: 100px;
  padding-top: 8px;
}
.news-list {
  width: 100%;
  padding: 0;
  list-style: none;
}
.article-box {
  display: flex;
  padding: 30px;
  font-size: 21px;
}
.article-box + .article-box {
  border-top: 2px solid #333;
}
.article-date {
  margin: 0 auto 0 0;
}
.article-ttl {
  width: 80%;
}
.article-link {
  text-decoration: none;
  color: #333;
}

.article-box:hover {
  color: #c0c0c0;
  transition: 0.3s;
}
.all-news-link {
  text-decoration: none;
  display: block;
  width: 380px;
  margin: 40px auto 0 auto;
  padding: 10px 40px;
  text-align: center;
  font-size: 30px;
  color: #c3b867;
  border: 1px solid #c3b867;
  border-radius: 35px;
}
.all-news-link:hover {
  color: #c0c0c0;
  border: 1px solid #c0c0c0;
  transition: 0.25s;
}
.news-error {
  text-align: center;
  font-size: 20px;
  margin-top: 100px;
}
.pagenation-btn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 980px) {
  .news-wrap {
    margin-top: 40px;
  }
  .news-tag {
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto;
  }
  .news-ttx {
    font-size: 12px;
  }
  .article-date {
    font-size: 15px;
    width: 100px;
  }
  .article-box {
    padding: 20px;
  }
  .article-ttl {
    font-size: 15px;
  }
  .all-news-link {
    font-size: 15px;
    padding: 10px 10px;
    width: 40vw;
    margin: 30px auto 0 auto;
  }
  .section-inner3 {
    width: 90%;
  }
}
/*
form
*/
.form {
  margin-top: 150px;
  padding: 60px 0;
  background-color: #000;
  color: #fff;
}
.form-ttx {
  font-size: 25px;
  text-align: center;
  margin: 0 auto;
}
.form-ttl {
  font-size: 60px;
  text-align: center;
  margin: 0 auto;
}
.btn-box {
  margin: 40px auto;
}
.btn2-box {
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-link {
  background-color: #c0c0c0;
  border-radius: 18px;
}
.line-image {
  border-radius: 18px;
}
.line-image:hover {
  opacity: 0.6;
  filter: brightness(110%);
  transition: 0.3s;
}
.form-link {
  margin: 0px 20px;
  border-radius: 40px;
}
.form-btn {
  background-color: #c1ab05;
  border: none;
  width: 100%;
  padding: 12px 60px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
}
.form-btn2 {
  background-color: #06c755;
  border: none;
  width: 100%;
  padding: 12px 60px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
}
.form-btn3 {
  background-color: #06c755;
  border: none;
  width: 100%;
  padding: 12px 60px;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
}
.btn-bgbox {
  background: #fff;
  border-radius: 40px;
}
.form-btn:hover {
  opacity: 0.6;
  filter: brightness(110%);
  transition: 0.3s;
}
.btn2-bgbox {
  background: #fff;
  border-radius: 40px;
}
.form-btn2:hover {
  opacity: 0.6;
  filter: brightness(110%);
  transition: 0.3s;
}
.form-btn3:hover {
  opacity: 0.6;
  filter: brightness(110%);
  transition: 0.3s;
}
.btn-ttx {
  font-size: 20px;
  text-align: center;
}
.btn-ttx2 {
  text-align: center;
}
@media screen and (max-width: 980px) {
  .form {
    margin-top: 60px;
  }
  .form-ttx {
    font-size: 20px;
  }
  .form-ttl {
    font-size: 26px;
  }
  .form-btn {
    font-size: 20px;
    width: 100%;
  }
  .form-btn2 {
    font-size: 20px;
    width: 100%;
  }
  .btn-ttx {
    font-size: 14px;
    text-align: start;
  }
  .btn-ttx2 {
    font-size: 14px;
    text-align: start;
  }
  .form-btn3 {
    font-size: 18px;
  }
  .line-link {
  }
  .line-image {
    height: 55px;
    width: 55px;
    object-fit: cover;
  }
  .btn-box {
    margin: 20px 0;
  }
  .btn-ttx2 {
    text-align: start;
  }
}

/*
youtube 
*/
.youtube {
  margin: 100px auto;
}
.youtube-ttx {
  font-size: 25px;
  text-align: center;
}
.br-sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .youtube {
    margin: 40px auto;
  }
  .youtube-ttx {
    font-size: 15px;
  }
}
/*
work
*/
.work {
  margin: 40px auto;
}
.work-ttx {
  text-align: center;
  font-size: 25px;
}
.work-image-box {
  list-style: none;
  display: flex;
  justify-content: center;
}
.work-img + .work-img {
  margin-left: 20px;
}
.work-link {
}
@media screen and (max-width: 980px) {
  .work-ttx {
    font-size: 15px;
  }
  .work-image-box {
    display: block;
  }
  .work-img {
    margin-top: 20px;
    width: 100%;
    height: auto;
  }
  .work-img + .work-img {
    margin-left: 0;
  }
}
/*
single
*/
.single-tag {
  margin: 100px 0 0 0;
  color: #c3b867;
}
.single-main-box {
}
.single-ttl {
  font-size: 50px;
}
.single-discription {
}
/* 
concept
*/
.concept {
  background: url(https://images.unsplash.com/photo-1526506118085-60ce8714f8c5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=Mnw2MzQ2fDB8MXxzZWFyY2h8MXx8bXVzY2xlfGVufDB8fHx8MTY2NzM3MDgwNA&ixlib=rb-4.0.3&q=80&w=1080);
  background-size: cover;
  position: relative;
  width: 100%;
  height: 1600px;
  margin: 100px auto 0 auto;
}
.concept::before {
  /* 透過した黒を重ねる */
  background-color: rgba(0, 0, 0, 0.7);
  /* どの範囲に重ねるかを指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}
.concept-text-box {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
.cencept-subttl {
  font-size: 25px;
  color: #fff;
  margin: 0 auto;
}
.concept-ttl {
  margin: 0 auto 70px;
  font-size: 50px;
  color: #fff;
}
.concept-ttx {
  font-size: 25px;
  color: #fff;
  width: 60%;
  margin: 0 auto;
  text-align: left;
}
