@charset "UTF-8";

/* =========================
共通
========================= */

:root {
  /* colors: */
  --black: #000000;
  --white: #fff;
  --blue: #193c70;
  --yellow: #ffd900;
  --fz16: clamp(14px, 1.333vw, 16px);
  --fz18: clamp(14px, 1.5vw, 18px);
  --fz20: clamp(16px, 1.666vw, 20px);
  --fz25: clamp(18px, 2.083vw, 25px);
  --fz30: clamp(20px, 2.5vw, 30px);
  --fz50: clamp(26px, 4.1667vw, 50px);
  --fz80: clamp(36px, 6.6667vw, 80px);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--blue);
  font-size: var(--fz20);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all ease 0.3s;
}

a:hover {
  opacity: 0.9;
}

li {
  list-style: none;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;

  @media only screen and (max-width: 499px) {
    padding: 0 2rem;
  }
}

.pc-only {
  display: block;

  @media only screen and (max-width: 767px) {
    display: none;
  }
}

.sp-only {
  display: none;

  @media only screen and (max-width: 767px) {
    display: block;
  }
}

/* セクションタイトル */

.section-title-img {
  max-width: 600px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .section-title-img {
    max-width: 90%;
  }
}

/* Instagramバナー */
.common-insta-wrap {
  text-align: center;
}

.common-insta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
  font-size: var(--fz30);
  gap: 2rem;
  padding-block: 0.5rem;
  border-radius: 30px;
  color: var(--white);
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #c87afb 0%, #fba253 45%, #fe077e 100%);
  background-size: 200% auto;
}

.common-insta-btn:hover {
  transform: translateY(-3px);
  background-position: right center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.common-insta-icon {
  max-width: 60px;
}

.common-insta-text {
  display: inline-block;
}

@media (max-width: 899px) {
  .common-insta-icon {
    max-width: 36px;
  }

  .common-banner-logo {
    max-width: 25%;
  }
}

@media only screen and (max-width: 640px) {
  .common-insta-icon {
    max-width: 24px;
  }

  .common-insta-btn {
    max-width: 100%;
    font-size: 15px;
    gap: 4px;
    padding-block: 0.5rem;
  }
}

@media only screen and (max-width: 399px) {
  .common-insta-btn {
    font-size: 12px;
  }
}

@media only screen and (max-width: 359px) {
  .common-insta-btn {
    font-size: 11px;
  }

  .common-insta-icon {
    max-width: 20px;
  }
}

/* 屋台村バナー */
.common-banner-wrap {
  text-align: center;
}

.common-banner-logo {
  max-width: 300px;
  margin-bottom: 34px;
}

@media only screen and (max-width: 499px) {
  .common-banner-logo {
    width: 40%;
  }
}

/* =========================
ヘッダー メインビジュアル
========================= */

.fade-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s linear;
}

.fade-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: zoomBase 18s ease-in-out infinite;
}

.fade-slide.is-active {
  opacity: 1;
}

@keyframes zoomBase {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.site-header-nav {
  width: 100%;
  background-color: var(--blue);
  padding-block: 50px;
}

.site-header-nav-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
}

.site-header-nav-top {
  text-align: center;
}

.site-header-icon-list {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.site-header-icon-link {
  display: inline-flex;
  max-width: 100%;
}

site-header-icon-item {
  line-height: 1;
}

.site-header-menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-header-menu-link {
  display: inline-block;
  font-size: var(--fz20);
  font-family: "Dela Gothic One", sans-serif;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.site-header-menu-link:hover,
.site-header-menu-link:focus {
  opacity: 0.7;
}

.sp-nav,
.sp-nav-btn {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .site-header-media {
    max-height: 40vh;
  }
}

@media only screen and (max-width: 899px) {
  .site-header-icon-link {
    max-width: 40px;
  }

  .site-header-nav {
    padding-block: 36px;
  }

  .site-header-icon-list {
    gap: 1rem;
  }

  .site-header-nav-inner {
    gap: 1rem;
  }

  .site-header-menu-list {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .site-header-nav-inner {
    padding: 1rem 2rem;
    gap: 0;
  }

  .site-header-icon-link {
    max-width: 36px;
  }

  .site-header-menu-list {
    gap: 1rem;
    row-gap: 0;
  }

  .site-header {
    display: flex;
    flex-direction: column;
  }

  .site-header-nav {
    order: 1;
    padding-bottom: 0;
  }

  .site-header-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 640px) {
  .site-header-media {
    max-height: 33vh;
  }
  .site-header-icon-list,
  .site-header-menu {
    display: none;
  }

  .site-header-logo-img {
    width: 33%;
  }

  .site-header-nav-inner {
    position: fixed;
    width: 100%;
    padding: 0.5rem 0;
    gap: 0;
    z-index: 9999;
  }

  .site-header-image {
    padding-top: 10%;
  }

  .sp-nav-btn {
    display: block;
    position: fixed;
    right: 16px;
    top: 40px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 99999;
  }

  .sp-nav-btn span {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
  }

  /* ドロワー */
  .sp-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--blue);
    padding: 1.5rem;
    z-index: 9999;
    transition: right 0.3s ease;
  }

  .sp-nav.is-open {
    right: 0;
  }

  .sp-nav__menu {
    margin: 0 0 2rem;
    display: grid;
    gap: 1rem;
  }

  .sp-nav__menu a,
  .sp-nav__sns a {
    color: var(--white);
    font-size: var(--fz20);
    font-family: "Dela Gothic One", sans-serif;
  }

  .sp-nav__sns {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    display: grid;
    gap: 1rem;
  }

  /* ===== オーバーレイ ===== */
  .sp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .sp-overlay.is-open {
    display: block;
    opacity: 1;
  }

  html.no-scroll {
    overflow: hidden;
  }

  /* ハンバーガー変形 */
  .sp-nav-btn.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .sp-nav-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .sp-nav-btn.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media only screen and (max-width: 499px) {
  .sp-nav-btn {
    top: 20px;
  }

  .site-header-image {
    padding-top: 5%;
  }
}

@media only screen and (max-width: 399px) {
  .sp-nav-btn {
    top: 15px;
  }
}

/* =========================
屋台村ヒーロー
========================= */

.yatai-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding-bottom: 64px;
}

.yatai-hero__inner {
  max-width: 91%;
  margin-left: auto;
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: center;
}

@media only screen and (min-width: 1441px) {
  .yatai-hero__inner {
    max-width: 85%;
  }
}

.yatai-hero__title {
  font-size: var(--fz80);
  color: var(--yellow);
  font-weight: bold;
  line-height: 1.5;
}

.yatai-hero__text p {
  max-width: 91%;
  margin-left: auto;
  margin-top: 70px;
  font-size: var(--fz30);
  font-weight: bold;
  line-height: 2.66;
}

@media only screen and (min-width: 1441px) {
  .yatai-hero__text p {
    max-width: 85%;
  }
}

.yatai-hero__photo {
  position: relative;
  margin: 0;
}

.yatai-hero__image {
  max-height: 700px;
}

/* 波模様 */
.yatai-hero__photo .yatai-hero__wave {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 215px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 767px) {
  .yatai-hero__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
  }

  .yatai-hero__photo {
    order: 2;
    max-width: 560px;
    margin: 24px auto 0;
  }

  .yatai-hero__image {
    width: 100vw;
  }

  .yatai-hero__title {
    margin-bottom: 60px;
  }

  .yatai-hero__text p {
    max-width: 100%;
    margin: 36px auto 0;
    padding: 0 1rem;
  }
}

/* =========================
おしらせ
========================= */

.news-section {
  padding: 300px 0;
  background: url("../images/yataimura-bg.jpg") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  position: relative;
}

.efficacy-bg-left {
  position: absolute;
  width: clamp(50px, 33.3333vw, 400px);
  top: 3%;
  left: 0;
}

.efficacy-bg-right {
  position: absolute;
  width: clamp(50px, 43.3333vw, 520px);
  bottom: 3%;
  right: 0;
}

.news-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: content-box;
}

.news-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.news-list {
  display: flex;
  gap: 7.5rem;
  margin-bottom: 80px;
}

.news-card {
  width: 25%;
}

.news-card-img-wrap {
  margin-bottom: 30px;
}

.news-card-date {
  font-size: var(--fz20);
  margin-bottom: 4px;
}

.news-card-text {
  font-size: var(--fz20);
}

.news-btn-wrap {
  text-align: center;
  margin-bottom: 64px;
}

.news-btn {
  display: block;
  max-width: 80%;
  margin: 0 auto;
  font-size: var(--fz30);
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50px;
  border: 2px solid transparent;
  padding-block: 0.5rem;
  transition: all 0.3s ease;
}

.news-btn:hover {
  background-color: var(--white);
  color: var(--blue);
  border: 0.5px solid var(--blue);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .news-section {
    padding: 250px 0;
  }

  .news-card {
    width: 31%;
  }

  .news-btn-wrap {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 220px 0;
  }

  .efficacy-bg-left {
    top: 2%;
  }

  .news-list {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .news-card {
    width: 100%;
    margin-bottom: 5rem;
  }

  .news-card-img {
    max-height: 480px;
    object-position: top;
  }
}

@media only screen and (max-width: 499px) {
  .news-inner {
    padding: 0 2rem;
  }

  .news-title-wrap {
    text-align: center;
    margin-bottom: 50px;
  }

  .news-section::before,
  .news-section::after {
    min-width: 20px;
  }

  .news-card-img {
    height: auto;
    object-position: top;
  }

  .news-card {
    margin-bottom: 3rem;
  }

  .news-card-img-wrap {
    margin-bottom: 8px;
  }

  .news-section {
    padding: 150px 0;
  }

  .news-btn-wrap {
    margin-bottom: 24px;
  }

  .news-card-tag {
    margin-bottom: 12px;
  }

  .news-btn {
    max-width: 100%;
    font-size: 18px;
    padding-block: 0.3rem;
  }
}

@media only screen and (max-width: 399px) {
  .news-btn {
    font-size: 14px;
  }
}

@media only screen and (max-width: 359px) {
  .news-btn {
    font-size: 12px;
  }
}

/* =========================
店舗情報
========================= */

.store-section {
  padding: 300px 0 200px;
  position: relative;
}

.store-section .efficacy-bg-left {
  top: 6%;
}

.store-section .efficacy-bg-right {
  bottom: -3.5%;
  z-index: 100;
}

.store-list-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.store-text {
  margin-top: 40px;
  text-align: center;
}

.store-text p {
  font-size: var(--fz30);
  color: var(--white);
}

@media only screen and (max-width: 900px) {
  .store-section {
    padding: 250px 0 170px;
  }
}

@media only screen and (max-width: 767px) {
  .store-section {
    padding: 220px 0 150px;
  }
  .store-section .section-title-img {
    max-width: 70%;
  }

  .store-list-grid {
    margin-top: 0;
  }
}

@media only screen and (max-width: 499px) {
  .store-section {
    padding: 150px 0 100px;
  }
}

/* =========================
出店情報
========================= */

.open-store {
  background: url("../images/yataimura-bg.jpg") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  padding: 300px 0;
  position: relative;
}
.open-store .news-title-wrap {
  margin-bottom: 40px;
}

.open-store .efficacy-bg-right {
  bottom: 2%;
}
.open-store__sub-title {
  font-size: var(--fz30);
  text-align: center;
}
.inquiry-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
}

/* ============ Inquiry Form ============ */
.inquiry-form {
  padding-top: 4rem;
}

.inquiry-form__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.inquiry-form__row {
  margin-bottom: 30px;
}

.inquiry-form__label {
  font-size: var(--fz20);
  font-weight: 500;
  margin-bottom: 10px;
}

.inquiry-form__req {
  font-size: var(--fz16);
  color: #fa0000;
  font-weight: 500;
}
.inquiry-form__opt {
  font-size: var(--fz16);
}
.inquiry-form__mini {
  font-size: var(--fz16);
}

.inquiry-form__input,
.inquiry-form__textarea {
  width: 100%;
  border: 1px solid #1b1f28;
  border-radius: 15px;
  padding: 8px 16px;
  font-size: var(--fz20);
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}

.inquiry-form__input {
  height: 70px;
}

.inquiry-form__input:focus,
.inquiry-form__textarea:focus {
  border-color: #1b3e63;
  box-shadow: 0 0 0 3px rgba(27, 62, 99, 0.12);
}

.inquiry-form__hint {
  margin-top: 8px;
  font-size: var(--fz16);
  line-height: 1.875;
}

.inquiry-form__check {
  display: inline-block;
  margin-right: 1rem;
  font-size: var(--fz20);
  line-height: 2;
}
.inquiry-form__check input {
  margin-right: 2px;
}

.inquiry-form__checks {
  margin-top: 4px;
}

.inquiry-form__guide {
  font-size: var(--fz16);
  line-height: 1.9375;
  padding-left: 2em;
  margin-bottom: 3rem;
}
.inquiry-form__guide li {
  margin-bottom: 4px;
  list-style: disc;
}
.inquiry-form__textarea {
  height: 250px;
  margin-top: 36px;
}
.inquiry-form__privacy {
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 1rem;
  text-align: center;
}
.inquiry-form__privacy-title {
  font-size: var(--fz20);
  line-height: 1.875;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.inquiry-form__privacy-text {
  max-width: 90%;
  margin: 0 auto;
  font-size: var(--fz16);
  line-height: 1.875;
  text-align: left;
}

.inquiry-form__privacy-row {
  margin-block: 100px;
}

.inquiry-form__row--submit {
  text-align: center;
  margin-bottom: 0;
}

.inquiry-form__submit {
  display: inline-block;
  width: 50%;
  padding: 12px 24px;
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inquiry-form__submit:hover {
  background-color: var(--white);
  color: var(--blue);
  border: 0.5px solid var(--blue);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
@media only screen and (max-width: 900px) {
  .open-store {
    padding: 250px 0 170px;
  }
}
@media only screen and (max-width: 767px) {
  .open-store {
    padding: 220px 0 150px;
  }
  .open-store .section-title-img {
    max-width: 80%;
  }
  .inquiry-hero {
    padding-block: 70px;
  }
  .inquiry-hero__title img {
    max-width: 70%;
    margin-bottom: 3rem;
  }
  .inquiry-hero__subtitle {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 640px) {
  .inquiry-form {
    padding-top: 2rem;
  }

  .inquiry-form__input {
    height: 52px;
    padding: 6px 12px;
  }
  .inquiry-form__row {
    margin-bottom: 25px;
  }
  .inquiry-form__textarea {
    height: 200px;
    padding: 14px 16px;
  }

  .inquiry-form__hint {
    font-size: 13px;
  }
  .inquiry-form__guide {
    margin-bottom: 2rem;
  }
  .inquiry-form__check {
    font-size: 14px;
    margin-right: 12px;
  }
  .inquiry-form__label {
    margin-bottom: 6px;
  }
  .inquiry-form__privacy-row {
    margin-block: 25px;
  }
  .inquiry-form__privacy {
    padding: 18px;
    border-radius: 14px;
  }
  .inquiry-hero__tel-icon {
    max-width: 30px;
    margin-right: 8px;
  }
  .inquiry-hero__staff {
    margin: 1rem 0 2rem;
  }
  .inquiry-hero__divider {
    margin-top: 3rem;
  }
  .inquiry-form__submit {
    width: 65%;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 499px) {
  .open-store {
    padding: 150px 0 100px;
  }
}

/* =========================
アクセス
========================= */
.access {
  color: var(--white);
  padding: 300px 0;
  position: relative;
}
.access-title {
  font-size: var(--fz30);
  font-weight: bold;

  text-align: center;
  margin-bottom: 1rem;
}
.access-sub-title {
  font-size: var(--fz20);
  font-weight: normal;
  text-align: center;
}
.frame-section__map {
  width: 100%;
  height: 600px;
  margin: 60px 0 100px;
}
@media only screen and (max-width: 900px) {
  .access {
    padding: 250px 0 170px;
  }
}
@media only screen and (max-width: 767px) {
  .access {
    padding: 220px 0 150px;
  }
  .access .section-title-img {
    max-width: 65%;
  }
  .frame-section__map {
    height: 250px;
    margin: 35px 0 50px;
  }
}
@media only screen and (max-width: 499px) {
  .access {
    padding: 130px 0 100px;
  }
  .access .news-title-wrap {
    margin-bottom: 30px;
  }
}

/* =========================
フッター
========================= */
.site-footer__inner {
  padding: 0 2rem;
  box-sizing: content-box;
  text-align: center;
}
.site-footer__yatai img {
  max-width: 300px;
  margin: 100px 0 20px;
}
.footer-nav {
  font-size: var(--fz20);
  font-family: "Dela Gothic One", sans-serif;
  margin: 28px 0 26px;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 4rem;
}
.footer-nav__item a {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-block: 32px;
}
.footer-social__link img {
  max-width: 50px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-social__link img:hover,
.footer-social__link img:focus {
  opacity: 0.8;
  transform: translateY(-4px);
}
.footer-copy-right {
  font-size: var(--fz18);
  color: var(--white);
  margin-bottom: 30px;
}

@media (max-width: 960px) {
  .footer-social {
    gap: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer__yatai img {
    max-width: 40%;
    margin-block: 8px;
  }
  .footer-social__link img {
    max-width: 36px;
  }
  .footer-social {
    margin: 36px 0 36px;
  }
}
@media only screen and (max-width: 499px) {
  .footer-nav__list {
    gap: 1rem 3rem;
  }
}
