@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  height: 100%; /* 高さを100%に設定 */
  overflow-x: hidden; /* 横スクロールバーを非表示に */
  overflow-y: auto; /* 縦スクロールバーを表示する場合はauto */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* すべての要素のボックスモデルをborder-boxに */
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* すべての要素に適用 */
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #68666c;
  background: #f7f1d3;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

.inner {
  padding-inline: 20px;
}
.inner.fv-inner {
  padding-inline: 60px;
}
.inner.menu-inner {
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1190px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

/* 下からふわっと表示させるアニメーション */
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.heading-wrapper {
  text-align: center;
  opacity: 0; /* 初期状態で透明 */
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* 初期状態で下に配置 */
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out; /* 1秒かけてアニメーション */
  visibility: hidden; /* 初期状態では非表示 */
}
@media screen and (min-width: 600px) {
  .heading-wrapper.breads-heading {
    text-align: left;
    margin-left: 160px;
  }
}

/* スクロール時に表示される */
.heading-wrapper.animate {
  opacity: 1; /* アニメーション後は不透明に */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻る */
  visibility: visible; /* 表示される */
}

.heading {
  font-size: 50px;
  font-family: "Slackside One", serif;
  display: inline-block;
  line-height: 1;
  color: #cfddb2;
}
@media screen and (min-width: 600px) {
  .heading {
    font-size: 68px;
  }
}

.heading__ja {
  color: #cfddb2;
}

.button {
  display: inline-block;
  width: 200px;
  padding: 14px 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #f3bdb7;
  position: relative;
  border-radius: 40px;
}
@media screen and (min-width: 600px) {
  .button {
    width: 250px;
  }
}

.button::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.button:hover::before {
  right: 25px;
}

.button-back {
  display: inline-block;
  width: 200px;
  padding: 14px 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #f3bdb7;
  position: relative;
  border-radius: 40px;
}
@media screen and (min-width: 600px) {
  .button-back {
    width: 250px;
  }
}

.button-back::before {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  left: 30px;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

.button-back:hover::before {
  left: 25px;
}

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

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

#menu {
  z-index: 100;
}

#menu-bar {
  width: 45px;
  height: 40px;
  margin: 30px 0 20px 20px;
  cursor: pointer;
}

.bar {
  height: 5px;
  width: 100%;
  background-color: #f3bdb7;
  display: block;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#bar1 {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

#bar3 {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.nav {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: none;
}

.nav ul {
  padding: 0 22px;
}

.nav li {
  list-style: none;
  padding: 12px 0;
}

.nav li a {
  color: #68666c;
  font-size: 24px;
  text-decoration: none;
  font-family: "Josefin Sans", serif;
}

.nav li a:hover {
  font-weight: bold;
}

.menu-bg,
#menu {
  top: 0;
  left: 0;
  position: absolute;
}

.menu-bg {
  z-index: 1;
  width: 0;
  height: 0;
  margin: 30px 0 20px 20px;
  background: radial-gradient(circle, #cfddb2, #eef6f1);
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.change {
  display: block;
}

.change .bar {
  background-color: #f9f9f9;
}

.change #bar1 {
  -webkit-transform: translateY(4px) rotateZ(-45deg);
          transform: translateY(4px) rotateZ(-45deg);
}

.change #bar2 {
  opacity: 0;
}

.change #bar3 {
  -webkit-transform: translateY(-6px) rotateZ(45deg);
          transform: translateY(-6px) rotateZ(45deg);
}

.change-bg {
  width: 520px;
  height: 700px;
  -webkit-transform: translate(-60%, -30%);
          transform: translate(-60%, -30%);
}

.header__logo {
  position: fixed; /* 固定配置 */
  top: 10px; /* 上からの位置調整 */
  right: 20px; /* 右からの位置調整 */
  z-index: 101; /* メニューより前に表示 */
}
@media screen and (min-width: 600px) {
  .header__logo {
    right: 37px;
  }
}
.header__logo img {
  max-width: 100px;
}
@media screen and (min-width: 600px) {
  .header__logo img {
    max-width: 125px;
  }
}

.fv {
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.swiper .swiper-1 {
  width: 40%;
  height: auto;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}

.swiper-2 {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.swiper-2 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important; /* イージングを線形に */
}

.swiper-2 .swiper-slide {
  width: auto; /* スライドの幅を自動調整 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center; /* 上下の中央揃え */
}

.scroll-wrapper {
  position: absolute;
  bottom: 48%; /* 位置調整（中央付近にしたいなら 50% に変更） */
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
}

.scroll-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.scroll-text {
  font-size: 50px;
  padding-left: 20px;
  letter-spacing: 0.1em;
  color: #cfddb2;
  font-family: "Josefin Sans", serif;
}
@media screen and (min-width: 600px) {
  .scroll-text {
    font-size: 80px;
  }
}

.container_04 {
  height: 120px;
}

.scrollbar-text_04 {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #f3bdb7;
  font-size: 14px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Josefin Sans", serif;
}

.scrollbar_04 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar_04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #f3bdb7;
}

.scrollbar_04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f3bdb7;
  -webkit-animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
          animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.about {
  padding-block: 60px;
  position: relative;
}

.about__box {
  border-radius: 40px;
  background: #f9f9f9;
  padding: 40px 10px 60px 10px;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .about__box {
    padding: 60px 100px 100px 100px;
  }
}

.about__text {
  color: #68666c;
  margin-top: 40px;
  line-height: 2;
}

.breads {
  padding-block: 60px;
}

.breads__link {
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.schedule {
  padding-block: 60px;
}

.calendar-wrapper {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-top: 60px;
}

.xo-calendar {
  /* カレンダーの背景色や枠線を変更 */
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.calendar-caption {
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
}

.xo-event-calendar table.xo-month .month-dayname td div {
  font-family: "Josefin Sans", serif;
}

.xo-event-calendar table.xo-month .month-event-title {
  font-size: 0.7em;
  font-family: "Noto Sans JP", serif;
}

.xo-event-calendar table.xo-month > thead th {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
}

.xo-event-calendar p.holiday-title {
  font-family: "Noto Sans JP", serif;
  text-align: left;
}

.xo-event-calendar p.holiday-title span {
  padding: 0 0 0 21px;
  margin: 0 8px 0 0;
}

.news {
  padding-block: 60px;
}

.news__box {
  max-width: 600px;
  margin-inline: auto;
  padding: 20px 20px 40px 20px;
  background: #f9f9f9;
  border-radius: 60px;
  border: double 7px #cfddb2;
}
@media screen and (min-width: 600px) {
  .news__box {
    padding: 20px 60px 40px 60px;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.news-list li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  text-decoration: none;
  color: #68666c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.news-list .date {
  font-weight: bold;
  color: #68666c;
  min-width: 100px;
}

.news-list .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news__link {
  text-align: center;
  margin-top: 40px;
}
.news__link a {
  background-color: #cfddb2;
}

.shop {
  padding-block: 60px;
}

.shop__inner {
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .shop__inner {
    padding-inline: 20px;
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .shop__inner {
    padding-inline: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1100px;
  }
}

@media screen and (min-width: 1200px) {
  .shop__info {
    width: 50%;
  }
}

.shop__title {
  color: #68666c;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.shop__dl {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .shop__dl {
    margin-top: 20px;
  }
}

.shop__dt {
  color: #68666c;
  float: left;
  clear: left;
  width: 107px;
  margin-bottom: 5px;
}

.shop__dd {
  color: #68666c;
  margin-bottom: 5px;
}

.shop__address {
  color: #68666c;
  margin-top: 15px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  height: 50vh;
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .map-wrapper {
    margin-top: 0;
  }
}
.map-wrapper iframe {
  -webkit-filter: sepia(0.25);
          filter: sepia(0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  padding-bottom: 20px;
}

.footer__copy {
  text-align: center;
  color: #68666c;
  font-size: 14px;
}

.news-list-page {
  padding-block: 100px;
  max-width: 900px;
  margin-inline: auto;
}

.news-list__box {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 60px;
}

.news-articles {
  margin-block: 60px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-item a {
  text-decoration: none;
  color: inherit;
}

.news-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-item-excerpt {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.news-item-date {
  font-size: 14px;
  color: #999;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

a:hover {
  opacity: 0.6;
}

.pagination {
  text-align: center;
  margin: 20px 0;
}

.pagination ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px; /* ボタンの間隔 */
  padding: 0;
}

.pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* すべての<li>をフレックスボックスで統一 */
}

.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  text-decoration: none;
  color: #68666c;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1; /* 文字の高さを統一 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ホバー時の色変更 */
.pagination .page-numbers:hover {
  background: #f5f5f5;
}

/* 現在のページ（active）のスタイル */
.pagination .page-numbers.active {
  background: #cfddb2;
  color: #fff;
  border-color: #cfddb2;
  font-weight: normal;
}

/* 「…」のスタイル */
.pagination .dots {
  cursor: default;
}

/* 矢印のサイズと配置を調整 */
.pagination .page-numbers i {
  font-size: 14px;
}

.news-detail, .event-detail {
  padding-block: 100px;
}

.news-detail__box, .event-detail__box {
  max-width: 800px;
  margin-inline: auto;
  padding: 40px 20px;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}
@media screen and (min-width: 600px) {
  .news-detail__box, .event-detail__box {
    padding: 60px 60px;
    border-radius: 60px;
  }
}

.news-title, .event-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #68666c;
}
@media screen and (min-width: 600px) {
  .news-title, .event-title {
    font-size: 32px;
  }
}

.news-meta, .event-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .news-meta, .event-meta {
    margin-bottom: 40px;
  }
}

.news-thumbnail, .event-thumbnail {
  text-align: center;
}

.news-content, .event-content {
  color: #555;
  margin-top: 40px;
}

.news-content p, .event-content p {
  margin-bottom: 20px;
}

.news-nav, .event-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.news-nav a, .event-nav a {
  text-decoration: none;
  font-weight: bold;
  color: #68666c;
  font-size: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-nav a:hover, .event-nav a:hover {
  color: #cfddb2;
}

.prev-article {
  margin-right: auto;
}

.next-article {
  margin-left: auto;
}

.news-detail__link, .event-detail__link {
  margin-top: 60px;
  text-align: center;
}

.menu {
  padding-block: 100px;
}

.menu__img {
  margin-top: 60px;
  text-align: center;
}

.menu__text {
  color: #68666c;
  text-align: center;
  margin-top: 60px;
  line-height: 2;
}

.menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .menu__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.menu__item {
  max-width: 400px;
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .menu__item {
    width: calc(33.33% - 40px);
    margin-top: 60px;
  }
}

.menu-item__img img {
  width: 100%;
}

.menu-item__name {
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
}

.menu-item__desc {
  margin-top: 10px;
}

.menu__link, .news-list__link {
  text-align: center;
  margin-top: 60px;
}