@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');
:root {
  --black: #000;
  --white: #fff;
  --gray: #cfcfcf;
  --gray-dark: #9f9f9f;
  --yellow: #EBBE1E;
  --brown: #CD780F;
  --green: #327D55;
  --content-width: 420px;
  --side-image-size: 210px;
  --section-gap: 22px;
  --side-offset: 110px;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333;
}
body {
  background-image: url("../img/bg.jpg");
  background-size: 100%;
  animation: bgZoom 15s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1, .h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: bold;
  text-align: center;
  font-size: 1.5rem;
}
.h1 {
  font-size: 1.3rem;
}
h2 {
  text-align: center;
  font-size: 1rem;
}
.txtC {
  text-align: center;
}
.txtBlk {
  color: black;
}
.page {
  min-height: 100vh;
  position: relative;
}
.main_title {
  padding: 0 2rem;
  display: none;
}
.side-visual {
  position: fixed;
  top: 145px;
  width: var(--side-image-size);
  z-index: 5;
}
.side-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.side-visual--left {
  left: max(24px, calc(50% - var(--content-width) / 2 - var(--side-image-size) - var(--side-offset)));
}
.side-visual--right {
  right: max(24px, calc(50% - var(--content-width) / 2 - var(--side-image-size) - var(--side-offset)));
}
.site-main {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}
.inner {
  padding-left: 16px;
  padding-right: 16px;
}
.header {
  padding-top: 12px;
  padding-bottom: 18px;
}
.header-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #111;
}
.line img {
  position: fixed;
  z-index: 500;
  inset: auto auto 0 50%;
  transform: translateX(-50%)
}
.hidden {
  display: none;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}
.menu-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  font-size: 17px;
  font-weight: bold;
}
.drawer {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  margin-top: 10px;
  padding: 0 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}
.drawer.is-open {
  max-height: 240px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer li + li {
  margin-top: 10px;
}
.lead {
  display: none;
}
.main-lead {
  text-align: center;
  margin: 0 auto 5rem;
  font-size: 1.2rem;
}
.hero {
  padding-bottom: var(--section-gap);
  padding: 6px 0;
  margin: 3rem 3px;
  ;
  border: 1px solid black;
}
.swiper {
  width: 100%;
  height: 350px;
}
.primary-swiper {
  width: 390px;
  height: 450px;
  overflow: hidden;
}
.primary-slide img {
  width: 100%;
  object-fit: contain;
  filter: contrast(1.05);
}
/*.primary-pagination {
  bottom: 10px !important;
}*/
.swiper-slide img {
  width: 100%;
  object-fit: contain;
}
.swiper-button-prev, .swiper-button-next {
  color: #fff;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}
.swiper-pagination-bullet {
  background: #ddd;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.primary-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 999px;
}
.main-swiper {
  height: auto;
  padding: 0 18px 44px;
}
.main-swiper .swiper-wrapper {
  align-items: stretch;
}
.main-swiper .swiper-slide {
  height: auto;
}
.main-swiper .card {
  height: 100%;
}
.main-swiper .swiper-pagination {
  bottom: 8px !important;
}
.main-swiper .swiper-button-prev, .main-swiper .swiper-button-next {
  top: 42%;
}
.card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  background: #fff;
  overflow: hidden;
  text-align: left;
}
.card__media {
  width: 100%;
  padding: 24px 24px 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__media .instagram-media {
  max-width: 100% !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.card__body {
  padding: 0px 24px 0 24px;
}
.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px 0;
}
.card__desc {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
  margin: 0;
}
.card__footer {
  padding: 0 14px 14px 14px;
  text-align: center;
}
.card__footer a {
  display: inline-block;
  border: 1px solid #333;
  margin-top: 0.5rem;
  padding: 3px 10px;
}
.area-button-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 26px;
}
.area-btn, .square-btn {
  border: 0;
  cursor: pointer;
}
.area-btn {
  position: relative;
  min-height: 100px;
  padding: 10px 5px 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease, transform 0.5s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
/* 表示状態 */
.area-btn.is-show {
  opacity: 1;
  transform: translateY(0);
}
.area-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.area-btn::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}
.area-btn:hover, .area-btn:focus-visible {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 1;
  outline: none;
}
.area-btn:hover::before, .area-btn:focus-visible::before {
  opacity: 1;
}
.area-btn:hover::after, .area-btn:focus-visible::after {
  left: 130%;
}
.area-btn:active {
  transform: translateY(-1px) scale(0.99);
}
.area-btn--kanto {
  background: var(--yellow);
}
.area-btn--chubu {
  background: var(--brown);
}
.area-btn--kansai {
  background: var(--green);
}
.area-btn__label, .area-btn__sub, .area-btn__icon {
  position: relative;
  z-index: 1;
}
.area-btn__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.area-btn__sub {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-indent: 0.22em;
}
.area-btn__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-top: 10px;
  background: #fff;
  position: relative;
}
.area-btn__icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 1px;
  height: 12px;
  background: #111;
}
.area-btn__icon::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 1px;
  height: 8px;
  background: #111;
  transform: rotate(28deg);
  transform-origin: top center;
}
.square-btn {
  border: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}
.square-btn {
  min-height: 64px;
}
.accordion-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accordion-item + .accordion-item {
  margin-top: 2px;
}
.accordion-trigger {
  width: 100%;
  border: 0;
  background: #000;
  color: #fff;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
  font-size: 14px;
}
.accordion-trigger__kanto {
  background: var(--yellow);
}
.accordion-trigger__nagoya {
  background: var(--brown);
}
.accordion-trigger__kansai {
  background: var(--green);
}
.accordion-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
}
.accordion-mark {
  width: 20px;
  height: 20px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
}
.accordion-content {
  color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 10px;
}
.accordion-content__kanto {
  background: var(--yellow);
}
.accordion-content__nagoya {
  background: var(--brown);
}
.accordion-content__kansai {
  background: var(--green);
}
.accordion-item.is-open .accordion-content {
  max-height: 2000px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.accordion-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}
.map-img {
  margin-bottom: -2px;
}
.shop-wrap {
  display: flex;
  flex-wrap: wrap;
}
.shop-info {
  padding: 2px;
  margin: 0 0 10px;
  width: 50%;
}
.shop-info h3 {
  font-size: 0.9rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.shop-info p {
  line-height: 1.3;
  margin: 0 0.5rem 1rem 0;
}
.fade-in-shop {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in-shop.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.accordion-content__kanto h3, .accordion-content__kanto p {
  color: black;
}
.shop-info-link {
  font-size: 0.8rem;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 4px 18px 4px 8px;
  margin-bottom: 3px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: right 6px center;
  transition:
    transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease;
}
/* hover */
.shop-info-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background-position: right 2px center;
}
.service_copy {
  font-size: 1.4rem;
  line-height: 2;
}
.recommend {
  margin: 3rem 3px;
  padding: 5px;
  border: 1px solid black;
}
.recommend-area {
  display: flex;
}
.recommend-info {
  padding: 1px;
}
.btn_area {
  text-align: center;
  padding: 2rem 0;
}
.btn_blk {
  display: inline-block;
  background: black;
  font-size: 1.3rem;
  color: white;
  padding: 3px 34px 3px 10px;
  position: relative;
  transition:
    transform 0.2s ease, box-shadow 0.2s ease;
}
/* hover */
.btn_blk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
/* 矢印 */
.btn_blk .btn_arrow {
  transition: transform 0.2s ease;
}
.btn_blk:hover .btn_arrow {
  transform: translateX(4px);
}
.btn_arrow {
  position: absolute;
  width: 20px;
  height: auto;
  top: 12px;
  right: 10px;
}
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  cursor: pointer;
  z-index: 888;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}
.back-to-top:focus-visible {
  outline: 3px solid #333;
  outline-offset: 2px;
}
@media (max-width: 920px) {
  .side-visual, .side-menu {
    display: none;
  }
  .lead, .main_title {
    display: block;
  }
}
@media (max-width: 767px) {
  body {
    animation: none;
    background-size: cover;
  }
}
/* ============ SNS ============ */
footer {
  padding: 0 0 5rem;
  text-align: center;
}
.sns-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}
.sns-icons__small {
  gap: 10px;
  margin: 40px 0;
}
.sns-icons img {
  width: auto;
  height: 30.5px;
}
.sns-icons__small img {
  height: 21px;
}
copyright {
  font-size: 0.7rem;
}
@media (max-width: 767px) {
  :root {
    --content-width: 100%;
  }
  .site-main {
    width: 100%;
  }
  .inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .button-grid {
    gap: 1px;
  }
  .square-btn {
    min-height: 56px;
    font-size: 12px;
  }
  .accordion-trigger {
    min-height: 56px;
    font-size: 13px;
    padding: 0 14px;
  }
}