@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Edu+VIC+WA+NT+Beginner:wght@400..700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
::before,
::after {
  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,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

*:focus {
  outline: none;
}

.header {
  width: 100%;
  background-color: #fafafa;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__nav {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
@media screen and (min-width: 1081px) {
  .header__nav {
    max-width: 1160px;
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    height: 120px;
  }
}

.header__logo {
  max-width: 120px;
}
@media screen and (min-width: 1081px) {
  .header__logo {
    max-width: 180px;
  }
}

.header__logo-link {
  display: block;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 1081px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  width: 30px;
  height: 1px;
  background-color: #401d10;
  transition: all 0.3s linear;
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
}
.header__hamburger span:nth-child(1) {
  top: 4px;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
}
.header__hamburger span:nth-child(3) {
  bottom: 4px;
}
.header__hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  position: fixed;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in;
  gap: 16px;
  font-family: "Afacad", sans-serif;
}
.header__nav-list.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1081px) {
  .header__nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    height: auto;
    gap: 0;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: flex-end;
  }
}

.header__nav-item {
  text-align: center;
  font-family: "Afacad", sans-serif;
}
@media screen and (min-width: 1081px) {
  .header__nav-item {
    padding: 4px 24px;
    position: relative;
    margin: 0;
  }
  .header__nav-item:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 0.5px;
    background-color: #401d10;
    right: 0;
    top: 0;
  }
  .header__nav-item:nth-last-child(1) {
    padding-right: 0;
    padding-left: 0;
    margin-left: 8px;
  }
  .header__nav-item:nth-last-child(1):after, .header__nav-item:nth-last-child(2):after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
  }
}

.header__nav-link {
  transition: all 0.3s ease;
  font-size: 16px;
}
.header__nav-link:hover {
  color: #b0b7c1;
}
.header__nav-link--btn {
  margin-top: 24px;
  display: inline-block;
  padding: 8px 32px;
  background-color: #8c7158;
  color: #fafafa;
  border-right: 0;
  transition: all 0.3s ease;
}
.header__nav-link--btn:hover {
  background-color: #b0b7c1;
}
@media screen and (min-width: 1081px) {
  .header__nav-link--btn {
    margin-top: 0;
  }
}

.fv {
  margin-top: 64px;
}
@media screen and (min-width: 1081px) {
  .fv {
    margin-top: 120px;
  }
}

.swiper-fv {
  max-width: 100%;
  overflow: hidden;
  height: 400px;
}
@media screen and (min-width: 1081px) {
  .swiper-fv {
    height: 600px;
  }
}
.swiper-fv .swiper-wrapper .swiper-slide {
  width: 100%;
  background-size: cover;
  background-position: center;
}
.swiper-fv .swiper-wrapper .swiper-slide__1 {
  background-image: url(../img/fv_1.jpg);
}
.swiper-fv .swiper-wrapper .swiper-slide__2 {
  background-image: url(../img/fv_2.jpg);
}
.swiper-fv .swiper-wrapper .swiper-slide__3 {
  background-image: url(../img/fv_3.jpg);
}
.swiper-fv .swiper-wrapper .swiper-slide__4 {
  background-image: url(../img/fv_4.jpg);
}
@media screen and (min-width: 1081px) {
  .swiper-fv .swiper-pagination {
    bottom: 32px !important;
  }
}
.swiper-fv .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  background: #fafafa; /* 非アクティブな色 */
  border-radius: 0; /* 角を丸くしたい場合は適宜調整 */
  opacity: 1;
  margin: 0 4px !important;
}
@media screen and (min-width: 1081px) {
  .swiper-fv .swiper-pagination-bullet {
    width: 48px;
    height: 6px;
    margin: 0 10px !important;
  }
}
.swiper-fv .swiper-pagination-bullet-active {
  background: #8c7158; /* アクティブな色、必要に応じて変更 */
}

.about .about__container {
  padding: 24px;
  border: 1px solid #8c7158;
  margin-left: 32px;
  margin-right: 32px;
}
@media screen and (min-width: 1081px) {
  .about .about__container {
    padding: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.about .about__container .about__messages {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  text-align: left;
}
@media screen and (min-width: 1081px) {
  .about .about__container .about__messages {
    margin-top: 56px;
    gap: 16px;
  }
}
.concept {
  background-image: url(../img/bg_beige.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.concept .section__heading {
  position: relative;
  z-index: 1;
  text-align: left;
}
.concept .section__heading .section__heading-ja {
  font-size: 14px;
}
@media screen and (min-width: 1081px) {
  .concept .section__heading .section__heading-ja {
    font-size: 15px;
  }
}
.concept .section__heading .section__heading-ja-main {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 1081px) {
  .concept .section__heading .section__heading-ja-main {
    font-size: 32px;
  }
}
.concept .section__heading .section__heading-line {
  width: 160px;
}

.concept__title {
  position: absolute;
  color: #fafafa;
  font-family: "Edu VIC WA NT Beginner", cursive;
  z-index: 0;
  font-size: 120px;
  left: -40px;
}
@media screen and (min-width: 1081px) {
  .concept__title {
    font-size: 360px;
    left: -120px;
    top: -120px;
  }
}

.concept__inner-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  gap: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .concept__inner-container {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1081px) {
  .concept__inner-container {
    margin-top: 80px;
    flex-direction: row;
    gap: 56px;
    align-items: end;
  }
}

.concept__img-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
}
.concept__img-container .concept__img {
  width: 110%;
  height: 110%;
  background-image: url(../img/concept.jpg);
  background-size: cover;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .concept__img-container .concept__img {
    width: 120%;
    height: 120%;
  }
}
@media screen and (min-width: 1081px) {
  .concept__img-container {
    max-width: 320px;
  }
}

.concept__list {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 1081px) {
  .concept__list {
    gap: 24px;
  }
}

.concept__list-item {
  display: flex;
  gap: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1081px) {
  .concept__list-item {
    align-items: center;
  }
}

.concept__lis-num {
  font-family: "Edu VIC WA NT Beginner", cursive;
  color: #8c7158;
  font-size: 28px;
  transform: rotate(16deg);
  line-height: 1;
}
@media screen and (min-width: 1081px) {
  .concept__lis-num {
    font-size: 56px;
  }
}

.concept__list-text .marker {
  background-color: rgba(250, 250, 250, 0.8);
  padding: 1px 3px;
  margin: 0 2px;
}

.style {
  max-width: 100vw;
  overflow: hidden;
}
@media screen and (min-width: 1081px) {
  .style__container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.style__container .section__heading {
  display: inline-block;
  text-align: left;
}
.style__container .section__heading .section__heading-line {
  margin-top: 16px;
}
@media screen and (min-width: 1081px) {
  .style__container .section__heading .section__heading-line {
    margin-top: 32px;
  }
}
.style__container .swiper-style {
  position: relative !important;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 1081px) {
  .style__container .swiper-style {
    margin-top: 80px;
    width: calc(100vw - (40px + var(--auto-margin)));
    margin-bottom: 56px;
  }
}
.style__container .swiper-style .swiper-wrapper {
  width: 100%;
  height: 360px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .style__container .swiper-style .swiper-wrapper {
    height: 400px;
  }
}
@media screen and (min-width: 1081px) {
  .style__container .swiper-style .swiper-wrapper {
    height: 480px;
  }
}
.style__container .swiper-style .swiper-wrapper .swiper-slide {
  background-size: cover;
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__1 {
  background-image: url(../img/style_1.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__2 {
  background-image: url(../img/style_2.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__3 {
  background-image: url(../img/style_3.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__4 {
  background-image: url(../img/style_4.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__5 {
  background-image: url(../img/style_5.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__6 {
  background-image: url(../img/style_6.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__7 {
  background-image: url(../img/style_7.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__8 {
  background-image: url(../img/style_8.jpg);
}
.style__container .swiper-style .swiper-wrapper .swiper-slide__9 {
  background-image: url(../img/style_9.jpg);
}
.style__scrolling {
  display: grid;
  gap: 8px;
}
.style__scrolling-line {
  width: 160px;
  height: 2px;
  background-color: #401d10;
  position: relative;
  overflow: hidden;
}
.style__scrolling-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fafafa, transparent);
  animation: scroll 1s linear infinite;
}
.style__scrolling-text {
  font-family: "Afacad", sans-serif;
}

@keyframes scroll {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu {
  background-image: url(../img/bg_blue.jpg);
  background-size: cover;
}

.menu__container {
  margin-top: 56px;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .menu__container {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (min-width: 1081px) {
  .menu__container {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 72px 56px;
    margin-top: 80px;
  }
}

.menu__box {
  perspective: 1000px;
  background-color: transparent;
  width: 100%;
  height: 480px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 1081px) {
  .menu__box {
    width: 440px;
    height: 660px;
  }
}

.menu__box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.menu__box.is-flipped .menu__box-inner {
  transform: rotateY(180deg);
  transform-origin: center center;
}

.menu__box-front,
.menu__box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  overflow: hidden;
}

.menu__box-front {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.menu__box-front .menu__1,
.menu__box-front .menu__2,
.menu__box-front .menu__3 {
  background-size: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .menu__box-front .menu__1,
  .menu__box-front .menu__2,
  .menu__box-front .menu__3 {
    transform: scale(1.6);
  }
}
.menu__box-front .menu__1 {
  background-image: url(../img/menu_1.jpg);
}
.menu__box-front .menu__2 {
  background-image: url(../img/menu_2.jpg);
}
.menu__box-front .menu__3 {
  background-image: url(../img/menu_3.jpg);
}

.menu__box-back {
  background-color: #fafafa;
  transform: rotateY(180deg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-top: 148px;
  gap: 16px;
}
@media screen and (min-width: 1081px) {
  .menu__box-back {
    padding: 48px 32px;
    padding-top: 180px;
    gap: 32px;
  }
}

.menu__box-title {
  position: absolute;
  font-size: 24px;
  color: #fafafa;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-family: "Edu VIC WA NT Beginner", cursive;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .menu__box-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1081px) {
  .menu__box-title {
    font-size: 40px;
  }
}

.menu__item {
  display: grid;
  gap: 4px;
}
@media screen and (min-width: 1081px) {
  .menu__item {
    gap: 8px;
  }
}

.menu__item-course {
  font-size: 13px;
  letter-spacing: 0;
}
@media screen and (min-width: 1081px) {
  .menu__item-course {
    font-size: 16px;
  }
}

.menu__item-title {
  font-weight: 600;
  font-family: "Afacad", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 1081px) {
  .menu__item-title {
    font-size: 20px;
  }
}

.menu__item-hr {
  width: 100%;
  height: 0.8px;
  background-color: #8c7158;
  margin: 4px 0;
}
@media screen and (min-width: 1081px) {
  .menu__item-hr {
    margin: 8px 0;
  }
}

.menu__item-inner {
  display: flex;
  justify-content: space-between;
}

.menu__item-price {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
}
@media screen and (min-width: 1081px) {
  .menu__item-price {
    font-size: 15px;
  }
}

.menu__qa .menu__box-inner {
  transform: rotateY(180deg);
}
.menu__qa .menu__box-inner .menu__box-back {
  background-color: #8c7158;
  color: #fafafa;
}
.menu__qa .menu__box-front {
  display: none;
}
.menu__qa .menu__item-inner {
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1081px) {
  .menu__qa .menu__item-inner {
    gap: 16px;
  }
}
.menu__qa .menu__item-hr {
  display: none;
}

#menu-box-4 {
  cursor: default;
}
#menu-box-4 .menu__item-title {
  text-align: center;
  font-weight: normal;
}
#menu-box-4 .menu__item-q {
  font-family: "Edu VIC WA NT Beginner", cursive;
  font-size: 32px;
  margin-right: 8px;
}
@media screen and (min-width: 1081px) {
  #menu-box-4 .menu__item-q {
    font-size: 56px;
  }
}

.reserve {
  background-image: url(../img/reserve.jpg);
  background-size: cover;
}

.reserve__container {
  margin-top: 32px;
  background-color: rgba(250, 250, 250, 0.8);
  text-align: center;
  padding: 32px 24px;
}
@media screen and (min-width: 768px) {
  .reserve__container {
    margin-top: 56px;
    padding: 48px 32px;
  }
}

.reserve__title {
  margin-top: 32px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1081px) {
  .reserve__title {
    margin-bottom: 32px;
    margin-top: 56px;
  }
}
.reserve__title .reserve__desc {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .reserve__title .reserve__desc {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.reserve__btns {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .reserve__btns {
    gap: 32px;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
}

.reserve__btn {
  padding: 16px 32px;
  background-color: #8c7158;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.reserve__btn:hover {
  background-color: #b0b7c1;
}
@media screen and (min-width: 1081px) {
  .reserve__btn {
    width: 240px;
  }
}
.reserve__btn .arrow {
  width: 16px;
  height: 16px;
}
.reserve__btn .reserve__btn-text {
  color: #fafafa;
}

.access .section__heading {
  text-align: left;
}

.access__info {
  margin-top: 32px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1081px) {
  .access__info {
    margin-top: 56px;
    margin-bottom: 56px;
  }
}
.access__info .access__shop-name {
  font-weight: 600;
  font-family: "Afacad", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 1081px) {
  .access__info .access__shop-name {
    font-size: 20px;
  }
}
.access__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1081px) {
  .access__container {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

@media screen and (min-width: 1081px) {
  .access__left {
    width: 50%;
    height: 320px;
  }
}

@media screen and (min-width: 1081px) {
  .access__map {
    height: 299px;
  }
}
.access__map .map {
  width: 100%;
}
@media screen and (min-width: 1081px) {
  .access__map .map {
    width: 540px;
    height: 299px;
  }
}

.access__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1081px) {
  .access__right {
    gap: 24px;
    width: 50%;
  }
}

.access__inner {
  display: grid;
  gap: 8px;
}

.access__status {
  font-weight: 600;
  font-family: "Afacad", sans-serif;
}

body {
  font-family: "Zen Maru Gothic";
  color: #401d10;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-size: 14px;
  background-color: #fafafa;
}
@media screen and (min-width: 1081px) {
  body {
    font-size: 15px;
  }
}

.section__heading {
  text-align: center;
}

.section__heading-en {
  font-family: "Edu VIC WA NT Beginner", cursive;
  line-height: 1;
  font-size: 40px;
}
@media screen and (min-width: 1081px) {
  .section__heading-en {
    font-size: 72px;
  }
}

.section__heading-line {
  width: 60px;
  height: 2px;
  background-color: #8c7158;
  display: inline-block;
  margin: 12px 0 4px;
}
@media screen and (min-width: 1081px) {
  .section__heading-line {
    margin: 16px 0;
  }
}

.section__heading-ja {
  font-size: 12px;
  display: grid;
  gap: 4px;
}
@media screen and (min-width: 1081px) {
  .section__heading-ja {
    font-size: 14px;
  }
}

.container-l {
  max-width: calc(100% - 48px);
  padding: 80px 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .container-l {
    max-width: 720px;
    padding: 120px 40px;
  }
}
@media screen and (min-width: 1081px) {
  .container-l {
    max-width: 1160px;
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 120px 40px;
  }
}

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

.footer {
  background-image: url(../img/bg_beige.jpg);
}
.footer .container-l {
  padding: 32px 0;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .footer .container-l {
    padding: 32px 40px;
  }
}
@media screen and (min-width: 1081px) {
  .footer .container-l {
    padding: 56px 40px;
  }
}

.footer__logo {
  width: 50%;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 160px;
  }
}

.footer__info {
  display: grid;
}/*# sourceMappingURL=style.css.map */