@charset "UTF-8";
html {
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  background: #fff;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  cursor: url("../img/pc/cursor.png") 12 12, auto;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
    line-height: 2;
  }
}
body.active {
  overflow: hidden;
  cursor: auto;
}

a,
a:hover,
button {
  cursor: pointer;
}

.scroll-none {
  overflow-x: hidden;
}

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

.mv {
  background: url(../img/sp/mv-sp.jpg) no-repeat center center/cover;
  height: 100dvh;
  position: relative;
}

.image {
  position: relative;
  margin-bottom: 6rem;
  aspect-ratio: 1192/750;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .image {
    margin-bottom: 8rem;
  }
}

.logo {
  width: 100%;
  max-width: 60rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.archive-mv {
  background: url(../img/pc/access.jpg) no-repeat center center/cover;
  height: 43dvh;
}

.works-mv {
  background: url(../img/pc/works-mv.png) no-repeat center center/cover;
  height: 43dvh;
}
@media screen and (min-width: 768px) {
  .works-mv {
    height: 65dvh;
  }
}

.archive-mv__inner {
  height: inherit;
}

.main-title {
  font-size: 1.9rem;
  text-transform: uppercase;
  background: #fff;
  letter-spacing: 0.15em;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }
}

.inner {
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
  max-width: 60rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .inner {
    padding: 0 3rem;
    max-width: 105rem;
  }
}

.span-ib {
  display: inline-block;
}

.header-box {
  position: fixed;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 120rem;
  z-index: 100;
  padding-inline: 4rem;
}

.header {
  width: 100%;
  max-width: 15rem;
  z-index: 100;
  position: relative;
  padding-block: 2rem;
  margin-left: auto;
  margin-bottom: 5rem;
  position: relative;
}

.header.is-fixed {
  position: fixed;
  top: 1rem;
  padding-inline: 2rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .header.is-fixed {
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header.is-fixed {
    left: 50%;
    right: -2rem;
    transform: translateX(-50%);
    padding: 0;
    width: 100%;
    max-width: 116rem;
    margin: 0 auto;
    padding-right: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .header-box .header.is-fixed {
    max-width: 94rem;
  }
}

.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    width: 100%;
    max-width: 126rem;
    margin: 0 auto;
  }
}

.header__nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: 5rem 0;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 500;
  overflow-y: auto;
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
}
.header__nav.active .header__list-item a {
  color: #fff;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    padding-inline: 0;
  }
}

.hdbox {
  width: 100%;
  max-width: 112rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding-right: 2rem;
}
.hdbox.is-fixed {
  transform: none;
}
@media screen and (min-width: 768px) {
  .hdbox {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .hdbox {
    padding-right: 0;
  }
}

.header__list {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: inherit;
  flex-direction: column;
  overflow-y: auto;
}

.header__list-item {
  text-align: right;
  position: relative;
  transition: opacity 0.4s;
}
.header__list-item a {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .header__list-item a {
    color: #333;
  }
}
@media (hover: hover) {
  .header__list-item a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header__list-item a:active {
    opacity: 0.7;
  }
}

.header__list-accordion {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.header__list-arrow {
  position: absolute;
  top: 1.5rem;
  right: 6rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 0.6rem;
  background: url(../img/pc/arrow.svg) no-repeat center/cover;
}
.header__list-arrow.is-open {
  transform: translateY(-50%) rotate(180deg);
}

.header__list-sub {
  display: none;
}

.header__hamburger {
  width: 3rem;
  height: 3rem;
  background: transparent;
  position: relative;
  border-radius: 50%;
  z-index: 30;
}
.header__hamburger span {
  width: 100%;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  transition: all 0.4s;
  z-index: 30;
}
.header__hamburger span:first-child {
  top: 1rem;
}
.header__hamburger span:last-child {
  top: 2rem;
}
.header__hamburger.active {
  transform: translateX(0);
  z-index: 40;
}
.header__hamburger.active span:first-of-type {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  background: #fff;
}
.header__hamburger.active span:last-of-type {
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
  background: #fff;
}

.top {
  padding-top: 6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top {
    padding-top: 8rem;
  }
}

.top__box {
  flex-shrink: 0;
}

.top__title {
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
  width: fit-content;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .top__title {
    left: 3rem;
    font-size: 4.7rem;
    margin-bottom: 8rem;
  }
}

.sub-title {
  font-size: 2rem;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 2.4rem;
  }
}

.top__sub-title {
  writing-mode: vertical-rl;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top__sub-title {
    margin-left: 5.5rem;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top__sub-title {
    margin-left: 5.6rem;
  }
}

@media screen and (min-width: 768px) {
  .top__container {
    display: flex;
    gap: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .top__container {
    gap: 9rem;
  }
}

.top__container-box {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .top__container-box {
    margin-top: 10rem;
  }
}

.text-jp {
  font-size: 1.3rem;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 768px) {
  .text-jp {
    font-size: 1.4rem;
  }
}

.top__text-jp {
  margin-bottom: 2rem;
}

.text-en {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .text-en {
    font-size: 1.2rem;
  }
}

.header__hamburger-box {
  position: relative;
  z-index: 100;
}

.header__hamburger-bg {
  opacity: 1;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  top: -1rem;
  left: -1rem;
  right: -1rem;
  left: -2.5rem;
  right: -2.5rem;
  bottom: -7rem;
}
.header__hamburger-bg.active {
  opacity: 0;
}

.header__hamburger-text {
  position: absolute;
  bottom: -3.5rem;
  left: 52%;
  transform: translateX(-50%) rotate(90deg);
  opacity: 1;
  transition: opacity 0.5s;
}
.header__hamburger-text.active {
  opacity: 0;
}

#header-spacer {
  height: 0;
}

.information {
  margin-top: 10.5rem;
}
@media screen and (min-width: 768px) {
  .information {
    margin-top: 14rem;
  }
}

.information__image {
  background: url(../img/pc/information.png) no-repeat center center/cover;
  position: relative;
}

.small-title {
  text-transform: uppercase;
  margin-bottom: 4rem;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .small-title {
    margin-bottom: 6rem;
    font-size: 2rem;
  }
}

.about {
  margin-top: 9rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 12rem;
    margin-bottom: 10rem;
  }
}

.about__image {
  background: url(../img/pc/about.png) no-repeat center center/cover;
}

.about__text-jp {
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
  .text-box {
    padding-left: 10rem;
  }
}
@media screen and (min-width: 1024px) {
  .text-box {
    padding-left: 20rem;
  }
}

.text-container {
  position: relative;
}

.about__text {
  position: absolute;
  right: 0;
  bottom: -4.5rem;
  font-size: 2rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .about__text {
    bottom: 0;
    right: -4rem;
    writing-mode: vertical-rl;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .about__text {
    right: 4.5rem;
  }
}

.button-box {
  display: flex;
  justify-content: space-between;
  max-width: 65rem;
  margin: 4rem auto 0;
  display: none;
}

.button {
  padding: 1rem 5rem;
  border: 1px solid #000;
  width: fit-content;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  font-size: 1.5rem;
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.6rem;
    padding: 1rem 6rem;
  }
}
@media (hover: hover) {
  .button:hover {
    background-color: #333;
    color: #fff;
  }
}
@media (hover: none) {
  .button:active {
    background-color: #333;
    color: #fff;
  }
}

.experience {
  margin-bottom: 0;
}

.experience__title {
  font-size: 2rem;
  margin-bottom: 6rem;
}

.experience__button {
  display: block;
  width: fit-content;
}

.experience__image {
  background: url(../img/pc/reservation.png) no-repeat center center/cover;
  margin-top: 9rem;
}
@media screen and (min-width: 768px) {
  .experience__image {
    margin-top: 12rem;
  }
}

.experience__text {
  letter-spacing: 0.2em;
}

.business-hours {
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .business-hours {
    margin-bottom: 10rem;
  }
}

.business-hours__title {
  font-size: 2rem;
  margin-bottom: 6rem;
}

.business-hours__container {
  width: fit-content;
  margin: 0 auto 0 0;
}
@media screen and (min-width: 1024px) {
  .business-hours__container {
    margin: 0 auto;
  }
}

.business-hours__box {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .business-hours__box {
    margin-left: -6.5rem;
  }
}

.business-hours__text {
  letter-spacing: 0.2em;
}

.business-hours__text--mb {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .business-hours__text--mb {
    margin-bottom: 1.5rem;
  }
}

.business-hours__text--sm {
  color: #888;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .business-hours__text--sm {
    font-size: 1.3rem;
  }
}

.business-hours__text--md {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .business-hours__text--md {
    font-size: 1.3rem;
  }
}

.access {
  margin-bottom: 9rem;
}
@media screen and (min-width: 768px) {
  .access {
    margin-bottom: 12rem;
  }
}

.access__title {
  font-size: 2rem;
  margin-bottom: 6rem;
}

.access__lead-text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .access__lead-text {
    font-size: 1.3rem;
  }
}

.access__button {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .access__button {
    margin-bottom: 1.5rem;
  }
}

.access__image {
  background: url(../img/pc/access.png) no-repeat center center/cover;
}

.access__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.tel,
.fax {
  font-size: 1.2rem;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .tel,
  .fax {
    font-size: 1.3rem;
  }
}

.access__container {
  text-align: center;
  width: fit-content;
  margin: 0 auto 1.5rem;
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .access__container {
    margin: 0 auto 2.5rem;
  }
}

.company-name {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .company-name {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

.address {
  font-style: normal;
  line-height: 1.5;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .address {
    font-size: 1.3rem;
  }
}

.copy {
  text-align: center;
  display: block;
  padding-block: 1rem;
  background: #ccc;
  font-size: 1.2rem;
}

.rokuro-exp__container {
  background: #ccc;
  padding-block: 3.75rem;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__container {
    padding-block: 5rem;
    margin-bottom: 6rem;
  }
}

.rokuro-exp__box {
  width: 100%;
  max-width: 28rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__box {
    display: block;
  }
}

.rokuro-exp__start {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__start {
    text-align: left;
    font-size: 1.6rem;
  }
}

.rokuro-exp__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  align-items: center;
  padding-inline: 2rem;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__wrapper {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    padding-inline: 3rem;
  }
}

.rokuro-exp__title {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.4em;
  line-height: 1;
  margin-bottom: 0.7rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__title {
    font-size: 2.4rem;
  }
}

.rokuro-exp__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 22rem;
  order: 2;
  margin-bottom: 1rem;
  flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__wrap {
    margin: 0 auto;
  }
}

.rokuro-exp__age {
  font-size: 1.2rem;
  text-align: center;
  display: block;
  order: 1;
  font-size: 1.1rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__age {
    font-size: 1.2rem;
  }
}

.rokuro-exp__text-en {
  font-size: 1.2rem;
  text-align: center;
  display: block;
  order: 1;
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.7rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__text-en {
    font-size: 1.2rem;
  }
}

.rokuro-exp__time {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__time {
    font-size: 1.4rem;
    text-align: left;
  }
}

.rokuro-exp__text {
  width: fit-content;
  margin: 0 auto 9rem;
  text-align: center;
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__text {
    margin-bottom: 12rem;
    padding-inline: 3rem;
  }
}

.rokuro-exp__text--mb {
  margin-bottom: 2.2rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__text--mb {
    margin-bottom: 3rem;
  }
}

.rokuro-exp__text-sm {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 9rem;
}
@media screen and (min-width: 768px) {
  .rokuro-exp__text-sm {
    margin-bottom: 12rem;
  }
}

.rokuro-exp__text-box {
  margin: 0 auto 3rem;
  margin-bottom: 3rem;
  width: fit-content;
  padding-inline: 2rem;
}

.marquee-swiper {
  width: 100%;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .marquee-swiper {
    margin-bottom: 10rem;
  }
}
.marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.marquee-swiper .swiper-slide {
  width: auto; /* ← これが重要 */
  padding: 0 1rem; /* スライド間隔 */
  white-space: nowrap;
}
.marquee-swiper .swiper-slide img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 455/341;
  max-width: 45.5rem;
}

.tebineri {
  width: 100%;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 768px) {
  .tebineri {
    margin-bottom: 10rem;
  }
}
.tebineri .swiper-wrapper {
  transition-timing-function: linear !important;
}
.tebineri .swiper-slide {
  width: auto; /* ← これが重要 */
  padding: 0 1rem; /* スライド間隔 */
  white-space: nowrap;
}
.tebineri .swiper-slide img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 455/341;
}

.fee {
  padding-bottom: 9rem;
}
@media screen and (min-width: 768px) {
  .fee {
    padding-bottom: 12rem;
  }
}

.fee__title {
  margin-bottom: 4rem;
  letter-spacing: 0.15em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .fee__title {
    margin-bottom: 6rem;
    font-size: 2rem;
  }
}

.fee__wrapper {
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: center;
  margin-bottom: 7.5rem;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .fee__wrapper {
    gap: 7rem;
    flex-direction: row;
    margin-bottom: 10rem;
  }
}
@media screen and (min-width: 1024px) {
  .fee__wrapper {
    gap: 8rem;
  }
}

.fee__sub-title {
  text-align: center;
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .fee__sub-title {
    margin-bottom: 0.8rem;
    font-size: 1.7rem;
  }
}

.fee__sub-title--mb {
  margin-bottom: 1rem;
}

.fee__box-text {
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .fee__box-text {
    font-size: 1.6rem;
  }
}

.fee__box {
  border: 1px solid #000;
  width: fit-content;
  padding: 3rem 4.5rem;
  margin: 0 auto 3.75rem;
}
@media screen and (min-width: 768px) {
  .fee__box {
    padding: 4rem 6rem;
    margin: 0 auto 5rem;
  }
}

.fee__price-box {
  display: flex;
  gap: 0;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .fee__price-box {
    gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .fee__price-box {
    flex-direction: row;
    gap: 4rem;
    justify-content: space-between;
  }
}

.fee__price {
  text-align: center;
  line-height: 1.3;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .fee__price {
    font-size: 1.5rem;
  }
}

.fee__price-text {
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .fee__price-text {
    text-align: left;
  }
}

.fee__price-box + .fee__price-box {
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .fee__price-box + .fee__price-box {
    margin-top: 0.9rem;
  }
}

.fee__box-l,
.fee__box-c {
  border: 1px solid #000;
  padding: 2rem 2.5rem;
  position: relative;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .fee__box-l,
  .fee__box-c {
    padding: 2rem 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .fee__box-l,
  .fee__box-c {
    padding: 4rem 6rem;
  }
}

.fee__box-l {
  width: 100%;
  max-width: 20rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .fee__box-l {
    max-width: 16rem;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .fee__box-l {
    max-width: none;
    flex-shrink: 1;
  }
}

.fee__box-c {
  width: 100%;
  max-width: 20rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .fee__box-c {
    max-width: 18rem;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .fee__box-c {
    max-width: none;
    flex-shrink: 1;
  }
}

.fee__box-c::before {
  content: "+";
  position: absolute;
  top: -5.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .fee__box-c::before {
    transform: translateY(-50%);
    top: 50%;
    left: -4.3rem;
  }
}
@media screen and (min-width: 1024px) {
  .fee__box-c::before {
    left: -4.9rem;
  }
}

.fee__box-r {
  position: relative;
}
.fee__box-r::before {
  content: "=";
  position: absolute;
  top: -4.4rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .fee__box-r::before {
    transform: translateY(-50%);
    top: 50%;
    left: -4rem;
  }
}

.fee__sum {
  font-size: 1.6rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .fee__sum {
    font-size: 1.8rem;
  }
}

.fee__text {
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .fee__text {
    font-size: 1.5rem;
  }
}

.rokuro-image__title {
  margin-bottom: 8rem;
}

.rokuro-image__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rokuro-image__list-items {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .rokuro-image__list-items {
    width: calc(50% - 0.5rem);
  }
}

.post-container {
  margin-bottom: 4.5rem;
  width: 100%;
  max-width: 74rem;
}
@media screen and (min-width: 768px) {
  .post-container {
    margin-left: 10rem;
  }
}
@media screen and (min-width: 1024px) {
  .post-container {
    margin-left: 20rem;
    margin-bottom: 6rem;
  }
}

.post-container__wrapper {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding-bottom: 0.75rem;
  transition: opacity 0.4s;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .post-container__wrapper {
    flex-direction: row;
    gap: 3rem;
    padding-bottom: 1rem;
  }
}
.post-container__wrapper + .post-container__wrapper {
  border-top: 1px solid #dedede;
  padding-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .post-container__wrapper + .post-container__wrapper {
    padding-top: 1rem;
  }
}
@media (hover: hover) {
  .post-container__wrapper:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .post-container__wrapper:active {
    opacity: 0.7;
  }
}

.post-container__time {
  font-size: 1.3rem;
  width: 8rem;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .post-container__time {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .entry-content {
    font-size: 1.6rem;
    width: calc(100% - 8rem - 3rem);
  }
}
.entry-content + p {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .entry-content + p {
    margin-bottom: 8rem;
  }
}

/* ===================================
   Gutenberg ブロック共通調整
=================================== */
/* 全体の基本 */
.entry-content {
  line-height: 1.8;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* 見出し */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* 段落 */
.entry-content p {
  margin-bottom: 1.5rem;
}

/* 画像 */
.entry-content img {
  max-width: 100%;
  height: auto;
}

/* 画像ブロック */
.entry-content .wp-block-image {
  margin-bottom: 2rem;
}

/* リスト */
.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ボタン */
.entry-content .wp-block-button {
  margin-bottom: 2rem;
}

/* カラム */
.entry-content .wp-block-columns {
  margin-bottom: 2rem;
}

/* 引用 */
.entry-content blockquote {
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #f7f7f7;
  border-left: 4px solid #ccc;
}

.entry-content > * + * {
  margin-top: 1.5rem;
}

.archive,
.post,
.instagram {
  padding-block: 6rem 8rem;
  z-index: 50;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive,
  .post,
  .instagram {
    padding-block: 8rem 12rem;
  }
}

.archive__main-title {
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .archive__main-title {
    margin-bottom: 5rem;
  }
}

.q-and-a__main-title {
  margin-bottom: 3.5rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .q-and-a__main-title {
    margin-bottom: 5rem;
    padding-left: 3.5rem;
  }
}

.archive__post-container {
  margin-left: 0;
  max-width: none;
}

.post-title {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .post-title {
    font-size: 1.7rem;
    margin-bottom: 4rem;
  }
}

.pagination {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .pagination {
    gap: 1.5rem;
  }
}

.works-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .works-card {
    gap: 3rem 2rem;
    margin-bottom: 4rem;
  }
}

.works-card__items {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .works-card__items {
    width: calc(50% - 1rem);
  }
}

.works-card__image img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 460/350;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 50;
}

/* 表示時 */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.instagram__post + .instagram__post {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .instagram__post + .instagram__post {
    margin-top: 4rem;
  }
}

.instagram #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3 h3,
.sb_instagram_header.sbi_medium .sbi_header_text h3 {
  font-size: 1.6rem !important;
}
@media screen and (min-width: 768px) {
  .instagram #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3 h3,
  .sb_instagram_header.sbi_medium .sbi_header_text h3 {
    font-size: 1.8rem !important;
  }
}
.instagram #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3 p,
.sb_instagram_header.sbi_medium .sbi_header_text p {
  font-size: 1.3rem !important;
}
@media screen and (min-width: 768px) {
  .instagram #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3 p,
  .sb_instagram_header.sbi_medium .sbi_header_text p {
    font-size: 1.5rem !important;
  }
}

#sb_instagram .sb_instagram_header .sbi_header_text,
.sb_instagram_header .sbi_header_text {
  flex-direction: column !important;
}
@media screen and (min-width: 768px) {
  #sb_instagram .sb_instagram_header .sbi_header_text,
  .sb_instagram_header .sbi_header_text {
    flex-direction: row !important;
  }
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img,
#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img,
.sb_instagram_header.sbi_medium .sbi_header_img,
.sb_instagram_header.sbi_medium .sbi_header_img img {
  width: 12rem !important;
  height: 12rem !important;
  border-radius: 50%;
}

.page-numbers {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-align: center;
  transition: all 0.4s;
}
.page-numbers.current {
  background: #333;
  color: #fff;
}
@media (hover: hover) {
  .page-numbers:hover {
    background: #333;
    color: #fff;
  }
}
@media (hover: none) {
  .page-numbers:active {
    background: #333;
    color: #fff;
  }
}

.cta-button {
  position: fixed;
  width: 100%;
  text-align: center;
  padding-block: 2rem;
  left: 0;
  bottom: 0rem;
  z-index: 100;
  background: #ccc;
}

.footer-box {
  padding-bottom: 14rem;
}

.cta-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.cta-tel {
  width: fit-content;
  margin: auto;
}

.q-and-a {
  padding-block: 6rem 8rem;
  z-index: 50;
  position: relative;
}
@media screen and (min-width: 768px) {
  .q-and-a {
    padding-block: 8rem 12rem;
  }
}

.q-and-a-mv__inner {
  height: inherit;
}

.q-and-a__container + .q-and-a__container {
  margin-top: 5rem;
}

.q-and-a__small-title {
  background: #ccc;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .q-and-a__small-title {
    padding: 1.5rem 3.5rem;
  }
}
.q-and-a__small-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #ccc;
  z-index: -1;
}

.q-and-a__q {
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .q-and-a__q {
    font-size: 1.7rem;
  }
}

.q-and-a__a {
  font-size: 1.3rem;
  padding-left: 0.1rem;
}
@media screen and (min-width: 768px) {
  .q-and-a__a {
    font-size: 1.5rem;
  }
}

.q-and-a__wrapper {
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .q-and-a__wrapper {
    padding-inline: 3.5rem;
  }
}
.q-and-a__wrapper + .q-and-a__wrapper {
  margin-top: 1.2rem;
}

.sbi_feedtheme_header_text {
  opacity: 0;
  visibility: hidden;
}

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

.shipping__inner {
  margin-bottom: 10rem;
}

.shipping__box {
  display: flex;
  gap: 3rem;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .shipping__box {
    gap: 5rem;
  }
}
.shipping__box + .shipping__box {
  margin-top: 0.5rem;
}

.shipping__lead-text {
  margin-bottom: 3.5rem;
  text-align: center;
  color: #888;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .shipping__lead-text {
    margin-bottom: 5rem;
  }
}

.shipping__text {
  width: 6rem;
  flex-shrink: 0;
}

.shipping__table {
  width: 100%;
  max-width: 65rem;
  margin: 0 auto;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.card-list__items {
  width: calc(50% - 1rem);
  max-width: 100%;
}

.list {
  margin-top: 8rem;
}

.list-image img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1192/754;
}

.list-image--margin1 {
  margin-top: -10rem;
  margin-bottom: 3rem;
}

.list-image--margin2 {
  margin-bottom: 3rem;
}

.list-image--margin3 {
  margin-bottom: 3rem;
}

.access__wrap {
  width: 100%;
  max-width: 79rem;
  margin: auto;
}

/*# sourceMappingURL=style.css.map */
