@charset "UTF-8";
/* ==================================================
   e21-base.css
   サイトの基本骨格・共通パーツ
   ※全ページで必ず読み込んでください
   ================================================== */

/* 変数定義 */
:root {
  --e21r-green: #2cc14a;
  --e21r-ink: #111827;
  --e21r-line: #b7efc6;
  --e21r-max: 1200px;
  --e21r-max-header: 1440px;
  --e21r-gutter: clamp(16px, 4vw, 40px);
  --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --jp-brown: #593a25;
  --jp-red: #c9171e;
  --jp-gold: #d4af37;
  --bg-light: #f8f7f5;
  --e21-red: #cc0000;
  --e21-gold: #d4af37;
  --e21-gray: #f9f9f9;
}

html {
  scroll-padding-top: 100px; /* PC用の設定 */
}


/* スマホ（画面幅768px以下）の時の上書き設定 */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px; /* スマホ用に少し狭くする */
  }
}


   body {
    font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
    color: #333;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 84px; /* ★重要：ヘッダーの高さ分、余白を空ける */
  }

  
  /* スマホ対応（ヘッダーが少し狭くなるので余白も調整） */
  @media (max-width: 768px) {
    body {
      padding-top: 60px; /* スマホ用の高さに合わせて調整 */
    }
  }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ヘッダー */
  .e21r-header {
    background: #fff;
    position: fixed; /* ★ここを relative から fixed に変更 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 他の要素より手前に表示 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* うっすら影をつけて浮き上がらせる */
  }

.e21r-header__inner {
  max-width: var(--e21r-max-header);
  margin-inline: auto;
  padding-inline: var(--e21r-gutter);
  padding-block: 14px;
  display: grid;
  grid-template-columns: 180px minmax(0,1fr) auto;
  gap: 18px;
  align-items: end;
}

.e21r-header__line {
  height: 4px;
  background: var(--e21r-line);
}

.e21r-logo {
  color: var(--e21r-green);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .06em;
}

.e21r-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

.e21r-nav a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
}

.e21r-nav a:hover {
  color: #111;
}

.e21r-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.e21r-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
}

.e21r-btn--pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--e21r-green);
  color: #fff;
}

.e21r-search input {
  width: 180px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 2px solid #d1d5db;
  font-size: 14px;
  outline: 0;
}

.e21r-search input::placeholder {
  color: #9ca3af;
}

/* ハンバーガーボタン - アニメーション追加 */
.e21r-burger {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: var(--e21r-green);
  position: relative;
  transition: background-color 0.3s ease;
}

.e21r-burger:hover {
  background: #25a73d;
}

.e21r-burger span,
.e21r-burger span::before,
.e21r-burger span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.e21r-burger span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.e21r-burger span::before {
  top: -7px;
}

.e21r-burger span::after {
  top: 7px;
}

/* ハンバーガーが開いた状態 */
.e21r-burger.is-active span {
  background: transparent;
}

.e21r-burger.is-active span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.e21r-burger.is-active span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* ========== Hero ========== */
.e21r-hero {
  background: #f5f7f8;
}

.e21r-hero__inner {
  max-width: calc(var(--e21r-max) + 160px);
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 48px;
  align-items: center;
}

.e21r-hero__left {
  position: relative;
  padding: 0px 0 125px;
}

.e21r-hero__title {
  margin: 0;
  color: #000;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.2;
  letter-spacing: .02em;
}

.e21r-silhouette-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -92px;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: bottom;
  opacity: .85;
  filter: grayscale(1) brightness(1.08);
  pointer-events: none;
  user-select: none;
}

.e21r-bubbles {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 160px;
  height: 160px;
}

.e21r-bubbles .b {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: .88;
}

.e21r-bubbles .b--green {
  width: 60%;
  height: 60%;
  left: 82%;
  top: -6%;
  background: #bfe8a4;
}

.e21r-bubbles .b--green2 {
  width: 60%;
  height: 60%;
  left: -360%;
  top: 85%;
  background: #bfe8a4;
}

.e21r-bubbles .b--yellow {
  width: 38%;
  height: 38%;
  left: -300%;
  top: 75%;
  background: #f3ecac;
}

.e21r-bubbles .b--pink {
  width: 34%;
  height: 34%;
  left: 60%;
  top: -18%;
  background: #f2c0d8;
}

.e21r-card {
  margin: 0;
}

.e21r-card__img {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* ========== OVERLAY MENU - アニメーション改善 ========== */
.e21r-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.e21r-menu.is-open {
  opacity: 1;
  visibility: visible;
}

body.e21r-no-scroll {
  overflow: hidden;
}

.e21r-menu__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px var(--e21r-gutter) 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.e21r-menu.is-open .e21r-menu__inner {
  transform: translateY(0);
}

.e21r-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.e21r-menu__logo img {
  height: 26px;
  width: auto;
  display: block;
}

.e21r-menu__close {
  background: #2cc14a;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.e21r-menu__close:hover {
  background: #25a73d;
}

.e21r-menu__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  overflow: auto;
  padding-bottom: 24px;
}

.e21r-menu__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.e21r-mcard {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.e21r-mcard:hover {
  transform: translateY(-4px);
}

.e21r-mcard figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.e21r-mcard img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: filter 0.3s ease;
}

.e21r-mcard:hover img {
  filter: saturate(1.2);
}

.e21r-mcard__eyebrow {
  position: absolute;
  left: 12px;
  top: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: .1em;
  opacity: .9;
  z-index: 2;
}

.e21r-mcard__title {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .06em;
  z-index: 2;
}

.e21r-mcard figure::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -120px 120px rgba(0,0,0,.35);
  z-index: 1;
  pointer-events: none;
}

.e21r-menu__links h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: .08em;
}

.e21r-menu__list,
.e21r-menu__misc {
  list-style: none;
  margin: 0;
  padding: 0;
}

.e21r-menu__list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.2s ease;
}

.e21r-menu__list > li > a:hover {
  color: #2cc14a;
}

.e21r-menu__list > li + li > a {
  border-top: 1px solid #e5e7eb;
}

.e21r-menu__list > li > a::after {
  content: '＞';
  color: #9ca3af;
  font-weight: 700;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.e21r-menu__list > li > a:hover::after {
  transform: translateX(4px);
}

.e21r-menu__sub {
  list-style: none;
  margin: 6px 0 12px 0;
  padding-left: 1em;
}

.e21r-menu__sub li + li {
  margin-top: 6px;
}

.e21r-menu__sub a {
  display: block;
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.e21r-menu__sub a:hover {
  color: #2cc14a;
}

.e21r-menu__sub a::before {
  content: '＞ ';
  color: #c0c4cc;
  font-weight: 700;
}

.e21r-menu__misc {
  margin-top: 18px;
}

.e21r-menu__misc li {
  border-bottom: 1px solid #e5e7eb;
}

.e21r-menu__misc a {
  display: block;
  padding: 10px 0;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.e21r-menu__misc a:hover {
  color: #2cc14a;
}

.e21r-quick {
  display: none;
  margin: 6px 0 16px;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.e21r-pill {
  display: grid;
  place-items: center;
  padding: 12px 10px;
  border-radius: 12px;
  background: #edf2f7;
  color: #1f2937;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 0 0 1px #e5e7eb inset;
  transition: all 0.2s ease;
}

.e21r-pill:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* PCナビのサブメニュー */
.e21r-nav .has-sub {
  position: relative;
}

.e21r-nav .e21r-nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 20;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

.e21r-nav .e21r-nav__sub a {
  display: block;
  padding: 8px 12px;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.e21r-nav .e21r-nav__sub a:hover {
  background: #f3f4f6;
}

.e21r-nav .has-sub:focus-within > .e21r-nav__sub,
.e21r-nav .has-sub:hover > .e21r-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .e21r-hero__inner {
      grid-template-columns: 1fr 520px;
  }
}

@media (max-width: 1199.98px) {
  .e21r-mcard img {
      height: 320px;
  }
}

@media (max-width: 1024px) {
  .e21r-header__inner {
      grid-template-columns: 140px 1fr auto;
  }
  
  .e21r-nav ul {
      gap: 14px;
  }
  
  .e21r-search {
      display: none;
  }
  
  .e21r-hero__inner {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .e21r-silhouette-img {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 168px;
      object-fit: cover;
      object-position: bottom;
      opacity: .85;
      filter: grayscale(1) brightness(1.08);
      pointer-events: none;
      user-select: none;
  }
  
  .e21r-menu__grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .e21r-menu__cards {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }
  
  .e21r-quick {
      display: grid;
  }
}

@media (max-width: 767.98px) {
  .e21r-header__inner {
      grid-template-columns: 1fr auto;
      gap: 10px;
  }
  
  .e21r-nav {
      display: none;
  }
  
  .e21r-hero__inner {
      display: block;
      padding: 28px 18px 40px;
      max-width: calc(var(--e21r-max) + 160px);
      margin: 0 auto;
      display: grid;
      align-items: center;
  }
  
  .e21r-hero__title {
      font-size: clamp(24px, 7vw, 32px);
      position: relative;
      z-index: 3;
      margin: 0;
      text-align: center;
  }
  
  .e21r-hero__left {
      position: relative;
      padding: 0;
  }
  
  .e21r-bubbles {
      right: 6%;
      top: -8px;
      transform: scale(.9);
      position: absolute;
      z-index: 2;
      right: 8%;
      top: 12%;
      pointer-events: none;
  }
  
  .e21r-silhouette-img {
      position: static;
      width: 100%;
      height: 168px;
      object-fit: cover;
      object-position: bottom;
      opacity: .85;
      filter: grayscale(1) brightness(1.08);
      position: static;
      display: block;
      height: auto;
      pointer-events: none;
      user-select: none;
  }
  
  .e21r-bubbles .b--green {
      width: 45%;
      height: 45%;
      left: 75%;
      top: -15%;
      background: #bfe8a4;
  }
  
  .e21r-bubbles .b--green2 {
      width: 60%;
      height: 60%;
      left: -112%;
      top: 30%;
      background: #bfe8a4;
  }
  
  .e21r-bubbles .b--yellow {
      width: 30%;
      height: 30%;
      left: -82%;
      top: 10%;
      background: #f3ecac;
  }
  
  .e21r-bubbles .b--pink {
      width: 28%;
      height: 28%;
      left: 60%;
      top: -18%;
      background: #f2c0d8;
  }
  
  .e21r-card__img {
      display: block;
      width: 95%;
      border-radius: 12px;
      background: #fff;
      padding: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
  
  .e21r-menu__bar {
      position: sticky;
      top: 0;
      z-index: 1;
      padding: 8px 0;
      background: #fff;
  }
  
  .e21r-mcard img {
      height: 200px;
  }
  
  .e21r-menu__list > li > a {
      padding: 16px 0;
  }
  
  .e21r-menu__misc a {
      padding: 12px 0;
  }
}
/* ヘッダー終 */

 /* --------------------------------------------------
     フッター・連絡先
  -------------------------------------------------- */
  main { flex: 1; padding: 40px 20px; text-align: center; }
  main h1 { color: #2c2c2c; margin-bottom: 20px; }
  footer { background: #2c2c2c; color: #fff; padding: 30px 40px 20px; }
  .footer-content { max-width: 1200px; margin: 0 auto; }
  .contact-section { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #3a3a3a; }
  .contact-box {
    display: flex; gap: 30px; justify-content: center; align-items: flex-start;
    flex-wrap: wrap; border-radius: 12px; padding: 25px; background: rgba(74, 158, 255, 0.05);
  }
  .contact-item { flex: 1; min-width: 180px; }
  .contact-item h3 { font-size: 13px; margin-bottom: 10px; color: #4a9eff; font-weight: 600; }
  .contact-item p { margin: 5px 0; line-height: 1.5; font-size: 13px; color: #e0e0e0; }
  .contact-item a { text-decoration: none; }
  .contact-item a:hover { color: #60b0ff; }
  .phone-number { font-size: 14px; font-weight: 600; color: #fff; }
  .contact-btn {
    display: inline-block; background: #4a9eff; color: #fff; padding: 7px 16px;
    border-radius: 4px; text-decoration: none; transition: background 0.3s;
    margin-top: 8px; font-size: 12px;
  }
  .contact-btn:hover { background: #3a8eef; }
  .nav-grid {
    display: flex; gap: 25px; margin-bottom: 35px; padding-bottom: 30px; border-bottom: 1px solid #3a3a3a;
  }
  .nav-column { flex: 1; }
  .nav-column h4 { font-size: 13px; font-weight: 600; color: #4a9eff; margin-bottom: 10px; }
  .nav-column ul { list-style: none; padding: 0; margin: 0; }
  .nav-column li { margin-bottom: 5px; }
  .nav-column a {
    color: #b0b0b0; text-decoration: none; font-size: 12px; transition: color 0.3s; display: block;
  }
  .nav-column a:hover { color: #4a9eff; }
  .social-language-section {
    display: flex; gap: 30px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 20px;
  }
  .sns-block, .language-block { flex: 1; min-width: 160px; }
  .sns-block h3, .language-block h3 {
    font-size: 13px; margin-bottom: 10px; color: #4a9eff; font-weight: 600;
  }
  .sns-list { display: flex; gap: 8px; flex-wrap: wrap; }
  .sns-list a {
    color: #fff; text-decoration: none; display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: #3a3a3a; border-radius: 50%;
    transition: all 0.3s; font-size: 15px;
  }
  .sns-list a:hover { background: #4a9eff; transform: translateY(-2px); }
  .languages { display: flex; gap: 6px; flex-wrap: wrap; }
  .lang-link {
    color: #fff; text-decoration: none; padding: 5px 10px; background: #3a3a3a;
    border-radius: 4px; transition: background 0.3s; font-size: 11px;
  }
  .lang-link:hover { background: #4a9eff; }
  .copyright {
    text-align: center; margin-top: 20px; padding-top: 15px;
    border-top: 1px solid #444; color: #999; font-size: 12px;
  }

/* フッター上メッセージ */
.contents{
  width: 85%;max-width: 1400px;margin: 0 auto 5%;
}
/* ----------------------------------
   営業エリア・全国配送の案内セクション
   ---------------------------------- */
.e21r-delivery-area {
  margin-top: 40px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

/* 見出しのデザイン（画像の代わり） */
.e21r-delivery-title {
  color: #0095d9;       /* 画像に近い水色 */
  font-weight: bold;
  line-height: 1.4;
  font-size: 28px;      /* メインの文字サイズ */
  margin-bottom: 30px;
  border-bottom: none;  /* もし既存のh2に線があれば消す */
}

/* 「私達の営業地域は...」の部分 */
.e21r-delivery-sub {
  font-size: 18px;      /* 少し小さく */
  color: #0095d9;
  display: block;       /* 改行させる */
  margin-bottom: 5px;
}

/* 「全国」「配送可能」を強調 */
.e21r-big-text {
  font-size: 1.4em;     /* 周りの文字より1.4倍大きく */
  margin: 0 5px;        /* 文字の横に少し隙間 */
}

/* 本文の調整 */
.e21r-text-body {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

/* 下部の青文字強調エリア（fontタグの代わり） */
.e21r-text-highlight {
  color: #0066cc;       /* 濃いめの青 */
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}

/* スマホで見た時の調整 */
@media (max-width: 768px) {
  .e21r-delivery-title {
    font-size: 22px;    /* スマホでは見出しを少し小さく */
  }
  .e21r-delivery-sub {
    font-size: 14px;
  }
}


/* ==================================================
   【修正版】ページトップへ戻るボタン（PC・スマホ両対応）
   ※ e21-base.css の一番下に追記
   ================================================== */

/* --- 1. 基本設定（PC用：右下に表示） --- */
.e21r-pagetop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #2cc14a; /* 緑色 */
  color: #fff !important;
  font-size: 20px;
  text-decoration: none;
  border-radius: 50%;
  display: flex !important; /* 強制的に表示 */
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* スクロールしたら表示 */
.e21r-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/* ホバー時の動き */
.e21r-pagetop:hover {
  transform: translateY(-5px);
  background: #239b3b;
}

/* --- 2. スマホ用設定（画面幅768px以下：左下に移動） --- */
@media screen and (max-width: 768px) {
  .e21r-pagetop {
    right: auto !important;     /* 右側の指定を解除 */
    left: 15px !important;      /* ★左端へ */
    bottom: 20px !important;    /* 下から20px */
    z-index: 2147483647 !important; /* 最前面に */
  }
}
/* 共通レスポンシブ */
@media (max-width: 1024px) {
  .e21r-header__inner { grid-template-columns: 140px 1fr auto; }
  .e21r-nav, .e21r-search { display: none; }
  .e21r-menu__grid { grid-template-columns: 1fr; }
  .e21r-menu__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .e21r-header__inner { grid-template-columns: 1fr auto; }
  .contact-box, .nav-grid { flex-direction: column; }
}


/* 改行 */
/* ----------------------------------
   表示切り替え用クラス

<p>
  PCなどの広い画面ではここで<br class="pc-only">改行されますが、<br>
  スマホでは改行されずに続けて表示されます。
</p>

<p>
  スマホの狭い画面ではここで<br class="sp-only">改行されますが、<br>
  PCでは1行のまま表示されます。
</p>

　画像にも使用可能
<img src="pc-image.jpg" class="pc-only" alt="PC用画像">
<img src="sp-image.jpg" class="sp-only" alt="スマホ用画像">
---------------------------------- */

/* PCのみ表示（スマホでは消す） */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/* スマホのみ表示（PCでは消す） */
.sp-only {
  display: none !important;
}

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