@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

/* ============================================
   destyle.css v4.0.0 | MIT License (抜粋)
   ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body { margin: 0; }
main { display: block; }

p { margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

b, strong { font-weight: bolder; }
small { font-size: 80%; }
svg, img, embed, object, iframe { vertical-align: bottom; }


/* ============================================
   Base
   ============================================ */
html {
  scroll-behavior: smooth;
  word-break: break-all;
  font-size: 10px;
}
@media (max-width: 767px) {
  html { font-size: 2.6666666667vw; }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4d4d4d;
  background: #fff;
}

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

a { transition: opacity 0.3s ease; }
a:hover { opacity: 0.85; }

#container {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow:
    -20px 0 20px -15px rgba(0, 0, 0, 0.3),
    20px 0 20px -15px rgba(0, 0, 0, 0.3);
}


/* ============================================
   サイトヘッダー（ロゴ + 店舗名 + TEL + LINE）
   画像内ロゴを白背景で上書きする sticky ヘッダー
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 0.6rem 0.9rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.0rem;
  box-sizing: border-box;
}

.site-header__logo {
  display: block;
  flex-shrink: 1;
  min-width: 0;
}

/* anico の 01_01.jpg（ロゴ + 店舗名 一体型）をそのまま表示 */
.site-header__logo-img {
  height: 3.2rem;
  width: auto;
  display: block;
}

.site-header__cta {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  flex-shrink: 0;
}

.site-header__tel {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.7rem;
  border: 1.5px solid #d6312e;
  border-radius: 6px;
  color: #d6312e;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1.1;
}

.site-header__tel-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.site-header__tel-num {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-header__line {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.9rem;
  background: linear-gradient(180deg, #2bd44b 0%, #1cb13a 100%);
  color: #fff;
  font-weight: 900;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(28, 177, 58, 0.3);
  white-space: nowrap;
  line-height: 1.0;
}

.site-header__line-label {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.site-header__line-sub {
  font-size: 0.9rem;
  font-weight: 900;
}

/* PC 表示（#container が 750px 上限のため、それ以上は中央寄せ + 拡大） */
@media (min-width: 768px) {
  .site-header__inner {
    padding: 1.2rem 1.8rem;
    gap: 2.0rem;
  }
  .site-header__logo-img {
    height: 5.6rem;
  }
  .site-header__cta {
    gap: 1.2rem;
  }
  .site-header__tel {
    padding: 1.0rem 1.4rem;
    gap: 0.5rem;
    border-width: 2px;
  }
  .site-header__tel-icon {
    font-size: 2.0rem;
  }
  .site-header__tel-num {
    font-size: 1.9rem;
  }
  .site-header__line {
    padding: 1.0rem 1.6rem;
    gap: 0.4rem;
  }
  .site-header__line-label {
    font-size: 2.0rem;
  }
  .site-header__line-sub {
    font-size: 1.5rem;
  }
}


/* ============================================
   セクション（画像 1枚 + CTA オーバーレイ）
   ============================================ */
.sec {
  position: relative;
  display: block;
}

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


/* ============================================
   CTA オーバーレイ（透明クリック領域 + アニメ）
   画像内 CTA ボタンに重ねて配置
   ============================================ */
.cta-overlay {
  position: absolute;
  left: 6.4%;
  width: 86.2%;
  display: block;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  overflow: hidden;
  animation: cta-pulse 1.8s ease-in-out infinite;
  transform-origin: center center;
}

.cta-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

/* キラッと光るエフェクト */
.cta-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%);
  animation: cta-shine 2.5s infinite;
  pointer-events: none;
  border-radius: inherit;
}

.cta-overlay:hover,
.cta-overlay:active {
  opacity: 1;
  filter: brightness(1.05);
}

@keyframes cta-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes cta-shine {
  0%   { left: -60%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { left: 120%; opacity: 1; }
  60%  { opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

/* 各画像内 CTA スペースの top 位置（height は画像 aspect で自動） */
/* sec-01.webp (1000x7360、01_02.jpg 採用版・ロゴ部分なし) */
.cta-01-tel  { top: 19.39%; }
.cta-01-line { top: 21.92%; }
/* sec-02.webp (1000x3576) */
.cta-02-tel  { top: 85.18%; }
.cta-02-line { top: 90.24%; }
/* sec-03.webp (1000x5329) */
.cta-03-tel  { top: 91.76%; }
.cta-03-line { top: 95.33%; }
/* sec-06.webp (1000x3370) */
.cta-06-tel  { top: 85.13%; }
.cta-06-line { top: 90.32%; }


/* ============================================
   フッター（footer-bg.webp 1000x379 のアスペクト比内に文字を収める）
   ============================================ */
#site-footer {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 379;
  background: #1e3a8a url("../img/footer-bg.webp") center bottom / 100% auto no-repeat;
  color: #fff;
  overflow: hidden;
  container-type: inline-size;
}

.footer-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 5% 3%;
  text-align: center;
  box-sizing: border-box;
}

.footer-store-name {
  font-size: 4.2cqi;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.6cqi;
}

.footer-en {
  font-size: 1.8cqi;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin-bottom: 2.6cqi;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 4cqi;
  font-size: 1.9cqi;
  margin-bottom: 2.0cqi;
}

.footer-links a {
  color: #fff;
  opacity: 0.92;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.copyright {
  font-size: 1.4cqi;
  opacity: 0.78;
  letter-spacing: 0.02em;
  margin-top: auto;
}
