@charset "UTF-8";

/* ===============================
   Common
=============================== */

* {
  box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Shippori Mincho", "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #f4f4f4;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}


/* fadeIn */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 1s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

@media (max-width: 768px) {
  .fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
  }

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
  }
}



/* ===============================
   Header
=============================== */
.header {
  padding: 24px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
}

.logo img {
  width: 220px;
  height: auto;
  aspect-ratio: 1/1;
}

.nav__logo {
  display: none;
}

.nav__btn {
  display: none;
}

.nav ul {
  display: flex;
  gap: 70px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav a {
  color: inherit;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.nav img {
  width: 35px;
  height: 35px;
  aspect-ratio: 1/1;
}

.menuButton {
  display: none;  
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0;
    z-index: 50;

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .header-inner {
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  .menuButton {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: block;
    position: static;
    top: auto;
    transform: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(244, 244, 244, 0.96);
    z-index: 100;
    padding-top: 90px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__logo {
    position: fixed;
    left: 16px;
    top: 50px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    z-index: 200;
  }

  .nav__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


  .nav__btn {
    position: fixed;
    right: 16px;
    top: 50px;
    transform: translateY(-50%);
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 200;
  }

  .nav__btn img {
    width: 28px;
    height: 28px;
    display: block;
  }

  .nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    padding-top: 5rem;
  }

  .nav ul a {
    text-decoration: none;
    color: #333;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    letter-spacing: 0.06em;
  }

  .nav ul li:last-child img {
    width: 44px;
    height: 44px;
    display: block;
  }

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



/* ===============================
   Hero
=============================== */
.hero {
  width: 100%;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}




/* ===============================
Concept (PC / % based)
=============================== */
.concept {
  padding-bottom: 100px;
}

.concept-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 5%;
}

.concept-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6%;
  position: relative;
}

.concept-text {
  max-width: 460px;
  min-width: 380px;
  margin-top: 15.5%;
  margin-left: 7%;
  text-align: center;
  font-size: 2rem;
  line-height: 5;
  letter-spacing: 0.078rem;
}

.concept-images {
  width: 56%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4%;
  margin-top: 7.5%;
}

.consept-img__PC {
  display: none;
}

.concept-img1 {
  width: 44%;
  /* aspect-ratio: 2 / 3; */
  object-fit: cover;
  display: block;
}

.concept-img2 {
  width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-top: 45%;
}

.concept-more {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: 5%;
  margin-top: 6.5%;

  align-items: center;
  gap: 16px;

  font-size: 2.6rem;
  text-decoration: none;
  color: inherit;
}

.concept-more-icon {
  width: 69px;
  height: 69px;
  display: block;
}


@media (max-width: 768px) {

  .concept {
    padding: 10rem 0;
  }

  .concept-wrap {
    margin: 0 auto;
    text-align: center;
  }

  .concept-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .concept-text {
    margin: 0;
  }

  .concept-text p {
    margin: 0;
    font-size: 1.6rem;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 329%; /* 52.64px */
    letter-spacing: 0.48px;
  }


  .concept-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin-top: 100px;
  }

  .consept-img__PC {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .concept-img1,
  .concept-img2 {
    width: calc((100% - 0.4rem) / 2);
    display: block;
  }

  .concept-img1 {
    margin-top: 10rem;
  }

  .concept-img2 {
    margin-top: calc(10rem + 20rem);
  }


  .concept-more {
    margin-top: 10rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
    /* padding-right: 2rem; 右端から20px */
    text-decoration: none;
    color: inherit;
  }

  .concept-more span {
    font-size: 1.5rem;
  }

  .concept-more-icon {
    width: 3.6rem;
    height: 3.6rem;
    display: block;
  }
}


/* ===============================
   Menu
=============================== */
.menu {
  padding: 150px 5%;
}

.menu-title {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 70px;
  padding-left: 5%;
}

.menu-image-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-image__mainPC,
.menu-image__mainSP {
  width: 100%;
  display: block;
}

.menu-image__mainSP {
  display: none;
}

.menu-link {
  position: absolute;
  right: 32px;
  bottom: 32px;

  display: inline-flex;
  align-items: center;
  gap: 16px;

  font-size: 2.6rem;
  font-weight: 400;
  white-space: nowrap;

  text-decoration: none;
  color: inherit;
}

.menu-link-icon {
  width: 56px;
  height: 56px;
  display: block;
}

/* ===============================
   Menu (SP)
=============================== */
@media (max-width: 768px) {

  .menu {
    padding: 10rem 0;
  }

  .menu-title {
    font-size: 1.8rem;
    margin-left: 2rem;
    margin-bottom: 5rem;
    padding-left: 0;
    font-weight: 400;
  }

  .menu-image-wrap {
    width: 100vw;
    height: 372px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
  }

  .menu-image__mainPC {
    display: none;
  }

  .menu-image__mainSP {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .menu-link {
    right: 2rem;
    bottom: 2rem;
    gap: 1.2rem;
  }

  .menu-link span {
    font-size: 1.5rem;
  }

  .menu-link-icon {
    width: 3.6rem;
    height: 3.6rem;
  }
}


/* =========================
   Instagram
========================= */
.instagram {
  padding: 120px clamp(120px, 10%, 200px);
}

.instagram .section-title {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 60px;
  text-align: left;
}

.instagram .embedsocial-hashtag {
  width: 100%;
}

.instagram iframe,
.instagram .es-slider,
.instagram .es-slider-container {
  max-width: 100%;
}

.instagram .feed-powered-by-es {
  margin-top: 24px;
  opacity: 0.6;
}



@media (max-width: 768px) {

  .instagram {
    padding: 10rem 2rem;
    overflow-x: hidden;
  }

  .instagram .section-title {
    font-size: 1.8rem;
    margin-bottom: 5rem;
    text-align: left;
  }

  .instagram-wrap {
    width: 100%;
    margin: 0 auto;
  }

  .instagram .embedsocial-hashtag {
    width: 100%;
    max-width: 100%;
  }

  .instagram .embedsocial-hashtag iframe,
  .instagram .embedsocial-hashtag .es-slider,
  .instagram .embedsocial-hashtag .es-slider-container {
    width: 100%;
    max-width: 100%;
  }

  .instagram .embedsocial-hashtag * {
    box-sizing: border-box;
  }

  .instagram .feed-powered-by-es {
    margin-top: 2.4rem;
    opacity: 0.6;
  }
}




/* =========================
   Access & Detail（PC）
========================= */
.access {
  padding: 100px clamp(120px, 10%, 200px) 150px;
}

.access .section-title{
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 70px;
}

.access .section-sub{
  display: inline-block;
  margin-top: 6px;
  font-size: 2.6rem;
  font-weight: 400;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.map-wrap{
  width: 100%;
}

.access .map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.access .address{
  margin-top: 24px;
  font-size: 2.6rem;
  line-height: 1.6;
}

.address span{
  font-size: 2.4rem;
}

.shop-info {
  font-size: 26px;
  line-height: 1.9;
}

.shop-info p {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 12px;
  margin: 0 0 12px;
}

.shop-info strong {
  font-weight: 500;
}

.shop-info .note {
  display: block;
  margin-left: 140px;
  font-size: 22px;
  line-height: 1.6;
}

.shop-info a.tel {
  color: inherit;
  text-decoration: none;
}

.shop-info a.tel:hover {
  opacity: 0.7;
}

@media (hover: hover) {
  .shop-info a.tel:hover {
    opacity: 0.8;
  }
}


@media (max-width: 768px) {

  .access{
    padding: 10rem 0;
  }

  .access .section-title{
    font-size: 1.8rem;
    margin: 0 0 5rem 2rem;
    text-align: left;
  }
  .access .section-sub{
    font-size: 1.8rem;
  }

  .access-inner{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-wrap{
    padding: 0 2rem;
  }

  .access .map{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
  }

  .access .map iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .access .address{
    margin: 0;
    margin-top: 2rem;
    padding-left: 1rem;
    font-size: 1.8rem;
    line-height: 2;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .address span {
    font-size: 1.6rem;
    padding-left: 0;
  }

  .shop-info{
    margin-top: 7rem;
    padding: 0 2rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .shop-info p{
    display: block;
    margin: 0 0 1.2rem;
  }

  .shop-info p {
    display: grid;
    grid-template-columns: 6em 1fr;
    column-gap: 1rem;
    align-items: start;
  }

  .shop-info strong {
    white-space: nowrap;
  }
  .shop-info p strong{
    display: inline-block;
    min-width: 6em;
  }

  .shop-info .note {
    display: grid;
    grid-template-columns: 6em 1fr;
    column-gap: 1rem;
    margin: 1.6rem 0 0;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .shop-info .note::before {
    content: "";
  }

}


/* =========================
   Footer
========================= */
.footer {
  padding: 100px clamp(120px, 10%, 200px) 150px;
  display: grid;
  justify-items: center;
  row-gap: 56px;
}

.footer-logo img {
  width: 260px;
  max-width: 60vw;
  height: auto;
  display: block;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  gap: 70px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-nav img {
  display: block;
  transform: translateY(2px);
  width: 35px;
  height: 35px;
  aspect-ratio: 1/1;
}


.footer-nav a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {

  /* =========================
     Footer（SP）
  ========================= */

  .footer {
    padding: 0 87px 100px;
    display: grid;
    justify-items: center;
    row-gap: 40px;
  }

  .footer-logo img {
    width: 200px;
    height: 200px;
    max-width: none;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 40px;
    font-size: 18px;
  }

  .footer-nav img {
    margin: 5px;
    width: 35px;
    height: 35px;
    transform: none;
  }
}

  /* =========================
     Copy
  ========================= */
.copyright {
  padding: 18px clamp(120px, 10%, 200px);
  text-align: center;
}

.copyright p {
  font-size: 2rem;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .copyright {
    padding: 0 0 62px 0;
    margin: 0;
    text-align: center;
  }

  .copyright p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
  }
}


