@charset "UTF-8";
body {
  background-color: #FFFCF1;
}

.page-nav {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 16px;
  z-index: 1000;
}
@media screen and (max-width: 1100px) {
  .page-nav {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
}

.page-nav__item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #A3B899;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .page-nav__item {
    width: 60px;
    height: 60px;
  }
}

.page-nav__item:hover {
  transform: translateY(-4px);
}

.page-nav__item img {
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1100px) {
  .page-nav__item img {
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
  }
}

.page-nav__item span {
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  __title {
    top: 15%;
    font-size: 15px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

header {
  background-color: #A3B899;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.4s ease;
}

header.is-hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
}

h1 {
  margin: 0;
}
h1 img {
  display: block;
  height: 60px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  .nav-list {
    flex-direction: column;
  }
}
.nav-list a {
  text-decoration: none;
  color: #FFFCF1;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s;
  font-family: "Zen Old Mincho", sans-serif;
}
.nav-list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1100px) {
  .nav-list a {
    color: #333333;
  }
}
.nav-list li:last-child a {
  display: inline-block;
  background-color: #865F41;
  color: #FFFCF1;
  padding: 10px 24px;
  font-size: 0.8rem;
  border-radius: 20px;
  transition: background-color 0.3s;
}
.nav-list li:last-child a:hover {
  background-color: rgb(99.6582914573, 70.6532663317, 48.3417085427);
  opacity: 1;
}

.hamburger {
  display: none;
}

.hamburger-bg {
  display: none;
}

@media screen and (max-width: 1100px) {
  .header-container {
    position: relative;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    padding: 0;
    border: none;
    background: none;
    position: relative;
    z-index: 20;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: transform 0.4s ease, opacity 0.3s ease;
  }
  nav {
    display: none;
  }
  nav.is-active {
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 15;
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 1.2s ease 0.6s, visibility 1.2s ease 0.6s, transform 1.2s ease 0.6s;
  }
  nav.is-active .nav-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list a {
    color: #333;
  }
  .hamburger-bg {
    display: block;
    position: fixed;
    inset: 0;
    background-color: #FFFCF1;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  .hamburger-bg.is-active {
    opacity: 1;
    visibility: visible;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(11.5px) rotate(135deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-135deg);
  }
}
.footer {
  background-color: #A3B899;
  text-align: center;
  padding: 70px 20px 30px;
}
.footer__main-logo {
  width: 240px;
  display: block;
  margin: 0 auto 30px;
}
.footer__container {
  max-width: 1000px;
  margin: 0 auto;
}
.footer__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.footer__icon img {
  width: 32px;
  height: 32px;
  transition: 0.3s;
}
.footer__icon img:hover {
  opacity: 0.7;
}
.footer__tel {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer__text {
  font-size: 0.8rem;
  color: #fff;
  line-height: 2;
  margin-bottom: 35px;
}
.footer #footer__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 58px;
  background-color: #8A5B38;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.footer #footer__btn:hover {
  background-color: #744B2E;
}
.footer__copy {
  margin-top: 40px;
  color: #fff;
  font-size: 0.8rem;
}

body {
  background-color: #FFFCF1;
  padding-top: 100px;
}

p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.main-visual {
  overflow: hidden;
  background-color: #FFFCF1;
}
.main-visual__container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
}
.main-visual {
  /* ==========================
      左側
  ========================== */
}
.main-visual__image-box {
  flex: 0 0 45%;
  margin-left: calc(50% - 50vw);
  height: 820px;
  overflow: hidden;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
}
.main-visual__image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.main-visual {
  /* ==========================
      右側
  ========================== */
}
.main-visual__content {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 80px;
  min-height: 820px;
}
.main-visual__text-group {
  position: relative;
  width: 500px;
  z-index: 2;
  left: -150px;
}
.main-visual__title {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: 500;
}
.main-visual__title-line1 {
  display: block;
  margin-left: -60px;
}
.main-visual__title-line2 {
  display: block;
  margin-left: 30px;
  white-space: nowrap;
}
.main-visual span {
  display: block;
}
.main-visual__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  width: 500px;
  margin-top: 32px;
  margin-left: 200px;
  line-height: 2;
  white-space: nowrap;
}
.main-visual__desc-line2 {
  color: #865F41;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.main-visual {
  /* ==========================
      丸画像
  ========================== */
}
.main-visual__photo {
  position: absolute;
}
.main-visual__photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual__photo--top {
  width: 200px;
  height: 200px;
  top: 60px;
  right: 80px;
}
.main-visual__photo--bottom {
  width: 220px;
  height: 220px;
  left: 80px;
  bottom: 60px;
}
.main-visual {
  /* ==========================
      スマホ
  ========================== */
}
@media screen and (max-width: 1100px) {
  .main-visual__container {
    min-height: 100vw;
  }
  .main-visual__image-box {
    flex: 0 0 45%;
    height: 110vw;
    border-top-right-radius: 50vw;
    border-bottom-right-radius: 50vw;
  }
  .main-visual__content {
    min-height: 110vw;
    padding: 0 2vw;
  }
  .main-visual__text-group {
    width: 45vw;
    left: -10vw;
  }
  .main-visual__title {
    font-size: 4.5vw;
    line-height: 1.5;
  }
  .main-visual__title-line1 {
    margin-left: -5vw;
  }
  .main-visual__title-line2 {
    margin-left: 2vw;
    white-space: normal;
  }
  .main-visual__desc {
    width: 45vw;
    margin-top: 3vw;
    margin-left: 12vw;
    font-size: 2vw;
    line-height: 1.8;
    white-space: normal;
  }
  .main-visual__photo--top {
    width: 16vw;
    height: 16vw;
    top: 4vw;
    right: 2vw;
  }
  .main-visual__photo--bottom {
    width: 18vw;
    height: 18vw;
    left: 2vw;
    bottom: 4vw;
  }
}
@media screen and (max-width: 1100px) and (max-width: 375px) {
  .main-visual__text-group {
    width: 44vw;
    left: -9vw;
  }
  .main-visual__title {
    font-size: 4.2vw;
  }
  .main-visual__desc {
    width: 43vw;
    margin-left: 10vw;
    font-size: 1.9vw;
  }
  .main-visual__photo--top {
    width: 15vw;
    height: 15vw;
  }
  .main-visual__photo--bottom {
    width: 17vw;
    height: 17vw;
  }
}
.main-visual .main-visual__photo {
  opacity: 0;
  animation: fv-photo-fade 1.8s ease forwards;
}
.main-visual .main-visual__photo--top {
  animation-delay: 0.3s;
}
.main-visual .main-visual__photo--bottom {
  animation-delay: 1s;
}
@keyframes fv-photo-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-visual .main-visual__text-group {
  opacity: 0;
  animation: fv-text-fade 1.8s ease forwards;
  animation-delay: 1.7s;
}
@keyframes fv-text-fade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1100px) {
  .main-visual__container {
    align-items: flex-start;
    min-height: 500px;
  }
  .main-visual {
    /* ==========================
        左側
    ========================== */
  }
  .main-visual__image-box {
    height: 500px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
  }
  .main-visual {
    /* ==========================
        右側
    ========================== */
  }
  .main-visual__content {
    padding: 0 60px;
    min-height: 500px;
  }
  .main-visual__text-group {
    width: 250px;
    z-index: 2;
  }
  .main-visual__title {
    font-size: 1.2rem;
  }
  .main-visual__title-line1 {
    margin-left: 30px;
  }
  .main-visual__title-line2 {
    margin-left: 60px;
  }
  .main-visual__desc {
    width: 100px;
    margin-top: 40px;
    margin-left: 110px;
    font-size: 0.7rem;
  }
  .main-visual {
    /* ==========================
        丸画像
    ========================== */
  }
  .main-visual__photo--top {
    width: 100px;
    height: 100px;
    top: 60px;
    right: 100px;
  }
  .main-visual__photo--bottom {
    width: 120px;
    height: 120px;
    left: 30px;
    bottom: 40px;
  }
}

.fv__icons {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.fv__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #A3B899;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.fv__icon img {
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
}

.fv__icon span {
  font-size: 11px;
  color: #fff;
  line-height: 1;
}

@media screen and (max-width: 500px) {
  .main-visual {
    width: 100%;
    height: 600px;
    min-height: 0;
    position: relative;
    overflow: hidden;
  }
  .main-visual__container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .main-visual__image-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0;
  }
  .main-visual__image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 252, 241, 0.68);
    z-index: 2;
  }
  .main-visual__image-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    border-radius: 0;
  }
  .main-visual__content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
    z-index: 3;
  }
  .main-visual__photo--top {
    position: absolute;
    top: 7%;
    right: 5%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
  }
  .main-visual__photo--top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .main-visual__photo--bottom {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
  }
  .main-visual__photo--bottom img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .main-visual__text-group {
    position: absolute;
    top: 40%;
    right: 5%;
    left: auto;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    width: 75%;
    z-index: 4;
    text-align: right;
  }
  .main-visual__title {
    margin: 0 0 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: right;
  }
  .main-visual__title-line1, .main-visual__title-line2 {
    display: block;
    white-space: nowrap;
  }
  .main-visual__desc {
    width: 120%;
    margin: 0 0 0 -20%;
    font-size: 0.68rem;
    line-height: 2;
    text-align: right;
  }
}
.concept__container {
  max-width: 100%;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}
.concept__container img {
  width: 100%;
  filter: blur(4px);
  opacity: 0.4;
}
.concept__title {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .concept__title {
    top: 15%;
    font-size: 15px;
  }
}
.concept__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.concept__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .concept__subtitle {
    font-size: 12px;
  }
}
.concept__text {
  position: absolute;
  text-align: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 4;
}
@media screen and (max-width: 1100px) {
  .concept__text {
    font-size: 10px;
    line-height: 2.5;
  }
}

@media screen and (max-width: 500px) {
  .concept__container {
    height: 200px;
    max-height: none;
  }
  .concept__container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .concept__title {
    top: 20%;
    font-size: 14px;
  }
  .concept__text {
    top: 60%;
    width: 100%;
    font-size: 9px;
    line-height: 2;
  }
}
.concept__title,
.concept__text {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.concept__title.is-visible,
.concept__text.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.space__container {
  background-color: #FFFCF1;
}
.space__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .space__title {
    font-size: 15px;
  }
}
.space__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.space__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .space__subtitle::before {
    font-size: 12px;
  }
}
.space__btn {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .space__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.space__item {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: #A3B899;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #FFFCF1;
  box-sizing: border-box;
}
.space__item h3 {
  font-weight: normal;
}
.space__item h3::first-letter {
  font-size: 2rem;
}
.space__item p {
  margin-top: 20px;
  font-family: "Zen Old Mincho", serif;
  line-height: 2;
  text-align: center;
  font-size: 12px;
}
.space__item-btn {
  margin-top: 24px;
  font-size: 1.25rem;
  color: #865F41;
  font-weight: 500;
}
.space__item-btn {
  position: relative;
  display: inline-block;
  padding-right: 55px;
  color: #865F41;
  font-size: 1.25rem;
  font-weight: 500;
}
.space__item-btn::before {
  content: "";
  position: absolute;
  top: 75%;
  right: 0;
  width: 50px;
  height: 1px;
  background: #865F41;
  transform: translateY(-50%);
}
.space__item-btn::after {
  content: "";
  position: absolute;
  top: calc(85% - 4px);
  right: 0;
  width: 12px;
  height: 1px;
  background: #865F41;
  transform: rotate(45deg);
  transform-origin: right center;
}
.space .space__title.fade-in {
  transition-delay: 0s;
}
.space .space__item:nth-child(1).fade-in {
  transition-delay: 0.3s;
}
.space .space__item:nth-child(2).fade-in {
  transition-delay: 0.5s;
}

.news-and-book__container {
  background-color: #FFFCF1;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .news-and-book {
    max-width: 650px;
  }
}

.news-block__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .news-block__title {
    top: 15%;
    font-size: 15px;
  }
}
.news-block__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-left: 20px;
}
.news-block__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
}
@media screen and (max-width: 1100px) {
  .news-block__subtitle {
    font-size: 12px;
  }
}
.news-block__topic {
  margin-left: 100px;
  font-size: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1100px) {
  .news-block__topic {
    font-size: 15px;
    margin-left: 50px;
  }
}
.news-block__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 80%;
  font-size: 12px;
}
.news-block__list dt, .news-block__list dd {
  border-bottom: 1px dotted rgba(51, 51, 51, 0.3);
  padding: 25px 0 5px;
}
.news-block__list dt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  width: 30%;
}
.news-block__list dd {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  width: 70%;
}

.month-book {
  margin-top: 50px;
  margin-left: 100px;
}
@media screen and (max-width: 1100px) {
  .month-book {
    margin-left: 50px;
  }
}
.month-book__title {
  margin-bottom: 30px;
  font-size: 20px;
}
@media screen and (max-width: 1100px) {
  .month-book__title {
    font-size: 15px;
    margin-left: 0px;
  }
}
.month-book__list {
  display: flex;
  justify-content: left;
  gap: 60px;
}
@media screen and (max-width: 1100px) {
  .month-book__list {
    gap: 30px;
  }
}
.month-book__item {
  display: flex;
}
.month-book__item p {
  padding-top: 30px;
  padding-left: 30px;
  font-size: 12px;
}
@media screen and (max-width: 1100px) {
  .month-book__item p {
    font-size: 10px;
    padding-left: 10px;
  }
}
.month-book__img {
  width: 90px;
}
.month-book__img img {
  width: 100%;
  display: block;
}
.month-book__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px 100px 0 auto;
  border-bottom: #333333;
  color: #333333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 1100px) {
  .month-book__link {
    font-size: 10px;
    margin: 20px 50px 0 auto;
  }
}

@media screen and (max-width: 500px) {
  .news-block__title {
    flex-direction: column;
    text-align: center;
  }
  .news-block__subtitle {
    margin-top: 8px;
  }
  .news-block__list {
    font-size: 10px;
  }
  .news-block__list dd {
    width: 65%;
  }
  .news-block__list dt {
    width: 35%;
  }
  .news-block__topic {
    margin-left: 40px;
  }
  .month-book {
    margin: 0 auto;
    padding: 30px;
  }
  .month-book__list {
    gap: 15px;
  }
  .news-and-book__container {
    padding-bottom: 0;
  }
}
.access {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .access {
    max-width: 650px;
  }
}
.access__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  .access__title {
    top: 15%;
    font-size: 15px;
  }
}
.access__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-left: 20px;
}
.access__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
}
@media screen and (max-width: 1100px) {
  .access__subtitle {
    font-size: 12px;
  }
}
.access__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.access li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 1100px) {
  .access li {
    font-size: 0.8em;
  }
}
.access li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: #865F41;
  border-radius: 50%;
}
.access__container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .access__container {
    flex-direction: column-reverse;
  }
}
.access__detail {
  width: 35%;
}
@media screen and (max-width: 1100px) {
  .access__detail {
    width: 80%;
    margin-bottom: 100px;
  }
}
.access__map {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 500px) {
  .access__map {
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }
}
body {
  background-color: #FFFCF1;
  color: #333333;
  padding-top: 100px;
}

.family-fv {
  margin-top: 60px;
}
.family-fv__container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  position: relative;
  transform: translateX(-10%);
}
.family-fv__photo {
  width: 60%;
  max-width: 800px;
}
.family-fv__photo img {
  border-radius: 50%;
  width: 100%;
}
.family-fv__title {
  background-color: rgba(163, 184, 153, 0.5);
  width: clamp(200px, 40vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 60%;
  left: 70%;
}
@media screen and (max-width: 1100px) {
  .family-fv__title {
    width: clamp(100px, 40vw, 160px);
  }
}
.family-fv__text {
  margin: 0;
  font-size: 1.1em;
  font-family: "Zen Old Mincho", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 1100px) {
  .family-fv__text {
    font-size: 0.8em;
    line-height: 1.5;
  }
}
.family-fv__detail {
  font-size: 1.2em;
  color: #865F41;
}
@media screen and (max-width: 1100px) {
  .family-fv__detail {
    font-size: 1em;
  }
}

.family-commitment {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .family-commitment {
    max-width: 650px;
  }
}
.family-commitment__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .family-commitment__title {
    top: 15%;
    font-size: 20px;
  }
}
.family-commitment__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.family-commitment__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .family-commitment__subtitle::before {
    font-size: 12px;
  }
}
.family-commitment__list {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 1100px) {
  .family-commitment__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.family-commitment__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #A3B899;
  border-radius: 50%;
  width: 300px;
  aspect-ratio: 1;
}
@media screen and (max-width: 1100px) {
  .family-commitment__item {
    border-radius: 20px;
    aspect-ratio: auto;
  }
}
.family-commitment h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  font-weight: normal;
}
@media screen and (max-width: 1100px) {
  .family-commitment h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding-top: 10px;
  }
}
.family-commitment p {
  font-size: 0.8em;
}
@media screen and (max-width: 1100px) {
  .family-commitment p {
    font-size: 0.6em;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .family-commitment__title {
    flex-direction: column;
    text-align: center;
  }
  .family-commitment__subtitle {
    margin-top: 8px;
  }
  .family-commitment {
    margin-bottom: 0px;
  }
  .cafe-menu p {
    padding-right: 10px;
  }
  .cafe-menu a {
    padding-right: 10px;
  }
}
.cafe-menu {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .cafe-menu {
    max-width: 650px;
  }
}
.cafe-menu__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .cafe-menu__title {
    top: 15%;
    font-size: 20px;
  }
}
.cafe-menu__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.cafe-menu__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .cafe-menu__subtitle {
    font-size: 12px;
  }
}
.cafe-menu__container {
  width: 100%;
}
.cafe-menu__photos {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 1100px) {
  .cafe-menu__photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 60px 30px;
  }
}
.cafe-menu__photos img {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10%;
}
@media screen and (max-width: 1100px) {
  .cafe-menu__photos img {
    width: 100%;
  }
}
.cafe-menu p {
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 1100px) {
  .cafe-menu p {
    font-size: 10px;
  }
}
.cafe-menu a {
  display: block;
  text-align: right;
  margin-top: 15px;
  color: #333333;
}

.guide {
  margin-top: 100px;
}
@media screen and (max-width: 1100px) {
  .guide {
    width: 100%;
  }
}
.guide__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .guide__title {
    font-size: 20px;
  }
}
.guide__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.guide__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .guide__subtitle::before {
    font-size: 12px;
  }
}
.guide__container {
  width: 100%;
  position: relative;
}
.guide__container img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  opacity: 0.6;
}
@media screen and (max-width: 1100px) {
  .guide__container img {
    height: 600px;
    -o-object-position: 40% 30%;
       object-position: 40% 30%;
  }
}
.guide__content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.guide__detail {
  margin-top: 30px;
  text-align: left;
}
@media screen and (max-width: 1100px) {
  .guide__detail {
    padding: 0 30px;
  }
}
.guide__text {
  font-size: 0.7em;
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 1100px) {
  .guide__text {
    padding: 0 30px;
  }
}
.guide__item {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.guide__list {
  background-color: rgba(163, 184, 153, 0.8);
  width: 150px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .guide__list {
    width: 120px;
    font-size: 0.8em;
  }
}
.guide__btn {
  display: inline-block;
  position: relative;
  margin-top: 50px;
  text-decoration: none;
  color: #333333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.8em;
}
.guide__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 125px;
  height: 2px;
  background: #865F41;
  transform: translateX(-50%);
}
.guide__btn::after {
  content: "";
  position: absolute;
  top: calc(130% - 4px);
  right: -20%;
  width: 15px;
  height: 2px;
  background: #865F41;
  transform: rotate(45deg);
  transform-origin: right center;
}

@media screen and (max-width: 500px) {
  .guide__item {
    gap: 10px;
    margin-top: 20px;
  }
  .guide__text {
    padding: 0;
    font-size: 0.6em;
  }
  .guide__list {
    width: 100px;
    font-size: 0.7em;
  }
  .guide__container {
    height: 500px;
    margin-bottom: 100px;
  }
  .guide__content {
    top: 45%;
  }
}
.space-book__title {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .space-book__title {
    top: 15%;
    font-size: 20px;
  }
}

.space-book__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.space-book__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .space-book__subtitle::before {
    font-size: 12px;
  }
}

.c-card {
  width: 960px;
  max-width: 90%;
  margin: 50px auto;
}
@media screen and (max-width: 1100px) {
  .c-card {
    width: 90%;
    margin: 30px auto;
  }
}
.c-card__tab-list {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .c-card__tab-list {
    gap: 4px;
  }
}
.c-card__tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  padding: 12px 20px;
  min-width: 150px;
  border: none;
  border-radius: 15px 15px 0 0;
  white-space: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .c-card__tab-item {
    min-width: 80px;
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 0.65em;
  }
}
.c-card__tab-item:hover {
  background: #bfd0b4;
}
.c-card__tab-item--active {
  background: #A3B899;
  position: relative;
  z-index: 2;
}
.c-card__body {
  display: none;
  background: #A3B899;
  border-radius: 0 20px 20px 20px;
  padding: 50px;
  align-items: center;
  gap: 50px;
}
.c-card__body--active {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .c-card__body {
    padding: 25px 20px;
    gap: 20px;
  }
}
.c-card__image-wrapper {
  flex: 0 0 35%;
}
.c-card__image {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 1100px) {
  .c-card__image {
    height: 220px;
  }
}
.c-card__text-wrapper {
  flex: 1;
  min-width: 220px;
}
@media screen and (max-width: 1100px) {
  .c-card__text-wrapper {
    min-width: 0;
  }
}
.c-card__description {
  line-height: 1.8;
  margin: 12px 0 20px;
  font-size: 0.8em;
}
@media screen and (max-width: 1100px) {
  .c-card__description {
    font-size: 0.6em;
    line-height: 1.6;
  }
}
.c-card__section + .c-card__section {
  margin-top: 40px;
}
@media screen and (max-width: 1100px) {
  .c-card__section + .c-card__section {
    margin-top: 25px;
  }
}
.c-card__inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  .c-card__inner {
    gap: 8px;
  }
}
.c-card__list {
  margin: 0;
  padding-left: 20px;
}
@media screen and (max-width: 1100px) {
  .c-card__list {
    padding-left: 15px;
  }
}
.c-card__list-item {
  list-style: none;
  font-size: 0.8em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 1100px) {
  .c-card__list-item {
    font-size: 0.6em;
  }
}
@media screen and (max-width: 1100px) {
  .c-card__title {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 500px) {
  .c-card__list {
    padding-left: 0px;
  }
  .c-card__inner {
    gap: 5px;
  }
  .c-card__list-item {
    font-size: 0.5em;
  }
  .c-card__body {
    flex-direction: column;
    align-items: center;
  }
  .c-card__image-wrapper {
    width: 85%;
  }
  .c-card__text-wrapper {
    width: 90%;
  }
}
body {
  padding-top: 100px;
}

.adult-fv__container {
  position: relative;
  width: 70%;
  margin: 50px 0 0 50px;
}
.adult-fv__image-wrapper {
  width: 100%;
}
.adult-fv__image {
  width: 100%;
  display: block;
}
.adult-fv__deco-box {
  position: absolute;
  top: 10%;
  right: -30%;
  width: 35%;
  aspect-ratio: 1;
  background: #A3B899;
  opacity: 0;
  animation: deco-box-in 0.8s ease forwards;
  animation-delay: 0.3s;
}
.adult-fv__message-box {
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 25%;
  aspect-ratio: 1/0.85;
  padding: 30px;
  display: flex;
  align-items: center;
  background: #A3B899;
  box-sizing: border-box;
  opacity: 0;
  animation: message-box-in 0.8s ease forwards;
  animation-delay: 1.2s;
}
.adult-fv__message-text {
  opacity: 0;
  animation: message-text-in 0.8s ease forwards;
  animation-delay: 1.5s;
}

@media screen and (max-width: 500px) {
  .adult-fv__message-box {
    padding: 10px;
    width: 40%;
  }
  .adult-fv__deco-box {
    right: -20%;
  }
  .adult-fv__message-text {
    font-size: 0.4em;
  }
}
@keyframes deco-box-in {
  from {
    opacity: 0;
    transform: translate(30px, -20px);
  }
  to {
    opacity: 0.5;
    transform: translate(0, 0);
  }
}
@keyframes message-box-in {
  from {
    opacity: 0;
    transform: translate(30px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes message-text-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.a-commitment {
  padding: 120px 20px;
}
.a-commitment__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.a-commitment__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .a-commitment__title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.a-commitment__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.a-commitment__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
.a-commitment__point {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.a-commitment__image {
  flex: 0 1 45%;
  min-width: 0;
}
.a-commitment__image-2 {
  flex: 0 1 45%;
  min-width: 0;
}
.a-commitment__image img {
  display: block;
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.a-commitment__image-2 img {
  display: block;
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transform: translateX(-40px);
}
.a-commitment__image-chair {
  -o-object-position: center 70%;
     object-position: center 70%;
}
.a-commitment__content {
  flex: 0 1 45%;
  min-width: 0;
}
.a-commitment__content h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333333;
  position: relative;
  display: inline-block;
}
.a-commitment__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 230px;
  height: 1.5px;
  background-color: #A3B899;
}
.a-commitment__content h3::before {
  content: "";
  position: absolute;
  left: 221px;
  bottom: 8.5px;
  width: 12px;
  height: 1.5px;
  background-color: #A3B899;
  transform: rotate(45deg);
  transform-origin: left center;
}
.a-commitment__content p {
  line-height: 1.5;
  font-size: 0.8rem;
}

.reverse {
  flex-direction: row-reverse;
  gap: 30px;
}

@media screen and (max-width: 500px) {
  .a-commitment__title {
    flex-direction: column;
    text-align: center;
  }
  .a-commitment__subtitle {
    margin-top: 8px;
  }
  .a-commitment__point,
  .a-commitment__point.reverse {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
  }
  .a-commitment__content {
    display: contents;
  }
  .a-commitment__content h3 {
    order: 1;
    width: 90%;
  }
  .a-commitment__image,
  .a-commitment__image-2 {
    order: 2;
    width: 85%;
  }
  .a-commitment__content p {
    order: 3;
    width: 90%;
    margin-top: 20px;
  }
  .a-commitment__image-2 img {
    transform: none;
  }
  .a-commitment__point:last-child {
    margin-bottom: 0;
  }
}
.curated__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .curated__title {
    top: 15%;
    font-size: 20px;
  }
}
.curated__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.curated__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .curated__subtitle::before {
    font-size: 12px;
  }
}
.curated__items {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .curated__items {
    width: 90%;
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
  }
}
.curated__item {
  width: 200px;
}
.curated__item img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
}
.curated__item-title {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
}
.curated__text {
  margin-top: 15px;
  font-size: 12px;
  line-height: 2;
}

@media screen and (max-width: 500px) {
  .curated__title {
    flex-direction: column;
    text-align: center;
  }
  .curated__subtitle {
    margin-top: 8px;
  }
  .curated__items {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .curated__items::-webkit-scrollbar {
    display: none;
  }
  .curated__item {
    flex: 0 0 80%;
    width: 80%;
    scroll-snap-align: start;
    text-align: center;
  }
}
.night-menu {
  margin-top: 100px;
}
.night-menu__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .night-menu__title {
    top: 15%;
    font-size: 20px;
  }
}
.night-menu__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.night-menu__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .night-menu__subtitle::before {
    font-size: 12px;
  }
}
.night-menu__slider {
  display: flex;
  gap: 0px;
  margin-top: 60px;
  overflow: hidden;
  margin: 0 50px;
}
.night-menu__slide {
  flex: 0 0 33.333%;
}
.night-menu__slide img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.night-menu__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.night-menu__more a {
  text-decoration: none;
  color: #333333;
}

@media screen and (max-width: 500px) {
  .night-menu__title {
    flex-direction: column;
    text-align: center;
  }
  .night-menu__subtitle {
    margin-top: 8px;
  }
  .night-menu__slider {
    width: 94%;
    margin: 0 auto;
  }
  .night-menu__slider img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.a-guide {
  margin-top: 100px;
}
.a-guide__container {
  position: relative;
  max-width: 100%;
  height: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.a-guide__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/price2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.a-guide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.a-guide__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1100px) {
  .a-guide__title {
    top: 15%;
    font-size: 20px;
  }
}
.a-guide__subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.a-guide__subtitle::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1100px) {
  .a-guide__subtitle::before {
    font-size: 12px;
  }
}
.a-guide__text {
  text-align: left;
}
.a-guide__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.a-guide__item {
  list-style: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: rgba(163, 184, 153, 0.7);
  border-radius: 50%;
  width: 150px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.a-guide__btn {
  display: inline-block;
  position: relative;
  margin-top: 50px;
  text-decoration: none;
  color: #333333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.8em;
}
.a-guide__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 125px;
  height: 2px;
  background: #865F41;
  transform: translateX(-50%);
}
.a-guide__btn::after {
  content: "";
  position: absolute;
  top: calc(130% - 4px);
  right: -20%;
  width: 15px;
  height: 2px;
  background: #865F41;
  transform: rotate(45deg);
  transform-origin: right center;
}

@media screen and (max-width: 500px) {
  .a-guide__title {
    flex-direction: column;
    text-align: center;
  }
  .a-guide__subtitle {
    margin-top: 8px;
  }
  .a-guide__content {
    width: 90%;
  }
  .a-guide__text {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.8em;
  }
  .a-guide__list {
    gap: 10px;
  }
  .a-guide__item {
    font-size: 0.8em;
  }
  .a-guide__container {
    height: 550px;
  }
}
body {
  padding-top: 100px;
}

h4 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
}

dt, dd {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

li {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.price {
  padding: 120px 20px 0px;
}
.price__container {
  max-width: 900px;
  margin: 0 auto;
}
.price__title {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  .price__title {
    top: 15%;
    font-size: 15px;
  }
}
.price__text {
  font-size: 12px;
  margin-bottom: 60px;
}

.p-price {
  margin-bottom: 80px;
}
.p-price__title {
  margin-bottom: 30px;
  font-size: 22px;
}
@media screen and (max-width: 1100px) {
  .p-price__title {
    font-size: 15px;
  }
}
.p-price__title::before {
  content: "▶";
  color: #8B5A3C;
  margin-right: 8px;
  font-size: 14px;
}
.p-price__container {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.p-price__img {
  width: 120px;
  flex-shrink: 0;
  transform: translateY(-35px);
}
.p-price__img img {
  width: 100%;
  display: block;
}

.p-price__row,
.p-price__row--header {
  display: grid;
  grid-template-columns: 160px 120px 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1100px) {
  .p-price__row,
  .p-price__row--header {
    font-size: 0.7em;
    padding: 10px 0;
  }
}

.p-price__term {
  margin: 0;
}

.p-price__description {
  margin: 0;
}

.a-price {
  margin-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .a-price {
    margin-bottom: 50px;
  }
}
.a-price__title {
  margin-bottom: 30px;
  font-size: 22px;
}
@media screen and (max-width: 1100px) {
  .a-price__title {
    font-size: 15px;
  }
}
.a-price__title::before {
  content: "▶";
  color: #8B5A3C;
  margin-right: 8px;
  font-size: 14px;
}
.a-price__container {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.a-price__img {
  width: 120px;
  flex-shrink: 0;
  transform: translateY(-20px);
}
.a-price__img img {
  width: 100%;
  display: block;
}
.a-price__table {
  flex: 1;
}
.a-price__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1100px) {
  .a-price__row {
    font-size: 0.8em;
  }
}
.a-price__term, .a-price__description {
  margin: 0;
}
.a-price__description {
  font-weight: 500;
}

@media screen and (max-width: 500px) {
  .price__title {
    margin-bottom: 60px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 20px;
  }
  .price__subtitle {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  .price__subtitle::before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #333;
    margin-right: 20px;
    margin-left: 20px;
  }
  .p-price__container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .p-price__img {
    width: 90px;
    transform: none;
  }
  .p-price__row,
  .p-price__row--header {
    grid-template-columns: 100px 80px 1fr;
    font-size: 0.7em;
  }
  .a-price__container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .a-price__img {
    width: 90px;
    transform: none;
  }
  .a-price__table {
    width: 100%;
  }
  .a-price__row {
    font-size: 0.75em;
    padding: 12px 0;
  }
  .a-price__term {
    font-size: 0.8em;
  }
}
.drink__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1100px) {
  .drink__container {
    padding: 50px 20px;
  }
}
.drink__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .drink__title {
    font-size: 20px;
  }
}
.drink__text {
  width: 520px;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 60px;
}

.drink__item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.drink__item li {
  list-style: none;
  width: 300px;
}
.drink__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.drink__item h4 {
  margin-top: 20px;
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.drink__item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 10px;
}
.drink__item p {
  margin-left: 16px;
  margin-top: 8px;
  font-size: 14px;
}

.drink__list {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 18px;
  width: 520px;
  margin-top: 60px;
  font-size: 14px;
}
.drink__list dt {
  position: relative;
  padding-left: 18px;
}
.drink__list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: #A3B899;
  border-radius: 10px;
}
.drink__list dd {
  text-align: right;
}

.food__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1100px) {
  .food__container {
    padding: 50px 20px 0px;
  }
}
.food__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .food__title {
    font-size: 20px;
  }
}
.food__text {
  width: 520px;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 60px;
}

.food__item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.food__item li {
  list-style: none;
  width: 300px;
}
.food__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.food__item h4 {
  margin-top: 20px;
  padding-left: 16px;
  position: relative;
  font-weight: 500;
  font-size: 13px;
}
.food__item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 10px;
}
.food__item p {
  margin-left: 16px;
  margin-top: 8px;
  font-size: 14px;
}

.food__list {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 18px;
  width: 520px;
  margin-top: 60px;
  font-size: 13px;
}
.food__list dt {
  position: relative;
  padding-left: 18px;
}
.food__list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: #A3B899;
  border-radius: 10px;
}
.food__list dd {
  text-align: right;
}

.dessert__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1100px) {
  .dessert__container {
    padding: 100px 20px 0px;
  }
}
.dessert__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .dessert__title {
    font-size: 20px;
  }
}

.dessert__item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.dessert__item li {
  list-style: none;
  width: 300px;
}
.dessert__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.dessert__item h4 {
  margin-top: 20px;
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.dessert__item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 10px;
}
.dessert__item p {
  margin-left: 16px;
  margin-top: 8px;
  font-size: 14px;
}

.nightmenu__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1100px) {
  .nightmenu__container {
    padding: 100px 20px 0px;
  }
}
.nightmenu__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .nightmenu__title {
    font-size: 20px;
  }
}

.nightmenu__item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.nightmenu__item li {
  list-style: none;
  width: 300px;
}
.nightmenu__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.nightmenu__item h4 {
  margin-top: 20px;
  padding-left: 16px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}
.nightmenu__item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 10px;
}
.nightmenu__item p {
  margin-left: 16px;
  margin-top: 8px;
  font-size: 13px;
}

.pairmenu__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1100px) {
  .pairmenu__container {
    padding: 100px 20px 0px;
  }
}
.pairmenu__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .pairmenu__title {
    font-size: 20px;
  }
}

.pairmenu__item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.pairmenu__item li {
  list-style: none;
  width: 300px;
}
.pairmenu__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.pairmenu__item h4 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 20px;
  padding-left: 16px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}
.pairmenu__item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 10px;
}
.pairmenu__item p {
  margin-left: 16px;
  margin-top: 8px;
  font-size: 13px;
}

.kidsmenu__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1100px) {
  .kidsmenu__container {
    padding: 100px 20px 0px;
  }
}
.kidsmenu__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .kidsmenu__title {
    font-size: 20px;
  }
}

.kidsmenu__item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.kidsmenu__item li {
  list-style: none;
  width: 300px;
}
.kidsmenu__item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.kidsmenu__item h4 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 20px;
  padding-left: 16px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}
.kidsmenu__item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 10px;
}
.kidsmenu__item p {
  margin-left: 16px;
  margin-top: 8px;
  font-size: 13px;
}

@media screen and (max-width: 1100px) {
  .drink__item,
  .food__item,
  .dessert__item,
  .nightmenu__item,
  .pairmenu__item,
  .kidsmenu__item {
    display: block;
  }
  .drink__item li,
  .food__item li,
  .dessert__item li,
  .nightmenu__item li,
  .pairmenu__item li,
  .kidsmenu__item li {
    width: 100%;
    display: grid;
    grid-template-columns: 45% 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-bottom: 35px;
  }
  .drink__item img,
  .food__item img,
  .dessert__item img,
  .nightmenu__item img,
  .pairmenu__item img,
  .kidsmenu__item img {
    grid-column: 1;
    grid-row: 1/3;
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .drink__item h4,
  .food__item h4,
  .dessert__item h4,
  .nightmenu__item h4,
  .pairmenu__item h4,
  .kidsmenu__item h4 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-top: 0;
    padding-left: 16px;
  }
  .drink__item p,
  .food__item p,
  .dessert__item p,
  .nightmenu__item p,
  .pairmenu__item p,
  .kidsmenu__item p {
    grid-column: 2;
    grid-row: 2;
    margin-left: 16px;
    margin-top: 8px;
  }
}
.alcohol__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 140px;
}
.alcohol__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .alcohol__title {
    font-size: 20px;
  }
}
.alcohol__text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 60px;
  width: 420px;
}

.alcohol__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 120px;
       column-gap: 120px;
  row-gap: 50px;
  align-items: start;
}

.alcohol__menu:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.alcohol__detail {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
}
.alcohol__detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 22px;
  background: #A3B899;
  border-radius: 20px;
}

.alcohol__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alcohol__menu li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 15px;
}
.alcohol__menu li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1100px) {
  .alcohol__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .alcohol__menu {
    width: 100%;
  }
  .alcohol__text {
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 500px) {
  .drink__text,
  .food__text {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.8em;
    line-height: 1.5;
  }
  .drink__list,
  .food__list {
    width: 100%;
    box-sizing: border-box;
  }
  .drink__list dt,
  .drink__list dd,
  .food__list dt,
  .food__list dd {
    font-size: 0.8em;
  }
  .drink__item h4,
  .food__item h4,
  .dessert__item h4,
  .nightmenu__item h4,
  .pairmenu__item h4,
  .kidsmenu__item h4 {
    font-size: 0.7em;
  }
  .drink__item p,
  .food__item p,
  .dessert__item p,
  .nightmenu__item p,
  .pairmenu__item p,
  .kidsmenu__item p {
    font-size: 0.7em;
  }
  .alcohol__text {
    font-size: 0.8em;
  }
  .alcohol__menu li {
    font-size: 0.8em;
  }
  .drink__item img,
  .food__item img,
  .dessert__item img,
  .nightmenu__item img,
  .pairmenu__item img,
  .kidsmenu__item img {
    height: 100px;
  }
  .drink__item li,
  .food__item li,
  .dessert__item li,
  .nightmenu__item li,
  .pairmenu__item li,
  .kidsmenu__item li {
    grid-template-columns: 40% 1fr;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.body {
  padding-top: 100px;
}

.monthbook__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
}
.monthbook__section-title {
  text-align: left;
  font-size: 36px;
  margin-bottom: 80px;
  font-weight: 500;
}
.monthbook__title {
  font-size: 18px;
  margin-bottom: 20px;
}
.monthbook__item {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.monthbook__item:last-child {
  margin-bottom: 0;
}
.monthbook__item img {
  width: 220px;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.monthbook__text {
  max-width: 480px;
}
.monthbook__book-title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
}
.monthbook__text p {
  line-height: 2;
  font-size: 12px;
}

.backnumber {
  padding-bottom: 100px;
}
.backnumber__container {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .backnumber__container {
    padding: 0 30px;
  }
}
.backnumber__title {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 500;
}
.backnumber__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.backnumber__list a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}
.backnumber__list a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1100px) {
  .monthbook__container {
    padding: 70px 20px;
  }
  .monthbook__section-title {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .monthbook__item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 70px;
  }
  .monthbook__item img {
    width: 200px;
  }
  .monthbook__text {
    width: 100%;
    max-width: 500px;
  }
  .monthbook__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .monthbook__text p {
    font-size: 13px;
    line-height: 2;
  }
  .backnumber__title {
    font-size: 20px;
  }
  .backnumber__list {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .monthbook__title {
    text-align: center;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zen Old Mincho", sans-serif;
}/*# sourceMappingURL=style.css.map */