@charset "UTF-8";
html {
  font-size: 20px;
}

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

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@-webkit-keyframes page-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  -webkit-animation: page-fade-in 0.2s ease;
          animation: page-fade-in 0.2s ease;
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.announce-bar {
  background-color: #F8F8F8;
  padding: 10px;
  text-align: center;
  display: none;
}
@media screen and (max-width: 768px) {
  .announce-bar {
    padding: 10px;
  }
}

.announce-bar__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #292F36;
}
.announce-bar__text a {
  color: #292F36;
  text-decoration: underline;
  font-weight: 700;
}

.header {
  width: 100%;
  height: 140px;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 14px 20px;
    height: 88px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 14px 16px;
    height: 72px;
    border-radius: 0;
  }
}

.header__logo {
  flex-shrink: 0;
  min-width: 0;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  opacity: 1;
}
.header__logo a:hover {
  opacity: 0.7;
}

.header__logo-img {
  width: 72px;
  height: 72px;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .header__logo-img {
    width: 52px;
    height: 52px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    width: 44px;
    height: 44px;
  }
}

.header__logo-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.4;
  color: #292F36;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header__logo-text {
    font-size: 16px;
    white-space: normal;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    font-size: 14px;
    text-align: left;
  }
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .header__menu-btn {
    display: flex;
  }
}

.header__menu-btn-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #292F36;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.is-drawer-open .header__menu-btn-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.is-drawer-open .header__menu-btn-bar:nth-child(2) {
  opacity: 0;
}

body.is-drawer-open .header__menu-btn-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__drawer-overlay {
  display: none;
}

@media screen and (max-width: 1024px) {
  .site-header:has(.header__menu-btn) .header__drawer-overlay {
    display: block;
    position: fixed;
    inset: 88px 0 0 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .site-header:has(.header__menu-btn) .header__drawer-overlay {
    inset: 72px 0 0 0;
  }
}

@media screen and (max-width: 1024px) {
  body.is-drawer-open .site-header:has(.header__menu-btn) .header__drawer-overlay {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1024px) {
  body.is-drawer-open:has(.header__menu-btn) {
    overflow: hidden;
  }
}

.header__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .header:has(.header__menu-btn) {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    row-gap: 8px;
    -moz-column-gap: 24px;
         column-gap: 24px;
    height: auto;
    min-height: 140px;
    padding: 12px 32px;
  }
  .header:has(.header__menu-btn) .header__menu-btn {
    display: none;
  }
  .header:has(.header__menu-btn) .header__nav {
    display: contents;
  }
  .header:has(.header__menu-btn) .header__logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .header:has(.header__menu-btn) .header__logo a {
    gap: 16px;
  }
  .header:has(.header__menu-btn) .header__nav-list {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100%;
  }
  .header:has(.header__menu-btn) .header__nav-menu {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: center;
    width: 100%;
    gap: 28px;
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .header:has(.header__menu-btn) .header__nav-menu-item a {
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .header:has(.header__menu-btn) {
    padding: 10px 20px;
    row-gap: 6px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    min-height: 124px;
  }
  .header:has(.header__menu-btn) .header__logo a {
    gap: 12px;
  }
  .header:has(.header__menu-btn) .header__logo-img {
    width: 60px;
    height: 60px;
  }
  .header:has(.header__menu-btn) .header__logo-text {
    font-size: 20px;
  }
  .header:has(.header__menu-btn) .header__nav-list {
    gap: 6px;
  }
  .header:has(.header__menu-btn) .header__nav-btn {
    font-size: 16px;
    padding: 7px 9px;
    gap: 6px;
  }
  .header:has(.header__menu-btn) .header__nav-menu {
    gap: 16px;
  }
  .header:has(.header__menu-btn) .header__nav-menu-item a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1150px) {
  .header:has(.header__menu-btn) {
    padding: 8px 16px;
    min-height: 112px;
  }
  .header:has(.header__menu-btn) .header__logo a {
    gap: 10px;
  }
  .header:has(.header__menu-btn) .header__logo-img {
    width: 52px;
    height: 52px;
  }
  .header:has(.header__menu-btn) .header__logo-text {
    font-size: 17px;
  }
  .header:has(.header__menu-btn) .header__nav-list {
    gap: 4px;
  }
  .header:has(.header__menu-btn) .header__nav-btn {
    font-size: 14px;
    padding: 6px 8px;
    letter-spacing: 0.04em;
  }
  .header:has(.header__menu-btn) .header__nav-menu {
    gap: 10px;
  }
  .header:has(.header__menu-btn) .header__nav-menu-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header:has(.header__menu-btn) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
    min-height: 88px;
    padding: 10px 20px;
  }
  .header:has(.header__menu-btn) .header__logo {
    flex: 1;
    min-width: 0;
  }
  .header:has(.header__menu-btn) .header__logo a {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header:has(.header__menu-btn) {
    height: 72px;
    min-height: 72px;
    padding: 8px 16px;
  }
  .header:has(.header__menu-btn) .header__logo a {
    gap: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .header:has(.header__menu-btn) .header__nav {
    display: flex;
    position: fixed;
    top: 88px;
    right: 0;
    width: min(320px, 88vw);
    height: calc(100dvh - 88px);
    background-color: #fff;
    z-index: 9999;
    padding: 24px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    align-items: stretch;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .header:has(.header__menu-btn) .header__nav {
    display: flex;
    top: 72px;
    height: calc(100dvh - 72px);
  }
}

@media screen and (max-width: 1024px) {
  body.is-drawer-open .header:has(.header__menu-btn) .header__nav {
    transform: translateX(0);
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .header:has(.header__menu-btn) .header__nav-list {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .header:has(.header__menu-btn) .header__nav-list .header__nav-item:has(.header__nav-link--instagram) {
    justify-content: flex-end;
  }
  .header:has(.header__menu-btn) .header__nav-list .header__nav-item:has(.header__nav-link--instagram) .header__nav-link--instagram {
    width: 50px;
    height: 50px;
  }
  .header:has(.header__menu-btn) .header__nav-list .header__nav-item:has(.header__nav-link--sns) {
    justify-content: flex-start;
  }
  .header:has(.header__menu-btn) .header__nav-list .header__nav-item:has(.header__nav-link--sns) .header__nav-link--sns {
    width: 50px;
    height: 50px;
  }
  .header:has(.header__menu-btn) .header__nav-list .header__nav-item:has(.header__nav-btn) {
    grid-column: 1/-1;
  }
  .header:has(.header__menu-btn) .header__nav-list .header__nav-item:has(.header__nav-btn) .header__nav-btn {
    width: 100%;
    justify-content: center;
  }
}

.header__nav-item {
  display: flex;
  align-items: center;
}

.header__nav-link {
  text-decoration: none;
  color: #292F36;
  opacity: 1;
}
.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-link--instagram {
  display: block;
  width: 25px;
  height: 25px;
  background: url("../images/icon-instagram.png") no-repeat center/contain;
}

.header__nav-link--sns {
  display: block;
  width: 27px;
  height: 25px;
  background: url("../images/icon-line.svg") no-repeat center/contain;
}

.header__nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #C99795;
  border-radius: 40px;
  padding: 9px 11px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.header__nav-btn:hover {
  opacity: 0.8;
}

.header__nav-btn-icon {
  display: block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.header__nav-btn-text {
  color: #fff;
}

.header__nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .header:has(.header__menu-btn) .header__nav-menu {
    order: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
}

.header__nav-menu-item a {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
  color: #292F36;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header__nav-menu-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .header:has(.header__menu-btn) .header__nav-menu-item a {
    display: block;
    padding: 12px 0;
    line-height: 1.5;
    border-bottom: 1px solid #E6E6E6;
  }
}
.header__nav-menu-item--has-submenu {
  position: relative;
}
.header__nav-menu-item--has-submenu:hover .header__nav-submenu, .header__nav-menu-item--has-submenu:focus-within .header__nav-submenu {
  visibility: visible;
  opacity: 1;
}

.header__nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 0;
  min-width: 220px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(41, 47, 54, 0.12);
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10001;
}
.header__nav-submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
}
.header__nav-submenu a {
  display: block;
  padding: 8px 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #292F36;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.header__nav-submenu a:hover {
  opacity: 0.7;
}

main {
  padding-top: 156px;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 104px;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 88px;
  }
}

@media screen and (max-width: 1024px) {
  body:not(.home) main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  body:not(.home) main {
    padding-top: 25px;
  }
}

.hero {
  width: 100%;
  height: calc(100vh - 140px - 16px - 78px);
  height: calc(100dvh - 140px - 16px - 78px);
  display: flex;
  flex-direction: column;
  --hero-slide-w: 80%;
  --hero-slide-gap: 16px;
  --hero-slide-half: 40%;
}
@media screen and (max-width: 1024px) {
  .hero {
    height: calc(100dvh - 88px - 16px - 78px);
    --hero-slide-w: 100%;
    --hero-slide-gap: 0;
    --hero-slide-half: 50%;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    height: calc(100dvh - 72px - 16px - 160px);
  }
}

.hero__slider {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.hero__slider-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  gap: var(--hero-slide-gap);
  transition: transform 0.5s ease-in-out;
}

.hero__slide {
  width: var(--hero-slide-w);
  flex: 0 0 auto;
  height: 100%;
  position: relative;
}
.hero__slide a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.hero__slide a:hover {
  opacity: 1;
}

.hero__slide-img {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #d9d9d9;
}
.hero__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero__slide-caption {
  position: absolute;
  bottom: 48px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6.75px;
}
@media screen and (max-width: 768px) {
  .hero__slide-caption {
    bottom: 20px;
    left: 0;
    right: 10px;
  }
}

.hero__slide-caption-title {
  background-color: #fff;
  padding: 9px 12px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 60px;
  letter-spacing: 0.019em;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .hero__slide-caption-title {
    font-size: 22px;
    line-height: 1.4;
    padding: 6px 10px;
  }
}

.hero__slide-caption-text {
  background-color: #fff;
  padding: 7.5px 11.25px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.065em;
  color: #666666;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .hero__slide-caption-text {
    font-size: 16px;
    padding: 5px 8px;
  }
}

.hero__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.85);
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: background-color 0.2s ease;
}
.hero__slider-btn:hover {
  background: rgb(51, 51, 51);
}
.hero__slider-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.hero__slider-btn--prev {
  left: calc(50% - var(--hero-slide-half) + 20px);
}
.hero__slider-btn--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.hero__slider-btn--next {
  right: calc(50% - var(--hero-slide-half) + 20px);
}
.hero__slider-btn--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hero__slider-btn {
    top: 28%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
  }
  .hero__slider-btn::before {
    width: 9px;
    height: 9px;
  }
  .hero__slider-btn--prev {
    left: calc(50% - var(--hero-slide-half) + 10px);
  }
  .hero__slider-btn--next {
    right: calc(50% - var(--hero-slide-half) + 10px);
  }
}

.hero__progress {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  width: calc(var(--hero-slide-w) * 0.8);
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .hero__progress {
    gap: 6px;
    margin: 16px auto;
  }
}

.hero__progress-bar {
  flex: 1;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: #E6E6E6;
  cursor: pointer;
  overflow: hidden;
}

.hero__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 2px;
  background: #333;
}

.quick-links {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .quick-links {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .quick-links {
    padding: 0 16px;
  }
}

.quick-links__list {
  display: flex;
  list-style: none;
  padding: 0;
  height: 78px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .quick-links__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 0;
  }
}

.quick-links__item {
  flex: 1;
  border: 2px solid #E6E6E6;
}
@media screen and (max-width: 768px) {
  .quick-links__item {
    height: 80px;
  }
}

.quick-links__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F0F0F0;
  padding: 12px 10px;
  box-sizing: border-box;
  text-decoration: none;
  transition: background-color 0.3s;
}
.quick-links__link:hover {
  opacity: 1;
  background-color: #e3e3e3;
}

.quick-links__ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.031em;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  .quick-links__ja {
    font-size: 20px;
  }
}

.quick-links__en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.047em;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  .quick-links__en {
    font-size: 20px;
  }
}

.news-blog {
  padding: 80px 0;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .news-blog {
    padding: 64px 0;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .news-blog {
    padding: 48px 0;
  }
}

.news-blog__col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-blog__col + .news-blog__col {
  margin-top: 50px;
}
.news-blog__col .news-blog__list + .news-blog__list {
  margin-top: 50px;
}

.news-blog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  height: 28px;
}

.news-blog__heading {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.046em;
  color: #000;
}

.news-blog__more-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #000;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.054em;
}
.news-blog__more-link:hover {
  opacity: 0.7;
}

.news-blog__more-icon {
  display: inline-block;
  width: 7px;
  height: 10px;
  background: url("../images/icon-arrow.svg") no-repeat center/contain;
}

.news-blog__list {
  display: flex;
  gap: 39px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .news-blog__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .news-blog__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) and (min-width: 500px) {
  .news-blog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-blog__item {
  flex: 1;
  min-width: 0;
}

.news-blog__item-link {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-decoration: none;
  color: #292F36;
}
.news-blog__item-link:hover {
  opacity: 0.8;
}

.news-blog__item-img {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.news-blog__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.news-blog__item-link:hover .news-blog__item-img img {
  transform: scale(1.03);
}

.news-blog__item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-blog__item-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.05em;
  color: #000;
}

.news-blog__item-date {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 27.5px;
  letter-spacing: 0.059em;
  color: #808080;
}

.concept {
  background-color: #F8F8F8;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 48px 0;
  }
}

.concept__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .concept__inner {
    padding: 40px 40px 60px;
  }
}
@media screen and (max-width: 768px) {
  .concept__inner {
    padding: 32px 20px 0;
    flex-direction: column;
  }
}

.concept__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .concept__body {
    padding-right: 0;
    gap: 20px;
  }
}

.concept__heading {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.016em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .concept__heading {
    font-size: 35px;
    line-height: 1.3;
  }
}

.concept__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30.88px;
  letter-spacing: 0.05em;
  color: #000;
}

.concept__info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.concept__info-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32.5px;
  letter-spacing: 0.051em;
  color: #000;
}
.concept__info-item a {
  color: #000;
  text-decoration: underline;
}
.concept__info-item a:hover {
  opacity: 0.7;
}

.concept__img {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  margin: 0;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .concept__img {
    width: 100%;
    margin-top: 32px;
  }
}
.concept__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.concept__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #C99795;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 20px;
  letter-spacing: 0.057em;
  border-radius: 36px;
  padding: 0 20px;
  width: 370px;
  height: 72px;
  text-decoration: none;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}
.btn-view-more:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .btn-view-more {
    width: 280px;
    font-size: 25px;
    height: 60px;
  }
}

.index-page .btn-view-more {
  width: 180px;
  height: 48px;
  padding: 0 20px;
  border-radius: 36px;
  font-size: 20px;
  line-height: 20px;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .index-page .btn-view-more {
    width: 180px;
    height: 48px;
    font-size: 20px;
    line-height: 20px;
  }
}

.lesson {
  background-color: #fff;
  padding: 80px 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .lesson {
    padding: 80px 40px;
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .lesson {
    padding: 48px 20px;
    gap: 32px;
  }
}

.lesson__heading-wrap {
  width: 100%;
}

.lesson__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.lesson__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  .lesson__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.lesson__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
  display: block;
}

.lesson__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1080px;
}

.lesson__intro-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #292F36;
}
@media screen and (max-width: 768px) {
  .lesson__intro-title {
    font-size: 22px;
  }
}

.lesson__intro-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #292F36;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lesson__intro-text {
    font-size: 20px;
  }
}

.lesson_cta-box {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lesson_cta-box {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    max-width: 100%;
  }
}
.lesson_cta-box .lesson-cta__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.lesson_cta-box .lesson-cta__catch {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .lesson_cta-box .lesson-cta__catch {
    white-space: normal;
    word-break: break-word;
  }
}

.lesson__calendar {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lesson__calendar-widget {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.lesson__calendar-widget.is-loading .lesson__calendar-content {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lesson__calendar-content {
  width: 100%;
}

.lesson__calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 600px;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .lesson__calendar-header {
    gap: 24px;
  }
}

.lesson__calendar-month {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lesson__calendar-month {
    font-size: 28px;
  }
}

.lesson__calendar-month-year,
.lesson__calendar-month-num {
  font-size: 56px;
}
@media screen and (max-width: 768px) {
  .lesson__calendar-month-year,
.lesson__calendar-month-num {
    font-size: 36px;
  }
}

.lesson__calendar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s;
}
.lesson__calendar-btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .lesson__calendar-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.lesson__cal-status-legend {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: 100%;
  margin-bottom: 12px;
}

.lesson__cal-status-legend-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #292F36;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lesson__cal-status-legend-item {
    font-size: 20px;
  }
}

.lesson__cal {
  width: 100%;
  overflow-x: hidden;
}

.lesson__cal-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
}

.lesson__cal-row--head {
  border-bottom: 1px solid #E6E6E6;
}

.lesson__cal-body {
  width: 100%;
}
.lesson__cal-body .lesson__cal-row:last-child .lesson__cal-cell {
  border-bottom: 1px solid #E6E6E6;
}

.lesson__cal-th {
  padding: 12px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #292F36;
}
.lesson__cal-th--sun {
  color: #C99795;
}
.lesson__cal-th--sat {
  color: #6ba3c9;
}
@media screen and (max-width: 768px) {
  .lesson__cal-th {
    padding: 6px 0;
    font-size: 11px;
  }
}

.lesson__cal-cell {
  min-height: 120px;
  padding: 8px 6px;
  border-top: 1px solid #E6E6E6;
  border-left: 1px solid #E6E6E6;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.lesson__cal-cell:nth-child(7n) {
  border-right: 1px solid #E6E6E6;
}
.lesson__cal-cell--empty {
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .lesson__cal-cell {
    min-height: 72px;
    padding: 4px 2px;
    gap: 3px;
  }
}

.lesson__cal-date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #808080;
}
.lesson__cal-cell--sun .lesson__cal-date {
  color: #C99795;
}
.lesson__cal-cell--sat .lesson__cal-date {
  color: #6ba3c9;
}
@media screen and (max-width: 768px) {
  .lesson__cal-date {
    font-size: 11px;
    line-height: 1.2;
  }
}

.lesson__cal-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #d6ecf7;
  color: #292F36;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  padding: 6px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, opacity 0.3s;
  min-width: 0;
}
.lesson__cal-event:hover {
  background-color: #bfe0f0;
  opacity: 1;
}
.lesson__cal-event--holiday {
  display: block;
  background-color: #f2d3d1;
  color: #8a5a57;
  text-align: center;
  cursor: default;
}
.lesson__cal-event--holiday:hover {
  background-color: #f2d3d1;
}
@media screen and (max-width: 768px) {
  .lesson__cal-event {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    line-height: 1.2;
    padding: 3px 2px;
    border-radius: 2px;
  }
}

.lesson__cal-event-title {
  flex: 1;
  min-width: 0;
  width: 100%;
  text-align: center;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .lesson__cal-event-title {
    flex: none;
    width: 100%;
    text-align: center;
    transform: scale(0.85);
    transform-origin: center top;
  }
}

.lesson__cal-event-status {
  order: -1;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lesson__cal-event-status {
    font-size: 10px;
    line-height: 1;
  }
}

.lesson__calendar-modals {
  display: contents;
}

.lesson__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
}

.select-item {
  background-color: #F8F8F8;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .select-item {
    padding: 48px 0;
  }
}

.select-item__heading-wrap {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.select-item__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  align-self: stretch;
}

.select-item__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  .select-item__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.select-item__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
  display: block;
}

.select-item__sub-heading {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 38.55px;
  letter-spacing: 0.023em;
  color: #000;
  padding: 8px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .select-item__sub-heading {
    font-size: 22px;
  }
}

.select-item__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1120px;
  box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .select-item__list {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .select-item__list {
    gap: 16px;
  }
}

.select-item__item {
  width: 180px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .select-item__item {
    width: 100px;
  }
}

.select-item__link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  text-decoration: none;
  color: #000;
}
.select-item__link:hover {
  opacity: 0.8;
}

.select-item__img {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.select-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.select-item__link:hover .select-item__img img {
  transform: scale(1.03);
}

.select-item__name {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32.5px;
  letter-spacing: -0.05em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .select-item__name {
    font-size: 20px;
    line-height: 1.4;
  }
}

.select-item__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
  margin-top: 40px;
}

.access {
  background-color: #fff;
  padding: 80px 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .access {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  .access {
    padding: 48px 20px;
    gap: 28px;
  }
}

.access__heading-wrap {
  width: 100%;
  max-width: 1100px;
}

.access__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  align-self: stretch;
}

.access__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  .access__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.access__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
  display: block;
}

.access__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  max-width: 1080px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .access__inner {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}

.access__map {
  margin: 0;
  width: 600px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}
.access__map iframe {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 300px;
  display: block;
  border: 0;
}
@media screen and (max-width: 1024px) {
  .access__map {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .access__map {
    width: 100%;
  }
}

.access__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.access__shop-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #292F36;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access__shop-name {
    font-size: 30px;
  }
}

.access__shop-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #292F36;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .access__shop-text {
    font-size: 20px;
  }
}

.contact {
  background-color: #F8F8F8;
  padding: 160px 0 80px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 48px 0;
  }
}

.contact__heading-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 49px;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .contact__heading-wrap {
    margin-bottom: 32px;
  }
}

.contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  text-align: center;
}

.contact__heading-ja {
  display: block;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.contact__heading-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}

.contact__intro {
  display: block;
  max-width: 900px;
  margin: 0 auto 49px;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #292F36;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact__intro {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.contact__form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.contact__form-group {
  margin-bottom: 24px;
}

.contact__form-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #292F36;
  margin-bottom: 12px;
}

.contact__radio-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.contact__radio-item {
  padding: 0;
}

.contact__radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #292F36;
  cursor: pointer;
  padding: 6px 0;
}
.contact__radio-label input[type=radio] {
  display: none;
}

.contact__radio-custom {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #292F36;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.contact__radio-label input[type=radio]:checked + .contact__radio-custom::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #292F36;
}

.contact__input {
  width: 100%;
  height: 72px;
  padding: 0 16px;
  border: 1px solid #292F36;
  border-radius: 10px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #292F36;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__input::-moz-placeholder {
  color: #292F36;
  font-weight: 700;
  opacity: 0.3;
}
.contact__input::placeholder {
  color: #292F36;
  font-weight: 700;
  opacity: 0.3;
}
.contact__input:focus {
  outline: none;
  border-color: #C99795;
}
@media screen and (max-width: 768px) {
  .contact__input {
    height: 56px;
    font-size: 16px;
  }
}

.contact__textarea {
  width: 100%;
  height: 175px;
  padding: 16px;
  border: 1px solid #292F36;
  border-radius: 10px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #292F36;
  box-sizing: border-box;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__textarea::-moz-placeholder {
  color: #292F36;
  font-weight: 700;
  opacity: 0.3;
}
.contact__textarea::placeholder {
  color: #292F36;
  font-weight: 700;
  opacity: 0.3;
}
.contact__textarea:focus {
  outline: none;
  border-color: #C99795;
}

.contact__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
.contact__btn-wrap p,
.contact__btn-wrap .wpcf7-form-control-wrap {
  position: relative;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.contact__btn-wrap .wpcf7-form-control-wrap {
  width: auto;
}
.contact__btn-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(112px, -50%);
  margin: 0;
  width: 24px;
  height: 24px;
  visibility: hidden;
}
.contact__btn-wrap .wpcf7-spinner.is-active {
  visibility: visible;
}
.contact__btn-wrap .contact__submit-btn,
.contact__btn-wrap input.contact__submit-btn.wpcf7-submit,
.contact__btn-wrap input.wpcf7-submit,
.contact__btn-wrap input[type=submit],
.contact__btn-wrap button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 41px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background-color: #C99795;
  border: none;
  border-radius: 1440px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.094em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  transition: opacity 0.3s;
}
.contact__btn-wrap .contact__submit-btn:hover,
.contact__btn-wrap input.contact__submit-btn.wpcf7-submit:hover,
.contact__btn-wrap input.wpcf7-submit:hover,
.contact__btn-wrap input[type=submit]:hover,
.contact__btn-wrap button[type=submit]:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .contact__btn-wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.contact .contact__form .wpcf7-form .contact__btn-wrap p,
.contact .contact__form .wpcf7-form .contact__btn-wrap .wpcf7-form-control-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.contact__tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 47px;
  padding: 15px 65px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #292F36;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.contact__tel-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .contact__tel-btn {
    pointer-events: auto;
    margin-bottom: 32px;
    padding: 12px 40px;
    font-size: 22px;
  }
}

.contact__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 41px;
  background-color: #C99795;
  border: none;
  border-radius: 1440px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.094em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact__submit-btn:hover {
  opacity: 0.8;
}

.contact__confirm-text {
  padding: 10px 16px;
  background-color: #fff;
  border: 1px solid #292F36;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #292F36;
  height: 55px;
}
@media screen and (max-width: 768px) {
  .contact__confirm-text {
    font-size: 16px;
    padding: 8px 12px;
  }
}
.contact__confirm-text .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin: 0;
}
.contact__confirm-text input[type=hidden] {
  display: none;
}
.contact__confirm-text input:not([type=hidden]):not([type=submit]):not([type=button]),
.contact__confirm-text textarea,
.contact__confirm-text select,
.contact__confirm-text .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-previous) {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  pointer-events: none;
}
.contact__confirm-text input:not([type=hidden]):not([type=submit]):not([type=button]):focus,
.contact__confirm-text textarea:focus,
.contact__confirm-text select:focus,
.contact__confirm-text .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-previous):focus {
  outline: none;
  border: none;
}

.contact__confirm-long-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 175px;
  padding: 10px 16px;
  background-color: #fff;
  border: 1px solid #292F36;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #292F36;
  word-break: break-word;
  white-space: pre-wrap;
}
@media screen and (max-width: 768px) {
  .contact__confirm-long-text {
    font-size: 16px;
    padding: 8px 12px;
  }
}
.contact__confirm-long-text .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin: 0;
}
.contact__confirm-long-text textarea,
.contact__confirm-long-text input:not([type=hidden]):not([type=submit]):not([type=button]),
.contact__confirm-long-text select,
.contact__confirm-long-text .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-previous) {
  vertical-align: top;
  text-align: left;
  align-self: stretch;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  pointer-events: none;
}
.contact__confirm-long-text textarea:focus,
.contact__confirm-long-text input:not([type=hidden]):not([type=submit]):not([type=button]):focus,
.contact__confirm-long-text select:focus,
.contact__confirm-long-text .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-previous):focus {
  outline: none;
  border: none;
}

.contact-confirm-page .contact__form-group {
  margin-bottom: 20px;
}
.contact-confirm-page .contact__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
.contact-confirm-page .contact__btn-wrap p,
.contact-confirm-page .contact__btn-wrap .wpcf7-form-control-wrap {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.contact-confirm-page .contact__btn-wrap .wpcf7-form-control-wrap {
  width: auto;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page .contact__btn-wrap {
    flex-direction: column;
    gap: 16px;
  }
}
.contact-confirm-page .contact__back-btn,
.contact-confirm-page input.contact__back-btn.wpcf7-previous {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 41px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #C99795;
  border-radius: 1440px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.094em;
  color: #C99795;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  transition: opacity 0.3s;
}
.contact-confirm-page .contact__back-btn:hover,
.contact-confirm-page input.contact__back-btn.wpcf7-previous:hover {
  opacity: 0.8;
}
.contact-confirm-page .contact__submit-btn,
.contact-confirm-page input.contact__submit-btn.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 41px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #C99795;
  border: none;
  border-radius: 1440px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.094em;
  color: #fff;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  transition: opacity 0.3s;
}
.contact-confirm-page .contact__submit-btn:hover,
.contact-confirm-page input.contact__submit-btn.wpcf7-submit:hover {
  opacity: 0.8;
}

.contact-page .contact,
.contact-confirm-page .contact,
.contact-complete-page .contact {
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact,
.contact-confirm-page .contact,
.contact-complete-page .contact {
    padding: 40px 0 48px;
  }
}
.contact-page .contact__heading-wrap,
.contact-confirm-page .contact__heading-wrap,
.contact-complete-page .contact__heading-wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact__heading-wrap,
.contact-confirm-page .contact__heading-wrap,
.contact-complete-page .contact__heading-wrap {
    margin-bottom: 24px;
  }
}
.contact-page .contact__intro,
.contact-confirm-page .contact__intro,
.contact-complete-page .contact__intro {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact__intro,
.contact-confirm-page .contact__intro,
.contact-complete-page .contact__intro {
    margin-bottom: 32px;
  }
}

.footer {
  background-color: #343530;
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 12px;
  }
}

.about-hero {
  background-color: #F9EEE5;
  padding: 40px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 280px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .about-hero {
    padding: 32px 40px 48px;
    min-height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .about-hero {
    padding: 24px 20px 40px;
    min-height: 180px;
  }
}

.about-hero__bg-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 155px;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .about-hero__bg-text {
    font-size: 90px;
  }
}
@media screen and (max-width: 768px) {
  .about-hero__bg-text {
    font-size: 60px;
  }
}

.about-hero__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.75px;
  max-width: 967px;
}

.about-hero__catch-title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 9px 12px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 60px;
  letter-spacing: 0.019em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .about-hero__catch-title {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .about-hero__catch-title {
    font-size: 22px;
    line-height: 1.5;
    padding: 8px 10px;
  }
}

.about-hero__catch-sub {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 7.5px 11.25px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.065em;
  color: #666666;
}
@media screen and (max-width: 1024px) {
  .about-hero__catch-sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .about-hero__catch-sub {
    font-size: 16px;
  }
}

.about-overview {
  background-color: #F8F8F8;
  padding: 80px 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}
@media screen and (max-width: 1024px) {
  .about-overview {
    padding: 60px 40px;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .about-overview {
    padding: 48px 20px;
    gap: 24px;
  }
}

.about-overview__img-placeholder {
  width: 100%;
  background-color: #272323;
  padding: 123px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-overview__img-placeholder {
    padding: 60px 0;
  }
}

.about-overview__img-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 135px;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about-overview__img-label {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .about-overview__img-label {
    font-size: 40px;
  }
}

.about-overview__card {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1080px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .about-overview__card {
    flex-direction: column;
    gap: 20px;
  }
}

.about-overview__card-img {
  flex-shrink: 0;
  width: 600px;
  height: 400px;
  margin: 0;
  overflow: hidden;
}
.about-overview__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  .about-overview__card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}

.about-overview__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 27px 0;
}
@media screen and (max-width: 768px) {
  .about-overview__card-body {
    padding: 0;
    gap: 20px;
  }
}

.about-overview__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #292F36;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-overview__card-name {
    font-size: 35px;
  }
}

.about-overview__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.6;
  color: #292F36;
}

.service {
  padding: 150px 146px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .service {
    padding: 80px 40px 60px;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding: 60px 20px 48px;
  }
}

.service__heading-wrap {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.service__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  width: 100%;
}

.service__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .service__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.service__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}

.service__desc {
  max-width: 880px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  text-align: center;
}

.service__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1080px;
  min-height: 408px;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #F7F7F7;
}
@media screen and (max-width: 1024px) {
  .service__list {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .service__list {
    flex-direction: column;
    align-items: stretch;
  }
}

.service__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 24px;
  border: 4px solid #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .service__item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .service__item {
    flex: none;
    width: 100%;
  }
}

.service__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.service__item-img {
  width: 200px;
  height: 200px;
  margin: 0;
  overflow: hidden;
  background-color: #272323;
}
.service__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service__item-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #292F36;
  text-align: center;
}

.service__item-btn-wrap {
  width: 200px;
}

.service__item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 41px;
  padding: 0 20px 0 54px;
  background-color: #C99795;
  border-radius: 1440px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.094em;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.3s;
}
.service__item-btn:hover {
  opacity: 0.8;
}

.service__item-btn-icon {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.shop-info {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .shop-info {
    padding: 48px 0;
    gap: 32px;
  }
}

.shop-info__heading-wrap {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  box-sizing: border-box;
}

.shop-info__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.shop-info__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .shop-info__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.shop-info__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}

.shop-info__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1120px;
  padding: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .shop-info__row {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .shop-info__row--reverse {
    flex-direction: column-reverse;
  }
}

.shop-info__img {
  flex: 1;
  min-width: 280px;
  margin: 0;
  overflow: hidden;
  display: flex;
}
.shop-info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: #272323;
}
@media screen and (max-width: 768px) {
  .shop-info__img {
    width: 100%;
  }
  .shop-info__img img {
    height: auto;
    aspect-ratio: 4/3;
  }
}

.shop-info__body {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 20px;
  background-color: #f8f8f8;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .shop-info__body {
    padding: 24px 0;
  }
}

.shop-info__name {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 62.5px;
  letter-spacing: 0.05em;
  color: #121212;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .shop-info__name {
    font-size: 22px;
    line-height: 1.5;
  }
}

.shop-info__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.071em;
  color: #121212;
  padding-top: 10px;
  margin: 0;
}

.shop-info__info-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.071em;
  color: #121212;
  padding-top: 25px;
  margin: 0;
}

.shop-info__list {
  list-style: none;
  padding: 10px;
  margin: 0;
}

.shop-info__list-item {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.083em;
  color: #121212;
  padding-left: 1.2em;
  position: relative;
}
.shop-info__list-item::before {
  content: "-";
  position: absolute;
  left: 0;
}

.payment {
  padding: 150px 146px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .payment {
    padding: 80px 40px 60px;
  }
}
@media screen and (max-width: 768px) {
  .payment {
    padding: 60px 20px 48px;
    gap: 28px;
  }
}

.payment__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  width: 100%;
}

.payment__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.payment__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .payment__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.payment__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}

.payment__desc {
  max-width: 880px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  text-align: center;
}

.payment__logo {
  margin: 0;
  max-width: 866px;
  width: 100%;
}
.payment__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.staff {
  padding: 65px 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .staff {
    padding: 48px 40px;
  }
}
@media screen and (max-width: 768px) {
  .staff {
    padding: 48px 20px;
    gap: 32px;
  }
}

.staff__heading-wrap {
  width: 100%;
  max-width: 800px;
}

.staff__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.staff__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.018em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .staff__heading-ja {
    font-size: 28px;
    line-height: 1.4;
  }
}

.staff__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}

.staff__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1080px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .staff__list {
    flex-direction: column;
    align-items: center;
  }
}

.staff__item {
  flex: 1;
  max-width: 520px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .staff__item {
    max-width: 100%;
    width: 100%;
  }
}

.staff__img {
  width: 300px;
  height: 300px;
  margin: 0 0 5px;
  overflow: hidden;
  background-color: #272323;
}
.staff__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .staff__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.staff__role {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: rgba(18, 18, 18, 0.75);
  padding-top: 11px;
  margin: 0;
}

.staff__name {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 32.5px;
  letter-spacing: 0.03em;
  color: rgba(18, 18, 18, 0.75);
  margin: 0;
}

.staff__bio {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.05em;
  color: rgba(18, 18, 18, 0.75);
  text-align: left;
  padding-top: 15px;
  margin: 0;
}

.staff__recruit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1120px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .staff__recruit {
    flex-direction: column;
    align-items: center;
  }
}

.staff__recruit-img {
  flex-shrink: 0;
  width: 400px;
  margin: 0;
}
.staff__recruit-img img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #272323;
  aspect-ratio: 400/415;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .staff__recruit-img {
    width: 100%;
    max-width: 400px;
  }
}

.staff__recruit-body {
  flex: 1;
  min-width: 280px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 166px;
}
@media screen and (max-width: 1024px) {
  .staff__recruit-body {
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .staff__recruit-body {
    padding-top: 0;
    max-width: 100%;
  }
}

.staff__recruit-catch {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.staff__recruit-catch-line {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #C99795;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 49.8px;
  padding: 3px 20px;
}
@media screen and (max-width: 768px) {
  .staff__recruit-catch-line {
    font-size: 22px;
    line-height: 1.5;
  }
}

.staff__recruit-text {
  background-color: #fff;
  padding: 19px 30px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32.38px;
  color: #555555;
  max-width: 508px;
}

.adult-page .about-hero,
.child-page .about-hero,
.bakery-page .about-hero,
.studio-page .about-hero {
  position: relative;
  min-height: 620px;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .adult-page .about-hero,
.child-page .about-hero,
.bakery-page .about-hero,
.studio-page .about-hero {
    min-height: 460px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .about-hero,
.child-page .about-hero,
.bakery-page .about-hero,
.studio-page .about-hero {
    min-height: 480px;
    background-position: center top;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .about-hero,
.child-page .about-hero,
.bakery-page .about-hero,
.studio-page .about-hero {
    min-height: 420px;
  }
}
.adult-page .about-hero__catch,
.child-page .about-hero__catch,
.bakery-page .about-hero__catch,
.studio-page .about-hero__catch {
  position: absolute;
  top: 67%;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  padding: 0 100px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .adult-page .about-hero__catch,
.child-page .about-hero__catch,
.bakery-page .about-hero__catch,
.studio-page .about-hero__catch {
    padding: 0 40px 22px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .about-hero__catch,
.child-page .about-hero__catch,
.bakery-page .about-hero__catch,
.studio-page .about-hero__catch {
    top: auto;
    bottom: 0;
    padding: 0 20px 24px;
    gap: 8px;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .about-hero__catch,
.child-page .about-hero__catch,
.bakery-page .about-hero__catch,
.studio-page .about-hero__catch {
    padding: 0 16px 20px;
    gap: 6px;
  }
}
.adult-page .about-hero__catch-title,
.child-page .about-hero__catch-title,
.bakery-page .about-hero__catch-title,
.studio-page .about-hero__catch-title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background-color: #fff;
  padding: 9px 12px 8.25px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0.0187em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .adult-page .about-hero__catch-title,
.child-page .about-hero__catch-title,
.bakery-page .about-hero__catch-title,
.studio-page .about-hero__catch-title {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .about-hero__catch-title,
.child-page .about-hero__catch-title,
.bakery-page .about-hero__catch-title,
.studio-page .about-hero__catch-title {
    font-size: 20px;
    line-height: 1.5;
    padding: 8px 10px;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .about-hero__catch-title,
.child-page .about-hero__catch-title,
.bakery-page .about-hero__catch-title,
.studio-page .about-hero__catch-title {
    font-size: 18px;
    line-height: 1.45;
    padding: 6px 8px;
  }
}
.adult-page .about-hero__catch-sub,
.child-page .about-hero__catch-sub,
.bakery-page .about-hero__catch-sub,
.studio-page .about-hero__catch-sub {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background-color: #fff;
  padding: 7.5px 11.25px 6.75px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.065em;
  color: #666666;
}
@media screen and (max-width: 1024px) {
  .adult-page .about-hero__catch-sub,
.child-page .about-hero__catch-sub,
.bakery-page .about-hero__catch-sub,
.studio-page .about-hero__catch-sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .about-hero__catch-sub,
.child-page .about-hero__catch-sub,
.bakery-page .about-hero__catch-sub,
.studio-page .about-hero__catch-sub {
    font-size: 15px;
    line-height: 1.5;
    padding: 6px 10px;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .about-hero__catch-sub,
.child-page .about-hero__catch-sub,
.bakery-page .about-hero__catch-sub,
.studio-page .about-hero__catch-sub {
    font-size: 13px;
    line-height: 1.45;
    padding: 5px 8px;
  }
}
.adult-page .lesson-intro,
.child-page .lesson-intro,
.bakery-page .lesson-intro,
.studio-page .lesson-intro {
  padding: 80px 0;
  background-color: #fff;
}
.adult-page .lesson-intro__inner,
.child-page .lesson-intro__inner,
.bakery-page .lesson-intro__inner,
.studio-page .lesson-intro__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 20px;
  box-sizing: border-box;
}
.adult-page .lesson-intro__body,
.child-page .lesson-intro__body,
.bakery-page .lesson-intro__body,
.studio-page .lesson-intro__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.adult-page .lesson-intro__heading,
.child-page .lesson-intro__heading,
.bakery-page .lesson-intro__heading,
.studio-page .lesson-intro__heading {
  text-align: center;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
.adult-page .lesson-intro__text,
.child-page .lesson-intro__text,
.bakery-page .lesson-intro__text,
.studio-page .lesson-intro__text {
  text-align: center;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-intro__text,
.child-page .lesson-intro__text,
.bakery-page .lesson-intro__text,
.studio-page .lesson-intro__text {
    text-align: left;
    line-height: 1.9;
  }
}
.adult-page .lesson-intro__imgs,
.child-page .lesson-intro__imgs,
.bakery-page .lesson-intro__imgs,
.studio-page .lesson-intro__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 57px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .adult-page .lesson-intro__imgs,
.child-page .lesson-intro__imgs,
.bakery-page .lesson-intro__imgs,
.studio-page .lesson-intro__imgs {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-intro__imgs,
.child-page .lesson-intro__imgs,
.bakery-page .lesson-intro__imgs,
.studio-page .lesson-intro__imgs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.adult-page .lesson-intro__img,
.child-page .lesson-intro__img,
.bakery-page .lesson-intro__img,
.studio-page .lesson-intro__img {
  margin: 0;
  aspect-ratio: 344.98/235.03;
  overflow: hidden;
}
.adult-page .lesson-intro__img img,
.child-page .lesson-intro__img img,
.bakery-page .lesson-intro__img img,
.studio-page .lesson-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.adult-page .shop-info,
.child-page .shop-info,
.bakery-page .shop-info,
.studio-page .shop-info {
  padding: 80px 0;
  gap: 50px;
}
.adult-page .shop-info__heading-wrap,
.child-page .shop-info__heading-wrap,
.bakery-page .shop-info__heading-wrap,
.studio-page .shop-info__heading-wrap {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  box-sizing: border-box;
}
.adult-page .shop-info__row,
.child-page .shop-info__row,
.bakery-page .shop-info__row,
.studio-page .shop-info__row {
  max-width: 1120px;
  width: calc(100% - 40px);
}
.adult-page .shop-info__name,
.child-page .shop-info__name,
.bakery-page .shop-info__name,
.studio-page .shop-info__name {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 25px;
  line-height: 62.5px;
  letter-spacing: 0.05em;
  color: #121212;
}
.adult-page .shop-info__text,
.adult-page .shop-info__info-label,
.adult-page .shop-info__list-item,
.child-page .shop-info__text,
.child-page .shop-info__info-label,
.child-page .shop-info__list-item,
.bakery-page .shop-info__text,
.bakery-page .shop-info__info-label,
.bakery-page .shop-info__list-item,
.studio-page .shop-info__text,
.studio-page .shop-info__info-label,
.studio-page .shop-info__list-item {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  color: #121212;
}
.adult-page .shop-info__text,
.adult-page .shop-info__info-label,
.child-page .shop-info__text,
.child-page .shop-info__info-label,
.bakery-page .shop-info__text,
.bakery-page .shop-info__info-label,
.studio-page .shop-info__text,
.studio-page .shop-info__info-label {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.071em;
}
.adult-page .shop-info__list,
.child-page .shop-info__list,
.bakery-page .shop-info__list,
.studio-page .shop-info__list {
  padding: 10px;
}
.adult-page .shop-info__list-item,
.child-page .shop-info__list-item,
.bakery-page .shop-info__list-item,
.studio-page .shop-info__list-item {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.083em;
  padding-left: 1.2em;
}
.adult-page .shop-info__flow,
.child-page .shop-info__flow,
.bakery-page .shop-info__flow,
.studio-page .shop-info__flow {
  list-style: none;
  padding: 10px 10px 0;
  margin: 0;
}
.adult-page .shop-info__flow-item,
.child-page .shop-info__flow-item,
.bakery-page .shop-info__flow-item,
.studio-page .shop-info__flow-item {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.083em;
  color: #121212;
}
.adult-page .shop-info__flow-item:not(:last-child)::after,
.child-page .shop-info__flow-item:not(:last-child)::after,
.bakery-page .shop-info__flow-item:not(:last-child)::after,
.studio-page .shop-info__flow-item:not(:last-child)::after {
  content: "↓";
  display: block;
  margin-left: 2px;
}
.adult-page .lesson-list,
.child-page .lesson-list,
.bakery-page .lesson-list,
.studio-page .lesson-list {
  background-color: #fff;
  padding: 80px 129px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
}
@media screen and (max-width: 1024px) {
  .adult-page .lesson-list,
.child-page .lesson-list,
.bakery-page .lesson-list,
.studio-page .lesson-list {
    padding: 60px 30px;
    gap: 40px;
  }
}
.adult-page .lesson-list__heading-wrap,
.child-page .lesson-list__heading-wrap,
.bakery-page .lesson-list__heading-wrap,
.studio-page .lesson-list__heading-wrap {
  width: 100%;
  max-width: 1080px;
}
.adult-page .lesson-list__heading,
.child-page .lesson-list__heading,
.bakery-page .lesson-list__heading,
.studio-page .lesson-list__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}
.adult-page .lesson-list__heading-ja,
.child-page .lesson-list__heading-ja,
.bakery-page .lesson-list__heading-ja,
.studio-page .lesson-list__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
.adult-page .lesson-list__heading-en,
.child-page .lesson-list__heading-en,
.bakery-page .lesson-list__heading-en,
.studio-page .lesson-list__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}
.adult-page .lesson-list__cards,
.child-page .lesson-list__cards,
.bakery-page .lesson-list__cards,
.studio-page .lesson-list__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-list__cards,
.child-page .lesson-list__cards,
.bakery-page .lesson-list__cards,
.studio-page .lesson-list__cards {
    grid-template-columns: 1fr;
  }
}
.adult-page .lesson-list__card,
.child-page .lesson-list__card,
.bakery-page .lesson-list__card,
.studio-page .lesson-list__card {
  background-color: #fff;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 40px 23px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}
.adult-page .lesson-list__card-img,
.child-page .lesson-list__card-img,
.bakery-page .lesson-list__card-img,
.studio-page .lesson-list__card-img {
  margin: 0;
  aspect-ratio: 334/220;
  background: #272323;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adult-page .lesson-list__card-img img,
.child-page .lesson-list__card-img img,
.bakery-page .lesson-list__card-img img,
.studio-page .lesson-list__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.adult-page .lesson-list__card-body,
.child-page .lesson-list__card-body,
.bakery-page .lesson-list__card-body,
.studio-page .lesson-list__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.adult-page .lesson-list__card-tag,
.child-page .lesson-list__card-tag,
.bakery-page .lesson-list__card-tag,
.studio-page .lesson-list__card-tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 16px;
  background-color: #f6d99e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
}
.adult-page .lesson-list__card-title,
.child-page .lesson-list__card-title,
.bakery-page .lesson-list__card-title,
.studio-page .lesson-list__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
}
.adult-page .lesson-list__card-desc,
.child-page .lesson-list__card-desc,
.bakery-page .lesson-list__card-desc,
.studio-page .lesson-list__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-list__card-desc,
.child-page .lesson-list__card-desc,
.bakery-page .lesson-list__card-desc,
.studio-page .lesson-list__card-desc {
    font-size: 20px;
  }
}
.adult-page .lesson-list__card-btn-wrap,
.child-page .lesson-list__card-btn-wrap,
.bakery-page .lesson-list__card-btn-wrap,
.studio-page .lesson-list__card-btn-wrap {
  display: flex;
  justify-content: center;
}
.adult-page .lesson-list__card .btn-view-more,
.child-page .lesson-list__card .btn-view-more,
.bakery-page .lesson-list__card .btn-view-more,
.studio-page .lesson-list__card .btn-view-more {
  width: 200px;
  height: 48px;
  padding: 0 20px;
  border-radius: 36px;
  font-size: 20px;
  line-height: 20px;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.5);
}
.adult-page .reviews,
.child-page .reviews,
.bakery-page .reviews,
.studio-page .reviews {
  background-color: #F8F8F8;
  padding: 150px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 86px;
}
@media screen and (max-width: 1024px) {
  .adult-page .reviews,
.child-page .reviews,
.bakery-page .reviews,
.studio-page .reviews {
    padding-top: 80px;
    gap: 40px;
  }
}
.adult-page .reviews__heading-wrap,
.adult-page .reviews__list,
.child-page .reviews__heading-wrap,
.child-page .reviews__list,
.bakery-page .reviews__heading-wrap,
.bakery-page .reviews__list,
.studio-page .reviews__heading-wrap,
.studio-page .reviews__list {
  width: 100%;
  max-width: 1120px;
}
.adult-page .reviews__heading,
.child-page .reviews__heading,
.bakery-page .reviews__heading,
.studio-page .reviews__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}
.adult-page .reviews__heading-ja,
.child-page .reviews__heading-ja,
.bakery-page .reviews__heading-ja,
.studio-page .reviews__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
.adult-page .reviews__heading-en,
.child-page .reviews__heading-en,
.bakery-page .reviews__heading-en,
.studio-page .reviews__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}
.adult-page .reviews__list,
.child-page .reviews__list,
.bakery-page .reviews__list,
.studio-page .reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .adult-page .reviews__list,
.child-page .reviews__list,
.bakery-page .reviews__list,
.studio-page .reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .adult-page .reviews__list,
.child-page .reviews__list,
.bakery-page .reviews__list,
.studio-page .reviews__list {
    grid-template-columns: 1fr;
  }
}
.adult-page .reviews__item,
.child-page .reviews__item,
.bakery-page .reviews__item,
.studio-page .reviews__item {
  background: #fff;
  min-height: 521px;
}
.adult-page .reviews__item-img,
.child-page .reviews__item-img,
.bakery-page .reviews__item-img,
.studio-page .reviews__item-img {
  margin: 0;
  aspect-ratio: 16/9;
  background: #272323;
  overflow: hidden;
}
.adult-page .reviews__item-img img,
.child-page .reviews__item-img img,
.bakery-page .reviews__item-img img,
.studio-page .reviews__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.adult-page .reviews__item-body,
.child-page .reviews__item-body,
.bakery-page .reviews__item-body,
.studio-page .reviews__item-body {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.adult-page .reviews__item-quote,
.child-page .reviews__item-quote,
.bakery-page .reviews__item-quote,
.studio-page .reviews__item-quote {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
}
.adult-page .reviews__item-name,
.child-page .reviews__item-name,
.bakery-page .reviews__item-name,
.studio-page .reviews__item-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.adult-page .reviews__item-text,
.child-page .reviews__item-text,
.bakery-page .reviews__item-text,
.studio-page .reviews__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #000;
}
.adult-page .instructor,
.child-page .instructor,
.bakery-page .instructor,
.studio-page .instructor {
  background-color: #F8F8F8;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}
.adult-page .instructor__heading-wrap,
.adult-page .instructor__desc,
.adult-page .instructor__list,
.child-page .instructor__heading-wrap,
.child-page .instructor__desc,
.child-page .instructor__list,
.bakery-page .instructor__heading-wrap,
.bakery-page .instructor__desc,
.bakery-page .instructor__list,
.studio-page .instructor__heading-wrap,
.studio-page .instructor__desc,
.studio-page .instructor__list {
  width: 100%;
  max-width: 1080px;
}
.adult-page .instructor__heading,
.child-page .instructor__heading,
.bakery-page .instructor__heading,
.studio-page .instructor__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}
.adult-page .instructor__heading-ja,
.child-page .instructor__heading-ja,
.bakery-page .instructor__heading-ja,
.studio-page .instructor__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
.adult-page .instructor__heading-en,
.child-page .instructor__heading-en,
.bakery-page .instructor__heading-en,
.studio-page .instructor__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}
.adult-page .instructor__desc,
.child-page .instructor__desc,
.bakery-page .instructor__desc,
.studio-page .instructor__desc {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #292F36;
}
.adult-page .instructor__list,
.child-page .instructor__list,
.bakery-page .instructor__list,
.studio-page .instructor__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .adult-page .instructor__list,
.child-page .instructor__list,
.bakery-page .instructor__list,
.studio-page .instructor__list {
    grid-template-columns: 1fr;
  }
}
.adult-page .instructor__item,
.child-page .instructor__item,
.bakery-page .instructor__item,
.studio-page .instructor__item {
  text-align: center;
}
.adult-page .instructor__img,
.child-page .instructor__img,
.bakery-page .instructor__img,
.studio-page .instructor__img {
  margin: 0 0 10px;
  background: #c4c4c4;
  min-height: 422px;
  overflow: hidden;
}
.adult-page .instructor__img img,
.child-page .instructor__img img,
.bakery-page .instructor__img img,
.studio-page .instructor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.adult-page .instructor__name,
.child-page .instructor__name,
.bakery-page .instructor__name,
.studio-page .instructor__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 50px;
  letter-spacing: 0.1em;
  color: #000;
}
.adult-page .lesson,
.child-page .lesson,
.bakery-page .lesson,
.studio-page .lesson {
  background-color: #F8F8F8;
  padding: 80px 208px;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .adult-page .lesson,
.child-page .lesson,
.bakery-page .lesson,
.studio-page .lesson {
    padding: 60px 40px;
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .lesson,
.child-page .lesson,
.bakery-page .lesson,
.studio-page .lesson {
    padding: 48px 20px;
    gap: 32px;
  }
}
.adult-page .lesson__intro,
.child-page .lesson__intro,
.bakery-page .lesson__intro,
.studio-page .lesson__intro {
  max-width: 1080px;
}
.adult-page .lesson__calendar,
.child-page .lesson__calendar,
.bakery-page .lesson__calendar,
.studio-page .lesson__calendar {
  max-width: 1080px;
}
.adult-page .flow,
.child-page .flow,
.bakery-page .flow,
.studio-page .flow {
  background-color: #fff;
  padding: 80px 127px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .adult-page .flow,
.child-page .flow,
.bakery-page .flow,
.studio-page .flow {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .flow,
.child-page .flow,
.bakery-page .flow,
.studio-page .flow {
    padding: 48px 20px;
    gap: 40px;
  }
}
.adult-page .flow__heading-wrap,
.child-page .flow__heading-wrap,
.bakery-page .flow__heading-wrap,
.studio-page .flow__heading-wrap {
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
}
.adult-page .flow__heading,
.child-page .flow__heading,
.bakery-page .flow__heading,
.studio-page .flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}
.adult-page .flow__heading-ja,
.child-page .flow__heading-ja,
.bakery-page .flow__heading-ja,
.studio-page .flow__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
.adult-page .flow__heading-en,
.child-page .flow__heading-en,
.bakery-page .flow__heading-en,
.studio-page .flow__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}
.adult-page .flow__desc,
.child-page .flow__desc,
.bakery-page .flow__desc,
.studio-page .flow__desc {
  max-width: 756px;
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}
.adult-page .flow__steps,
.child-page .flow__steps,
.bakery-page .flow__steps,
.studio-page .flow__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 17px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .adult-page .flow__steps,
.child-page .flow__steps,
.bakery-page .flow__steps,
.studio-page .flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.adult-page .flow__step,
.child-page .flow__step,
.bakery-page .flow__step,
.studio-page .flow__step {
  width: 250px;
  min-height: 100%;
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adult-page .flow__step,
.child-page .flow__step,
.bakery-page .flow__step,
.studio-page .flow__step {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 0 0 24px;
  }
}
.adult-page .flow__step-num,
.child-page .flow__step-num,
.bakery-page .flow__step-num,
.studio-page .flow__step-num {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-color: #F8F8F8;
  display: grid;
  place-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: #292F36;
}
.adult-page .flow__step-body,
.child-page .flow__step-body,
.bakery-page .flow__step-body,
.studio-page .flow__step-body {
  width: 100%;
  flex: 1;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adult-page .flow__step-body,
.child-page .flow__step-body,
.bakery-page .flow__step-body,
.studio-page .flow__step-body {
    align-items: flex-start;
    padding: 0 20px;
    gap: 12px;
  }
}
.adult-page .flow__step-title,
.child-page .flow__step-title,
.bakery-page .flow__step-title,
.studio-page .flow__step-title {
  width: 200px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26.25px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .adult-page .flow__step-title,
.child-page .flow__step-title,
.bakery-page .flow__step-title,
.studio-page .flow__step-title {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
  }
}
.adult-page .flow__step-text,
.child-page .flow__step-text,
.bakery-page .flow__step-text,
.studio-page .flow__step-text {
  width: 200px;
  margin: 0;
  margin-top: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26.25px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .adult-page .flow__step-text,
.child-page .flow__step-text,
.bakery-page .flow__step-text,
.studio-page .flow__step-text {
    width: 100%;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.6;
  }
}
.adult-page .flow__arrow,
.child-page .flow__arrow,
.bakery-page .flow__arrow,
.studio-page .flow__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 28px;
  height: 39px;
  background-color: #ff6b6b;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 768px) {
  .adult-page .flow__arrow,
.child-page .flow__arrow,
.bakery-page .flow__arrow,
.studio-page .flow__arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: 12px auto;
  }
}
.adult-page .lesson-cta,
.child-page .lesson-cta,
.bakery-page .lesson-cta,
.studio-page .lesson-cta {
  background-color: #F8F8F8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 283px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .adult-page .lesson-cta,
.child-page .lesson-cta,
.bakery-page .lesson-cta,
.studio-page .lesson-cta {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta,
.child-page .lesson-cta,
.bakery-page .lesson-cta,
.studio-page .lesson-cta {
    padding: 40px 16px;
    gap: 28px;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .lesson-cta,
.child-page .lesson-cta,
.bakery-page .lesson-cta,
.studio-page .lesson-cta {
    padding: 32px 12px;
    gap: 24px;
  }
}
.adult-page .lesson-cta__heading,
.child-page .lesson-cta__heading,
.bakery-page .lesson-cta__heading,
.studio-page .lesson-cta__heading {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta__heading,
.child-page .lesson-cta__heading,
.bakery-page .lesson-cta__heading,
.studio-page .lesson-cta__heading {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .lesson-cta__heading,
.child-page .lesson-cta__heading,
.bakery-page .lesson-cta__heading,
.studio-page .lesson-cta__heading {
    font-size: 22px;
  }
}
.adult-page .lesson-cta__text,
.child-page .lesson-cta__text,
.bakery-page .lesson-cta__text,
.studio-page .lesson-cta__text {
  max-width: 590px;
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta__text,
.child-page .lesson-cta__text,
.bakery-page .lesson-cta__text,
.studio-page .lesson-cta__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .lesson-cta__text,
.child-page .lesson-cta__text,
.bakery-page .lesson-cta__text,
.studio-page .lesson-cta__text {
    font-size: 15px;
  }
}
.adult-page .lesson-cta__inner,
.child-page .lesson-cta__inner,
.bakery-page .lesson-cta__inner,
.studio-page .lesson-cta__inner {
  width: 100%;
  max-width: 1080px;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta__inner,
.child-page .lesson-cta__inner,
.bakery-page .lesson-cta__inner,
.studio-page .lesson-cta__inner {
    min-height: auto;
    max-width: 100%;
    gap: 8px;
  }
}
.adult-page .lesson-cta__catch,
.child-page .lesson-cta__catch,
.bakery-page .lesson-cta__catch,
.studio-page .lesson-cta__catch {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta__catch,
.child-page .lesson-cta__catch,
.bakery-page .lesson-cta__catch,
.studio-page .lesson-cta__catch {
    font-size: 16px;
    white-space: normal;
    word-break: break-word;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .lesson-cta__catch,
.child-page .lesson-cta__catch,
.bakery-page .lesson-cta__catch,
.studio-page .lesson-cta__catch {
    font-size: 14px;
  }
}
.adult-page .lesson-cta__note,
.child-page .lesson-cta__note,
.bakery-page .lesson-cta__note,
.studio-page .lesson-cta__note {
  margin: 0;
  margin-top: auto;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta__note,
.child-page .lesson-cta__note,
.bakery-page .lesson-cta__note,
.studio-page .lesson-cta__note {
    margin-top: 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .lesson-cta__note,
.child-page .lesson-cta__note,
.bakery-page .lesson-cta__note,
.studio-page .lesson-cta__note {
    font-size: 13px;
  }
}
.adult-page .lesson-cta__btn-wrap,
.child-page .lesson-cta__btn-wrap,
.bakery-page .lesson-cta__btn-wrap,
.studio-page .lesson-cta__btn-wrap {
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta__btn-wrap,
.child-page .lesson-cta__btn-wrap,
.bakery-page .lesson-cta__btn-wrap,
.studio-page .lesson-cta__btn-wrap {
    padding: 0;
  }
}
.adult-page .lesson-cta .btn-view-more,
.child-page .lesson-cta .btn-view-more,
.bakery-page .lesson-cta .btn-view-more,
.studio-page .lesson-cta .btn-view-more {
  width: 180px;
  height: 48px;
  padding: 0 14px;
  border-radius: 36px;
  font-size: 20px;
  line-height: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-cta .btn-view-more,
.child-page .lesson-cta .btn-view-more,
.bakery-page .lesson-cta .btn-view-more,
.studio-page .lesson-cta .btn-view-more {
    width: 200px;
    max-width: 200px;
    height: auto;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .adult-page .lesson-cta .btn-view-more,
.child-page .lesson-cta .btn-view-more,
.bakery-page .lesson-cta .btn-view-more,
.studio-page .lesson-cta .btn-view-more {
    width: 180px;
    max-width: 180px;
    font-size: 15px;
    padding: 12px 14px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .lesson-intro,
.adult-page .shop-info,
.adult-page .lesson-list,
.adult-page .instructor,
.adult-page .lesson,
.adult-page .flow,
.adult-page .lesson-cta,
.adult-page .bakery-items,
.child-page .lesson-intro,
.child-page .shop-info,
.child-page .lesson-list,
.child-page .instructor,
.child-page .lesson,
.child-page .flow,
.child-page .lesson-cta,
.child-page .bakery-items,
.bakery-page .lesson-intro,
.bakery-page .shop-info,
.bakery-page .lesson-list,
.bakery-page .instructor,
.bakery-page .lesson,
.bakery-page .flow,
.bakery-page .lesson-cta,
.bakery-page .bakery-items,
.studio-page .lesson-intro,
.studio-page .shop-info,
.studio-page .lesson-list,
.studio-page .instructor,
.studio-page .lesson,
.studio-page .flow,
.studio-page .lesson-cta,
.studio-page .bakery-items {
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .reviews,
.child-page .reviews,
.bakery-page .reviews,
.studio-page .reviews {
    padding: 40px 20px;
  }
}

.adult-page .about-hero {
  background-image: url("../images/adult-hero-bg.jpg");
}
.adult-page .reviews__heading-wrap,
.adult-page .reviews__list {
  max-width: 1200px;
}
.adult-page .reviews__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .adult-page .reviews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .adult-page .reviews__list {
    grid-template-columns: 1fr;
  }
}
.adult-page .reviews__item {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}
.adult-page .reviews__item-body {
  padding: 0;
  gap: 12px;
}
.adult-page .reviews__item-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
.adult-page .reviews__item-img {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
}
.adult-page .reviews__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.adult-page .reviews__item-name {
  margin: 0;
  font-size: 22px;
}

.child-page .about-hero {
  background-image: url("../images/child-hero-bg.jpg");
}
.child-page .reviews__heading-wrap,
.child-page .reviews__list {
  max-width: 1200px;
}
.child-page .reviews__list {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .child-page .reviews__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .child-page .reviews__list {
    grid-template-columns: 1fr;
  }
}
.child-page .reviews__item {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}
.child-page .reviews__item-body {
  padding: 0;
  gap: 12px;
}
.child-page .reviews__item-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
.child-page .reviews__item-img {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
}
.child-page .reviews__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.child-page .reviews__item-name {
  margin: 0;
  font-size: 22px;
}
.child-page .lesson-intro + .lesson-intro {
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .child-page .lesson-intro + .lesson-intro {
    padding: 40px 0 0;
  }
}
.child-page .shop-info__name {
  line-height: 1.5;
}
.child-page .shop-info__row:nth-child(2) .shop-info__name {
  line-height: 62.5px;
}

.studio-page .about-hero {
  background-image: url("../images/studio-hero-bg.jpg");
}
.studio-page .shop-info__btn-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.studio-page .shop-info__img:has(.shop-info__img-caption) {
  flex-direction: column;
  overflow: visible;
}
.studio-page .shop-info__img:has(.shop-info__img-caption) img {
  height: auto;
  flex: none;
}
.studio-page .shop-info__img-caption {
  width: 100%;
  margin: 8px 0 0;
  padding: 0;
  text-align: right;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.0714em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .studio-page .shop-info__img-caption {
    margin-top: 6px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }
}
.studio-page .shop-info__btn-wrap .btn-view-more {
  width: 280px;
  height: 48px;
  border-radius: 36px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  line-height: 20px;
  margin: 0 auto;
}
.studio-page .lesson-cta__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .studio-page .lesson-cta__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .studio-page .lesson-cta__heading {
    font-size: 20px;
  }
}

.bakery-page .about-hero {
  background-image: url("../images/bakery-hero-bg.jpg");
}
.bakery-page .bakery-items {
  padding: 80px 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .bakery-page .bakery-items {
    padding: 60px 40px;
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items {
    padding: 48px 20px;
    gap: 32px;
  }
}
.bakery-page .bakery-items__heading-wrap {
  width: 100%;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.bakery-page .bakery-items__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}
.bakery-page .bakery-items__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
.bakery-page .bakery-items__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}
.bakery-page .bakery-items__desc {
  text-align: center;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__desc {
    text-align: left;
  }
}
.bakery-page .bakery-items__list {
  list-style: none;
  width: 100%;
  max-width: 1060px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 22px;
}
@media screen and (max-width: 1024px) {
  .bakery-page .bakery-items__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.bakery-page .bakery-items__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bakery-page .bakery-items__item-img {
  margin: 0;
  height: 338px;
  overflow: hidden;
}
.bakery-page .bakery-items__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__item-img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.bakery-page .bakery-items__item-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.bakery-page .bakery-items__item-name {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 26.25px;
  letter-spacing: 0.0433em;
  color: #000;
}
.bakery-page .bakery-items__item-desc {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 25.5px;
  letter-spacing: 0.0542em;
  color: #000;
}
.bakery-page .bakery-items__purchase {
  width: 100%;
  max-width: 1080px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .bakery-page .bakery-items__purchase {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__purchase {
    flex-direction: column;
  }
}
.bakery-page .bakery-items__purchase-body {
  width: 100%;
  max-width: 592px;
  display: flex;
  flex-direction: column;
}
.bakery-page .bakery-items__purchase-title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .bakery-page .bakery-items__purchase-title {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__purchase-title {
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
  }
}
.bakery-page .bakery-items__purchase-text {
  margin-top: 37px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}
.bakery-page .bakery-items__purchase .btn-view-more {
  margin-top: 24px;
  width: 280px;
  height: 48px;
  padding: 0 20px;
  border-radius: 36px;
  font-size: 20px;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__purchase .btn-view-more {
    margin: 24px auto 0;
  }
}
.bakery-page .bakery-items__payment-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__payment-logos {
    width: 100%;
    justify-content: center;
  }
}
.bakery-page .bakery-items__payment-logo {
  margin: 0;
  width: 191px;
  height: 331px;
  overflow: hidden;
}
.bakery-page .bakery-items__payment-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .bakery-page .bakery-items__payment-logo {
    width: 45%;
    max-width: 191px;
    height: auto;
    aspect-ratio: 191/331;
  }
}
.bakery-page .shop-info__name {
  line-height: 62.5px;
}
.bakery-page .shop-info__text {
  letter-spacing: 0.0714em;
}

@media screen and (max-width: 1024px) {
  .index-page .concept__heading {
    font-size: 42px;
  }
  .index-page .concept__text,
.index-page .concept__info-item,
.index-page .shop-info__text,
.index-page .shop-info__info-label,
.index-page .shop-info__list-item,
.index-page .shop-info__flow-item,
.index-page .lesson-intro__text,
.index-page .flow__desc,
.index-page .flow__step-text,
.index-page .service__desc,
.index-page .payment__desc,
.index-page .staff__role,
.index-page .staff__bio,
.index-page .staff__recruit-text,
.index-page .reviews__item-name,
.index-page .reviews__item-text,
.index-page .bakery-items__desc,
.index-page .bakery-items__item-name,
.index-page .bakery-items__item-desc,
.index-page .bakery-items__purchase-text,
.index-page .lesson-cta__text,
.index-page .lesson-cta__catch {
    font-size: 18px;
    line-height: 1.6;
  }
  .index-page .lesson__heading-ja,
.index-page .contact__heading-ja,
.index-page .select-item__heading-ja,
.index-page .access__heading-ja,
.index-page .lesson__calendar-month,
.index-page .shop-info__heading-ja,
.index-page .flow__heading-ja,
.index-page .lesson-intro__heading,
.index-page .lesson-list__heading-ja,
.index-page .reviews__heading-ja,
.index-page .instructor__heading-ja,
.index-page .bakery-items__heading-ja,
.index-page .service__heading-ja,
.index-page .payment__heading-ja,
.index-page .staff__heading-ja,
.index-page .lesson-cta__heading {
    font-size: 32px;
    line-height: 1.4;
  }
  .index-page .lesson__heading-en,
.index-page .contact__heading-en,
.index-page .select-item__heading-en,
.index-page .access__heading-en,
.index-page .shop-info__heading-en,
.index-page .flow__heading-en,
.index-page .lesson-list__heading-en,
.index-page .reviews__heading-en,
.index-page .instructor__heading-en,
.index-page .bakery-items__heading-en,
.index-page .service__heading-en,
.index-page .payment__heading-en,
.index-page .staff__heading-en {
    font-size: 18px;
    line-height: 1.4;
  }
  .index-page .access__shop-name,
.index-page .about-overview__card-name {
    font-size: 38px;
  }
  .index-page .shop-info__name,
.index-page .about-overview__card-text,
.index-page .contact__intro {
    font-size: 22px;
    line-height: 1.6;
  }
  .index-page .contact__form-label,
.index-page .contact__radio-label,
.index-page .contact__input,
.index-page .contact__textarea {
    font-size: 18px;
  }
  .index-page .contact__tel-btn {
    font-size: 22px;
  }
  .index-page .btn-view-more {
    font-size: 18px;
  }
  .index-page .header:has(.header__menu-btn) .header__nav-menu-item a,
.index-page .header:has(.header__menu-btn) .header__nav-btn {
    font-size: 18px;
  }
  .index-page .hero__slide-caption-title {
    font-size: 28px;
    line-height: 1.4;
  }
  .index-page .hero__slide-caption-text {
    font-size: 18px;
  }
  .index-page .quick-links__ja {
    font-size: 20px;
    line-height: 1.5;
  }
  .index-page .quick-links__en {
    font-size: 18px;
  }
  .index-page .news-blog__heading,
.index-page .news-blog__more-link {
    font-size: 18px;
    line-height: 1.5;
  }
  .index-page .news-blog__item-title {
    font-size: 16px;
    line-height: 1.4;
  }
  .index-page .news-blog__item-date {
    font-size: 16px;
    line-height: 1.4;
  }
  .index-page .lesson__intro-text {
    font-size: 20px;
  }
  .index-page .select-item__sub-heading {
    font-size: 26px;
    line-height: 1.4;
  }
  .index-page .select-item__name {
    font-size: 18px;
    line-height: 1.4;
  }
  .index-page .lesson__calendar-btn {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .index-page .concept__text,
.index-page .concept__info-item,
.index-page .shop-info__text,
.index-page .shop-info__info-label,
.index-page .shop-info__list-item,
.index-page .shop-info__flow-item,
.index-page .lesson-intro__text,
.index-page .flow__desc,
.index-page .flow__step-text,
.index-page .service__desc,
.index-page .payment__desc,
.index-page .staff__role,
.index-page .staff__bio,
.index-page .staff__recruit-text,
.index-page .reviews__item-name,
.index-page .reviews__item-text,
.index-page .bakery-items__desc,
.index-page .bakery-items__item-name,
.index-page .bakery-items__item-desc,
.index-page .bakery-items__purchase-text,
.index-page .lesson-cta__text,
.index-page .lesson-cta__catch {
    font-size: 16px;
    line-height: 1.6;
  }
  .index-page .flow__heading-ja,
.index-page .contact__heading-ja,
.index-page .lesson-intro__heading,
.index-page .lesson-list__heading-ja,
.index-page .reviews__heading-ja,
.index-page .instructor__heading-ja,
.index-page .bakery-items__heading-ja,
.index-page .service__heading-ja,
.index-page .payment__heading-ja,
.index-page .staff__heading-ja,
.index-page .lesson-cta__heading {
    font-size: 28px;
    line-height: 1.4;
  }
  .index-page .lesson__heading-en,
.index-page .contact__heading-en,
.index-page .select-item__heading-en,
.index-page .access__heading-en,
.index-page .shop-info__heading-en,
.index-page .flow__heading-en,
.index-page .lesson-list__heading-en,
.index-page .reviews__heading-en,
.index-page .instructor__heading-en,
.index-page .bakery-items__heading-en,
.index-page .service__heading-en,
.index-page .payment__heading-en,
.index-page .staff__heading-en {
    font-size: 16px;
    line-height: 1.4;
  }
  .index-page .shop-info__name,
.index-page .about-overview__card-text,
.index-page .contact__intro {
    font-size: 18px;
    line-height: 1.6;
  }
  .index-page .contact__form-label,
.index-page .contact__radio-label,
.index-page .contact__input,
.index-page .contact__textarea {
    font-size: 16px;
  }
  .index-page .contact__tel-btn {
    font-size: 20px;
  }
  .index-page .btn-view-more {
    font-size: 18px;
    width: 200px;
    height: 44px;
  }
  .index-page .header:has(.header__menu-btn) .header__nav-menu-item a {
    font-size: 18px;
  }
  .index-page .header:has(.header__menu-btn) .header__nav-btn {
    font-size: 16px;
  }
  .index-page .quick-links__ja {
    font-size: 18px;
    line-height: 1.4;
  }
  .index-page .quick-links__en {
    font-size: 16px;
  }
  .index-page .news-blog__heading,
.index-page .news-blog__more-link {
    font-size: 16px;
    line-height: 1.5;
  }
  .index-page .news-blog__item-title {
    font-size: 16px;
    line-height: 1.4;
  }
  .index-page .news-blog__item-date {
    font-size: 14px;
    line-height: 1.4;
  }
  .index-page .lesson__intro-text {
    font-size: 18px;
  }
  .index-page .select-item__name {
    font-size: 16px;
    line-height: 1.4;
  }
  .index-page .lesson__calendar-btn {
    font-size: 24px;
  }
}

@media screen and (max-width: 1024px) {
  body:not(.index-page) .concept__heading {
    font-size: 42px;
  }
  body:not(.index-page) .concept__text,
body:not(.index-page) .concept__info-item,
body:not(.index-page) .shop-info__text,
body:not(.index-page) .shop-info__info-label,
body:not(.index-page) .shop-info__list-item,
body:not(.index-page) .shop-info__flow-item,
body:not(.index-page) .lesson-intro__text,
body:not(.index-page) .flow__desc,
body:not(.index-page) .flow__step-text,
body:not(.index-page) .service__desc,
body:not(.index-page) .payment__desc,
body:not(.index-page) .staff__role,
body:not(.index-page) .staff__bio,
body:not(.index-page) .staff__recruit-text,
body:not(.index-page) .reviews__item-name,
body:not(.index-page) .reviews__item-text,
body:not(.index-page) .bakery-items__desc,
body:not(.index-page) .bakery-items__item-name,
body:not(.index-page) .bakery-items__item-desc,
body:not(.index-page) .bakery-items__purchase-text,
body:not(.index-page) .lesson-cta__text,
body:not(.index-page) .lesson-cta__catch {
    font-size: 18px;
    line-height: 1.6;
  }
  body:not(.index-page) .lesson__heading-ja,
body:not(.index-page) .contact__heading-ja,
body:not(.index-page) .select-item__heading-ja,
body:not(.index-page) .access__heading-ja,
body:not(.index-page) .lesson__calendar-month,
body:not(.index-page) .shop-info__heading-ja,
body:not(.index-page) .flow__heading-ja,
body:not(.index-page) .lesson-intro__heading,
body:not(.index-page) .lesson-list__heading-ja,
body:not(.index-page) .reviews__heading-ja,
body:not(.index-page) .instructor__heading-ja,
body:not(.index-page) .bakery-items__heading-ja,
body:not(.index-page) .service__heading-ja,
body:not(.index-page) .payment__heading-ja,
body:not(.index-page) .staff__heading-ja,
body:not(.index-page) .lesson-cta__heading {
    font-size: 32px;
    line-height: 1.4;
  }
  body:not(.index-page) .lesson__heading-en,
body:not(.index-page) .contact__heading-en,
body:not(.index-page) .select-item__heading-en,
body:not(.index-page) .access__heading-en,
body:not(.index-page) .shop-info__heading-en,
body:not(.index-page) .flow__heading-en,
body:not(.index-page) .lesson-list__heading-en,
body:not(.index-page) .reviews__heading-en,
body:not(.index-page) .instructor__heading-en,
body:not(.index-page) .bakery-items__heading-en,
body:not(.index-page) .service__heading-en,
body:not(.index-page) .payment__heading-en,
body:not(.index-page) .staff__heading-en {
    font-size: 18px;
    line-height: 1.4;
  }
  body:not(.index-page) .access__shop-name,
body:not(.index-page) .about-overview__card-name {
    font-size: 38px;
  }
  body:not(.index-page) .shop-info__name,
body:not(.index-page) .about-overview__card-text,
body:not(.index-page) .contact__intro {
    font-size: 22px;
    line-height: 1.6;
  }
  body:not(.index-page) .contact__form-label,
body:not(.index-page) .contact__radio-label,
body:not(.index-page) .contact__input,
body:not(.index-page) .contact__textarea {
    font-size: 18px;
  }
  body:not(.index-page) .contact__tel-btn {
    font-size: 22px;
  }
  body:not(.index-page) .btn-view-more {
    font-size: 18px;
  }
  body:not(.index-page) .header:has(.header__menu-btn) .header__nav-menu-item a,
body:not(.index-page) .header:has(.header__menu-btn) .header__nav-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  body:not(.index-page) .concept__text,
body:not(.index-page) .concept__info-item,
body:not(.index-page) .shop-info__text,
body:not(.index-page) .shop-info__info-label,
body:not(.index-page) .shop-info__list-item,
body:not(.index-page) .shop-info__flow-item,
body:not(.index-page) .lesson-intro__text,
body:not(.index-page) .flow__desc,
body:not(.index-page) .flow__step-text,
body:not(.index-page) .service__desc,
body:not(.index-page) .payment__desc,
body:not(.index-page) .staff__role,
body:not(.index-page) .staff__bio,
body:not(.index-page) .staff__recruit-text,
body:not(.index-page) .reviews__item-name,
body:not(.index-page) .reviews__item-text,
body:not(.index-page) .bakery-items__desc,
body:not(.index-page) .bakery-items__item-name,
body:not(.index-page) .bakery-items__item-desc,
body:not(.index-page) .bakery-items__purchase-text,
body:not(.index-page) .lesson-cta__text,
body:not(.index-page) .lesson-cta__catch {
    font-size: 16px;
    line-height: 1.6;
  }
  body:not(.index-page) .flow__heading-ja,
body:not(.index-page) .contact__heading-ja,
body:not(.index-page) .lesson-intro__heading,
body:not(.index-page) .lesson-list__heading-ja,
body:not(.index-page) .reviews__heading-ja,
body:not(.index-page) .instructor__heading-ja,
body:not(.index-page) .bakery-items__heading-ja,
body:not(.index-page) .service__heading-ja,
body:not(.index-page) .payment__heading-ja,
body:not(.index-page) .staff__heading-ja,
body:not(.index-page) .lesson-cta__heading {
    font-size: 28px;
    line-height: 1.4;
  }
  body:not(.index-page) .lesson__heading-en,
body:not(.index-page) .contact__heading-en,
body:not(.index-page) .select-item__heading-en,
body:not(.index-page) .access__heading-en,
body:not(.index-page) .shop-info__heading-en,
body:not(.index-page) .flow__heading-en,
body:not(.index-page) .lesson-list__heading-en,
body:not(.index-page) .reviews__heading-en,
body:not(.index-page) .instructor__heading-en,
body:not(.index-page) .bakery-items__heading-en,
body:not(.index-page) .service__heading-en,
body:not(.index-page) .payment__heading-en,
body:not(.index-page) .staff__heading-en {
    font-size: 16px;
    line-height: 1.4;
  }
  body:not(.index-page) .shop-info__name,
body:not(.index-page) .about-overview__card-text,
body:not(.index-page) .contact__intro {
    font-size: 18px;
    line-height: 1.6;
  }
  body:not(.index-page) .contact__form-label,
body:not(.index-page) .contact__radio-label,
body:not(.index-page) .contact__input,
body:not(.index-page) .contact__textarea {
    font-size: 16px;
  }
  body:not(.index-page) .contact__tel-btn {
    font-size: 20px;
  }
  body:not(.index-page) .btn-view-more {
    font-size: 18px;
    width: 200px;
    height: 44px;
  }
  body:not(.index-page) .header:has(.header__menu-btn) .header__nav-menu-item a {
    font-size: 18px;
  }
  body:not(.index-page) .header:has(.header__menu-btn) .header__nav-btn {
    font-size: 16px;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.blog-layout__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .blog-layout__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.blog-layout__main {
  min-width: 0;
}

.blog-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}
@media screen and (max-width: 1024px) {
  .blog-sidebar {
    position: static;
  }
}

.blog-sidebar__widget {
  padding: 24px 20px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog-sidebar__widget + .blog-sidebar__widget {
  margin-top: 24px;
}

.blog-sidebar__intro-title {
  margin: 0 0 12px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}

.blog-sidebar__intro-text {
  margin: 0 0 20px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #292F36;
}

.blog-sidebar__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 22px;
  background-color: #C99795;
  color: #fff;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.blog-sidebar__contact-btn:hover {
  opacity: 0.8;
}

.blog-sidebar__heading {
  margin: 0 0 16px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}

.blog-sidebar__recommend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar__recommend-item {
  border-bottom: 1px solid #E6E6E6;
}
.blog-sidebar__recommend-item:last-child {
  border-bottom: none;
}

.blog-sidebar__recommend-link {
  display: block;
  padding: 12px 0;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #292F36;
  text-decoration: none;
}
.blog-sidebar__recommend-link:hover {
  color: #C99795;
}

.blog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar__item {
  border-bottom: 1px solid #E6E6E6;
}
.blog-sidebar__item:last-child {
  border-bottom: none;
}
.blog-sidebar__item a {
  display: block;
  padding: 12px 0;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #292F36;
  text-decoration: none;
}
.blog-sidebar__item a:hover {
  color: #C99795;
}
.blog-sidebar__item.is-current a {
  color: #C99795;
}

.blog-monthly__heading {
  margin: 0 0 32px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .blog-monthly__heading {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.blog-monthly__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-monthly__item {
  border-bottom: 1px solid #E6E6E6;
}
.blog-monthly__item:first-child {
  border-top: 1px solid #E6E6E6;
}

.blog-monthly__link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 20px 0;
  text-decoration: none;
  color: #292F36;
}
.blog-monthly__link:hover {
  opacity: 0.7;
}

.blog-monthly__date {
  flex-shrink: 0;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #808080;
}

.blog-monthly__category {
  flex-shrink: 0;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #C99795;
}

.blog-monthly__title {
  flex: 1 1 200px;
  min-width: 0;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.blog-archive {
  padding: 80px 0 100px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .blog-archive {
    padding: 48px 0 64px;
  }
}

.blog-archive__inner {
  max-width: none;
  margin: 0;
  padding: 0;
}

.blog-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive__list--cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.blog-archive__item {
  border-bottom: 1px solid #E6E6E6;
  padding: 40px 0;
}
.blog-archive__item:first-child {
  padding-top: 0;
}
.blog-archive__list--cards .blog-archive__item {
  border-bottom: none;
  padding: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog-card__thumbnail-link {
  display: block;
  text-decoration: none;
}
.blog-card__thumbnail-link:hover {
  opacity: 0.85;
}

.blog-card__thumbnail {
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #272323;
}
.blog-card__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card__body {
  padding: 20px 24px 28px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #808080;
}

.blog-card__title {
  margin: 0 0 12px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.blog-card__title a {
  color: #000;
  text-decoration: none;
}
.blog-card__title a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .blog-card__title {
    font-size: 20px;
  }
}

.blog-card__excerpt {
  margin: 0 0 20px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #292F36;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  border-radius: 22px;
  background-color: #C99795;
  color: #fff;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s;
}
.blog-card__more:hover {
  opacity: 0.8;
}

.blog-archive__meta,
.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #808080;
}

.blog-archive__title {
  margin: 0 0 16px;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.blog-archive__title a {
  color: #000;
  text-decoration: none;
}
.blog-archive__title a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .blog-archive__title {
    font-size: 22px;
  }
}

.blog-archive__excerpt {
  margin-bottom: 20px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #292F36;
}
.blog-archive__excerpt p {
  margin: 0;
}

.blog-archive__more {
  display: inline-block;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #C99795;
  text-decoration: none;
}
.blog-archive__more:hover {
  opacity: 0.7;
}

.blog-archive__empty {
  text-align: center;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #808080;
}

.blog-archive__pagination {
  margin-top: 60px;
}
.blog-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.blog-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E6E6E6;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #292F36;
  text-decoration: none;
}
.blog-archive__pagination .page-numbers.current {
  background-color: #C99795;
  border-color: #C99795;
  color: #fff;
}
.blog-archive__pagination .page-numbers:hover:not(.current) {
  opacity: 0.7;
}

.blog-single {
  padding: 80px 0 100px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .blog-single {
    padding: 48px 0 64px;
  }
}

.blog-single__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .blog-single__header {
    margin-bottom: 32px;
  }
}

.blog-single__date {
  display: block;
  margin-bottom: 8px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #808080;
}

.blog-single__category {
  margin: 0 0 16px;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #C99795;
}

.blog-single__title {
  margin: 0;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .blog-single__title {
    font-size: 24px;
  }
}

.blog-single__thumbnail {
  margin: 0 0 40px;
  overflow: hidden;
}
.blog-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .blog-single__thumbnail {
    margin-bottom: 32px;
  }
}

.blog-single__content {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #292F36;
}
.blog-single__content > *:first-child {
  margin-top: 0;
}
.blog-single__content > *:last-child {
  margin-bottom: 0;
}
.blog-single__content p {
  margin: 0 0 1.5em;
}
.blog-single__content strong,
.blog-single__content b {
  font-weight: 700;
}
.blog-single__content h2 {
  margin: 2.5em 0 1em;
  padding-bottom: 8px;
  border-bottom: 1px solid #E6E6E6;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .blog-single__content h2 {
    font-size: 20px;
  }
}
.blog-single__content h3 {
  margin: 2em 0 0.8em;
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .blog-single__content h3 {
    font-size: 18px;
  }
}
.blog-single__content h4 {
  margin: 1.5em 0 0.8em;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}
.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.blog-single__content li {
  margin-bottom: 0.5em;
}
.blog-single__content a {
  color: #C99795;
  text-decoration: underline;
}
.blog-single__content a:hover {
  opacity: 0.7;
}
.blog-single__content blockquote {
  margin: 0 0 1.5em;
  padding: 16px 20px;
  border-left: 4px solid #C99795;
  background-color: #F8F8F8;
  font-style: normal;
}
.blog-single__content table {
  width: 100%;
  margin: 0 0 1.5em;
  border-collapse: collapse;
  font-size: 15px;
}
.blog-single__content th,
.blog-single__content td {
  padding: 12px 16px;
  border: 1px solid #E6E6E6;
  text-align: left;
  vertical-align: top;
}
.blog-single__content th {
  background-color: #F8F8F8;
  font-weight: 700;
}
.blog-single__content img {
  max-width: 100%;
  height: auto;
}
.blog-single__content iframe {
  max-width: 100%;
}

.blog-single__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 768px) {
  .blog-single__nav {
    margin-top: 48px;
    padding-top: 24px;
  }
}

.blog-single__nav-prev a,
.blog-single__nav-back a {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #C99795;
  text-decoration: none;
}
.blog-single__nav-prev a:hover,
.blog-single__nav-back a:hover {
  opacity: 0.7;
}

.blog-single__nav-prev:empty {
  display: none;
}

/* =========================================
   CF7 ラジオボタンのカスタムスタイリング
========================================= */
/* 1. リスト全体のレイアウト調整（横並びと余白） */
.contact__radio-list .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px; /* 上下10px、左右20pxの余白 */
}

/* CF7デフォルトのマージンをリセット */
.contact__radio-list .wpcf7-list-item {
  margin: 0 !important;
}

/* 2. デフォルトのラジオボタン（input）を完全に隠す */
.contact__radio-list input[type=radio] {
  display: none;
}

/* 3. テキストラベルのスタイルと、丸印を配置する余白の確保 */
.contact__radio-list .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px; /* 左側に丸印を置くためのスペース */
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  color: #333;
}

/* 4. ラジオボタンの外枠（チェックされていない時の丸） */
.contact__radio-list .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc; /* 外枠の色 */
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* 5. ラジオボタンの中身（チェックされた時に表示されるドット） */
.contact__radio-list .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px; /* (外枠20px - ドット10px) ÷ 2 */
  top: 50%;
  transform: translateY(-50%) scale(0); /* 初期状態は見えないように縮小 */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c58c85; /* サイトカラーに近い色（お好みで変更してください） */
  transition: transform 0.2s ease;
}

/* 6. 選択（チェック）された時のアクション */
/* ドットを表示する */
.contact__radio-list input[type=radio]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-50%) scale(1);
}

/* 外枠の色もサイトカラーに変更する */
.contact__radio-list input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #c58c85;
}

.event-detail__thumbnail {
  margin: 0 0 20px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.event-detail__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.event-detail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
}

.event-detail__badge--category {
  background-color: #292F36;
}

.event-detail__badge--status {
  background-color: #C99795;
}

.event-detail__title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .event-detail__title {
    font-size: 22px;
  }
}

.event-detail__status-symbol {
  margin-left: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .event-detail__status-symbol {
    font-size: 18px;
  }
}

.event-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.event-detail__meta-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #292F36;
}

.event-detail__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #292F36;
  margin-bottom: 40px;
}
.event-detail__content p {
  margin-bottom: 1em;
}
.event-detail__content a {
  color: #C99795;
  text-decoration: underline;
}

.event-detail__btn-wrap {
  display: flex;
  justify-content: center;
}

.event-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 40px;
  padding: 0 40px;
  min-width: 300px;
  height: 64px;
  transition: opacity 0.3s;
}
.event-detail__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .event-detail__btn {
    min-width: 240px;
    height: 56px;
    font-size: 14px;
  }
}

.event-detail__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 14px;
}

.event-single {
  padding: 120px 20px 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .event-single {
    padding: 100px 16px 48px;
  }
}

.event-single__inner {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.event-single__nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.event-single__nav-back {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #292F36;
  text-decoration: underline;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.event-modal.is-open {
  display: flex;
}
@media screen and (max-width: 768px) {
  .event-modal {
    padding: 24px 12px;
  }
}

.event-modal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.event-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: auto;
  background-color: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  -webkit-animation: event-modal-in 0.3s ease;
          animation: event-modal-in 0.3s ease;
}
@media screen and (max-width: 768px) {
  .event-modal__dialog {
    padding: 24px 20px;
  }
}

@-webkit-keyframes event-modal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes event-modal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.event-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}
.event-modal__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .event-modal__close {
    top: -40px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.products-page .about-hero {
  background-color: transparent;
  background-image: url("../images/bakery-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-page .about-hero {
  background-color: transparent;
  background-image: url("../images/concept.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products {
  background-color: #fff;
  padding: 80px 100px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .products {
    padding: 60px 40px 80px;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .products {
    padding: 40px 20px 60px;
    gap: 24px;
  }
}

.products__heading-wrap {
  width: 100%;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.products__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}

.products__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 63.6px;
  letter-spacing: 0.0175em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .products__heading-ja {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .products__heading-ja {
    font-size: 26px;
  }
}

.products__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26.2px;
  letter-spacing: 0.035em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .products__heading-en {
    font-size: 16px;
  }
}

.product-cat-nav {
  width: 100%;
  max-width: 1120px;
}

.product-cat-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .product-cat-nav__list {
    gap: 8px;
  }
}

.product-cat-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border: 1px solid #C99795;
  border-radius: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #292F36;
  text-decoration: none;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
.product-cat-nav__link:hover {
  opacity: 1;
  background-color: rgba(201, 151, 149, 0.15);
}
.product-cat-nav__link.is-current {
  background-color: #C99795;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .product-cat-nav__link {
    padding: 6px 16px;
    font-size: 14px;
  }
}

.products__list {
  list-style: none;
  width: 100%;
  max-width: 1120px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 28px;
}
@media screen and (max-width: 1024px) {
  .products__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 20px;
  }
}
@media screen and (max-width: 768px) {
  .products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.product-card__link:hover {
  opacity: 1;
}
.product-card__link:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__img {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #F8F8F8;
  border-radius: 4px;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card__soldout {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 4px;
}

.product-card.is-sold-out .product-card__img img {
  opacity: 0.55;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__cat {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #C99795;
}

.product-card__name {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #292F36;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .product-card__name {
    font-size: 16px;
  }
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.product-card__price-num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #292F36;
}
@media screen and (max-width: 768px) {
  .product-card__price-num {
    font-size: 18px;
  }
}

.product-card__price-tax {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #808080;
}

.products__pagination {
  width: 100%;
  max-width: 1120px;
}
.products__pagination .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.products__pagination li {
  display: inline-flex;
}
.products__pagination a.page-numbers,
.products__pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #292F36;
  text-decoration: none;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
.products__pagination a.page-numbers:hover {
  opacity: 1;
  background-color: rgba(201, 151, 149, 0.15);
}
.products__pagination span.page-numbers.current {
  background-color: #C99795;
  border-color: #C99795;
  color: #fff;
}

.products__empty {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #292F36;
  text-align: center;
  padding: 40px 0;
}

.product-detail {
  background-color: #fff;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .product-detail {
    padding: 48px 20px 60px;
    gap: 40px;
  }
}

.product-detail__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .product-detail__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail__inner {
    flex-direction: column;
    gap: 28px;
  }
}

.product-detail__gallery {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .product-detail__gallery {
    width: 100%;
  }
}

.product-detail__main {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #F8F8F8;
  border-radius: 6px;
}
.product-detail__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-detail__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 12px;
}

.product-detail__soldout {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 4px;
}

.product-detail__thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-detail__thumb.is-active .product-detail__thumb-btn {
  border-color: #C99795;
}

.product-detail__thumb-btn {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: #F8F8F8;
  transition: border-color 0.3s;
}
.product-detail__thumb-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-detail__info {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .product-detail__info {
    width: 100%;
  }
}

.product-detail__cat {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #C99795;
  margin: 0;
}

.product-detail__title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.5;
  color: #292F36;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .product-detail__title {
    font-size: 24px;
  }
}

.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.product-detail__price-num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  color: #292F36;
}
@media screen and (max-width: 768px) {
  .product-detail__price-num {
    font-size: 28px;
  }
}

.product-detail__price-tax {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #808080;
}

.product-detail__price-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #808080;
  margin: 0;
}

.product-detail__reduced {
  color: #C99795;
  margin-left: 4px;
}

.product-detail__meta {
  margin: 8px 0 0;
  border-top: 1px solid #E6E6E6;
}

.product-detail__meta-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid #E6E6E6;
}

.product-detail__meta-term {
  flex: 0 0 110px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: #292F36;
  margin: 0;
}

.product-detail__meta-desc {
  flex: 1 1 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #292F36;
  margin: 0;
  word-break: break-word;
}

.product-detail__stock {
  font-weight: 700;
}
.product-detail__stock.is-sold-out {
  color: #C99795;
}

.product-detail__actions {
  margin-top: 16px;
}
.product-detail__actions .btn-view-more {
  width: 100%;
}

.product-detail__description {
  border-top: 1px solid #E6E6E6;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .product-detail__description {
    padding-top: 28px;
  }
}

.product-detail__section-title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  color: #292F36;
  margin: 0 0 20px;
}

.product-detail__description-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: #292F36;
}
.product-detail__description-body p {
  margin: 0 0 1em;
}
.product-detail__description-body img {
  max-width: 100%;
  height: auto;
}

.product-detail__nav {
  border-top: 1px solid #E6E6E6;
  padding-top: 32px;
}

.product-detail__back {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #292F36;
  text-decoration: none;
}
.product-detail__back::before {
  content: "‹";
  margin-right: 8px;
  font-size: 20px;
}

.product-related {
  background-color: #F8F8F8;
  padding: 80px 100px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .product-related {
    padding: 60px 40px 80px;
  }
}
@media screen and (max-width: 768px) {
  .product-related {
    padding: 48px 20px 60px;
    gap: 28px;
  }
}

.product-related__heading-wrap {
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: center;
}

.product-related__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.38px;
}

.product-related__heading-ja {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.0175em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .product-related__heading-ja {
    font-size: 24px;
  }
}

.product-related__heading-en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.035em;
  color: #000;
}