@charset "UTF-8";

/* # c-header */
.c-header {
  background: #fff;
  height: var(--c-header-height);
  width: 100%;
  position: relative;
}
.c-header__logo {
  width: 177px;
  position: fixed;
  z-index: 3;
  left: 100px;
  top: 32px;
}
.c-header__nav {
  gap: 52px;
  display: flex;
  flex-direction: row;
  text-align: center;
  position: absolute;
  right: 150px;
  top: 32px;
}
.c-header__nav-item.is-current {
  position: relative;
}
.c-header__nav-item.is-current ::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;

  background: var(--navy);
  width: 75px;
  height: 1px;
}
.c-header__nav-ja,
.c-header__nav-en {
  display: block;
}
.c-header__nav-ja {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.c-header__nav-en {
  margin-top: 4px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
@media (max-width: 1536px) {
  .c-header__logo {
    left: 5vw;
  }
  .c-header__nav {
    gap: 32px;
    right: 122px;
  }
}
@media (max-width: 1280px) {
  .c-header__nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .c-header__logo {
    width: 106px;
    top: 12px;
  }
}

/* # c-ham */
.c-ham {
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: fixed;
  top: 40px;
  right: 55px;
  z-index: 12;
}
.c-ham__bar {
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  background: var(--black);
  width: 100%;
}
.c-ham__bar--1 {
  top: 0px;
}
.c-ham__bar--2 {
  top: 8px;
}
.c-ham__bar--3 {
  top: 16px;
}
.c-ham.is-open .c-ham__bar--1 {
  rotate: -45deg;
  translate: 0 8px;
}
.c-ham.is-open .c-ham__bar--2 {
  opacity: 0;
}
.c-ham.is-open .c-ham__bar--3 {
  rotate: 45deg;
  translate: 0 -8px;
}
.c-ham__wrap {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  padding: 88px 5vw 48px;
  width: 100%;
  max-height: 970px;
  height: 100svh;
  overflow-y: scroll;
}
.c-ham__wrap.is-open {
  opacity: 1;
  pointer-events: all;
}
.c-ham__inner {
  max-width: 1170px;
  margin: 0 auto;
}
.c-ham__logo {
  width: 106px;
  margin-left: 5vw;
}
.c-ham__nav-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 0 24px 16px;
  gap: 12px;
}
.c-ham__nav > *:not(.c-ham__closed) {
  border-top: 1px solid var(--gray);
}
.c-ham__nav-ja {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.c-ham__nav-en {
  font-size: 1.3rem;
  translate: 0 2px;
}
.c-ham__theater {
  display: flex;
  flex-direction: row;
  padding: 18px 16px;
  gap: 24px;
}
.c-ham__theater-item {
  flex: 1;
  text-align: center;
}
.c-ham__theater-img :is(img, picture) {
  aspect-ratio: 2/1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-ham__theater-img + .c-ham__nav-ja {
  margin-top: 8px;
}
.c-ham__sns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
}
.c-ham__sns-item {
  width: 32px;
}
.c-ham__closed {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  width: fit-content;
  margin: 32px auto 0;
}
@media (max-width: 768px) {
  .c-ham {
    top: 16px;
    right: 11px;
    width: 26px;
  }
  .c-ham__wrap {
    padding-top: 12px;
  }
  .c-ham__nav {
    margin-top: 16px;
  }
  .c-ham__nav-ja {
    font-size: 1.5rem;
  }
  .c-ham__nav-en {
    font-size: 1.2rem;
  }
}

/* # c-news01 */
.c-news01 {
  gap: 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.c-news01__item {
  border-bottom: 1px solid var(--gray);
  height: 88px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}
.c-news01__item:nth-of-type(1),
.c-news01__item:nth-of-type(2) {
  border-top: 1px solid var(--gray);
}
.c-news01__date {
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  width: 96px;
  translate: 0 1px;
}
.c-news01__heading {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  flex: 1;
}
.c-heading01 + .c-news01 {
  margin-top: 54px;
}
@media (max-width: 1280px) {
  .c-news01 {
    display: block;
  }
  .c-news01__item:nth-of-type(2) {
    border-top: none;
  }
}
@media (max-width: 768px) {
  .c-news01__item {
    height: auto;
    padding: 12px 0;
  }
  .c-news01__date {
    width: 80px;
    font-size: 1.4rem;
  }
  .c-news01__heading {
    font-size: 1.3rem;
  }
  .c-heading01 + .c-news01 {
    margin-top: 32px;
  }
}

/* # c-viewmore01 */
.c-viewmore01 {
  margin-right: 30px;
  font-size: 2rem;
  letter-spacing: 0.04em;
  display: block;
  margin-left: auto;
  width: fit-content;
  margin-right: 32px;
}
.c-news01 + .c-viewmore01 {
  margin-top: 38px;
}
@media (max-width: 768px) {
  .c-viewmore01 {
    font-size: 1.5rem;
    margin-right: 16px;
  }
  .c-news01 + .c-viewmore01 {
    margin-top: 20px;
  }
}

/* # c-link01 */
.c-link01 {
  text-decoration: underline;
  text-decoration-color: var(--gray);
  text-underline-offset: 3px;
}

/* # c-heading01 */
.c-heading01 {
  text-align: center;
}
.c-heading01__heading {
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
}
.c-heading01__subheading {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: var(--navy);
}
@media (max-width: 768px) {
  .c-heading01__heading {
    font-size: 1.8rem;
  }
}
.c-heading02 {
  text-align: center;
}
.c-heading02__heading {
  font-size: 3rem;
  letter-spacing: 0.04rem;
}
.c-heading02__subheading {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: var(--navy);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .c-heading02__heading {
    font-size: 1.8rem;
  }
}

/* # c-btn-sec01 */
.c-btn-sec01 {
  padding: 90px 0 60px;
}
.c-btn-sec01__inner {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 232px;
  translate: -16px 0;
}
.c-btn-sec01__item {
  display: block;
}
.c-btn-sec01__jp,
.c-btn-sec01__en {
  display: block;
}
.c-btn-sec01__jp {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}
.c-btn-sec01__en {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-top: 12px;
  color: var(--navy);
}
@media (max-width: 768px) {
  .c-btn-sec01 {
    padding: 40px 0 30px;
  }
  .c-btn-sec01__inner {
    gap: 100px;
    translate: -8px 0;
  }
  .c-btn-sec01__jp {
    font-size: 1.5rem;
  }
  .c-btn-sec01__en {
    font-size: 1.2rem;
    margin-top: 4px;
  }
}

/* # c-anchor01 */
.c-anchor01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.c-anchor01__item {
  color: var(--navy);
  border: 1px solid var(--navy);
  position: relative;
  text-align: center;
  padding: 16px 0;
}
.c-anchor01__number {
  position: absolute;
  height: fit-content;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  width: 20px;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-anchor01__heading {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.c-movie01 {
  margin-top: 80px;
}
.c-movie01__movie iframe {
  aspect-ratio: 120/67;
  width: 100%;
  height: 100%;
}
.c-movie01__txt {
  line-height: 2.2;
  letter-spacing: 0.04em;
  max-width: 800px;
  margin: 88px auto 0;
}
@media (max-width: 768px) {
  .c-anchor01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .c-anchor01__item {
    /* display: flex;
    flex-direction: row; */
    padding: 4px 0 4px 8px;
    /* gap: 4px; */
  }
  .c-anchor01__number {
    font-size: 2.4rem;
    position: static;
    margin: 0;
  }
  .c-anchor01__heading {
    font-size: 1.3rem;
  }
  .c-movie01__txt {
    margin-top: 24px;
  }
  .p-top-guide .c-viewmore01 {
    margin-top: 16px;
  }
}

/* # c-bnr-sec01 */
.c-bnr-sec01 {
  padding: 120px 0 0;
}
@media (max-width: 768px) {
  .c-bnr-sec01 {
    padding: 48px 0 0;
  }
}

/* # c-footer */
.c-footer {
  background: var(--lavender);
  padding: 100px 0;
}
.c-footer__logo {
  margin: 0 auto;
  width: 140px;
}
.c-footer__info {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  justify-content: space-between;
  margin-top: 80px;
}
.c-footer__info-heading {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.c-footer__info-txt {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 30px;
}
.c-footer__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-top: 110px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-footer {
    padding: 56px 0;
  }
  .c-footer__logo {
    width: 88px;
  }
  .c-footer__info {
    display: block;
    text-align: center;
    margin-top: 32px;
  }
  .c-footer__info > * + * {
    margin-top: 40px;
  }
  .c-footer__info-heading {
    font-size: 1.5rem;
  }
  .c-footer__info-txt {
    font-size: 1.3rem;
    margin-top: 12px;
  }
  .c-footer__copyright {
    margin-top: 64px;
  }
}

/* # c-tel-btn01 */
.c-tel-btn01 {
  color: #fff;
  transition: opacity 0.4s;
  z-index: 4;
  position: fixed;
}
.c-tel-btn01.is-invisible {
  opacity: 0;
  pointer-events: none;
}
.c-tel-btn01__main {
  background: var(--tel-color);
  position: fixed;
  bottom: 56px;
  right: 50px;
  width: 330px;
  height: 90px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.c-tel-btn01__main.is-active {
  cursor: default;
}
.c-tel-btn01__main-heading {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
.c-tel-btn01__main-subheading {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.c-tel-btn01__main-closed {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  position: fixed;
  bottom: 116px;
  right: 55px;
  z-index: 10;
  cursor: pointer;
  padding: 10px;
}
.c-tel-btn01__main-closed.is-visible {
  opacity: 1;
  pointer-events: all;
}
.c-tel-btn01__main-closed::before,
.c-tel-btn01__main-closed::after {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background: #fff;
}
.c-tel-btn01__main-closed::before {
  rotate: -45deg;
  translate: 0 0.5px;
}
.c-tel-btn01__main-closed::after {
  rotate: 45deg;
  translate: 0 -0.5px;
}
.c-tel-btn01__sub {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  position: fixed;
  bottom: 168px;
  right: 50px;
}
.c-tel-btn01__sub.is-visible {
  opacity: 1;
  pointer-events: all;
}
.c-tel-btn01__sub > * + * {
  margin-top: 8px;
}
.c-tel-btn01__sub-item {
  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 330px;
  height: 64px;
  padding-left: 39px;
}
.c-tel-btn01__sub-item--ikeda {
  background: var(--tel-subcolor01);
}
.c-tel-btn01__sub-item--umeda {
  background: var(--tel-subcolor02);
}
.c-tel-btn01__sub-item--gion {
  background: var(--tel-subcolor03);
}
.c-tel-btn01__sub-heading {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.c-tel-btn01__sub-number {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .c-tel-btn01__main {
    bottom: 32px;
    right: 0;
    width: 155px;
    height: 48px;
  }
  .c-tel-btn01__main-heading {
    font-size: 1.5rem;
  }
}

/* # c-bread01 */
.c-bread01 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  gap: 23px;
}
.c-bread01__item {
  position: relative;
}
.c-bread01__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  margin: auto;
  width: 8px;
  height: 9px;
  background: url(../img/common/i_arrow--navy.svg) var(--bg-standard);
}
.c-bread01.u-color-white .c-bread01__item:not(:first-of-type)::before {
  background: url(../img/common/i_arrow--white.svg) var(--bg-standard);
}
.c-page-heading-sec01 .c-bread01 {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .c-bread01 {
    display: none;
  }
}

/* # c-roopslider01 */
.c-roopslider01__img {
  width: 540px;
}
.c-roopslider01__img img {
  object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .c-roopslider01 {
    padding: 40px 0 0;
  }
  .c-roopslider01__img {
    width: 300px;
  }
}

/* c-theaterlist-sec01 */
.c-theaterlist-sec01__txt {
  margin-top: 30px;
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-align: center;
}
.c-theaterlist-sec01__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 355px;
  margin-top: 64px;
}
.c-theaterlist-sec01__item {
  position: relative;
  display: block;
}
.c-theaterlist-sec01__item--umeda {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/umeda/pl_fv.jpg) var(--bg-standard);
}
.c-theaterlist-sec01__item--ikeda {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/ikeda/pl_fv.jpg) var(--bg-standard);
}
.c-theaterlist-sec01__item--gion {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/gion/pl_fv.jpg) var(--bg-standard);
}
.c-theaterlist-sec01__heading-wrap {
  position: absolute;
  text-align: center;
  width: fit-content;
  height: fit-content;
  inset: 0;
  margin: auto;
  color: #fff;
  z-index: 2;
}
.c-theaterlist-sec01__heading {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.c-theaterlist-sec01__subheading {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .c-theaterlist-sec01__txt {
    margin-top: 20px;
    text-align: left;
  }
  .c-theaterlist-sec01__wrap {
    display: block;
    height: auto;
  }
  .c-theaterlist-sec01__item {
    width: 100%;
    aspect-ratio: 2/1;
  }
  .c-theaterlist-sec01__heading {
    font-size: 1.8rem;
  }
}

/* # SNS */
.c-sns01 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.c-sns01__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  background: var(--lavender);
  border-radius: 100vmax;
  padding: 4px 16px;
}
@media (max-width: 768px) {
  .c-sns01 {
    gap: 8px;
  }
  .c-sns01__item {
    font-size: 1.3rem;
    padding: 2px 12px;
  }
}

/* # c-page-header01 */
.c-page-header01 {
  height: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-page-header01--umeda {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/umeda/pl_fv.jpg) var(--bg-standard);
}
.c-page-header01--ikeda {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/ikeda/pl_fv.jpg) var(--bg-standard);
}
.c-page-header01--gion {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/gion/pl_fv.jpg) var(--bg-standard);
}
.c-page-header01--history {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page/history/pl_fv.jpg) var(--bg-standard);
}
.c-page-header01__heading-wrap {
  color: #fff;
}
.c-page-header01__heading {
  font-size: 6rem;
  letter-spacing: 0.04em;
}
.c-page-header01__subheading {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.c-page-header01__txt {
  letter-spacing: 0.04em;
  margin-top: 32px;
  line-height: 2;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .c-page-header01 {
    height: auto;
    padding: 40px 0;
  }
  .c-page-header01__heading {
    font-size: 3rem;
  }
  .c-page-header01__subheading {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}

/* # c-history-wrap01 */
.c-history-wrap01 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.c-history-wrap01 > * + * {
  margin-top: 48px;
}
.c-history-wrap01__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12%;
}
.c-history-wrap01__item--horizontal {
  gap: 6%;
}
.c-history-wrap01__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.c-history-wrap01__img {
  width: 42%;
}
.c-history-wrap01__item--horizontal .c-history-wrap01__img {
  width: 48%;
}
.c-history-wrap01__txt-wrap {
  flex: 1;
}
.c-history-wrap01__heading {
  font-size: 3rem;
  letter-spacing: 0.04em;
}
.c-history-wrap01__txt {
  letter-spacing: 0.04em;
  line-height: 2.2;
}
.c-history-wrap01__heading + .c-history-wrap01__txt {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .c-history-wrap01__item {
    display: block;
  }
  .c-history-wrap01__img,
  .c-history-wrap01__item--horizontal .c-history-wrap01__img {
    width: auto;
  }
  .c-history-wrap01__txt-wrap {
    margin-top: 32px;
  }
  .c-history-wrap01__heading {
    font-size: 2rem;
  }
  .c-history-wrap01__heading + .c-history-wrap01__txt {
    margin-top: 16px;
  }
}

/* # c-history-wrap02 */
.c-history-wrap02 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.c-history-wrap02 > * + * {
  margin-top: 130px;
}
.c-history-wrap02__item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8%;
}
.c-history-wrap02__item:nth-of-type(2n + 1) .c-history-wrap02__img {
  margin-right: calc(50% - 50vw);
}
.c-history-wrap02__item:nth-of-type(2n) {
  flex-direction: row;
}
.c-history-wrap02__item:nth-of-type(2n) .c-history-wrap02__img {
  margin-left: calc(50% - 50vw);
}
.c-history-wrap02__img {
  width: 48vw;
}
.c-history-wrap02__txt-wrap {
  flex: 1;
}
.c-history-wrap02__heading {
  font-size: 3rem;
  letter-spacing: 0.04em;
}
.c-history-wrap02__txt {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 2.5;
}
.c-history-wrap02__heading + .c-history-wrap02__txt {
  margin-top: 64px;
}
.c-history-wrap02__theater {
  font-size: 2.1rem;
}
@media (max-width: 768px) {
  .c-history-wrap02 > * + * {
    margin-top: 48px;
  }
  .c-history-wrap02__item {
    display: block;
  }
  .c-history-wrap02__img,
  .c-history-wrap02__item--horizontal .c-history-wrap02__img {
    width: auto;
  }
  .c-history-wrap02__txt-wrap {
    margin-top: 32px;
  }
  .c-history-wrap02__heading {
    font-size: 2rem;
  }
  .c-history-wrap02__txt {
    font-size: 1.4rem;
  }
  .c-history-wrap02__heading + .c-history-wrap02__txt {
    margin-top: 16px;
  }
  .c-history-wrap02__theater {
    font-size: 1.8rem;
  }
}

/* # c-page-heading-sec01 */
.c-page-heading-sec01 {
  padding: 120px 0 0;
}
.c-page-heading-sec01__heading {
  font-size: 4rem;
  letter-spacing: 0.04em;
}
.c-page-heading-sec01__subheading {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-top: 8px;
  color: var(--navy);
}
@media (max-width: 768px) {
  .c-page-heading-sec01 {
    padding: 56px 0 0;
  }
  .c-page-heading-sec01__heading {
    font-size: 2rem;
  }
  .c-page-heading-sec01__subheading {
    font-size: 1.6rem;
    margin-top: 4px;
  }
}

/* c-archive-pager01 */
.c-archive-pager01 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.c-archive-pager01__item {
  font-size: 1.6rem;
  width: 32px;
  text-align: center;
}

.c-archive-pager01__item.is-current {
  position: relative;
}
.c-archive-pager01__item.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  width: 20px;
  height: 2px;
  background: var(--black);
}

@media (max-width: 768px) {
  .c-archive-pager01__item {
    font-size: 1.4rem;
  }
  .c-archive-pager01__item.is-current::after {
    width: 18px;
  }
}

/* # c-single-pager01 */
.c-single-pager01 {
  display: flex;
  justify-content: space-between;
  margin-left: 32px;
  margin-right: 32px;
}
.c-single-pager01__item {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.c-single-pager01__item.is-invisible {
  opacity: 0;
}
@media (max-width: 768px) {
  .c-single-pager01 {
    margin-left: 16px;
    margin-right: 16px;
  }
  .c-single-pager01__item {
    font-size: 1.6rem;
  }
}

/* ## c-schedule-slider-sec01 */

/* ## schedule */

.c-schedule-slider-sec01__item {
  width: 230px;
  margin-right: 40px;
}
.c-schedule-slider-sec01__img {
  aspect-ratio: 1000/1414;
}
.c-schedule-slider-sec01__heading {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .c-schedule-slider-sec01__item {
    width: 140px;
    margin-right: 24px;
  }
  .c-schedule-slider-sec01__heading {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .c-schedule-slider-sec01 {
    padding: 40px 0 0;
  }
  .c-schedule-slider-sec01 .c-schedule-slider-sec01__wrap {
    margin-top: 40px;
  }
  .c-schedule-slider-sec01 .c-viewmore01 {
    margin-top: 27px;
  }
}

/* ## c-guide-wrap01 */
.c-guide-wrap01 > * + * {
  margin-top: 80px;
}
.c-guide-wrap01__item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8%;
}
.c-guide-wrap01__item:nth-of-type(2n) {
  flex-direction: row;
}
.c-guide-wrap01__img {
  width: 50%;
  aspect-ratio: 3/2;
}
.c-guide-wrap01__txt-wrap {
  flex: 1;
  max-width: 555px;
}
.c-guide-wrap01__heading-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: -8px;
  gap: 48px;
}
.c-guide-wrap01__part {
  font-size: 3rem;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  color: var(--navy);
}
.c-guide-wrap01__heading-main {
  font-size: 3rem;
  letter-spacing: 0.04em;
}
.c-guide-wrap01__heading-sub {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.c-guide-wrap01__num {
  text-orientation: upright;
}
.c-guide-wrap01__txt {
  letter-spacing: 0.04em;
  line-height: 2.6;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .c-guide-wrap01 > * + * {
    margin-top: 40px;
  }
  .c-guide-wrap01__item {
    display: block;
  }
  .c-guide-wrap01__img {
    width: auto;
  }
  .c-guide-wrap01__part {
    font-size: 2rem;
  }
  .c-guide-wrap01__txt-wrap {
    margin-top: 24px;
  }
  .c-guide-wrap01__txt {
    margin-top: 16px;
  }
  .c-guide-wrap01__heading-wrap {
    margin-left: 0;
    gap: 24px;
  }
  .c-guide-wrap01__heading-main {
    font-size: 2rem;
  }
  .c-guide-wrap01__heading-sub {
    font-size: 1.5rem;
  }
}

/* ## c-rule01 */
.c-rule01 > * + * {
  margin-top: 72px;
}
.c-rule01__item {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
.c-rule01__img {
  width: 170px;
}
.c-rule01__txt-wrap {
  flex: 1;
  margin-top: 16px;
}
.c-rule01__heading {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.c-rule01__txt {
  margin-top: 24px;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media (max-width: 768px) {
  .c-rule01 > * + * {
    margin-top: 56px;
  }
  .c-rule01__img {
    width: 100px;
    margin: 0 auto;
  }
  .c-rule01__item {
    display: block;
  }
  .c-rule01__txt-wrap {
    margin-top: 24px;
  }
  .c-rule01__heading {
    font-size: 1.6rem;
    text-align: center;
  }
  .c-rule01__txt {
    margin-top: 16px;
  }
}

/* ## c-oshikatsu01 */
.c-oshikatsu01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 115px;
}
.c-oshikatsu01__img {
  aspect-ratio: 3/2;
}
.c-oshikatsu01__txt-wrap {
  margin-top: 32px;
}
.c-oshikatsu01__heading {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.c-oshikatsu01__txt {
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .c-oshikatsu01 {
    display: block;
  }
  .c-oshikatsu01 > * + * {
    margin-top: 40px;
  }
  .c-oshikatsu01__txt-wrap {
    margin-top: 24px;
  }
  .c-oshikatsu01__heading {
    font-size: 1.6rem;
  }
  .c-oshikatsu01__txt {
    margin-top: 16px;
  }
}
/* c-guide-heading01 */
.c-guide-heading01__heading {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.c-guide-heading01__txt {
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .c-guide-heading01__heading {
    font-size: 2rem;
  }
  .c-guide-heading01__txt {
    text-align: left;
    margin-top: 24px;
  }
}

/* ## c-price01 */

.c-price01__inner + .c-price01__inner {
  margin-top: 24px;
}
.c-price01__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 2px solid var(--black);
  align-items: center;
  padding-bottom: 4px;
}
.c-price01__heading {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.c-price01__item--small .c-price01__heading {
  font-size: 1.6rem;
}
.c-price01__price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.c-price01__num {
  font-size: 3.4rem;
  letter-spacing: 0.04em;
}
.c-price01__item--small {
  margin-top: 8px;
  border-bottom: none;
}
.c-price01__item--small :is(.c-price01__num, .c-price01__yen) {
  font-size: 2rem;
}
.c-price01__yen {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}
.c-price01__plus {
  margin: 32px auto 10px;
  position: relative;
  width: 24px;
  height: 24px;
}
.c-price01__plus::before,
.c-price01__plus::after {
  position: absolute;
  content: "";
  display: block;
  background: var(--black);
  inset: 0;
  margin: auto;
}
.c-price01__plus::before {
  width: 100%;
  height: 3px;
}
.c-price01__plus::after {
  width: 3px;
  height: 100%;
}
.c-price01__add {
  text-align: right;
  letter-spacing: 0.04em;
  margin-top: 16px;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .c-price01__heading {
    font-size: 1.6rem;
  }
  .c-price01__num {
    font-size: 2.4rem;
  }
  .c-price01__yen {
    font-size: 2rem;
  }
  .c-price01__item--small :is(.c-price01__num, .c-price01__yen) {
    font-size: 1.8rem;
  }
  .c-price01__plus {
    width: 20px;
    height: 20px;
  }
  .c-price01__add {
    font-size: 1.2rem;
  }
}

/* ## c-sns-sec01 */
.c-sns-sec01 {
  padding: 120px 0 130px;
}
.c-sns-sec01__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  gap: 40px;
}
.c-sns-sec01__item {
  width: 64px;
}

@media (max-width: 768px) {
  .c-sns-sec01 {
    padding: 48px 0 56px;
  }
  .c-sns-sec01__wrap {
    margin-top: 32px;
    gap: 24px;
  }
  .c-sns-sec01__item {
    width: 40px;
  }
}
