@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-main {
  -webkit-padding-before: 50px;
          padding-block-start: 50px;
}
@media (min-width: 768px) {
  .l-main {
    -webkit-padding-before: 60px;
            padding-block-start: 60px;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: inherit;
  padding: 0 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 540px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 71rem;
  margin-inline: auto;
  width: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 500px;
  }
}

.l-section {
  padding-block: 40px;
}
@media (min-width: 768px) {
  .l-section {
    padding-block: 80px;
  }
}

.c-btn {
  display: inline-block;
  padding-block: 7px;
  padding-inline: 12px;
  border-radius: 39.086px;
  border: 1.629px solid #d1d1d1;
  background: #fff;
  max-width: 247px;
  width: 100%;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 1.12px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-btn {
    font-size: clamp(0.8125rem, 0.71875rem + 0.1953125vw, 0.875rem);
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  height: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  background: #eb6835;
  border-radius: 50%;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 39.086px;
  border: 1.629px solid #d1d1d1;
  background: #eb6835;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
@media (any-hover: hover) {
  .c-btn:hover {
    color: #fff;
  }
  .c-btn:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.c-btn-line {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
  padding-right: 23px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-btn-line {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    padding-right: clamp(1.4375rem, 0.96875rem + 0.9765625vw, 1.75rem);
  }
}
.c-btn-line::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #eb6835;
  border-radius: 50%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-btn-line::before {
    width: clamp(0.9375rem, 0.46875rem + 0.9765625vw, 1.25rem);
    height: clamp(0.9375rem, 0.46875rem + 0.9765625vw, 1.25rem);
  }
}
@media (any-hover: hover) {
  .c-btn-line:hover {
    opacity: 0.75;
  }
}

.c-line-btn {
  display: inline-block;
  border-radius: 48px;
  background: #06c755;
  -webkit-box-shadow: 1px 3px 2px 0 rgba(156, 126, 126, 0.25);
          box-shadow: 1px 3px 2px 0 rgba(156, 126, 126, 0.25);
  padding-inline: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 309px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-line-btn {
    max-width: 100%;
  }
}
.c-line-btn img {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .c-line-btn img {
    width: clamp(2.5rem, 1.09375rem + 2.9296875vw, 3.4375rem);
    height: clamp(2.5rem, 1.09375rem + 2.9296875vw, 3.4375rem);
  }
}
.c-line-btn span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  padding-left: 6px;
}
@media (min-width: 768px) {
  .c-line-btn span {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
    padding-left: 0;
  }
}
@media (any-hover: hover) {
  .c-line-btn:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

.c-btn--arrow {
  display: inline-block;
  padding-right: 13px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
}
.c-btn--arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  background: url("../img/icon-arrow-right-black.png") no-repeat center center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .c-btn--arrow:hover {
    opacity: 0.75;
  }
}

.c-section-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 42px */
  font-family: "Termina", sans-serif;
  position: relative;
  padding-top: 18px;
}
@media (min-width: 768px) {
  .c-section-title {
    font-size: clamp(1.75rem, -0.125rem + 3.90625vw, 3rem);
    font-weight: 700;
  }
}

.c-section-title__sub {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 2.1px;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-section-title__sub {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-tag-news {
  color: #939393;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  padding-block: 6px;
  padding-inline: 12px;
  border-radius: 64px;
  background: #f0f0f0;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .c-tag-news {
    line-height: 140%;
    padding-inline: 20px;
    padding-block: 10px;
  }
}

@media screen and (max-width: 767px) {
  .c-top-bg {
    background: url("../img/bg-top-sp.jpg") no-repeat top/contain;
  }
}
.c-studio-item {
  width: 240px;
  padding-inline: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .c-studio-item {
    width: clamp(22.5rem, 9.75rem + 26.5625vw, 31rem);
    padding-inline: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
  }
}
.c-studio-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #c7c7c7;
}

.c-studio-item__logo {
  width: 101.45px;
}
@media (min-width: 768px) {
  .c-studio-item__logo {
    width: 135px;
  }
}

.c-studio-item__title {
  padding-left: 37px;
  font-size: 4.966px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 768px) {
  .c-studio-item__title {
    padding-left: 49px;
    font-size: 6.621px;
  }
}

.c-studio-item-image {
  margin-top: 7.79px;
}
@media (min-width: 768px) {
  .c-studio-item-image {
    margin-top: 7.2px;
  }
}

.c-studio-item__place {
  margin-top: 8px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.64px;
}
@media (min-width: 768px) {
  .c-studio-item__place {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}
.c-studio-item__place span {
  font-weight: 700;
  display: inline;
}
@media (min-width: 768px) {
  .c-studio-item__place span {
    font-size: clamp(1.125rem, 0.5625rem + 1.171875vw, 1.5rem);
  }
}

.c-studio__name-wrap {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-studio__name-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.c-studio__name-sub {
  color: #939393;
  font-family: "Termina", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}
@media (min-width: 768px) {
  .c-studio__name-sub {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    width: 71px;
  }
}

.c-studio__name {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 768px) {
  .c-studio__name {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
  }
}

.c-studio__address-wrap {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-studio__address-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    margin-top: 2px;
  }
}

.c-studio__address-sub {
  color: #939393;
  font-family: "Termina", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}
@media (min-width: 768px) {
  .c-studio__address-sub {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    width: 71px;
  }
}

@media (min-width: 768px) {
  .c-studio__address-wrap-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
}

.c-studio__address {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 768px) {
  .c-studio__address {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
}

.c-studio__address-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.c-studio__address-link svg {
  width: 16px;
  height: 16px;
}
.c-studio__address-link span {
  color: #23719e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (any-hover: hover) {
  .c-studio__address-link:hover {
    opacity: 0.75;
  }
}

.c-studio__btn-wrap {
  margin-top: 8px;
  text-align: end;
}

.c-studio-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .c-studio-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-studio-card__sub-area {
  border-radius: 8px;
  background: #fffdfd;
  padding-top: 18px;
  padding-bottom: 13.15px;
}
@media (min-width: 768px) {
  .c-studio-card__sub-area {
    padding-left: clamp(0.75rem, -1.40625rem + 4.4921875vw, 2.1875rem);
    padding-right: clamp(0.625rem, -1.34375rem + 4.1015625vw, 1.9375rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-studio-card__main-area {
  border-radius: 8px;
  background: #fffdfd;
  padding-top: 17px;
  padding-inline: 40px;
  padding-bottom: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .c-studio-card__main-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(1.25rem, -0.90625rem + 4.4921875vw, 2.6875rem);
    padding-top: 40px;
    padding-bottom: 48px;
    padding-left: clamp(1rem, -1.25rem + 4.6875vw, 2.5rem);
    padding-right: clamp(1.25rem, -2.5rem + 7.8125vw, 3.75rem);
    max-width: 816px;
    width: 100%;
  }
}
.c-studio-card__main-area::before {
  content: "";
  position: absolute;
  width: 98%;
  height: 2px;
  border: 1px dashed #c7c7c7;
}
@media screen and (max-width: 767px) {
  .c-studio-card__main-area::before {
    top: 0;
    left: 50%;
    translate: -50%;
  }
}
@media (min-width: 768px) {
  .c-studio-card__main-area::before {
    width: 2px;
    height: 98%;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}

.c-studio-card__title-wrap {
  text-align: center;
}

.c-studio__logo {
  width: 231.027px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-studio__logo {
    width: clamp(11.25rem, 3.375rem + 16.40625vw, 16.5rem);
  }
}

.c-studio-card__title {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 14.5px */
  letter-spacing: 0.5px;
}

.c-studio-card__icon-lists {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-studio-card__icon-lists {
    margin-top: 10px;
    padding-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) {
  .c-studio-card__icon-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: clamp(1.25rem, 0.3125rem + 1.953125vw, 1.875rem);
  }
}

.c-studio-card__icon-list {
  width: 64px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .c-studio-card__icon-list {
    width: clamp(3rem, 1.5rem + 3.125vw, 4rem);
  }
}

@media (min-width: 768px) {
  .c-studio-card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (min-width: 768px) {
  .c-studio-card__image {
    margin-top: 43px;
    width: clamp(15.625rem, 8.59375rem + 14.6484375vw, 20.3125rem);
  }
  .c-studio-card__image img {
    height: auto;
  }
}

.c-studio-card__recommendation-heading {
  position: absolute;
  color: #b4b4b4;
  font-family: "Termina", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .c-studio-card__recommendation-heading {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .c-studio-card__recommendation-heading {
    left: 0;
    top: 50%;
    translate: 0 -50%;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.c-studio-card__reservation-tag-wrap {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .c-studio-card__reservation-tag-wrap {
    margin-top: 20px;
  }
}

.c-studio-card__lists {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .c-studio-card__lists {
    gap: 8px;
    margin-top: 14px;
  }
}

.c-studio-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .c-studio-card__list {
    gap: 8px;
  }
}
.c-studio-card__list svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .c-studio-card__list svg {
    width: 24px;
    height: 24px;
  }
}
.c-studio-card__list p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .c-studio-card__list p {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
  }
}
.c-studio-card__list p span {
  font-weight: 700;
}

.c-studio-card__btn-wrap {
  margin-top: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-studio-card__btn-wrap {
    margin-top: 24px;
  }
}

.c-studio-reservation-tag {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
  border-radius: 64px;
  background: #f5865c;
  padding-block: 6px;
  padding-inline: 23px;
}
.c-studio-reservation-tag.--inquiry {
  background: #939393;
}

.c-studio-card-area {
  background: #ffeee9;
  padding-block: 40px;
}

.c-lesson-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .c-lesson-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(2.5rem, 1.375rem + 2.34375vw, 3.25rem);
    max-width: 761px;
  }
}

.c-lesson-item__image {
  position: relative;
}
@media (min-width: 768px) {
  .c-lesson-item__image {
    width: clamp(20rem, 12.5rem + 15.625vw, 25rem);
  }
}
.c-lesson-item__image::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border-radius: 6.365px;
  background: rgba(245, 134, 91, 0.75);
  z-index: -1;
}

@media (min-width: 768px) {
  .c-lesson-item__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-lesson-item__title {
  position: relative;
  color: #eb6835;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
}
@media screen and (max-width: 767px) {
  .c-lesson-item__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .c-lesson-item__title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
  }
}

.c-lesson-item__title-sub {
  position: absolute;
  color: rgba(235, 104, 53, 0.2);
  font-family: "Termina", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  left: calc(100% - 12px);
  top: -10px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-lesson-item__title-sub {
    font-size: clamp(2.25rem, 1.125rem + 2.34375vw, 3rem);
    top: unset;
    bottom: 10px;
    left: unset;
    right: 0;
  }
}

.c-lesson-item__text {
  margin-top: 6px;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .c-lesson-item__text {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
  }
}

.c-lesson-item__class-title {
  margin-top: 10px;
  color: #eb6835;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-bottom: 8px;
  position: relative;
}
@media (min-width: 768px) {
  .c-lesson-item__class-title {
    margin-top: 32px;
    font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
    letter-spacing: 0.9px;
  }
}
.c-lesson-item__class-title svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.c-lesson-item__class-lists {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.c-lesson-item__class-list {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .c-lesson-item__class-list {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
    letter-spacing: 0.7px;
    line-height: 140%;
  }
}

.c-lesson-item__btn-wrap {
  margin-top: 8px;
  text-align: end;
}
@media (min-width: 768px) {
  .c-lesson-item__btn-wrap {
    margin-top: 35px;
  }
}

.c-scene-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .c-scene-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.5rem, -1.21875rem + 5.6640625vw, 3.3125rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-scene-card.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.c-scene-card__image {
  position: relative;
}
@media (min-width: 768px) {
  .c-scene-card__image {
    width: clamp(20rem, 8.5625rem + 23.828125vw, 27.625rem);
  }
}
.c-scene-card__image::before {
  content: "";
  position: absolute;
  background: url(../img/icon-usage-scene.png) no-repeat center/contain;
  bottom: -8px;
  right: 0;
  width: 80px;
  aspect-ratio: 80/75;
}
@media (min-width: 768px) {
  .c-scene-card__image::before {
    right: unset;
    left: 16px;
    bottom: -16px;
    width: clamp(3.75rem, 1.875rem + 3.90625vw, 5rem);
  }
}
@media (min-width: 768px) {
  .c-scene-card__image.--reverse::before {
    right: 16px;
    left: unset;
    bottom: -16px;
  }
}

@media (min-width: 768px) {
  .c-scene-card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-scene-card__number {
  color: #eb6835;
  font-family: "Termina", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 1.4px;
}
@media (min-width: 768px) {
  .c-scene-card__number {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-scene-card__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .c-scene-card__title {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    letter-spacing: 0.96px;
  }
}

.c-scene-card__title-pictogram {
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  top: 0;
  left: calc(100% + 6px);
}
@media (min-width: 768px) {
  .c-scene-card__title-pictogram {
    width: clamp(2rem, 1.25rem + 1.5625vw, 2.5rem);
    height: clamp(2rem, 1.25rem + 1.5625vw, 2.5rem);
    left: calc(100% + 8px);
  }
}
.c-scene-card__title-pictogram img {
  width: 100%;
  height: auto;
}

.c-scene-card__text {
  margin-top: 6px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-scene-card__text {
    margin-top: clamp(1rem, -0.21875rem + 2.5390625vw, 1.8125rem);
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}

.c-scene-card__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .c-scene-card__lists {
    margin-top: 8px;
  }
}

.c-scene-card__list {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .c-scene-card__list {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
  }
}
.c-scene-card__list::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.c-scene-card-wrap {
  max-width: 976px;
  margin-inline: auto;
}

.c-reservation-item {
  width: 335px;
  padding-top: 16px;
  padding-bottom: 24px;
  background: url(../img/suku-reservation-bg.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .c-reservation-item {
    width: 100%;
    max-width: 390px;
    padding-top: 22px;
    padding-bottom: 30px;
  }
}

.c-reservation-item__heading {
  text-align: center;
  color: #eb6835;
  font-family: "Termina", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
@media (min-width: 768px) {
  .c-reservation-item__heading {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}

.c-reservation-item__text {
  text-align: center;
  margin-top: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-reservation-item__text {
    margin-top: 0;
  }
}

.c-reservation-item__line-btn-wrap {
  margin-top: 4px;
  max-width: 261px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-reservation-item__line-btn-wrap {
    margin-top: 12px;
  }
}

.c-reservation-item__line-btn {
  padding-inline: 33px;
}
@media (min-width: 768px) {
  .c-reservation-item__line-btn {
    padding-inline: 32px;
  }
  .c-reservation-item__line-btn span {
    font-size: 16px;
  }
}

.c-reservation-item__btn-wrap {
  margin-top: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-reservation-item__btn-wrap {
    margin-top: 8px;
  }
}

.c-reservation-item-btn {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-reservation-item-btn:hover {
    opacity: 0.75;
  }
}

.c-breadcrumbs {
  font-size: 12px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .c-breadcrumbs {
    font-size: 14px;
  }
}
.c-breadcrumbs span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .c-breadcrumbs span {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .c-breadcrumbs {
    padding-inline: clamp(3.125rem, 0.3125rem + 5.859375vw, 5rem);
  }
}
.c-breadcrumbs .current-item {
  font-weight: 700;
}

.c-studio-info {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(156, 126, 126, 0.25);
          box-shadow: 1px 1px 4px 0 rgba(156, 126, 126, 0.25);
  width: 100%;
  max-width: 335px;
  padding-inline: 16px;
  padding-block: 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-studio-info {
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .c-studio-info {
    padding-inline: clamp(1rem, -0.5rem + 3.125vw, 2rem);
    padding-block: clamp(1rem, -0.5rem + 3.125vw, 2rem);
    width: clamp(15rem, 3.9375rem + 23.046875vw, 22.375rem) !important;
    max-width: 100%;
  }
}
.c-studio-info::before {
  content: "";
  position: absolute;
  background: url(../img/studio-info-wave.png) no-repeat bottom center/contain;
  width: 100%;
  height: 220px;
  left: 0;
  bottom: -10px;
  z-index: -1;
}
@media (min-width: 768px) {
  .c-studio-info::before {
    height: clamp(13.75rem, 10rem + 7.8125vw, 16.25rem);
    bottom: -20px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .c-studio-info::before {
    bottom: 0;
  }
}

.c-studio-info__title-sub {
  color: #F5865C;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%; /* 18px */
  letter-spacing: 0.6px;
}

.c-studio-info__title {
  color: #F5865C;
  font-family: "Termina", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
}

.c-studio-info__lists {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .c-studio-info__lists {
    margin-top: clamp(0.75rem, 0rem + 1.5625vw, 1.25rem);
    margin-bottom: clamp(0.75rem, 0rem + 1.5625vw, 1.25rem);
  }
}

.c-studio-info__list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.c-studio-info__list-title svg {
  width: 20px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .c-studio-info__list-title svg {
    width: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}
.c-studio-info__list-title span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-studio-info__list-title span {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-studio-info__list-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .c-studio-info__list-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-studio-info__list-link {
  margin-top: 4px;
  text-align: right;
  display: block;
  padding-right: 9px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
}
@media (min-width: 768px) {
  .c-studio-info__list-link {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
  }
}
.c-studio-info__list-link::before {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-right-black.png) no-repeat center center/contain;
  width: 6px;
  height: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-studio-info__price {
  color: #474747;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
  letter-spacing: 0.6px;
}

.c-studio-info__price-max {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .c-studio-info__price-max {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}

.c-studio-info__price-time {
  color: #847f7f;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 0.6px;
}

.c-studio-info__price-text {
  margin-top: 2px;
  padding-left: 22px;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 15px */
  letter-spacing: 0.5px;
  position: relative;
}
.c-studio-info__price-text::before {
  content: "";
  position: absolute;
  background: url(../img/icon-check-orange.png) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-studio-info__reservation-wrap {
  margin-top: 51px;
}
@media (min-width: 768px) {
  .c-studio-info__reservation-wrap {
    margin-top: clamp(2rem, 0.21875rem + 3.7109375vw, 3.1875rem);
  }
}

.c-studio-info__reservation-text {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-studio-info__reservation-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-studio-info__reservation-line-btn-wrap {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-studio-info__reservation-btn-wrap {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-studio-info__reservation-btn-wrap {
    margin-top: clamp(0.5rem, 0.125rem + 0.78125vw, 0.75rem);
    gap: clamp(0.375rem, 0.1875rem + 0.390625vw, 0.5rem);
  }
}

.c-reservation-item__line-btn {
  padding-inline: clamp(1rem, -0.5rem + 3.125vw, 2rem);
}
.c-reservation-item__line-btn span {
  font-size: clamp(0.75rem, 0.375rem + 0.78125vw, 1rem);
}

.c-studio-info__reservation-link {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
  padding-right: 9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-studio-info__reservation-link {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
  }
}
.c-studio-info__reservation-link::before {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-right-black.png) no-repeat center center/contain;
  width: 6px;
  height: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .c-studio-info__reservation-link:hover {
    opacity: 0.75;
  }
}

.c-studio-class-item {
  border-radius: 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  padding-block: 24px;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .c-studio-class-item {
    padding-top: clamp(1.5rem, 0rem + 3.125vw, 2.5rem);
    padding-bottom: clamp(1.25rem, 0.125rem + 2.34375vw, 2rem);
    padding-inline: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    max-width: 976px;
    gap: clamp(1.25rem, -0.625rem + 3.90625vw, 2.5rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-studio-class-item::before {
  content: "";
  position: absolute;
  background: #F5865C;
  width: calc(100% + 8px);
  height: 100%;
  left: 0;
  top: 8px;
  border-radius: 10px;
  z-index: -1;
}
@media (min-width: 768px) {
  .c-studio-class-item::before {
    width: calc(100% + 10px);
    height: 100%;
    left: 0;
    top: 10px;
  }
}

@media (min-width: 768px) {
  .c-studio-class-item__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-studio-class-item__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
}
@media (min-width: 768px) {
  .c-studio-class-item__title {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    letter-spacing: 1.6px;
    line-height: 140%;
  }
}

.c-studio-class-item__text {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .c-studio-class-item__text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%;
    letter-spacing: 0.8px;
  }
}

.c-studio-class-item__lists {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .c-studio-class-item__lists {
    margin-top: 16px;
    gap: 8px;
  }
}

.c-studio-class-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-studio-class-item__list {
    gap: clamp(0.5rem, -0.25rem + 1.5625vw, 1rem);
  }
}

.c-studio-class-item__list-tag {
  color: #eb6835;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-block: 7px;
  border-radius: 4px;
  border: 2px solid #eb6835;
  background: #fff;
  width: 100px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-studio-class-item__list-tag {
    width: clamp(5rem, 1.25rem + 7.8125vw, 7.5rem);
    padding-block: 8px;
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
  }
}

.c-studio-class-item__list-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-studio-class-item__list-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

@media (min-width: 768px) {
  .c-studio-class-item__image {
    width: 31%;
  }
}

.c-studio-schedule-item {
  border-radius: 6px;
  border: 1px solid #c7c7c7;
  background: #fff;
  padding-top: 24px;
  padding-inline: 24px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item {
    padding: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.c-studio-schedule-item__studio {
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__studio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-studio-schedule-item__studio::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #c7c7c7;
  left: 0;
  bottom: 0;
}

.c-studio-schedule-item__studio-logo {
  width: 194px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__studio-logo {
    width: 155px;
    margin-top: 10px;
  }
  .c-studio-schedule-item__studio-logo img {
    height: auto;
  }
}

@media (min-width: 768px) {
  .c-studio-schedule-item__studio-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-studio-schedule-item__studio-name-title {
  color: #eb6835;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__studio-name-title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
    line-height: 150%;
  }
}

.c-studio-schedule-item__studio-map {
  color: #23719e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__studio-map {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
.c-studio-schedule-item__studio-map::before {
  content: "";
  position: absolute;
  background: url("../img/icon-arrow-blue.svg") no-repeat center center/contain;
  width: 8px;
  height: 16px;
  right: 0;
  top: 3px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (any-hover: hover) {
  .c-studio-schedule-item__studio-map:hover {
    opacity: 0.75;
  }
}

.c-studio-schedule-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 16px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .c-studio-schedule-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-studio-schedule-item__body {
  padding-top: 12px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__body {
    padding-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-studio-schedule-item__class-title {
  color: #5c5c5c;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__class-title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
.c-studio-schedule-item__class-title::before {
  content: "";
  position: absolute;
  background: #f28f00;
  border-radius: 5px;
  width: 8px;
  height: 25px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-studio-schedule-item-tabs {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  row-gap: 8px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item-tabs {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.c-studio-schedule-item-tab {
  color: #c7c7c7;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-studio-schedule-item-tab {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
.c-studio-schedule-item-tab::before {
  content: "";
  position: absolute;
  background: #c7c7c7;
  width: 2px;
  height: 16px;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-studio-schedule-item-tab[aria-selected=true] {
  color: #eb6835;
  pointer-events: none;
}
.c-studio-schedule-item-tab[aria-selected=true]::after {
  position: absolute;
  content: "";
  background: #eb6835;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -2px;
}
.c-studio-schedule-item-tab[aria-selected=false] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-studio-schedule-item-tab[aria-selected=false]:hover {
    cursor: pointer;
    color: #eb6835;
  }
}

.c-studio-schedule-item-panels {
  margin-top: 16px;
}

.c-studio-schedule-item-panel {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.c-studio-schedule-item-panel.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.c-studio-schedule-item__schedule-title {
  color: #5c5c5c;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__schedule-title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
.c-studio-schedule-item__schedule-title::before {
  content: "";
  position: absolute;
  background: #f28f00;
  border-radius: 5px;
  width: 8px;
  height: 25px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-studio-schedule-item__schedule-lists {
  margin-top: 6px;
  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) {
  .c-studio-schedule-item__schedule-lists {
    margin-top: 12px;
  }
}

.c-studio-schedule-item__schedule-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.c-studio-schedule-week {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 30px */
  width: 30px;
  height: 30px;
  border-radius: 50vmax;
  background: #ffeee9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .c-studio-schedule-week {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    width: 35px;
    height: 35px;
  }
}
.c-studio-schedule-week.--saturday {
  background: #e4e9ff;
}
.c-studio-schedule-week.--sunday {
  background: #ffdada;
}

.c-studio-schedule-time {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .c-studio-schedule-time {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}

.c-studio-schedule-item__instructor-wrap {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__instructor-wrap {
    gap: 24px;
  }
}

.c-studio-schedule-item__instructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.c-studio-schedule-item__instructor-image {
  width: 45px;
  aspect-ratio: 1/1;
  border-radius: 50vmax;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__instructor-image {
    width: 60px;
  }
}
.c-studio-schedule-item__instructor-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-studio-schedule-item__instructor-body {
  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;
}

.c-studio-schedule-item__instructor-label {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 14.5px */
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__instructor-label {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-studio-schedule-item__instructor-link {
  color: #23719e;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__instructor-link {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
@media (any-hover: hover) {
  .c-studio-schedule-item__instructor-link:hover {
    opacity: 0.75;
  }
}

.c-studio-schedule-item__cta {
  background: #fff2ef;
  padding-top: 16px;
  padding-inline: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__cta {
    width: 36%;
    padding-inline: 0;
    padding-block: 100px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .c-studio-schedule-item__cta {
    width: 100%;
    padding-block: 32px;
  }
}

@media (min-width: 768px) {
  .c-studio-schedule-item__cta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: center;
        align-self: center;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    justify-content: center;
  }
}

.c-studio-schedule-item__cta-text-main {
  color: #eb6835;
  text-align: center;
  font-family: "Termina", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
@media (min-width: 768px) {
  .c-studio-schedule-item__cta-text-main {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}

.c-studio-schedule-item__cta-text {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

.c-studio-schedule-item__cta-line-btn-wrap {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__cta-line-btn-wrap {
    margin-top: 14px;
  }
}

.c-studio-schedule-item__cta-line-btn {
  padding-inline: 22px;
}
@media (min-width: 768px) {
  .c-studio-schedule-item__cta-line-btn {
    max-width: 260px;
    width: 100%;
  }
  .c-studio-schedule-item__cta-line-btn span {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.c-studio-schedule-item__cta-btn-wrap {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-page-fv {
  padding-top: 16px;
  padding-bottom: 32px;
  background: #ffeee9;
}

.c-page-fv__breadcrumbs {
  color: #F5865C;
}

.c-page-fv__title {
  text-align: center;
  color: #F5865C;
  margin-top: 52px;
}

.c-page-fv__sub-title {
  color: #F5865C !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-gallery__hero-img {
  width: 100%;
  aspect-ratio: 741/427;
  display: block;
  border-radius: 12px;
}
.c-gallery__hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-gallery__thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .c-gallery__thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
}

.c-gallery__thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.c-gallery__thumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.c-gallery__thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-gallery__actions {
  margin-top: 10px;
}

.c-gallery__seeall {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

/* モーダル&スライダー（超要約） */
.c-modal[aria-hidden=true] {
  display: none;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.c-modal__dialog {
  position: relative;
  background: #fff;
  width: min(1100px, 96vw);
  max-height: min(96vh, 820px);
  border-radius: 14px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 64px 20px 24px;
  gap: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-modal__dialog {
    padding: 56px 32px 32px;
    max-height: min(86vh, 820px);
  }
}

.c-modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
}

.c-modal__slider {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
}

.c-modal__grid {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.c-modal__grid-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
@media (min-width: 768px) {
  .c-modal__grid-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.c-modal__grid-item {
  list-style: none;
}

.c-modal__grid-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-modal__grid-button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.c-modal__grid-button:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.c-modal__grid-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.c-modal__close.is-back {
  background: rgba(0, 0, 0, 0.75);
}

.c-slider {
  position: relative;
  height: 100%;
}

.c-slider__viewport {
  overflow: hidden;
  height: 100%;
}

.c-slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  will-change: transform;
}

.c-slider__slide {
  min-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-block: auto;
  aspect-ratio: 100/60;
}

.c-slider__img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-slider__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  border: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.5);
  background: #ccc;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  padding-bottom: 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .c-slider__nav {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}

.c-slider__nav.-prev {
  left: 8px;
}

.c-slider__nav.-next {
  right: 8px;
}

.c-modal__counter {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  z-index: 2;
}

.c-renta-header {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px -6px rgba(51, 51, 51, 0.25);
          box-shadow: 0 4px 10px -6px rgba(51, 51, 51, 0.25);
  padding-block: 10px;
  border-top: 1px solid #ececec;
}
@media (min-width: 768px) {
  .c-renta-header {
    top: 60px;
    padding-block: 12px;
  }
}

@media (min-width: 768px) {
  .c-renta-header__nav {
    max-width: 480px;
    margin-inline: auto;
  }
}

.c-renta-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-renta-header__nav-item {
  position: relative;
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .c-renta-header__nav-item {
    padding-bottom: 6px;
  }
}
.c-renta-header__nav-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 2px;
  height: 20px;
  background: #d9d9d9;
}
.c-renta-header__nav-item.is-active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #eb6835;
  bottom: -10px;
  left: 50%;
  translate: -50% 0;
}
@media (min-width: 768px) {
  .c-renta-header__nav-item.is-active::after {
    bottom: 0;
    width: 90%;
  }
}
.c-renta-header__nav-item.is-active .c-renta-header__nav-link {
  color: #eb6835;
  font-weight: 700;
}

.c-renta-header__nav-link {
  color: #939393;
  font-size: 10px;
  font-weight: 400;
  line-height: 140%; /* 14px */
  letter-spacing: 0.5px;
  text-align: center;
  display: inline-block;
}
@media (min-width: 768px) {
  .c-renta-header__nav-link {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
@media (any-hover: hover) {
  .c-renta-header__nav-link:hover {
    color: #eb6835;
  }
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 2.5rem;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px 0 rgba(156, 126, 126, 0.25);
          box-shadow: 0 4px 10px 0 rgba(156, 126, 126, 0.25);
}
@media (min-width: 768px) {
  .p-header {
    padding-left: clamp(2.5rem, -1.25rem + 7.8125vw, 5rem);
    padding-right: clamp(5rem, -1.5625rem + 13.671875vw, 9.375rem);
  }
}

.p-header__inner {
  padding-top: 13px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .p-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 9px;
    padding-bottom: 8px;
  }
}

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .p-header__logo {
    gap: 16px;
  }
}
@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.75;
  }
}

.p-header__logo-image {
  width: 88px;
}
@media (min-width: 768px) {
  .p-header__logo-image {
    width: clamp(5rem, 1.34375rem + 7.6171875vw, 7.4375rem);
  }
}

.p-header__title {
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 10.4px */
  letter-spacing: 0.64px;
}
@media (min-width: 768px) {
  .p-header__title {
    font-size: 10px;
    letter-spacing: 0.8px;
    line-height: normal;
  }
}

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

.p-header__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 1.5px solid #c7c7c7;
  overflow: hidden;
}

.p-header__list-item-link {
  font-size: clamp(1rem, 0.0625rem + 1.953125vw, 1.625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-top: 7.5px;
  padding-bottom: 6.5px;
  position: relative;
}
.p-header__list-item-link svg {
  width: 25px;
  height: 26px;
}
.p-header__list-item-link.--lesson {
  padding-left: 38.5px;
  padding-right: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-header__list-item-link.--lesson::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f5865c;
  border-radius: 24px 0 0 24px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
@media (any-hover: hover) {
  .p-header__list-item-link.--lesson:hover .p-header__list-item-link-text {
    color: #fff;
  }
  .p-header__list-item-link.--lesson:hover .lesson-icon path {
    fill: #fff;
  }
  .p-header__list-item-link.--lesson:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-header__list-item-link.--renta {
  padding-right: 38.5px;
  padding-left: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-header__list-item-link.--renta::before {
  content: "";
  position: absolute;
  background: #c7c7c7;
  width: 1px;
  height: 23px;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
.p-header__list-item-link.--renta::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f5865c;
  border-radius: 0 24px 24px 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
@media (any-hover: hover) {
  .p-header__list-item-link.--renta:hover .p-header__list-item-link-text {
    color: #fff;
  }
  .p-header__list-item-link.--renta:hover .rental-icon path {
    fill: #fff;
  }
  .p-header__list-item-link.--renta:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.lesson-icon {
  width: clamp(1.0625rem, 1.0625rem + 0vw, 1.0625rem);
}

.rental-icon {
  width: clamp(1.5625rem, 1.5625rem + 0vw, 1.5625rem);
}

.p-header__list-item-link-text {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.28px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-header__btn {
  padding: 0.5rem 1.625rem;
  background: #fff;
  border: 1px solid #fff;
  color: #001a75;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-id-17 .p-header {
  /* page-rental 用のスタイル */
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  background: #333;
  width: 45px;
  height: 45px;
  bottom: 5px;
  right: 17px;
  padding-bottom: 5px;
  padding-top: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-drawer__icon {
    right: clamp(1.25rem, -4.375rem + 11.71875vw, 5rem);
    top: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
    width: 50px;
    height: 50px;
  }
}
@media (any-hover: hover) {
  .p-drawer__icon:hover {
    opacity: 0.75;
    cursor: pointer;
  }
}

.p-drawer__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-drawer__icon--bar {
  width: 16px;
  height: 0.0625rem;
  background: #fff;
  margin-inline: auto;
  border-radius: 2px;
}

.p-drawer__icon-text {
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.64px;
  font-family: "Termina", sans-serif;
  color: #fff;
}
@media (min-width: 768px) {
  .p-drawer__icon-text {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 3px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -3px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
@media (min-width: 768px) {
  .p-drawer {
    top: 60px;
    overflow: hidden;
  }
}

.p-drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-inline: 12px;
  padding-top: 48px;
  padding-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-drawer__body {
    padding-left: clamp(2.5rem, -1.25rem + 7.8125vw, 5rem);
    padding-right: clamp(2.5rem, -1.25rem + 7.8125vw, 5rem);
    padding-top: 48px;
    padding-bottom: 160px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
    height: calc(100svh - 60px);
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.p-drawer__logo {
  width: 152px;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-drawer__logo {
    width: 200px;
  }
}

.p-drawer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-drawer__nav-items {
    max-width: 735px;
    width: 100%;
    gap: clamp(1.5rem, -0.9375rem + 5.078125vw, 3.125rem);
    height: 100%;
  }
}

.p-drawer__nav-item {
  border-radius: 8px;
  background: #f8f8f8;
  -webkit-box-shadow: 0 2px 4px 0 rgba(156, 126, 126, 0.25);
          box-shadow: 0 2px 4px 0 rgba(156, 126, 126, 0.25);
  padding-top: 24px;
  padding-bottom: 20px;
  padding-inline: 21px;
}
@media (min-width: 768px) {
  .p-drawer__nav-item {
    padding-block: clamp(1.25rem, -0.625rem + 3.90625vw, 2.5rem);
    padding-inline: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
  }
}

.p-drawer__nav-item-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.p-drawer__nav-item-logo.--suku {
  width: 121px;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-logo.--suku {
    width: clamp(7.5625rem, 0.15625rem + 15.4296875vw, 12.5rem);
  }
}
.p-drawer__nav-item-logo.--renta {
  width: 133px;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-logo.--renta {
    width: clamp(8.3125rem, 2.03125rem + 13.0859375vw, 12.5rem);
  }
}
.p-drawer__nav-item-logo span {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-logo span {
    font-size: clamp(1rem, 0.25rem + 1.5625vw, 1.5rem);
    letter-spacing: 1.2px;
  }
}

.p-drawer__nav-item-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-drawer__nav-item-logo-link:hover {
    opacity: 0.75;
    cursor: pointer;
  }
}

.p-drawer__nav-item-nav {
  margin-top: 26px;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-nav {
    margin-top: 35px;
  }
}

.p-drawer__nav-item-nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  -webkit-column-gap: 23px;
     -moz-column-gap: 23px;
          column-gap: 23px;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-nav-list {
    -webkit-column-gap: clamp(1.4375rem, -0.90625rem + 4.8828125vw, 3rem);
       -moz-column-gap: clamp(1.4375rem, -0.90625rem + 4.8828125vw, 3rem);
            column-gap: clamp(1.4375rem, -0.90625rem + 4.8828125vw, 3rem);
  }
}

.p-drawer__nav-item-nav-list-item a {
  position: relative;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  display: block;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-nav-list-item a {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
    letter-spacing: 1px;
  }
}
.p-drawer__nav-item-nav-list-item a::before {
  content: "";
  position: absolute;
  background: url("../img/icon-yazirushi.png") no-repeat center center/contain;
  width: 4px;
  height: 7.429px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-drawer__nav-item-nav-list-item a::before {
    width: 8px;
    height: 15px;
  }
}
@media (any-hover: hover) {
  .p-drawer__nav-item-nav-list-item a:hover {
    opacity: 0.75;
  }
}
.p-drawer__nav-item-nav-list-item--hidden {
  display: none;
}

.p-drawer__nav-item-btn {
  margin-top: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-btn {
    margin-top: 24px;
  }
}

.p-drawer__nav-item-more {
  margin-top: 18px;
  text-align: end;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 768px) {
  .p-drawer__nav-item-more {
    margin-top: 20px;
  }
}

.p-drawer__nav-item-more-btn {
  border: none;
  color: #23719e;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 130%;
  cursor: pointer;
  padding-right: 19px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.p-drawer__nav-item-more-btn::before {
  content: "";
  position: absolute;
  background: url("../img/icon-arrow-blue.svg") no-repeat center center/contain;
  width: 6px;
  height: 11px;
  top: 50%;
  right: 0;
  -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-drawer__nav-item-more-btn[aria-expanded=true]::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding-left: 22px;
}
@media (min-width: 768px) {
  .p-drawer__nav {
    gap: 48px;
    padding-left: 0;
  }
}

.p-drawer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-drawer__lists {
    gap: 40px;
  }
}

.p-drawer__list a {
  position: relative;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 21px */
  letter-spacing: 0.7px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-drawer__list a {
    width: 143px;
  }
}
.p-drawer__list a::before {
  content: "";
  position: absolute;
  background: url("../img/icon-arrow-right-black.png") no-repeat center center/contain;
  width: 4px;
  height: 7.429px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-drawer__list a::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .p-drawer__list a {
    font-size: clamp(1.125rem, 0.5625rem + 1.171875vw, 1.5rem);
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    letter-spacing: 1.2px;
  }
}
@media (any-hover: hover) {
  .p-drawer__list a:hover {
    opacity: 0.75;
  }
}

.p-drawer__lists-terms {
  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) {
  .p-drawer__lists-terms {
    gap: 8px;
  }
}

.p-drawer__lists-term {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-drawer__lists-term {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
    letter-spacing: 0.7px;
  }
}
@media (any-hover: hover) {
  .p-drawer__lists-term:hover {
    opacity: 0.75;
  }
}

.p-footer {
  background: #8a9097;
}

.p-footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  gap: 2px;
}
@media (min-width: 768px) {
  .p-footer-top {
    gap: 4px;
  }
}

.p-footer-top-content {
  border-radius: 8px 8px 0 0;
  padding-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer-top-content {
    padding-top: 64px;
  }
}
@media (min-width: 768px) and (min-width: 1441px) and (max-width: 1800px) {
  .p-footer-top-content {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (min-width: 1801px) {
  .p-footer-top-content {
    padding-top: 160px;
  }
}
.p-footer-top-content.--suku {
  background: url(../img/footer-image-01-sp.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .p-footer-top-content.--suku {
    background: url(../img/footer-image-01.jpg) no-repeat center center/cover;
  }
}
.p-footer-top-content.--renta {
  background: url(../img/footer-image-02-sp.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .p-footer-top-content.--renta {
    background: url(../img/footer-image-02.jpg) no-repeat center center/cover;
  }
}
@media (any-hover: hover) {
  .p-footer-top-content:hover {
    opacity: 0.75;
  }
}

.p-footer-top-content-title {
  color: #F5865C;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  letter-spacing: 2.8px;
  padding-left: 20px;
  display: block;
}
@media (min-width: 426px) and (max-width: 550px) {
  .p-footer-top-content-title {
    padding-left: 40px;
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  .p-footer-top-content-title {
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  .p-footer-top-content-title {
    padding-left: 80px;
    font-size: clamp(2rem, 0.5rem + 3.125vw, 3rem);
  }
}
.p-footer-top-content-title.--renta {
  color: #fff;
  padding-right: 20px;
  text-align: right;
}
@media (min-width: 426px) and (max-width: 550px) {
  .p-footer-top-content-title.--renta {
    padding-right: 40px;
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  .p-footer-top-content-title.--renta {
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .p-footer-top-content-title.--renta {
    padding-right: 80px;
  }
}

.p-footer-top-content-body {
  margin-top: 92px;
  background: rgba(31, 31, 31, 0.6);
  padding-block: 18px;
}
@media (min-width: 426px) and (max-width: 550px) {
  .p-footer-top-content-body {
    margin-top: 120px;
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  .p-footer-top-content-body {
    margin-top: 200px;
  }
}
@media (min-width: 768px) {
  .p-footer-top-content-body {
    padding-block: 36px;
    margin-top: 56px;
  }
}
@media (min-width: 768px) and (min-width: 1441px) and (max-width: 1800px) {
  .p-footer-top-content-body {
    margin-top: 160px;
  }
}
@media (min-width: 768px) and (min-width: 1801px) {
  .p-footer-top-content-body {
    margin-top: 300px;
  }
}

.p-footer-top-content-text {
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-footer-top-content-text {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    letter-spacing: 0.54px;
  }
}

.p-footer-main {
  padding-top: 29px;
  padding-bottom: 120px;
}
@media (min-width: 768px) {
  .p-footer-main {
    padding-top: 64px;
    padding-bottom: 40px;
  }
}

.p-footer-main__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
}
@media (min-width: 768px) {
  .p-footer-main__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(2.375rem, -1.5625rem + 8.203125vw, 5rem);
  }
}

@media screen and (max-width: 767px) {
  .p-footer__logo-area {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .p-footer__logo-area {
    padding-right: clamp(0rem, -7.875rem + 16.40625vw, 5.25rem);
  }
}

.p-footer__logo-area-logo-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__logo-area-logo-link:hover {
    opacity: 0.75;
  }
}

.p-footer__logo-area-logo {
  width: 103px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-footer__logo-area-logo {
    width: clamp(6.4375rem, 1.84375rem + 9.5703125vw, 9.5rem);
  }
}

@media (min-width: 768px) {
  .p-footer-suku-area {
    width: clamp(12.5rem, 6.875rem + 11.71875vw, 16.25rem);
  }
}

.p-footer-suku-nav-list-title-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer-suku-nav-list-title-link:hover {
    opacity: 0.75;
  }
}

.p-footer-suku-nav-list-title {
  color: #ebe7e1;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe7e1;
}
@media (min-width: 768px) {
  .p-footer-suku-nav-list-title {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    padding-bottom: 16px;
  }
}

.p-footer-suku-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-footer-suku-nav-list {
    gap: 16px;
  }
}

.p-footer-suku-nav-list-item {
  color: #ebe7e1;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer-suku-nav-list-item {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
  }
}
@media (any-hover: hover) {
  .p-footer-suku-nav-list-item:hover {
    opacity: 0.75;
  }
}

.p-footer-suku-sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.p-footer-suku-sns-link {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-footer-suku-sns-link img {
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .p-footer-suku-sns-link:hover {
    opacity: 0.75;
  }
}

@media (min-width: 768px) {
  .p-footer-renta-area {
    width: clamp(12.5rem, 6.875rem + 11.71875vw, 16.25rem);
  }
}

.p-footer-renta-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-footer-renta-nav-list {
    gap: 16px;
  }
}

.p-footer-renta-nav-list-title-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer-renta-nav-list-title-link:hover {
    opacity: 0.75;
  }
}

.p-footer-renta-nav-list-title {
  color: #ebe7e1;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe7e1;
}
@media (min-width: 768px) {
  .p-footer-renta-nav-list-title {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    padding-bottom: 16px;
  }
}

.p-footer-renta-nav-list-item {
  color: #ebe7e1;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer-renta-nav-list-item {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
  }
}
@media (any-hover: hover) {
  .p-footer-renta-nav-list-item:hover {
    opacity: 0.75;
  }
}

.p-footer-nav-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: 14px;
}
@media (min-width: 768px) {
  .p-footer-nav-list {
    gap: 32px;
  }
}

.p-footer-nav-list-item {
  color: #ebe7e1;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer-nav-list-item {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    letter-spacing: 0.6px;
  }
}
@media (any-hover: hover) {
  .p-footer-nav-list-item:hover {
    opacity: 0.75;
  }
}

.p-footer-bottom {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-footer-bottom {
    margin-top: 153px;
  }
}

@media (min-width: 768px) {
  .p-footer-bottom__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(2rem, 0.5rem + 3.125vw, 3rem);
  }
}

.p-footer-bottom__copyright {
  color: #ebe7e1;
  font-family: "Termina", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}
@media (min-width: 768px) {
  .p-footer-bottom__copyright {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}

.p-footer-bottom__term-wrap {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-footer-bottom__term-wrap {
    margin-top: 0;
    gap: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.p-footer-bottom__term-link {
  color: #ebe7e1;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer-bottom__term-link {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  }
}
@media (any-hover: hover) {
  .p-footer-bottom__term-link:hover {
    opacity: 0.75;
  }
}

.p-test {
  height: 300px;
  background: lightblue;
}

.p-component {
  margin-top: 200px;
}

.p-component__content {
  padding-block: 40px;
  padding-inline: 40px;
  border-top: 1px solid #000;
}

.p-nav-sp {
  position: fixed;
  z-index: 101;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: #fff;
  -webkit-box-shadow: 0 -2px 4px 0 rgba(156, 126, 126, 0.25);
          box-shadow: 0 -2px 4px 0 rgba(156, 126, 126, 0.25);
}
@media (min-width: 768px) {
  .p-nav-sp {
    display: none;
  }
}

.p-nav-item-wrap {
  padding-left: 17px;
  padding-block: 6px;
}

.p-nav-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 70px;
}

.p-nav-item-list-item {
  width: 140px;
  border-radius: 40px;
  border: 1.629px solid #c7c7c7;
  background: #fff;
}
.p-nav-item-list-item.--line {
  width: 100%;
  max-width: 280px;
}

.p-nav-item-list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding-top: 11px;
  padding-bottom: 12px;
}
.p-nav-item-list-item-link.--lesson svg {
  width: 12px;
}
.p-nav-item-list-item-link.--renta svg {
  width: 16px;
}

.p-nav-item-list-item--line {
  padding-inline: 23px;
}

.p-nav-item-list-item-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-fv {
    padding-top: 100px;
    padding-inline: clamp(5rem, -2.5rem + 15.625vw, 10rem);
    background: url("../img/fv-top-bg-pc.jpg") no-repeat center/cover;
    padding-bottom: 120px;
  }
}

.p-fv__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .p-fv__content-wrap {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.p-fv__content-wrap::before {
  content: "";
  position: absolute;
  background: url("../img/logo.png") no-repeat center/contain;
  width: 120px;
  aspect-ratio: 1/1;
  left: 50%;
  translate: -50%;
  top: 165px;
  z-index: 100;
}
@media (min-width: 768px) {
  .p-fv__content-wrap::before {
    width: clamp(7.5rem, -3.75rem + 23.4375vw, 15rem);
    top: clamp(6.25rem, 3.0625rem + 6.640625vw, 8.375rem);
  }
}
@media (min-width: 768px) {
  .p-fv__content-wrap {
    max-width: 1120px;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-fv__content-wrap::after {
    content: "";
    position: absolute;
    width: 1px;
    height: clamp(2.5rem, 1.5625rem + 1.953125vw, 3.125rem);
    background: #999;
    bottom: 14px;
    left: 50%;
    translate: -50%;
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.p-fv__content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 90px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .p-fv__content {
    border-radius: 8px 8px 8px 8px;
    height: clamp(22rem, 2.5rem + 40.625vw, 35rem);
    overflow: hidden;
    padding-top: clamp(5rem, -2.5rem + 15.625vw, 10rem);
  }
  .p-fv__content::before {
    content: "";
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
.p-fv__content.--suku {
  background: url("../img/top-fv-suku-sp.png") no-repeat top center/cover;
}
@media (min-width: 768px) {
  .p-fv__content.--suku {
    background: url("../img/top-fv-suku-pc.jpg") no-repeat center center/cover;
  }
}
.p-fv__content.--renta {
  background: url("../img/top-fv-renta-sp.png") no-repeat center center/cover;
}
@media (min-width: 768px) {
  .p-fv__content.--renta {
    background: url("../img/top-fv-renta-pc.jpg") no-repeat center center/cover;
  }
}
@media (min-width: 768px) and (any-hover: hover) {
  .p-fv__content:hover {
    -webkit-box-shadow: 0 4px 4px 0 rgba(156, 126, 126, 0.25);
            box-shadow: 0 4px 4px 0 rgba(156, 126, 126, 0.25);
  }
  .p-fv__content:hover .p-fv__title.--suku {
    color: #F5865C;
  }
  .p-fv__content:hover .p-fv__title.--renta {
    color: #fff;
  }
  .p-fv__content:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 5px solid #eb6835;
    border-radius: 8px;
    pointer-events: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1;
  }
  .p-fv__content:hover .p-fv__content-body {
    background: rgba(31, 31, 31, 0.6);
    border-radius: 0 0 6px 6px;
    padding-bottom: 20px;
  }
  .p-fv__content:hover .p-fv__content-body::before {
    content: "";
    position: absolute;
    background: url("../img/icon-arrow-right-white.png") no-repeat center center/cover;
  }
  .p-fv__content:hover .p-fv__content-body-link-title {
    color: #fff;
  }
  .p-fv__content:hover .p-fv__content-body-text {
    visibility: visible;
    opacity: 1;
    max-height: 200px;
  }
  .p-fv__content:hover .p-fv__content-wrap::after {
    width: 0;
  }
}

.p-fv__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 42px */
  letter-spacing: 2.8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-fv__title {
    font-size: clamp(1.75rem, -0.125rem + 3.90625vw, 3rem);
    letter-spacing: 4.8px;
    line-height: normal;
  }
}
.p-fv__title.--suku {
  color: #F5865C;
  padding-left: 9px;
}
@media (min-width: 768px) {
  .p-fv__title.--suku {
    color: rgba(245, 134, 92, 0.5);
    padding-left: 40px;
  }
}
.p-fv__title.--renta {
  color: #fff;
  padding-right: 9px;
  text-align: right;
}
@media (min-width: 768px) {
  .p-fv__title.--renta {
    color: rgba(255, 255, 255, 0.5);
    padding-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__content-body-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: auto;
  }
}
@media (min-width: 768px) {
  .p-fv__content-body-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

.p-fv__content-body {
  position: relative;
  margin-top: 160px;
  border-radius: 0 0 0 4px;
  background: rgba(31, 31, 31, 0.6);
  padding-top: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__content-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .p-fv__content-body {
    background: #fff;
    padding-top: 16px;
    padding-left: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
    padding-right: clamp(2.0625rem, -1.03125rem + 6.4453125vw, 4.125rem);
    padding-bottom: 10px;
  }
}
.p-fv__content-body::before {
  content: "";
  position: absolute;
  background: url("../img/icon-arrow-right-white.png") no-repeat center center/cover;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  aspect-ratio: 3.59/6.67;
}
@media (min-width: 768px) {
  .p-fv__content-body::before {
    background: url("../img/icon-arrow-right-black.png") no-repeat center center/cover;
    width: 7px;
    right: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}

@media (min-width: 768px) {
  .p-fv__content-body-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-fv__content-body-link-icon {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-fv__content-body-link-icon {
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-fv__content-body-link-icon {
    width: clamp(2rem, 1.25rem + 1.5625vw, 2.5rem);
    height: clamp(2rem, 1.25rem + 1.5625vw, 2.5rem);
    display: none;
  }
}

.p-fv__content-body-link-title {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-fv__content-body-link-title {
    margin-top: -7px;
  }
}
@media (min-width: 768px) {
  .p-fv__content-body-link-title {
    color: #333;
    font-size: clamp(1.25rem, 0.5rem + 1.5625vw, 1.75rem);
  }
}
.p-fv__content-body-link-title span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
@media (min-width: 768px) {
  .p-fv__content-body-link-title span {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}

.p-fv__content-body-text {
  color: #fff;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 1.4px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: left;
}
@media (min-width: 768px) {
  .p-fv__content-body-text {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-align: center;
  }
}

.p-news {
  margin-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-news {
    margin-top: 0;
    background: #fffdfd;
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .p-news__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(2rem, -1.46875rem + 7.2265625vw, 4.3125rem);
  }
}

.p-news__content-items {
  margin-top: 24px;
  border-top: 1px solid #c7c7c7;
}
@media (min-width: 768px) {
  .p-news__content-items {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 40px;
  }
}

.p-news__content-item-link {
  padding-top: 12px;
  padding-bottom: 16px;
  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;
  border-bottom: 1px solid #c7c7c7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-news__content-item-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 16px;
    padding-bottom: 20px;
    gap: 40px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-news__content-item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
@media (any-hover: hover) {
  .p-news__content-item-link:hover {
    opacity: 0.75;
  }
}

.p-news__content-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .p-news__content-item-top {
    gap: clamp(1.25rem, -1.375rem + 5.46875vw, 3rem);
    padding-left: clamp(1rem, -0.5rem + 3.125vw, 2rem);
    width: 300px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-news__content-item-top {
    padding-left: 0px;
  }
}

.p-news__content-item-time {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
@media (min-width: 768px) {
  .p-news__content-item-time {
    font-size: 16px;
  }
}

.p-news__content-item-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-news__content-item-title {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
  }
}

.p-news__btn-wrap {
  margin-top: 24px;
  text-align: end;
}
@media (min-width: 768px) {
  .p-news__btn-wrap {
    margin-top: 32px;
  }
}

.p-service {
  background: #ffeee9;
}

.p-service__content {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-service__content {
    margin-top: 40px;
  }
}

.p-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-service__items {
    gap: 24px;
  }
}

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

.p-service__item-number {
  width: 40px;
  color: #c7c7c7;
  font-family: "Termina", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 1.6px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  background: #fffdfd;
  position: relative;
}
@media (min-width: 768px) {
  .p-service__item-number {
    width: clamp(3.125rem, 0.3125rem + 5.859375vw, 5rem);
    font-size: 18px;
    line-height: 150%; /* 27px */
    letter-spacing: 1.8px;
  }
}
.p-service__item-number::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -2px;
  width: 2px;
  height: 98%;
  border: 1px dashed #c7c7c7;
}

.p-service__item-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 24px;
  padding-bottom: 32px;
  padding-inline: 20px;
  border-radius: 6px;
  background: #fffdfd;
  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;
}
@media (min-width: 768px) {
  .p-service__item-main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(2.5rem, -1.25rem + 7.8125vw, 5rem);
    padding-left: clamp(1.25rem, -1.46875rem + 5.6640625vw, 3.0625rem);
    padding-right: clamp(2rem, -1.1875rem + 6.640625vw, 4.125rem);
    padding-top: 49px;
    padding-bottom: 47px;
  }
}

.p-service__item-image {
  width: 100%;
  aspect-ratio: 400/300;
  border-radius: 8px;
  overflow: hidden;
}
.p-service__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-service__item-image {
    width: clamp(17.5rem, 6.25rem + 23.4375vw, 25rem);
  }
}

.p-service__item-body {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-service__item-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

.p-service__item-title.--suku {
  width: 195px;
}
@media (min-width: 768px) {
  .p-service__item-title.--suku {
    width: clamp(12.1875rem, 2.25rem + 20.703125vw, 18.8125rem);
  }
}
.p-service__item-title.--renta {
  width: 216px;
}
@media (min-width: 768px) {
  .p-service__item-title.--renta {
    width: clamp(13.5rem, 2.15625rem + 23.6328125vw, 21.0625rem);
  }
}

.p-service__item-title-sub {
  margin-top: 14px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (min-width: 768px) {
  .p-service__item-title-sub {
    margin-top: 24.33px;
    font-size: clamp(1.25rem, 0.125rem + 2.34375vw, 2rem);
    line-height: 150%; /* 38.4px */
    letter-spacing: 1.6px;
  }
}

.p-service__item-text {
  margin-top: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-service__item-text {
    margin-top: 8px;
    font-size: clamp(0.9375rem, 0.46875rem + 0.9765625vw, 1.25rem);
    letter-spacing: 1px;
  }
}

.p-service__item-btn-wrap {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-service__item-btn-wrap {
    text-align: end;
    margin-top: 20px;
  }
}

.p-service__item-btn {
  padding-left: 40px;
  text-align: start;
}

@media (min-width: 768px) {
  .p-studio {
    padding-bottom: 0;
  }
}

.p-studio__inner {
  padding-left: 20px;
  max-width: 580px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
@media (min-width: 768px) {
  .p-studio__inner {
    max-width: clamp(45.5rem, 1.25rem + 92.1875vw, 75rem);
    width: 100%;
    padding-left: 0;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .p-studio__inner {
    max-width: 90vw;
  }
}
@media (min-width: 768px) and (min-width: 1500px) {
  .p-studio__inner {
    max-width: 85vw;
  }
}
@media (min-width: 768px) and (min-width: 1700px) {
  .p-studio__inner {
    max-width: 80vw;
  }
}
@media (min-width: 768px) and (min-width: 1900px) {
  .p-studio__inner {
    max-width: 75vw;
  }
}
@media (min-width: 768px) and (min-width: 2100px) {
  .p-studio__inner {
    max-width: 70vw;
  }
}
@media (min-width: 768px) and (min-width: 2300px) {
  .p-studio__inner {
    max-width: 65vw;
  }
}

.p-studio__content {
  position: relative;
  margin-top: 24px;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .p-studio__content {
    padding-bottom: 32px;
  }
}

.p-studio__swiper-container,
.p-studio__swiper,
.p-studio__swiper-wrapper,
.p-studio__swiper-slide {
  position: relative;
}

.p-studio__swiper-slide {
  width: 240px;
}
@media (min-width: 768px) {
  .p-studio__swiper-slide {
    width: clamp(22.5rem, 9.75rem + 26.5625vw, 31rem);
  }
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.p-studio__swiper-button-wrap {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-studio__swiper-button-wrap {
    display: none;
  }
}

.p-studio__swiper-button-prev,
.p-studio__swiper-button-next {
  width: 48px;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-studio__swiper-button-prev:hover,
  .p-studio__swiper-button-next:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    cursor: pointer;
  }
  .p-studio__swiper-button-prev:hover svg path,
  .p-studio__swiper-button-next:hover svg path {
    stroke: #333;
  }
  .p-studio__swiper-button-prev:hover svg rect,
  .p-studio__swiper-button-next:hover svg rect {
    stroke: #333;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 14px;
  height: auto;
  aspect-ratio: 1;
  background: #d9d9d9;
  margin-inline: 12px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #333;
}

.p-question {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-question {
    padding-bottom: 160px;
  }
}

.p-question__content {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-question__content {
    margin-top: 40px;
  }
}

.p-question__content-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
}
@media (min-width: 768px) {
  .p-question__content-title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
    line-height: normal;
  }
}

/* ================================
   本題のCSS
=============================== */
summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.faq__items {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .faq__items {
    margin-top: 20px;
    gap: 12px;
  }
}

.faq__item {
  font-size: 16px;
  line-height: normal;
  padding-left: 16px;
  background: #fff2ef;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .faq__item {
    padding-left: 32px;
  }
}

.faq__question {
  padding-block: 8px 8px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .faq__question {
    padding-block: 18px 22px;
    width: 100%;
  }
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #333;
  border-radius: 50px;
}
.faq__question::before {
  right: 26px;
  width: 18px;
  height: 2px;
}
.faq__question::after {
  right: 34px;
  width: 2px;
  height: 18px;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media (any-hover: hover) {
  .faq__question:hover {
    cursor: pointer;
  }
}

details[open] .faq__question::after {
  rotate: 90deg;
}

.faq__question-text {
  list-style: none;
  position: relative;
  padding-inline: 32px 58px;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .faq__question-text {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
  }
}
.faq__question-text::before {
  content: "Q";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  color: #eb6835;
  font-family: "Termina", sans-serif;
}

.faq__answer {
  padding-bottom: 20px;
}

.faq__answer-text {
  list-style: none;
  position: relative;
  padding-inline: 32px 58px;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 140%;
  font-weight: 700;
}
@media (min-width: 768px) {
  .faq__answer-text {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
  }
}
.faq__answer-text::before {
  content: "A";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  font-family: "Termina", sans-serif;
  color: #eb6835;
}

.p-privacypolicy-fv {
  background: #ffeee9;
  padding-top: 16px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-privacypolicy-fv {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}

@media (min-width: 768px) {
  .p-privacypolicy-fv__inner {
    max-width: 976px;
    margin-inline: auto;
  }
}

.p-privacypolicy-fv__title {
  margin-top: 32px;
  color: #333;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .p-privacypolicy-fv__title {
    margin-top: 64px;
    font-size: clamp(1.75rem, 1.375rem + 0.78125vw, 2rem);
    letter-spacing: 1.6px;
    line-height: 140%;
  }
}

.p-privacypolicy-fv__text {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-privacypolicy-fv__text {
    margin-top: 24px;
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-privacypolicy {
  background: #fffdfd;
  padding-top: 40px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .p-privacypolicy {
    padding-top: 64px;
    padding-bottom: 160px;
  }
}

@media (min-width: 768px) {
  .p-privacypolicy__inner {
    max-width: 976px;
    margin-inline: auto;
  }
}

.p-privacypolicy__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.p-privacypolicy__list-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-privacypolicy__list-title {
    font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
    letter-spacing: 1px;
    line-height: 140%;
  }
}

.p-privacypolicy__list-text {
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
.p-privacypolicy__list-text.--mt2 {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-privacypolicy__list-text {
    margin-top: 16px;
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-privacypolicy__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 12px;
}
.p-privacypolicy__list-items.--mt2 {
  margin-top: 8px;
}

.p-privacypolicy__list-item {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .p-privacypolicy__list-item {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
.p-privacypolicy__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.p-privacypolicy__mail {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}

.p-privacypolicy__tel {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}

.p-tokushoho-fv {
  background: #ffeee9;
  padding-top: 16px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-tokushoho-fv {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}

.p-tokushoho-fv__title {
  margin-top: 32px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .p-tokushoho-fv__title {
    margin-top: 64px;
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.p-tokushoho {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-tokushoho {
    padding-top: 64px;
    padding-bottom: 160px;
  }
}

.p-tokushoho__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-tokushoho__inner {
    gap: 64px;
  }
}

.p-tokushoho__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-tokushoho__lists {
    max-width: 976px;
    margin-inline: auto;
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .p-tokushoho__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .p-tokushoho__list::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c7c7c7;
  }
  .p-tokushoho__list::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28.7%;
    height: 1px;
    background: #F5865C;
  }
}

.p-tokushoho__list-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-bottom: 6px;
  padding-left: 8px;
  position: relative;
}
@media (min-width: 768px) {
  .p-tokushoho__list-title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    padding-bottom: 20px;
    width: 28.7%;
  }
}
.p-tokushoho__list-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c7c7c7;
}
@media (min-width: 768px) {
  .p-tokushoho__list-title::before {
    display: none;
  }
}
.p-tokushoho__list-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background: #F5865C;
}
@media (min-width: 768px) {
  .p-tokushoho__list-title::after {
    display: none;
  }
}

.p-tokushoho__list-text {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-left: 8px;
  position: relative;
}
@media (min-width: 768px) {
  .p-tokushoho__list-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
    padding-bottom: 22px;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 16px;
  }
}

.p-tokushoho__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-tokushoho__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(2.5rem, -1.25rem + 7.8125vw, 5rem);
  }
}

.p-tokushoho__content-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .p-tokushoho__content-title {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    width: 28%;
  }
}

@media (min-width: 768px) {
  .p-tokushoho__content-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-tokushoho__content-body-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
.p-tokushoho__content-body-text span {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-tokushoho__content-body-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}
.p-tokushoho__content-body-text a {
  word-break: break-all;
  text-decoration: underline;
}

.p-tokushoho__content-link {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .p-tokushoho__content-link {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-renta-fv {
  position: relative;
}
.p-renta-fv::before {
  content: "";
  position: absolute;
  background: url("../img/wave-orange-sp.png") no-repeat center/cover;
  width: 100%;
  aspect-ratio: 375/46;
  bottom: -1px;
  left: 0;
  z-index: 10;
}
@media (min-width: 500px) {
  .p-renta-fv::before {
    bottom: -2px;
  }
}
@media (min-width: 768px) {
  .p-renta-fv::before {
    background: url("../img/wave-orange-pc.png") no-repeat center/cover;
    aspect-ratio: 1280/90;
  }
}
@media (min-width: 768px) {
  .p-renta-fv {
    background: url("../img/renta-be-layer.png") no-repeat center/cover;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .p-renta-fv {
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .p-renta-fv {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (min-width: 1441px) {
  .p-renta-fv {
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) and (min-width: 1500px) {
  .p-renta-fv {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (min-width: 1600px) {
  .p-renta-fv {
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (min-width: 1700px) {
  .p-renta-fv {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) and (min-width: 1700px) {
  .p-renta-fv {
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) and (min-width: 1800px) {
  .p-renta-fv {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .p-renta-fv {
    padding-bottom: 90px;
  }
}
@media (min-width: 768px) and (min-width: 2200px) {
  .p-renta-fv {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) and (min-width: 2500px) {
  .p-renta-fv {
    padding-bottom: 130px;
  }
}
@media (min-width: 768px) and (min-width: 2800px) {
  .p-renta-fv {
    padding-bottom: 160px;
  }
}
@media (min-width: 768px) and (min-width: 3200px) {
  .p-renta-fv {
    padding-bottom: 180px;
  }
}

@media (min-width: 768px) {
  .p-renta-fv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) and (min-width: 1600px) {
  .p-renta-fv__inner {
    max-width: 1600px;
    margin-inline: auto;
  }
}

.p-renta-fv__breadcrumbs {
  padding-inline: 0;
}

@media screen and (max-width: 767px) {
  .p-renta-fv__main {
    position: relative;
    background: url("../img/renta-bg-sp.jpg") no-repeat center/cover;
    width: 100%;
    max-width: 540px;
    padding: 0 1.25rem;
    margin-inline: auto;
    padding-top: 16px;
    padding-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .p-renta-fv__main {
    width: 48.2%;
    padding-top: 24px;
    padding-bottom: 78px;
    padding-left: clamp(2.5rem, -3.125rem + 11.71875vw, 6.25rem);
    padding-right: clamp(3.75rem, -3.28125rem + 14.6484375vw, 8.4375rem);
  }
}

.p-renta-fv__title {
  margin-top: 28px;
  color: #F68C1E;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .p-renta-fv__title {
    margin-top: 49px;
    font-size: clamp(1.25rem, 0.125rem + 2.34375vw, 2rem);
  }
}
@media (min-width: 768px) and (min-width: 1441px) {
  .p-renta-fv__title {
    margin-top: 32px;
  }
}

.p-renta-fv__logo {
  margin-top: 12px;
  width: 223px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-renta-fv__logo {
    width: clamp(13.9375rem, -0.3125rem + 29.6875vw, 23.4375rem);
  }
}
@media (min-width: 768px) and (min-width: 1441px) {
  .p-renta-fv__logo {
    width: 320px;
  }
}

.p-renta-fv__text {
  margin-top: 24px;
  color: #F68C1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 2.4px;
  text-align: center;
}
.p-renta-fv__text span {
  font-size: 24px;
  font-family: "Termina", sans-serif;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-renta-fv__text {
    margin-top: clamp(1.5rem, 0rem + 3.125vw, 2.5rem);
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .p-renta-fv__text {
    margin-top: 16px;
  }
}

.p-renta-fv__line-btn-wrap {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-renta-fv__line-btn-wrap {
    margin-top: clamp(1rem, 0.4375rem + 1.171875vw, 1.375rem);
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .p-renta-fv__line-btn-wrap {
    margin-top: 12px;
  }
}

.p-renta-fv__line-btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 261px;
  padding-inline: 32px;
  padding-block: 10px;
}
@media (min-width: 768px) {
  .p-renta-fv__line-btn {
    padding-inline: 22px;
    padding-block: 2px;
  }
  .p-renta-fv__line-btn span {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
@media (any-hover: hover) {
  .p-renta-fv__line-btn:hover {
    opacity: 0.75;
  }
}

.p-renta-fv__btn-wrap {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -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;
}

.p-renta-fv__btn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-renta-fv__btn span {
  color: #F68C1E;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-renta-fv__btn svg {
  width: 8px;
  height: 12px;
}
@media (any-hover: hover) {
  .p-renta-fv__btn:hover {
    opacity: 0.75;
  }
}

.p-renta-fv__studio {
  position: relative;
}
@media (min-width: 768px) {
  .p-renta-fv__studio {
    width: 51.8%;
    padding-right: clamp(2.5rem, -6.21875rem + 18.1640625vw, 8.3125rem);
  }
}

.p-renta-fv__studiop-ashirai {
  position: absolute;
  color: #F68C1E;
  font-family: "Termina", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  right: 12px;
  top: 12px;
  z-index: -1;
  z-index: 10;
}
@media (min-width: 768px) {
  .p-renta-fv__studiop-ashirai {
    font-size: clamp(1.75rem, 0.625rem + 2.34375vw, 2.5rem);
    right: clamp(0.0625rem, -5.46875rem + 11.5234375vw, 3.75rem);
    top: 152px;
  }
}

.p-renta-fv__studio-item {
  position: relative;
  padding-top: 248px;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-renta-fv__studio-item {
    padding-top: clamp(18.75rem, 9.09375rem + 20.1171875vw, 25.1875rem);
  }
  .p-renta-fv__studio-item::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    background: #fff;
    top: 0;
    left: 8%;
  }
}
.p-renta-fv__studio-item.--1 {
  background: url("../img/renta-fv-matsubara.jpg") no-repeat center/cover;
}
.p-renta-fv__studio-item.--2 {
  background: url("../img/renta-fv-kyodo.jpg") no-repeat center/cover;
}

.p-renta-fv__studio-body {
  padding-top: 10px;
  padding-bottom: 99px;
  padding-inline: 20px 40px;
  background: rgba(31, 31, 31, 0.6);
}
@media (min-width: 768px) {
  .p-renta-fv__studio-body {
    padding-left: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    padding-right: clamp(2rem, 0.59375rem + 2.9296875vw, 2.9375rem);
    width: 90.5%;
    margin-inline: auto 0;
  }
}

@media (any-hover: hover) {
  .p-renta-fv__studio-link:hover {
    opacity: 0.75;
  }
  .p-renta-fv__studio-link:hover .p-renta-fv__studio-text::before {
    right: -22px;
  }
}

.p-renta-fv__studio-title {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-renta-fv__studio-title {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-renta-fv__studio-text {
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.6px;
  position: relative;
}
@media (min-width: 768px) {
  .p-renta-fv__studio-text {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
  }
}
.p-renta-fv__studio-text::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -16px;
  width: 6px;
  height: 10px;
  background: url("../img/icon-arrow-right-white.png") no-repeat center/cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-renta-fv__studio-text::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 1px;
  background: transparent;
  left: -20px;
  bottom: -10px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.7);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px) {
  .p-renta-fv__studio-text::after {
    left: -16px;
    bottom: -16px;
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.7);
            box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.7);
    width: 160%;
  }
}

.p-renta-fv__swiper-container,
.p-renta-fv__swiper,
.p-renta-fv__swiper-wrapper,
.p-renta-fv__swiper-slide {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.p-renta-fv__swiper-button-prev::after,
.p-renta-fv__swiper-button-next::after {
  content: "";
}

.p-renta-fv__swiper-pagination-wrap {
  position: relative;
  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;
  top: -70px;
}
@media (min-width: 768px) {
  .p-renta-fv__swiper-pagination-wrap {
    top: -60px;
  }
}
.p-renta-fv__swiper-pagination-wrap .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  border-radius: 14px;
  border: 1px solid #fff;
}
.p-renta-fv__swiper-pagination-wrap .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #d9d9d9;
}

.p-renta-studio {
  background: #ffeee9;
}
@media (min-width: 768px) {
  .p-renta-studio {
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  .p-renta-studio__title {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .p-renta-studio__title-sub {
    left: 50%;
    translate: -50%;
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}

.p-renta-studio__content {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-renta-studio__content {
    margin-top: 31px;
    max-width: 976px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-renta-studio__content-itms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-renta-studio__content-itms {
    gap: 24px;
  }
}

.p-renta-scene {
  padding-top: 50px;
  position: relative;
  background: #FFFDFD;
}
@media (min-width: 768px) {
  .p-renta-scene {
    padding-top: 70px;
  }
}
@media (min-width: 768px) and (min-width: 1500px) {
  .p-renta-scene {
    padding-top: 100px;
  }
}
@media (min-width: 768px) and (min-width: 1920px) {
  .p-renta-scene {
    padding-top: 150px;
  }
}
.p-renta-scene::before {
  content: "";
  position: absolute;
  background: url("../img/wave-orange-2-sp.png") no-repeat center/cover;
  width: 100%;
  aspect-ratio: 375/57;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 500px) {
  .p-renta-scene::before {
    top: -2px;
  }
}
@media (min-width: 768px) {
  .p-renta-scene::before {
    background: url("../img/wave-orange-2-pc.png") no-repeat center/cover;
    aspect-ratio: 1280/141;
  }
}

.p-renta-scene__title {
  padding-top: 0;
}

.p-renta-scene__text {
  margin-top: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-renta-scene__text {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    margin-top: 16px;
  }
}

.p-renta-scene__cards {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
@media (min-width: 768px) {
  .p-renta-scene__cards {
    margin-top: clamp(3rem, 1.5rem + 3.125vw, 4rem);
    gap: 56px;
  }
}

.p-renta-photo {
  background-color: #FFFDFD;
  position: relative;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-renta-photo {
    padding-bottom: 160px;
  }
}
.p-renta-photo::before {
  content: "";
  position: absolute;
  background: url("../img/wave-orange-3-sp.png") no-repeat center/cover;
  width: 100%;
  aspect-ratio: 375/43;
  bottom: -1px;
  left: 0;
  z-index: 10;
}
@media (min-width: 500px) {
  .p-renta-photo::before {
    bottom: -2px;
  }
}
@media (min-width: 768px) {
  .p-renta-photo::before {
    background: url("../img/wave-orange-03.png") no-repeat center/cover;
    aspect-ratio: 1280/100;
  }
}

@media (min-width: 768px) {
  .p-renta-photo__title {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .p-renta-photo__title--sub {
    left: 50%;
    translate: -50%;
  }
}

.p-renta-photo__content {
  margin-top: 24px;
}

.p-renta-photo__content-top .p-renta-photo-top__swiper-container,
.p-renta-photo__content-top .p-renta-photo-top__swiper,
.p-renta-photo__content-top .p-renta-photo-top__swiper-wrapper,
.p-renta-photo__content-top .p-renta-photo-top__swiper-slide {
  position: relative;
}
.p-renta-photo__content-top .p-renta-photo-top__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-renta-photo__content-top .p-renta-photo-top__swiper-slide {
  width: 200px;
  height: 150px;
  margin-inline: 4px;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-renta-photo__content-top .p-renta-photo-top__swiper-slide {
    width: 238px;
    height: 163px;
  }
}
.p-renta-photo__content-top .p-renta-photo-top__swiper-slide img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-renta-photo__content-top .swiper-button-prev,
.p-renta-photo__content-top .swiper-button-next,
.p-renta-photo__content-top .swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.p-renta-photo__content-bottom {
  margin-top: 8px;
}
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-container,
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper,
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-wrapper,
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-slide {
  position: relative;
}
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-slide {
  width: 200px;
  height: 150px;
  margin-inline: 4px;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-slide {
    width: 238px;
    height: 163px;
  }
}
.p-renta-photo__content-bottom .p-renta-photo-bottom__swiper-slide img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-renta-flow {
  background: #ffeee9;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-renta-flow {
    padding-bottom: clamp(10rem, 5.21875rem + 9.9609375vw, 13.1875rem);
  }
}

.p-renta-flow__content {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-renta-flow__content {
    margin-top: clamp(2rem, -1rem + 6.25vw, 4rem);
  }
}

.p-renta-flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .p-renta-flow__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-renta-flow__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}

.p-renta-flow__item-title {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (min-width: 768px) {
  .p-renta-flow__item-title {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: 24px;
    padding-left: 33px;
  }
}
.p-renta-flow__item-title::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #eb6835;
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 768px) {
  .p-renta-flow__item-title::before {
    width: 17px;
    height: 17px;
  }
}

.p-renta-flow__item-lists {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-renta-flow__item-lists {
    margin-top: 34px;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 368px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-renta-flow__item-lists {
    margin-top: 16px;
    height: unset;
    gap: 16px;
  }
}
.p-renta-flow__item-lists::before {
  content: "";
  position: absolute;
  background: #eb6835;
  width: 2px;
  height: 200px;
  left: 50%;
  translate: -50%;
  top: 90px;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-renta-flow__item-lists::before {
    height: 300px;
    top: 40px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-renta-flow__item-lists::before {
    height: 240px;
  }
}
.p-renta-flow__item-lists.--web::before {
  top: 20px;
  height: 200px;
}
@media (min-width: 768px) {
  .p-renta-flow__item-lists.--web::before {
    height: 320px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-renta-flow__item-lists.--web::before {
    height: 240px;
  }
}

.p-renta-flow__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-renta-flow__item-list-number {
  background: #eb6835;
  color: #fff;
  font-family: "Termina", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  padding-inline: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px 0 0 8px;
  width: 39px;
}
@media (min-width: 768px) {
  .p-renta-flow__item-list-number {
    font-size: 20px;
    width: clamp(3.125rem, 2.1875rem + 1.953125vw, 3.75rem);
  }
}

.p-renta-flow__item-list-body {
  background: #fff;
  padding-block: 15px;
  padding-inline: 12px;
  border-radius: 0 8px 8px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .p-renta-flow__item-list-body {
    padding-block: 18px;
    padding-inline: clamp(0.75rem, 0.375rem + 0.78125vw, 1rem);
  }
}

.p-renta-flow__item-list-body-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-renta-flow__item-list-body-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-renta-flow__item-line-wrap {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.p-renta-flow__item-line-wrap img {
  width: 40px;
}

.p-renta-flow__item-line-btn {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  letter-spacing: 1.12px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.p-school-fv {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .p-school-fv {
    padding-top: 24px;
  }
}

.p-school-fv__inner {
  position: relative;
}

.p-school-fv__breadcrumbs-wrap {
  padding-left: 20px;
}

.p-school-fv__content {
  margin-top: 14px;
  position: relative;
}
@media (min-width: 768px) {
  .p-school-fv__content {
    margin-top: 16px;
  }
}

.p-school-fv__swiper-container,
.p-school-fv__swiper,
.p-school-fv__swiper-wrapper,
.p-school-fv__swiper-slide {
  position: relative;
}

.p-school-fv__swiper-slide {
  z-index: 1;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
}

.p-school-fv__bg {
  width: 100%;
  padding-left: 20px;
  padding-bottom: 30px;
  margin-inline: auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-school-fv__bg {
    max-width: 375px;
  }
}
@media (min-width: 768px) {
  .p-school-fv__bg {
    width: 95%;
    padding-left: 0;
  }
}
.p-school-fv__bg picture {
  position: relative;
  width: 100%;
  z-index: 1;
}
.p-school-fv__bg picture img {
  border-radius: 20px 0 0 20px;
}
.p-school-fv__bg picture::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../img/icon-usage-scene.png) no-repeat center center/contain;
  bottom: -32px;
  left: 8px;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-school-fv__bg picture::before {
    width: 85px;
    height: 85px;
    left: 33px;
    bottom: -19px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-school-fv__bg picture::before {
    width: 60px;
    height: 60px;
    left: 20px;
    bottom: -12px;
  }
}

.p-school-fv__body {
  position: absolute;
  border-radius: 0 11px 11px 0;
  background: rgba(235, 104, 53, 0.85);
  top: 25px;
  left: 0;
  width: 85%;
  padding-top: 30px;
  padding-bottom: 18px;
  padding-left: 42px;
  padding-right: 41px;
  z-index: 10;
}
@media (min-width: 768px) {
  .p-school-fv__body {
    top: clamp(3.125rem, 1.0625rem + 4.296875vw, 4.5rem);
    width: 50%;
    padding-top: clamp(2.125rem, -1.0625rem + 6.640625vw, 4.25rem);
    padding-left: clamp(1.5rem, -3.75rem + 10.9375vw, 5rem);
    padding-right: clamp(1.75rem, -3.875rem + 11.71875vw, 5.5rem);
    padding-bottom: clamp(1rem, -0.5rem + 3.125vw, 2rem);
    border-radius: 0 20px 20px 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-school-fv__body {
    width: 40%;
  }
}

.p-school-fv__title-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  color: #FFF;
  text-align: center;
}
@media (min-width: 768px) {
  .p-school-fv__title-text {
    font-size: clamp(0.875rem, 0.3125rem + 1.171875vw, 1.25rem);
  }
}

.p-school-fv__text {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .p-school-fv__text {
    margin-top: clamp(1.25rem, 0.125rem + 2.34375vw, 2rem);
    font-size: clamp(1.25rem, -0.625rem + 3.90625vw, 2.5rem);
    letter-spacing: 2px;
  }
}

.p-school-fv__btn-wrap {
  margin-top: 10px;
  text-align: end;
}
@media (min-width: 768px) {
  .p-school-fv__btn-wrap {
    margin-top: 17px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-school-fv__btn-wrap {
    margin-top: 10px;
  }
}

.p-school-fv__instagram {
  width: 36px;
  aspect-ratio: 1/1;
}
@media (any-hover: hover) {
  .p-school-fv__instagram:hover {
    opacity: 0.75;
  }
}

.p-school-fv__reservation-wrap {
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-school-fv__reservation-wrap {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) {
  .p-school-fv__reservation-wrap {
    position: absolute;
    right: 0;
    width: clamp(20rem, 13.4375rem + 13.671875vw, 24.375rem);
    bottom: -5vh;
  }
}

.p-school-lesson {
  padding-top: 64px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-school-lesson {
    padding-top: 116px;
    padding-bottom: 92px;
  }
}

.p-school-lesson__inner {
  padding-inline: 44px;
}
@media (min-width: 768px) {
  .p-school-lesson__inner {
    max-width: 921px;
    padding-inline: 80px;
  }
}

@media (min-width: 768px) {
  .p-school-lesson__top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 95px;
  }
}

.p-school-lesson__title {
  color: #eb6835;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-school-lesson__title::before {
  content: "";
  position: absolute;
  background: rgba(245, 134, 92, 0.4);
  top: 32px;
  right: -10px;
  width: 1px;
  height: 60px;
}
@media (min-width: 768px) {
  .p-school-lesson__title::before {
    height: 100%;
    top: 0;
    right: -47px;
  }
}

.c-section-title__sub {
  color: #333;
}

.p-school-lesson__top-text {
  margin-top: 36px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-school-lesson__top-text {
    width: clamp(25rem, 20.96875rem + 8.3984375vw, 27.6875rem);
    margin-top: 60px;
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
    letter-spacing: 1px;
    line-height: 160%;
  }
}

.p-school-lesson__items {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-school-lesson__items {
    margin-top: 67px;
    gap: 60px;
  }
}

.p-school-feature {
  padding-top: 64px;
  padding-bottom: 40px;
  background-color: #ffeee9;
}
@media (min-width: 768px) {
  .p-school-feature {
    padding-top: 116px;
    padding-bottom: 92px;
  }
}

.p-school-feature__inner {
  padding-inline: 44px;
}

@media (min-width: 768px) {
  .p-school-feature__top-wrap {
    max-width: clamp(31.25rem, 19.4375rem + 24.609375vw, 39.125rem);
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
  }
}

.p-school-feature__title {
  color: #eb6835;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-school-feature__title::before {
  content: "";
  position: absolute;
  background: rgba(245, 134, 92, 0.4);
  top: 32px;
  right: -10px;
  width: 1px;
  height: 60px;
}
@media (min-width: 768px) {
  .p-school-feature__title::before {
    top: 37px;
    right: -40px;
    height: 66px;
  }
}

.p-school-feature__top-text {
  margin-top: 36px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  color: #333;
}
@media (min-width: 768px) {
  .p-school-feature__top-text {
    margin-top: 77px;
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 130%;
  }
}

@media (min-width: 768px) {
  .p-school-feature__content {
    max-width: 978px;
    margin-inline: auto;
  }
}

.p-school-feature__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .p-school-feature__items {
    margin-top: 64px;
    gap: 56px;
  }
}

.p-school-feature__item {
  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;
}
@media (min-width: 768px) {
  .p-school-feature__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .p-school-feature__item.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .p-school-feature__item__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-school-feature__item-number {
  color: #eb6835;
  font-family: "Termina", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 1.4px;
}
@media (min-width: 768px) {
  .p-school-feature__item-number {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-school-feature__item__title {
  margin-top: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
}
@media (min-width: 768px) {
  .p-school-feature__item__title {
    margin-top: 24px;
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    letter-spacing: 0.96px;
  }
}

.p-school-feature__item__text {
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-school-feature__item__text {
    margin-top: 16px;
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
    letter-spacing: 1px;
    line-height: 150%;
  }
}

@media (min-width: 768px) {
  .p-school-feature__item__image {
    width: 45%;
  }
}

.p-school-flow {
  padding-top: 64px;
  padding-bottom: 40px;
  background-color: #FFFDFD;
}
@media (min-width: 768px) {
  .p-school-flow {
    padding-top: 116px;
    padding-bottom: 92px;
  }
}

.p-school-flow__title {
  text-align: center;
}

.p-school-flow__title-sub {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-school-flow__content {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-school-flow__content {
    margin-top: 64px;
    max-width: 976px;
    margin-inline: auto;
  }
}

.p-school-flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.p-school-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .p-school-flow__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-school-flow__item:not(:last-of-type)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ccc;
    left: 0;
    bottom: -4px;
  }
}

.p-school-flow__item-number-area {
  border-radius: 8px 8px 0 0;
  background: #ffeee9;
  padding-top: 16px;
  padding-left: 24px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .p-school-flow__item-number-area {
    width: 32%;
    padding-top: 32px;
    padding-inline: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    padding-bottom: 32px;
  }
  .p-school-flow__item-number-area.--1 {
    border-radius: 8px 0 0 0;
  }
  .p-school-flow__item-number-area.--2 {
    border-radius: 0 0 0 0;
  }
  .p-school-flow__item-number-area.--3 {
    border-radius: 0 0 0 8px;
  }
}

.p-school-flow__item-number {
  color: #eb6835;
  font-family: "Termina", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

.p-school-flow__item-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

.p-school-flow__item-body {
  border-radius: 0 0 8px 8px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fff;
  padding-top: 16px;
  padding-inline: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .p-school-flow__item-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: none;
    border-radius: 0;
    padding-top: 32px;
    padding-inline: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    padding-bottom: 32px;
  }
}

.p-school-flow__item-text {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-school-flow__item-text {
    margin-top: 0;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-school-flow__item-btn-wrap {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .p-school-flow__item-btn-wrap {
    margin-top: 16px;
  }
}

@media (min-width: 768px) {
  .c-reservation-item__line-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: unset;
  }
}

.p-school-flow__item-btn {
  margin-top: 16px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .p-school-flow__item-btn {
    margin-top: 8px;
    margin-inline: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-school-flow__item-attention {
  margin-top: 8px;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.36px;
}

.p-school__banner {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-school__banner {
    margin-top: 52px;
  }
}

.p-school__banner-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-school__banner-link picture img {
    -webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
            box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
    border-radius: 32px;
  }
}
@media (any-hover: hover) {
  .p-school__banner-link:hover {
    opacity: 0.75;
  }
}

.p-school__banner-text {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-school__banner-text {
    margin-top: 16px;
  }
}

.p-school__banner-btn {
  margin-top: 4px;
}

.p-studio-single {
  padding-top: 16px;
}

.p-studio-single__inner {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-studio-single__inner {
    width: 100%;
    max-width: 841px;
    max-width: 65.5%;
    padding-bottom: 64px;
  }
}

.p-studio-single__title-wrap {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .p-studio-single__title-wrap {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-studio-single__title {
  width: 200px;
}

.p-studio-single__reservation-tag {
  margin-top: 8.93px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 64px;
  background: #F5865C;
  padding-block: 6px;
  padding-inline: 23px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-single__reservation-tag {
    margin-top: 0;
  }
}
.p-studio-single__reservation-tag.--inquiry {
  background: #939393;
}

.p-studio-single__description {
  margin-top: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.9px;
}
@media (min-width: 768px) {
  .p-studio-single__description {
    margin-top: 14px;
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
  }
}

.p-studio-single__image-wrap {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-studio-single__image-wrap {
    margin-top: 34px;
  }
}

.p-studio-single__image-wrap {
  max-width: 960px;
  margin-inline: auto;
}

.p-studio-single__image--hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.p-studio-single__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.p-studio-single__thumbs img {
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-studio-single__thumbs img:hover {
  opacity: 0.8;
}

/* モーダル */
.p-studio-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.p-studio-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.p-studio-gallery-modal__content {
  position: relative;
  background: #fff;
  margin: 5vh auto;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 20px;
}
.p-studio-gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.p-studio-gallery-modal__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.p-studio-gallery-modal img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-studio-single__info-wrap {
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-studio-single__info-wrap {
    margin-top: 16px;
  }
}
@media (min-width: 768px) {
  .p-studio-single__info-wrap {
    position: fixed;
    top: clamp(5rem, 1.25rem + 7.8125vw, 7.5rem);
    right: clamp(1.5rem, -3.75rem + 10.9375vw, 5rem);
    width: clamp(15rem, 3.9375rem + 23.046875vw, 22.375rem) !important;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .p-studio-single__info-wrap.--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.p-studio-strengths {
  margin-top: 48px;
}

.p-studio-single-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-left: 22px;
  position: relative;
}
@media (min-width: 768px) {
  .p-studio-single-title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
    padding-left: 28px;
  }
}
.p-studio-single-title::before {
  content: "";
  position: absolute;
  background: #eb6835;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-studio-single-title::before {
    width: 20px;
    height: 20px;
  }
}

.p-studio-strengths__lists {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-studio-strengths__lists {
    margin-top: 40px;
    gap: clamp(1rem, -0.125rem + 2.34375vw, 1.75rem);
  }
}

.p-studio-strengths__list-image {
  width: 78px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-studio-strengths__list-image {
    width: clamp(4.875rem, 2.8125rem + 4.296875vw, 6.25rem);
  }
}

.p-studio-strengths__list-text {
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.24px;
}
@media (min-width: 768px) {
  .p-studio-strengths__list-text {
    margin-top: 6px;
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
    letter-spacing: 0.7px;
    line-height: 150%;
  }
}

.p-studio-strengths__feature {
  margin-top: 24px;
  border-radius: 8px;
  background: #ffeee9;
  padding-top: 16px;
  padding-inline: 16px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .p-studio-strengths__feature {
    margin-top: 40px;
    padding-top: 24px;
    padding-inline: 32px;
    padding-bottom: 40px;
  }
}

.p-studio-strengths__feature-sub {
  color: #F5865C;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%; /* 18px */
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .p-studio-strengths__feature-sub {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
    letter-spacing: 0.7px;
    line-height: 150%;
  }
}

.p-studio-strengths__feature-title {
  color: #F5865C;
  font-family: "Termina", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
@media (min-width: 768px) {
  .p-studio-strengths__feature-title {
    font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
    line-height: 150%;
  }
}

.p-studio-strengths__feature-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-strengths__feature-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-price {
  margin-top: 48px;
}
@media (min-width: 768px) {
  .p-studio-price {
    margin-top: 104px;
  }
}

.p-studio-price__lists {
  margin-top: 16px;
  display: grid;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  padding-inline: 16px;
  padding-top: 2px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .p-studio-price__lists {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: clamp(0.75rem, 0.375rem + 0.78125vw, 1rem);
       -moz-column-gap: clamp(0.75rem, 0.375rem + 0.78125vw, 1rem);
            column-gap: clamp(0.75rem, 0.375rem + 0.78125vw, 1rem);
    padding-inline: 24px;
    padding-top: 10px;
    padding-bottom: 8px;
  }
}

.p-studio-price__list {
  padding-top: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
.p-studio-price__list:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .p-studio-price__list:nth-last-child(2) {
    border-bottom: none;
  }
}

.p-studio-price__list-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-price__list-title {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-price__list-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-price__list-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-usage {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-studio-usage {
    margin-top: 104px;
  }
}

.p-studio-usage__content {
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  padding-top: 16px;
  padding-inline: 16px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .p-studio-usage__content {
    margin-top: 40px;
    padding-top: 24px;
    padding-inline: 32px;
    padding-bottom: 32px;
  }
}

.p-studio-usage__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-usage__text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-capacity {
  margin-top: 40px;
}

.p-studio-capacity__attention {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 14px */
  letter-spacing: 0.5px;
  padding-left: 22px;
}
@media (min-width: 768px) {
  .p-studio-capacity__attention {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
    letter-spacing: 0.6px;
    line-height: 150%;
    padding-left: 28px;
  }
}

.p-studio-capacity__content {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-studio-capacity__content {
    margin-top: 16px;
  }
}

.p-studio-capacity__table {
  width: 100%;
  border-collapse: collapse;
}
.p-studio-capacity__table tr {
  position: relative;
  width: 100%;
}
.p-studio-capacity__table tr th {
  text-align: start;
  padding-bottom: 14px;
  padding-top: 12px;
  width: 195px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .p-studio-capacity__table tr th {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.8px;
    line-height: 150%;
    padding-top: 24px;
    padding-bottom: 31px;
    width: 180px;
  }
}
.p-studio-capacity__table tr td {
  text-align: start;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .p-studio-capacity__table tr td {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 160%;
    padding-top: 24px;
    padding-bottom: 31px;
  }
}
.p-studio-capacity__table tr:last-child th,
.p-studio-capacity__table tr:last-child td {
  border-bottom: none;
}

.p-studio-facility {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-studio-facility {
    margin-top: 104px;
  }
}

.p-studio-facility__content {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-studio-facility__content {
    margin-top: 40px;
  }
}

.p-studio-facility-free__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-facility-free__title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

.p-studio-facility-free__lists {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}
@media (min-width: 768px) {
  .p-studio-facility-free__lists {
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 16px;
  }
}

.p-studio-facility-free__list {
  padding-left: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  position: relative;
}
@media (min-width: 768px) {
  .p-studio-facility-free__list {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.7px;
    line-height: 150%;
  }
}
.p-studio-facility-free__list::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}
.p-studio-facility-pay {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-studio-facility-pay {
    margin-top: 56px;
  }
}

.p-studio-facility-pay__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-facility-pay__title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

.p-studio-facility-pay__heading {
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-facility-pay__heading {
    margin-top: 32px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-facility-pay__text {
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-studio-facility-pay__text {
    margin-top: 8px;
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
    letter-spacing: 0.9px;
    line-height: 170%;
  }
}

.p-studio-facility-pay__attention {
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  margin-top: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-top: 16px;
  padding-bottom: 20px;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .p-studio-facility-pay__attention {
    margin-top: 56px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-inline: 32px;
  }
}

.p-studio-access {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-studio-access {
    margin-top: 104px;
  }
}

.p-studio-access__content {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-studio-access__content {
    margin-top: 40px;
  }
}

.p-studio-access__map {
  width: 100%;
  aspect-ratio: 335/188;
}
.p-studio-access__map iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .p-studio-access__map {
    width: 100%;
    aspect-ratio: 741/416;
  }
}

.p-studio-access__route {
  margin-top: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .p-studio-access__route {
    margin-top: 32px;
    padding-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(2rem, -1rem + 6.25vw, 4rem);
  }
}

.p-studio-access__route-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-access__route-title {
    width: 116px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

.p-studio-access__route-text {
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-access__route-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-access__address {
  margin-top: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .p-studio-access__address {
    margin-top: 24px;
    padding-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(2rem, -1rem + 6.25vw, 4rem);
  }
}

.p-studio-access__address-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-access__address-title {
    width: 116px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

@media (min-width: 768px) {
  .p-studio-access__address-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-studio-access__address-text {
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-access__address-text {
    margin-top: 0;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-access__address-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-studio-access__address-link svg {
  width: 16px;
  aspect-ratio: 1/1;
}
.p-studio-access__address-link span {
  color: #23719e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-access__address-link span {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
@media (any-hover: hover) {
  .p-studio-access__address-link:hover {
    opacity: 0.75;
  }
}

.p-studio-access__transportation {
  margin-top: 14px;
}
@media (min-width: 768px) {
  .p-studio-access__transportation {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(2rem, -1rem + 6.25vw, 4rem);
  }
}

.p-studio-access__transportation-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-access__transportation-title {
    width: 116px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

.p-studio-access__transportation-text {
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-access__transportation-text {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-prohibition {
  padding-top: 40px;
  padding-bottom: 80px;
  background: #f3f3f3;
}
@media (min-width: 768px) {
  .p-studio-prohibition {
    padding-top: 64px;
    padding-bottom: 186px;
  }
}

@media (min-width: 768px) {
  .p-studio-prohibition__inner {
    width: 100%;
    max-width: 841px;
    max-width: 65.5%;
    padding-bottom: 64px;
  }
}

.p-studio-prohibition__items {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__items {
    margin-top: 40px;
    gap: 48px;
  }
}

.p-studio-prohibition__item {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 768px) {
  .p-studio-prohibition__item {
    padding-bottom: 56px;
  }
}

.p-studio-prohibition__item-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__item-title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

.p-studio-prohibition__lists {
  margin-top: 16px;
  list-style: decimal;
  counter-reset: item;
}
@media (min-width: 768px) {
  .p-studio-prohibition__lists {
    margin-top: 32px;
  }
}

.p-studio-prohibition__list {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  position: relative;
  counter-increment: item;
  padding-left: 28px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__list {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
.p-studio-prohibition__list::before {
  content: counter(item) ")";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}

.p-studio-prohibition__content-wrapper {
  position: relative;
}

.p-studio-prohibition__content {
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  max-height: 200px;
}
.p-studio-prohibition__content.--expanded {
  max-height: none;
}
.p-studio-prohibition__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(243, 243, 243)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(243, 243, 243));
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.p-studio-prohibition__content.--expanded::after {
  opacity: 0;
}

.p-studio-prohibition__read-more-btn {
  margin-top: 16px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #eb6835;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
}
.p-studio-prohibition__read-more-btn:hover {
  background: #eb6835;
  color: #fff;
}
@media (min-width: 768px) {
  .p-studio-prohibition__read-more-btn {
    margin-top: 24px;
    padding: 14px 32px;
    font-size: 16px;
  }
}

.p-studio-prohibition__item-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__item-text {
    margin-top: 32px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-studio-prohibition__cancel-policy {
  margin-top: 24px;
  border-radius: 8px;
  border: 1px solid #929292;
  background: #fffdfd;
  padding-top: 24px;
  padding-inline: 16px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__cancel-policy {
    margin-top: 48px;
    padding-inline: 24px;
  }
}

.p-studio-prohibition__cancel-policy-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__cancel-policy-title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
    line-height: 150%;
  }
}

.p-studio-prohibition__cancel-policy-text {
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-studio-prohibition__cancel-policy-text {
    margin-top: 8px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-archive-fv {
  background: #ffeee9;
  padding-top: 16px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .p-archive-fv {
    padding-top: 24px;
    padding-bottom: 42px;
  }
}

.p-news-archive__breadcrumbs {
  color: #eb6835;
}

.p-archive-fv__title {
  margin-top: 32px;
  text-align: center;
  color: #eb6835;
}
@media (min-width: 768px) {
  .p-archive-fv__title {
    margin-top: 64px;
  }
}

.p-archive-fv__sub-title {
  color: #eb6835;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-news-archive {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-news-archive {
    padding-top: 64px;
  }
}

.p-news-archive__tag-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
@media (min-width: 768px) {
  .p-news-archive__tag-lists {
    gap: 16px;
  }
}

.p-news-archive__tag {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.24px;
  border-radius: 24px;
  border: 1px solid #333;
  background: #fff;
  padding: 8px 14px;
}
@media (min-width: 768px) {
  .p-news-archive__tag {
    font-size: 16px;
    padding: 11px 28px;
  }
}
.p-news-archive__tag.--active {
  color: #eb6835;
  border: 1px solid #eb6835;
}
@media (any-hover: hover) {
  .p-news-archive__tag:hover {
    background: #eb6835;
    color: #fff;
    border: 1px solid #eb6835;
  }
}

.p-news-archive__content-items-wrap {
  margin-top: 32px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagination__link {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 20.3px */
  letter-spacing: 0.7px;
  border-radius: 4px;
  background: #f0f0f0;
  padding: 10px 18px;
}
.c-pagination__link.current {
  background: #333;
  color: #fff;
}
@media (any-hover: hover) {
  .c-pagination__link:hover {
    background: #333;
    color: #fff;
  }
}

.c-pagination__prev,
.c-pagination__next {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 20.3px */
  letter-spacing: 0.7px;
  border-radius: 4px;
  background: #fff;
  padding: 10px 18px;
  border: 1px solid #c7c7c7;
}
@media (any-hover: hover) {
  .c-pagination__prev:hover,
  .c-pagination__next:hover {
    background: #333;
    color: #fff;
  }
}

.p-news-single {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-news-single {
    padding-top: 72px;
  }
}

@media (min-width: 768px) {
  .p-news-single__inner {
    padding-inline: clamp(3.125rem, -6.25rem + 19.53125vw, 9.375rem);
  }
}

.p-news-single__breadcrumbs {
  color: #eb6835;
}

@media (min-width: 768px) {
  .p-news-single-top-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .p-news-single__date-wrap-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .p-news-single__date-wrap-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}

.p-news-single__date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-news-single__date-wrap {
    gap: 16px;
  }
}

.p-news-single__date-label {
  color: #939393;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
@media (min-width: 768px) {
  .p-news-single__date-label {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    letter-spacing: 0.8px;
  }
}

.p-news-single__date {
  color: #939393;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
@media (min-width: 768px) {
  .p-news-single__date {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    letter-spacing: 0.8px;
  }
}

.p-news-single__category-wrap {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-news-single__category-wrap {
    margin-top: 0;
  }
}

.p-news-single__cate {
  border-radius: 24px;
  border: 1px solid #333;
  background: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.24px;
}
@media (min-width: 768px) {
  .p-news-single__cate {
    font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
    padding: 8px 28px;
  }
}

.p-news-single__title {
  margin-top: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  position: relative;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .p-news-single__title {
    margin-top: 40px;
    font-size: clamp(1.75rem, 1.375rem + 0.78125vw, 2rem);
  }
}
.p-news-single__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url("../img/single-news-line.png") no-repeat center center/cover;
}
@media (min-width: 768px) {
  .p-news-single__title::before {
    background: url("../img/single-news-line-pc.png") no-repeat center center/cover;
  }
}

.p-news-single__content {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-news-single__content {
    margin-top: 32px;
  }
}
.p-news-single__content h2 {
  margin-top: 24px;
  background: #ffeee9;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-block: 9px;
  padding-inline: 22px;
  position: relative;
}
@media (min-width: 768px) {
  .p-news-single__content h2 {
    margin-top: 32px;
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
    padding-block: 12px;
    padding-inline: 36px;
  }
}
.p-news-single__content h2::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 10px;
  width: 4px;
  height: 30px;
  border-radius: 8px;
  background: #eb6835;
}
@media (min-width: 768px) {
  .p-news-single__content h2::before {
    width: 4px;
    left: 20px;
  }
}
.p-news-single__content h3 {
  margin-top: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #eb6835;
}
@media (min-width: 768px) {
  .p-news-single__content h3 {
    margin-top: 40px;
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
  }
}
.p-news-single__content h4 {
  margin-top: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (min-width: 768px) {
  .p-news-single__content h4 {
    margin-top: 40px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
.p-news-single__content h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../img/single-h4-line.png") repeat center center/contain;
}
.p-news-single__content p {
  margin-top: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-news-single__content p {
    margin-top: 16px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}
.p-news-single__content blockquote {
  margin: 0;
}
.p-news-single__content ul {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-news-single__content ul li {
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
.p-news-single__content .wp-block-quote {
  margin-top: 40px;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
  background: #fff;
  padding-top: 20px;
  padding-inline: 24px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.p-news-single__content .wp-block-quote::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 50px;
  height: 50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #333;
}
.p-news-single__content .wp-block-quote cite {
  display: block;
  text-align: end;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
.p-news-single__content .p-news-single__quote {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-news-single__content .p-news-single__quote {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}
.p-news-single__content .p-news-single__quote-author-wrap {
  margin-top: 16px;
  text-align: end;
}
.p-news-single__content .p-news-single__quote-author {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  display: inline-block;
}
.p-news-single__content .p-news-single__btn-wrap {
  margin-top: 40px;
  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;
}
.p-news-single__content .p-news-single__btn {
  text-align: center;
}
@media (min-width: 768px) {
  .p-news-single__content .p-news-single__btn {
    margin-top: 0;
    width: 270px;
    padding-block: 20px;
    font-weight: 700;
  }
}

.p-news-single__prev-next-wrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-news-single__prev-next-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-news-single__prev-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: 6px;
  position: relative;
}
@media (min-width: 768px) {
  .p-news-single__prev-btn {
    padding-left: 32px;
  }
}
.p-news-single__prev-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  width: 8px;
  height: 14px;
  background: url("../img/icon-arrow-right-black.png") no-repeat center center/cover;
}
@media (min-width: 768px) {
  .p-news-single__prev-btn::before {
    right: unset;
    left: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.p-news-single__prev-next-btn-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}

.p-news-single__prev-next-btn-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .p-news-single__prev-next-btn-title {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
  }
}

.p-news-single__next-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: 6px;
  position: relative;
}
@media (min-width: 768px) {
  .p-news-single__next-btn {
    padding-right: 32px;
  }
}
.p-news-single__next-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  width: 8px;
  height: 14px;
  background: url("../img/icon-arrow-right-black.png") no-repeat center center/cover;
}

@media (min-width: 768px) {
  .p-news-single__prev-next-wrap > .p-news-single__next-btn:only-child {
    margin-left: auto;
  }
}
.p-price-fv {
  background: #ffeee9;
  padding-top: 16px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-price-fv {
    padding-top: 24px;
    padding-bottom: 42px;
  }
}

.p-price-fv__breadcrumbs {
  color: #eb6835;
}

.p-price-fv__title {
  text-align: center;
  color: #F5865C;
  margin-top: 52px;
}
.p-price-fv__sub-title {
  color: #F5865C;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-price-fv__text {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}

.p-price {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-price {
    padding-top: 64px;
    padding-bottom: 160px;
  }
}

@media (min-width: 768px) {
  .p-price__content {
    width: 100%;
    max-width: 886px;
    margin-inline: auto;
  }
}

.p-price__table {
  width: 100%;
  margin-inline: auto;
  border-collapse: collapse;
  table-layout: fixed;
  border: 2px solid #fff;
}
.p-price__table thead tr th {
  border: 2px solid #fff;
  background: #f5865c;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  height: 50px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .p-price__table thead tr th {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}
.p-price__table thead tr th.--none {
  background: transparent;
  border: none;
}
.p-price__table thead tr th.--brtl {
  border-radius: 8px 0 0 0;
}
.p-price__table thead tr th.--brtr {
  border-radius: 0 8px 0 0;
}
.p-price__table thead tr th span {
  font-size: 10px;
}
.p-price__table thead th:nth-child(1),
.p-price__table tbody th {
  width: 68px;
  background: #f5865c;
  padding-block: 20px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  border: 2px solid #fff;
  vertical-align: middle;
}
@media screen and (max-width: 767px) and (min-width: 400px) and (max-width: 425px) {
  .p-price__table thead th:nth-child(1),
  .p-price__table tbody th {
    width: 80px;
  }
}
@media screen and (max-width: 767px) and (min-width: 426px) and (max-width: 767px) {
  .p-price__table thead th:nth-child(1),
  .p-price__table tbody th {
    width: 100px;
  }
}
@media (min-width: 768px) {
  .p-price__table thead th:nth-child(1),
  .p-price__table tbody th {
    width: clamp(13.75rem, 8.125rem + 11.71875vw, 17.5rem);
    background: #f5865c;
    padding-block: 20px;
    color: #fff;
    text-align: center;
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
    border: 2px solid #fff;
  }
}
.p-price__table thead th:nth-child(1).--brtl,
.p-price__table tbody th.--brtl {
  border-radius: 8px 0 0 0;
}
.p-price__table thead th:nth-child(1).--brbl,
.p-price__table tbody th.--brbl {
  border-radius: 0 0 0 8px;
}
.p-price__table tbody tr.--orange {
  background: #ffeee9;
}
.p-price__table td {
  color: #eb6835;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 37.5px */
  letter-spacing: 1.25px;
  padding-right: clamp(0.625rem, 0.25rem + 0.78125vw, 0.875rem);
  border: 2px solid #fff;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .p-price__table td {
    font-size: clamp(1.25rem, 0.78125rem + 0.9765625vw, 1.5625rem);
  }
}
.p-price__table td span {
  font-size: 12px;
}
@media (min-width: 768px) {
  .p-price__table td span {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}

.p-price__attention {
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-price__attention {
    margin-top: 10px;
    text-align: right;
    font-size: 14px;
  }
}

.p-access-fv {
  background: #ffeee9;
  padding-top: 16px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .p-access-fv {
    padding-top: 24px;
    padding-bottom: 42px;
  }
}

.p-access-fv__breadcrumbs {
  color: #F5865C;
}

.p-access-fv__title {
  text-align: center;
  color: #F5865C;
  margin-top: 52px;
}
.p-access-fv__sub-title {
  color: #F5865C;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-access-fv__text {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-access-fv__text {
    text-align: center;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-access {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-access {
    padding-top: 64px;
  }
}

.p-access__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-access__title {
    font-size: clamp(1.75rem, 1.375rem + 0.78125vw, 2rem);
    letter-spacing: 1.6px;
  }
}

.p-access__cards {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-access__cards {
    max-width: 385px;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .p-access__cards {
    margin-top: 40px;
    max-width: 760px;
    margin-inline: auto;
    gap: 24px;
  }
}

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

.p-access-card__sub {
  width: 40px;
  border-radius: 6px;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
  background: #fffdfd;
  position: relative;
}

.p-access-card__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 6px;
  border-top: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  background: #fffdfd;
  padding-top: 24px;
  padding-inline: 27px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access-card__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 768px) {
  .p-access-card__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1rem, 0.0625rem + 1.953125vw, 1.625rem);
    padding-left: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    padding-right: clamp(1.5rem, 0.375rem + 2.34375vw, 2.25rem);
    padding-bottom: 30px;
  }
}
.p-access-card__main::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -1px;
  width: 2px;
  height: 98%;
  border: 1px dashed #c7c7c7;
}

.p-access-card__image {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 240/225;
}
@media (min-width: 768px) {
  .p-access-card__image {
    width: clamp(12.5rem, 4.8125rem + 16.015625vw, 17.625rem);
    aspect-ratio: 282/265;
  }
}

.p-access-card__body {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-access-card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-access-card__title {
  max-width: 222px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-access-card__title {
    max-width: 264px;
    width: 100%;
  }
}

.p-access-card__address-lists {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .p-access-card__address-lists {
    margin-top: 20px;
  }
}

.p-access-card__address-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .p-access-card__address-list {
    gap: clamp(0.375rem, 0.1875rem + 0.390625vw, 0.5rem);
  }
}
.p-access-card__address-list svg {
  width: 20px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .p-access-card__address-list svg {
    width: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}
.p-access-card__address-list span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-access-card__address-list span {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-access-card__address-map {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -6px;
  padding-left: 27px;
  padding-right: 16px;
  line-height: 140%;
  color: #23719e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-access-card__address-map {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}
.p-access-card__address-map::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 8px;
  height: 12px;
  background: url(../img/icon-arrow-blue.svg) no-repeat center center/contain;
  rotate: -90deg;
}
@media (any-hover: hover) {
  .p-access-card__address-map:hover {
    opacity: 0.75;
  }
}

.p-access-card__genre {
  margin-top: 14px;
  padding-left: 16px;
  color: #5c5c5c;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  position: relative;
}
@media (min-width: 768px) {
  .p-access-card__genre {
    margin-top: 16px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
  }
}
.p-access-card__genre::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 8px;
  height: 20px;
  border-radius: 5px;
  background: #f28f00;
}

.p-access-card__genre-text {
  margin-top: 2px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .p-access-card__genre-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    margin-top: 6px;
  }
}

.p-access-card__btn-wrap {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-access-card__btn-wrap {
    margin-top: 16px;
    text-align: end;
  }
}

.p-access-card__btn {
  text-align: center;
}

.p-instructor-archive {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .p-instructor-archive {
    padding-top: 64px;
    padding-bottom: 160px;
  }
}

.p-instructor-archive__items {
  display: grid;
  row-gap: 32px;
}
@media (min-width: 768px) {
  .p-instructor-archive__items {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: clamp(2rem, -1rem + 6.25vw, 4rem);
       -moz-column-gap: clamp(2rem, -1rem + 6.25vw, 4rem);
            column-gap: clamp(2rem, -1rem + 6.25vw, 4rem);
    row-gap: clamp(2.5rem, 1.75rem + 1.5625vw, 3rem);
    width: 100%;
    max-width: 976px;
    margin-inline: auto;
  }
}

.p-instructor-archive__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (min-width: 768px) {
  .p-instructor-archive__item {
    gap: clamp(0.75rem, -0.375rem + 2.34375vw, 1.5rem);
  }
}

.p-instructor-archive__item__image {
  width: 140px;
  border-radius: 75px 75px 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-instructor-archive__item__image {
    width: clamp(7.5rem, 1.125rem + 13.28125vw, 11.75rem);
    aspect-ratio: 188/250;
    border-radius: 50vmax 50vmax 0 0;
  }
}
.p-instructor-archive__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-instructor-archive__item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-instructor-archive__item__title {
  color: #F5865C;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-bottom: 8px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .p-instructor-archive__item__title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    margin-top: 0;
  }
}
.p-instructor-archive__item__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: url("../img/instructor-line.png") no-repeat center center/cover;
}
@media (min-width: 768px) {
  .p-instructor-archive__item__title::after {
    width: 39px;
    height: 3px;
    background: url("../img/instructor-line-pc.png") no-repeat center center/contain;
  }
}

.p-instructor-archive__item__lesson-title {
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-instructor-archive__item__lesson-title {
    margin-top: 16px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}

.p-instructor-archive__item__lesson-text {
  margin-top: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-instructor-archive__item__lesson-text {
    margin-top: 6px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-instructor-archive__item-btn-wrap {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (min-width: 768px) {
  .p-instructor-archive__item-btn-wrap {
    margin-top: 23px;
  }
}

.p-instructor-single {
  padding-top: 40px;
  padding-bottom: 80px;
}

.p-instructor-single__inner {
  padding-inline: 44px;
}
@media (min-width: 768px) {
  .p-instructor-single__inner {
    padding-inline: 0;
    max-width: 1081px;
    margin-inline: auto;
    padding-inline: 50px;
  }
}

@media (min-width: 768px) {
  .p-instructor-single__top {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(2.25rem, -1.125rem + 7.03125vw, 4.5rem);
  }
}

.p-instructor-single__image {
  width: 100%;
  margin-inline: auto;
  border-radius: 50vmax 50vmax 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-instructor-single__image {
    width: 45%;
  }
}
.p-instructor-single__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-instructor-single__body {
    margin-top: -24px;
  }
}
@media (min-width: 768px) {
  .p-instructor-single__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-instructor-single__title {
  position: relative;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-instructor-single__title {
    font-size: clamp(1.75rem, 1.375rem + 0.78125vw, 2rem);
  }
}

.p-instructor-single__title-sub {
  color: #ffeee9;
  font-family: "Termina", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
}
@media (min-width: 768px) {
  .p-instructor-single__title-sub {
    font-size: clamp(2.5rem, 2.3125rem + 0.390625vw, 2.625rem);
  }
}

.p-instructor-single__lesson-title {
  margin-top: 40px;
  padding-bottom: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  position: relative;
}
@media (min-width: 768px) {
  .p-instructor-single__lesson-title {
    margin-top: clamp(2rem, 0.5rem + 3.125vw, 3rem);
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}
.p-instructor-single__lesson-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 39px;
  height: 3px;
  background: url("../img/instructor-line-pc.png") no-repeat center center/contain;
}

.p-instructor-single__lesson-text {
  margin-top: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-instructor-single__lesson-text {
    font-size: clamp(1rem, 0.625rem + 0.78125vw, 1.25rem);
  }
}

.p-instructor-single__middle {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-instructor-single__middle {
    margin-top: 72px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 768px) {
  .p-p-instructor-single__career {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-instructor-single__heading {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-bottom: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .p-instructor-single__heading {
    font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
    padding-bottom: 16px;
  }
}
.p-instructor-single__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c7c7c7;
}
.p-instructor-single__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: #F5865C;
}

.p-instructor-single__text {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-instructor-single__text {
    margin-top: 24px;
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
  }
}

@media (min-width: 768px) {
  .p-p-instructor-single__specialty {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-instructor-single__bottom {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-instructor-single__bottom {
    margin-top: 40px;
  }
}

.p-instructor-single__content-wrap {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap {
    margin-top: 32px;
  }
}
.p-instructor-single__content-wrap h2 {
  margin-top: 24px;
  background: #ffeee9;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  padding-block: 9px;
  padding-inline: 22px;
  position: relative;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap h2 {
    margin-top: 32px;
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
    padding-block: 12px;
    padding-inline: 36px;
  }
}
.p-instructor-single__content-wrap h2::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 10px;
  width: 4px;
  height: 30px;
  border-radius: 8px;
  background: #eb6835;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap h2::before {
    width: 4px;
    left: 20px;
  }
}
.p-instructor-single__content-wrap h3 {
  margin-top: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #eb6835;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap h3 {
    margin-top: 40px;
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
  }
}
.p-instructor-single__content-wrap h4 {
  margin-top: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap h4 {
    margin-top: 40px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}
.p-instructor-single__content-wrap h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../img/single-h4-line.png") repeat center center/contain;
}
.p-instructor-single__content-wrap p {
  margin-top: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap p {
    margin-top: 16px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}
.p-instructor-single__content-wrap blockquote {
  margin: 0;
}
.p-instructor-single__content-wrap ul {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-instructor-single__content-wrap ul li {
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
.p-instructor-single__content-wrap img {
  margin-top: 32px;
}
.p-instructor-single__content-wrap .wp-block-quote {
  margin-top: 40px;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
  background: #fff;
  padding-top: 20px;
  padding-inline: 24px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.p-instructor-single__content-wrap .wp-block-quote::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 50px;
  height: 50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #333;
}
.p-instructor-single__content-wrap .wp-block-quote cite {
  display: block;
  text-align: end;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
.p-instructor-single__content-wrap .p-news-single__quote {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-instructor-single__content-wrap .p-news-single__quote {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}
.p-instructor-single__content-wrap .p-news-single__quote-author-wrap {
  margin-top: 16px;
  text-align: end;
}
.p-instructor-single__content-wrap .p-news-single__quote-author {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  display: inline-block;
}
.p-instructor-single__content-wrap .p-news-single__btn-wrap {
  margin-top: 80px;
  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;
}
.p-class-fv {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .p-class-fv {
    padding-top: 24px;
  }
}

@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-class-fv__inner {
    padding-inline: 32px;
  }
}

.p-class-fv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .p-class-fv__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 20px;
  }
}

.p-class-fv__image {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  height: 100%;
}
.p-class-fv__image::before {
  content: "";
  position: absolute;
  background: url("../img/icon-usage-scene.png") no-repeat center center/contain;
  width: 80px;
  height: 75px;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-class-fv__image::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .p-class-fv__image {
    width: 55%;
    width: clamp(22.5rem, -1.3125rem + 49.609375vw, 38.375rem);
    margin-right: -32px;
    margin-top: -32px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-class-fv__image {
    margin-right: -16px;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .p-class-fv__image img {
    height: auto;
  }
}

.p-class-fv__image-text {
  color: transparent;
  -webkit-text-stroke-width: 1.08px;
  -webkit-text-stroke-color: #f7a483;
  font-family: "Termina", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 96px */
  position: absolute;
  left: 0;
  bottom: -64px;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-class-fv__image-text {
    font-size: clamp(4rem, 1.5625rem + 5.078125vw, 5.625rem);
    left: -20px;
    bottom: -80px;
    z-index: 2;
  }
}
@media (min-width: 768px) and (min-width: 1025px) and (max-width: 1200px) {
  .p-class-fv__image-text {
    left: -20px;
    bottom: -80px;
  }
}
@media (min-width: 768px) and (min-width: 901px) and (max-width: 1024px) {
  .p-class-fv__image-text {
    left: -20px;
    bottom: -80px;
  }
}
@media (min-width: 768px) and (min-width: 821px) and (max-width: 900px) {
  .p-class-fv__image-text {
    left: -20px;
    bottom: -70px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 820px) {
  .p-class-fv__image-text {
    left: -10px;
    bottom: -60px;
  }
}

@media screen and (max-width: 767px) {
  .p-class-fv__body {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .p-class-fv__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-class-fv__title {
  color: #eb6835;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-class-fv__title {
    margin-top: clamp(1rem, -0.5rem + 3.125vw, 2rem);
    font-size: clamp(2rem, 0.5rem + 3.125vw, 3rem);
    letter-spacing: 2.4px;
  }
}

.p-class-fv__heading {
  margin-top: 12px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .p-class-fv__heading {
    margin-top: 8px;
    font-size: clamp(1.375rem, 0.4375rem + 1.953125vw, 2rem);
    letter-spacing: 1.6px;
  }
}

.p-class-fv__text {
  margin-top: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-class-fv__text {
    margin-top: 16px;
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}

.p-class-fv__recommend {
  margin-top: 18px;
  border-radius: 6px;
  background: #ffeee9;
  padding-top: 16px;
  padding-bottom: 24px;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .p-class-fv__recommend {
    margin-top: clamp(1.5rem, 0rem + 3.125vw, 2.5rem);
    border-radius: 10px;
    padding-top: 24px;
    padding-bottom: 28px;
  }
}

.p-class-fv__recommend-title {
  color: #eb6835;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-class-fv__recommend-title {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
  }
}

.p-class-fv__recommend-lists {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-class-fv__recommend-list {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .p-class-fv__recommend-list {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
  }
}
.p-class-fv__recommend-list::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.p-class-schedule {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-class-schedule__title {
  color: #eb6835;
}

.p-class-schedule__text {
  margin-top: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-class-schedule__text {
    font-size: clamp(1.25rem, 0.125rem + 2.34375vw, 2rem);
    letter-spacing: 1.6px;
  }
}

.p-class-schedule__content {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .p-class-schedule__content {
    margin-top: 56px;
  }
}

.p-class-schedule__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.p-class-class {
  background: #ffeee9;
  position: relative;
  z-index: 1;
}

.p-class-class__title {
  text-align: center;
  color: #eb6835;
}

.p-class-class__text {
  margin-top: 4px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.8px;
}

.p-class-class__items {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-class-flow__title {
  text-align: center;
  color: #eb6835;
}

.p-class-flow__title-sub {
  left: 50%;
  translate: -50%;
}

.p-class-flow__items {
  margin-top: 16px;
  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;
}
@media (min-width: 768px) {
  .p-class-flow__items {
    max-width: 976px;
    margin-inline: auto;
    margin-top: 64px;
    gap: 8px;
  }
}

.p-class-flow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .p-class-flow__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-class-flow__item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #ccc;
  }
  .p-class-flow__item:first-of-type .p-class-flow__item-number-area {
    border-radius: 8px 0 0 0;
  }
  .p-class-flow__item:last-of-type .p-class-flow__item-number-area {
    border-radius: 0 0 0 8px;
  }
  .p-class-flow__item:last-of-type::before {
    display: none;
  }
}

.p-class-flow__item-number-area {
  border-radius: 8px 8px 0 0;
  background: #ffeee9;
  padding-top: 16px;
  padding-inline: 24px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .p-class-flow__item-number-area {
    width: 40%;
    padding-block: 24px;
    padding-inline: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    border-radius: 0;
  }
}

.p-class-flow__item-number {
  color: #eb6835;
  font-family: "Termina", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

.p-class-flow__item-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

@media screen and (max-width: 767px) {
  .p-class-flow__item-body {
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding-top: 16px;
    padding-inline: 24px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .p-class-flow__item-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-inline: 32px;
    padding-block: 24px;
  }
}

.p-class-flow__item-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  .p-class-flow__item-text {
    margin-top: 8px;
  }
}
.p-class-flow__text-attention {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.6px */
  letter-spacing: 0.6px;
  text-align: end;
}

.p-class-flow__essentials {
  margin-top: 48px;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
  background: #fff;
  padding-top: 16px;
  padding-bottom: 20px;
  padding-left: 72px;
  padding-right: 6px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-class-flow__essentials {
    max-width: 976px;
    margin-inline: auto;
    margin-top: 69px;
    padding-top: 24px;
    padding-left: clamp(10rem, 7.28125rem + 5.6640625vw, 11.8125rem);
    padding-right: clamp(2rem, -2.5rem + 9.375vw, 5rem);
    padding-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1rem, 0.25rem + 1.5625vw, 1.5rem);
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-class-flow__essentials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-class-flow__essentials-title-wrap {
  position: absolute;
  left: 16px;
  top: 0;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-title-wrap {
    left: 44px;
    top: 14px;
  }
}

.p-class-flow__essentials-title {
  color: #eb6835;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
  }
}
.p-class-flow__essentials-title::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: -16px;
  width: 60px;
  height: 72px;
  background: url("../img/class-flow-ashirai.png") no-repeat center center/contain;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-title::before {
    top: -32px;
    width: 113px;
    height: 136px;
  }
}

.p-class-flow__essentials-list {
  display: grid;
  row-gap: 4px;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-list {
    row-gap: 8px;
    width: 60%;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-class-flow__essentials-list {
    width: 100%;
  }
}

.p-class-flow__essentials-list-item {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-list-item {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
  }
}

.p-class-flow__essentials-list-item-text {
  margin-top: 2px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-list-item-text {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
    letter-spacing: 0.7px;
  }
}

.p-class-flow__essentials-text {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .p-class-flow__essentials-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-class-type__inner {
  padding-inline: 44px;
}

.p-class-type__title {
  text-align: center;
  color: #eb6835;
}

.p-class-type__title-sub {
  left: 50%;
  translate: -50%;
}

.p-class-type__items {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .p-class-type__items {
    margin-top: 64px;
    max-width: 976px;
    margin-inline: auto;
  }
}

.p-class-type__item-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-class-type__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(1rem, 0.25rem + 1.5625vw, 1.5rem);
  }
}
@media (any-hover: hover) {
  .p-class-type__item-link:hover {
    opacity: 0.75;
  }
}

@media (min-width: 768px) {
  .p-class-type__item-image {
    width: clamp(15rem, 11.25rem + 7.8125vw, 17.5rem);
  }
}

@media (min-width: 768px) {
  .p-class-type__item-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-class-type__item-title {
  margin-top: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (min-width: 768px) {
  .p-class-type__item-title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
    letter-spacing: 1.2px;
  }
}

.p-class-type__item-title-sub {
  font-size: 12px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #939393;
  font-family: "Termina", sans-serif;
  color: transparent;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 72px */
  margin-top: -12px;
}
@media (min-width: 768px) {
  .p-class-type__item-title-sub {
    font-size: clamp(3rem, 2.25rem + 1.5625vw, 3.5rem);
  }
}

.p-class-type__item-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-class-type__item-text {
    font-size: clamp(0.875rem, 0.5rem + 0.78125vw, 1.125rem);
  }
}

.p-class-type__item-btn-wrap {
  text-align: right;
  margin-top: 8px;
}

.p-contact-fv__text {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-contact-fv__text {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .p-contact__form-wrap {
    max-width: 760px;
    margin-inline: auto;
  }
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 23px;
}
@media (min-width: 768px) {
  .contact__form {
    row-gap: 32px;
  }
}

.contact__row {
  display: grid;
  row-gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__row.--aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .contact__row {
    grid-template-columns: 198px 1fr;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.contact__head {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .contact__head {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
    letter-spacing: 0.9px;
  }
}
.contact__head span {
  padding-left: 53px;
}
@media (min-width: 768px) {
  .contact__head span {
    padding-left: 60px;
  }
}
.contact__head span.--must {
  position: relative;
  display: inline-block;
}
.contact__head span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 2px;
  background: #F5865C;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact__head span.--must::after {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 0;
  width: 100%;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #c7c7c7;
  background: #fff;
  font-size: 16px;
  line-height: normal;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #c7c7c7;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #c7c7c7;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #c7c7c7;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #c7c7c7;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #c7c7c7;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

textarea {
  height: 243px;
  resize: vertical;
}

.contact__acceptance-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .contact__acceptance-text {
    font-size: 16px;
    letter-spacing: 0.8px;
    text-align: center;
  }
}
.contact__acceptance-text a {
  color: #23719e;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (min-width: 768px) {
  .contact__acceptance-text a {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .contact__acceptance-text a:hover {
    opacity: 0.75;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__data-checkbox {
  text-align: center;
}
.contact__data-checkbox .contact__acceptance-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  padding-left: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .contact__data-checkbox .contact__acceptance-text {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
.contact__data-checkbox .contact__acceptance-text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid #333;
  background: #fffefe;
}
.contact__data-checkbox .contact__acceptance-text::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 14px;
  width: 12px;
  height: 20px;
  rotate: 45deg;
  border-right: 3px solid #F5865C;
  border-bottom: 3px solid #F5865C;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact__data-checkbox .wpcf7-list-item-label {
  position: relative;
}
.contact__data-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid #333;
  background: #fffefe;
}
.contact__data-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 10px;
  height: 16px;
  rotate: 45deg;
  border-right: 3px solid #F5865C;
  border-bottom: 3px solid #F5865C;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit-wrap {
  text-align: center;
  margin-top: 24px;
}

.contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .contact__submit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.js-open-confirm {
  max-width: 270px;
  padding-block: 14px;
}
@media (min-width: 768px) {
  .js-open-confirm {
    padding-block: 20px;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-contact-thanks {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-contact-thanks {
    margin-top: 60px;
  }
}

.p-contact-thanks__title {
  font-size: 24px;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-contact-thanks__title {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
    letter-spacing: 1.6px;
  }
}

.p-contact-thanks__text {
  margin-top: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-contact-thanks__text {
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    letter-spacing: 0.8px;
  }
}

.p-contact-thanks__btn-wrap {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .p-contact-thanks__btn-wrap {
    margin-top: 40px;
  }
}

.js-confirm-area[hidden],
.js-form-area[hidden] {
  display: none;
}

.c-btn--ghost {
  display: inline-block;
  padding-block: 7px;
  padding-inline: 12px;
  border-radius: 39.086px;
  border: 1.629px solid #d1d1d1;
  background: #fff;
  max-width: 247px;
  width: 100%;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 1.12px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0;
}
@media (min-width: 768px) {
  .c-btn--ghost {
    font-size: clamp(0.8125rem, 0.71875rem + 0.1953125vw, 0.875rem);
  }
}

input[type=submit] {
  display: inline-block;
  padding-block: 7px;
  padding-inline: 12px;
  border-radius: 39.086px;
  border: 1.629px solid #d1d1d1;
  background: #eb6835;
  color: #fff;
  max-width: 247px;
  width: 100%;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 1.12px;
  font-weight: 500;
}
@media (min-width: 768px) {
  input[type=submit] {
    font-size: clamp(0.8125rem, 0.71875rem + 0.1953125vw, 0.875rem);
  }
}
.js-confirm-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .js-confirm-area {
    row-gap: 32px;
  }
}
.js-confirm-area .contact__head {
  font-weight: 700;
}

.p-about-philosophy {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-about-philosophy {
    padding-top: 64px;
  }
}

.p-about-philosophy__inner {
  position: relative;
}
@media (min-width: 768px) {
  .p-about-philosophy__inner {
    padding-inline: clamp(2.5rem, -1.25rem + 7.8125vw, 5rem);
  }
}

.p-about-philosophy__title-sub {
  font-family: "Termina", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-about-philosophy__title-sub {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
  }
}

.p-about-philosophy__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-about-philosophy__title {
    margin-top: 10px;
    font-size: clamp(1.5rem, 0.5625rem + 1.953125vw, 2.125rem);
    line-height: 140%; /* 47.6px */
    letter-spacing: 1.7px;
  }
}

.p-about-philosophy__image {
  position: absolute;
  top: 78px;
  right: -40px;
  max-width: 333px;
  width: 100%;
}
@media (min-width: 440px) and (max-width: 767px) {
  .p-about-philosophy__image {
    max-width: 380px;
  }
}
@media (min-width: 768px) {
  .p-about-philosophy__image {
    top: 4px;
    max-width: clamp(25rem, 2.5rem + 46.875vw, 40rem);
    right: -60px;
    left: calc(50% + clamp(13.75rem, -1.25rem + 31.25vw, 23.75rem));
    translate: -50%;
  }
}

.p-about-philosophy__body {
  margin-top: 303px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 440px) and (max-width: 767px) {
  .p-about-philosophy__body {
    margin-top: 400px;
  }
}
@media (min-width: 768px) {
  .p-about-philosophy__body {
    margin-top: 64px;
    gap: clamp(2rem, 0.5rem + 3.125vw, 3rem);
  }
}

.p-about-philosophy__body-title {
  color: #f5865c;
  font-family: "Termina", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 1.8px;
}
@media (min-width: 768px) {
  .p-about-philosophy__body-title {
    font-size: clamp(1.25rem, 0.875rem + 0.78125vw, 1.5rem);
  }
}

.p-about-philosophy__mission__heading {
  font-family: "Termina", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 39px */
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-about-philosophy__mission__heading {
    margin-top: 12px;
    font-size: clamp(1.75rem, -0.125rem + 3.90625vw, 3rem);
  }
}

.p-about-philosophy__mission-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-philosophy__mission-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%;
  }
}

.p-about-philosophy__vision__heading {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .p-about-philosophy__vision__heading {
    font-size: clamp(1.5rem, 0.75rem + 1.5625vw, 2rem);
  }
}

.p-about-philosophy__vision-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-philosophy__vision-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%;
  }
}

.p-about-philosophy__value-items {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-philosophy__value-items {
    width: 335px;
    height: 212px;
    margin-top: 8px;
    margin-inline: auto;
    list-style: none;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .p-about-philosophy__value-items {
    margin-top: 12px;
    width: clamp(31.25rem, -3.25rem + 71.875vw, 54.25rem);
    height: clamp(11.25rem, 0rem + 23.4375vw, 18.75rem);
  }
}

.p-about-philosophy__value-item {
  position: absolute;
  border-radius: 70px;
  border: 0.5px solid #f5865c;
  width: 140px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  background: transparent;
}
@media (min-width: 768px) {
  .p-about-philosophy__value-item {
    width: clamp(11.25rem, 0rem + 23.4375vw, 18.75rem);
    height: clamp(11.25rem, 0rem + 23.4375vw, 18.75rem);
    border-radius: 100vmax;
    gap: clamp(0.375rem, -0.1875rem + 1.171875vw, 0.75rem);
  }
}

@media screen and (max-width: 767px) {
  .p-about-philosophy__value-item--1 {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 3;
  }
}
@media (min-width: 768px) {
  .p-about-philosophy__value-item--1 {
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-about-philosophy__value-item--2 {
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .p-about-philosophy__value-item--2 {
    top: 0;
    left: calc(clamp(11.25rem, 0rem + 23.4375vw, 18.75rem) - 16px);
  }
}

@media screen and (max-width: 767px) {
  .p-about-philosophy__value-item--3 {
    bottom: 0;
    right: 0;
    z-index: 2;
  }
}
@media (min-width: 768px) {
  .p-about-philosophy__value-item--3 {
    top: 0;
    left: calc(clamp(22.5rem, 0rem + 46.875vw, 37.5rem) - 32px);
  }
}

.p-about-philosophy__value-item__heading {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-about-philosophy__value-item__heading {
    font-size: clamp(1.125rem, 0.5625rem + 1.171875vw, 1.5rem);
  }
}

.p-about-philosophy__value-item-text {
  color: #F5865C;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 17.4px */
  letter-spacing: 0.36px;
}
@media (min-width: 768px) {
  .p-about-philosophy__value-item-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 150%;
  }
}

.p-about-message {
  background: #ffeee9;
  margin-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-about-message {
    padding-bottom: 80px;
    background: url("../img/about-massage-bg-pc.png") no-repeat top center/cover;
    padding-top: 80px;
    overflow: hidden;
  }
}
.p-about-message::before {
  content: "";
  position: absolute;
  background: url("../img/about-message-ashirai.png") no-repeat center center/cover;
  width: 100%;
  height: clamp(5.5rem, -2.969rem + 36.13vw, 14.375rem);
  top: -40px;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-about-message::before {
    display: none;
  }
}

.p-about-message__inner {
  position: relative;
}

.p-about-message__title-sub {
  text-align: center;
  font-family: "Termina", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-about-message__title-sub {
    font-size: clamp(0.75rem, 0.5625rem + 0.390625vw, 0.875rem);
  }
}

.p-about-message__title {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media (min-width: 768px) {
  .p-about-message__title {
    font-size: clamp(1.5rem, 0.5625rem + 1.953125vw, 2.125rem);
  }
}

@media (min-width: 768px) {
  .p-about-message__image-wrap {
    position: absolute;
    top: -20px;
    right: -70px;
  }
}

.p-about-message__image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-message__image {
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .p-about-message__image {
    width: clamp(25rem, 5.3125rem + 41.015625vw, 38.125rem);
    aspect-ratio: 1/1;
  }
}
.p-about-message__image::before {
  content: "";
  position: absolute;
  background: transparent;
  width: 97.68px;
  height: 97.68px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  bottom: 20px;
  left: -17px;
  border-radius: 100vmax;
  border: 1px solid #f5865c;
  z-index: 10;
}
@media (min-width: 768px) {
  .p-about-message__image::before {
    width: clamp(6.25rem, -1.71875rem + 16.6015625vw, 11.5625rem);
    height: clamp(6.25rem, -1.71875rem + 16.6015625vw, 11.5625rem);
    bottom: 20px;
    left: -17px;
  }
}

.p-about-message__name-wrap {
  position: absolute;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  background: #ffeee9;
  padding-top: 12px;
}
@media (min-width: 768px) {
  .p-about-message__name-wrap {
    padding-top: 24px;
    bottom: 32px;
  }
}

.p-about-message__name-prefix {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  text-align: center;
  display: block;
}
@media (min-width: 768px) {
  .p-about-message__name-prefix {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}

.p-about-message__name-name {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (min-width: 768px) {
  .p-about-message__name-name {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
    letter-spacing: 1px;
    line-height: 150%;
  }
}

.p-about-message__body {
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .p-about-message__body {
    width: 55%;
    padding-inline: 0;
    padding-left: clamp(0rem, -8.90625rem + 18.5546875vw, 5.9375rem);
  }
}

.p-about-message__body-title {
  margin-top: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.54px;
}
@media (min-width: 768px) {
  .p-about-message__body-title {
    margin-top: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
  }
}

.p-about-message__body-text {
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-message__body-text {
    margin-top: 16px;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-about-message__name-prefix {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .p-about-message__name-prefix {
    font-size: clamp(1rem, 0.8125rem + 0.390625vw, 1.125rem);
  }
}

.p-about-message__name-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (min-width: 768px) {
  .p-about-message__name-name {
    font-size: clamp(1.125rem, 0.9375rem + 0.390625vw, 1.25rem);
  }
}

@media (min-width: 768px) {
  .p-about-company {
    padding-bottom: 160px;
  }
}

.p-about-company__title-sub {
  text-align: center;
  font-family: Termina;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  letter-spacing: 1.2px;
}

.p-about-company__title {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}

.p-about-company__content {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .p-about-company__content {
    width: 100%;
    max-width: 953px;
    margin-inline: auto;
  }
}

.p-about-company__content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .p-about-company__content-items {
    gap: 0;
  }
}

.p-about-company__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .p-about-company__content-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-about-company__head {
  padding-bottom: 6px;
  position: relative;
}
@media (min-width: 768px) {
  .p-about-company__head {
    width: 132px;
    padding-bottom: 0;
    padding-top: 22px;
    padding-left: 22px;
  }
  .p-about-company__head.--logo {
    margin-top: 10px;
  }
}
.p-about-company__head::before {
  content: "";
  position: absolute;
  background: #c7c7c7;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-about-company__head::before {
    display: none;
  }
}
.p-about-company__head::after {
  content: "";
  position: absolute;
  background: #F5865C;
  width: 100px;
  height: 1px;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-about-company__head::after {
    width: 100%;
  }
}

.p-about-company__head-title {
  color: #F5865C;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  padding-left: 8px;
}

.p-about-company__body {
  padding-left: 8px;
  padding-top: 6px;
  position: relative;
}
@media (min-width: 768px) {
  .p-about-company__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-bottom: 24px;
    padding-top: 24px;
    padding-left: 20px;
  }
  .p-about-company__body:first-of-type {
    padding-top: 0;
  }
  .p-about-company__body::before {
    content: "";
    position: absolute;
    background: #c7c7c7;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
  }
}
.p-about-company__body.--address {
  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;
}

.p-about-company__logo {
  margin-top: 8px;
  width: 100px;
}
@media (min-width: 768px) {
  .p-about-company__logo {
    width: 129px;
  }
}

.p-about-company__address {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-company__address {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-about-company__address-detail {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .p-about-company__address-detail {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-about-company__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-company__text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

.p-about-company__content-lists {
  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;
}
@media (min-width: 768px) {
  .p-about-company__content-lists {
    gap: 8px;
  }
}

.p-about-company__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: 2px;
}
@media (min-width: 768px) {
  .p-about-company__content-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .p-about-company__content-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
}

.p-about-company__content-list-heading {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-company__content-list-heading {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    width: 210px;
  }
}
.p-about-company__content-list-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-about-company__content-list-text {
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Termina", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

.u-animation__fadeIn {
  translate: 0 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.u-animation__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.u-orange {
  color: #eb6835;
}