/*
Theme Name: doutor_2026
Author: WATARI
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================
    ベース
========================== */

a {
  text-decoration: none;
}

p {
  color: #694e30;
}

main {
  padding-top: 100vh;
}


h2 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.title::after {
  content: "";
  display: block;
  width: 50%;
  max-width: 350px;
  aspect-ratio: 1026 / 198;
  margin: 0 auto;
  background: url("images/coffee-underline-half.png") center / contain no-repeat;
}

/* --- 消え --- */
.title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s ease, transform 1.0s ease;
}

/* --- 出現 --- */
.title.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================
    header
========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  display: flex;
  align-items: center;

  background: transparent;
  transition:
    all 0.4s ease;
    box-shadow 0.4s; /* じわっと変わるように */
}


.header-inner {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: all 0.4s ease;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 110;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.header.is-scrolled .header-logo img {
  height: 35px;
  opacity: 0.8;
}


/* LINE会員証ボタンのアレンジ */
.btn-line {
  background: #06c755;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  border-bottom: 3px solid #05a346;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.btn-line::before {
  content: "LINE";
  font-size: 15px;
  background: #fff;
  color: #06c755;
  padding: 3px 6px;
  border-radius: 2px;
}

.btn-line:hover {
  transform: translateY(2px);
  border-bottom-width: 1px;
}

/* ３本線 */

.menu-trigger {
  width: 40px;
  height: 28px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

/* 通常時の3本線 */
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #694e30;
  transition: all 0.3s ease;
}

.menu-trigger span:nth-child(1) {
  top: 0;
}
.menu-trigger span:nth-child(2) {
  top: 11px;
}
.menu-trigger span:nth-child(3) {
  top: 22px;
}

/* ハンバーガーアクティブ（×印） */
.header.is-active .menu-trigger span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.header.is-active .menu-trigger span:nth-child(2) {
  opacity: 0;
}

.header.is-active .menu-trigger span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* メニューが開いている時だけ線を白に */
.header.is-active .menu-trigger span {
  background: #fff;
}

/* LINEボタン透過 */
.header.is-active .btn-line {
  display: none;
}

/* CLOSE非表示 */
.menu-trigger::before {
  content: "CLOSE";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  font-family: sans-serif;
}

/* CLOSE表示 */
.header.is-active .menu-trigger::before {
    opacity: 1;
}

/* 出てくるメニュー */

.sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #694e30;
  z-index: 90;
  transition: right 0.4s ease;
  padding: 100px 40px 40px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

/* アクティブ時 */
.header.is-active .sp-menu {
  right: 0;
}

/* メニュー文字 */
.main-nav {
  list-style: none;
  margin-bottom: 60px; /* 下のセクションとの間隔 */
}

.main-nav li {
  margin-bottom: 30px;
}

.main-nav li a {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  font-family: sans-serif;
  display: block;
  text-align: left;
}

/* ENJOY DOUTOR セクション */

.enjoy-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* 境界線を入れて区切る */
}

.enjoy-label {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  font-family: sans-serif;
  margin-bottom: 20px;
  text-align: left;
}

.menu-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.menu-banner-grid img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: 0.3s;
}

.menu-banner-grid a:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

/* オーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 85;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.header.is-active .menu-overlay {
  opacity: 1;
  visibility: visible;
}


/* ==========================
    header - レスポンシブ
========================== */
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
  
  .header-inner {
    min-width: auto; 
    width: 100%;
    padding: 0 15px;
  }

  .header-logo img {
    height: 30px;
  }

  .header.is-scrolled .header-logo img {
  height: 25px;
  }

  .header-right {
    gap: 10px;
  }

   .btn-line {
    font-size: 11px;
    padding: 6px 10px;
  }
  .btn-line::before {
    font-size: 10px;
    padding: 2px 4px;
  }

  /* メニュー中身 */

  .menu-trigger::before {
  left: -40px;
  }

  .menu-trigger::before {
    font-size: 13px;
  }

  .sp-menu {
    width: 85%;
    padding: 80px 25px 40px;
  }

  .main-nav li a {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .enjoy-label {
    font-size: 24px;
  }

  .menu-banner-grid {
  grid-template-columns: 1fr;
    gap: 15px;
  }
}



/* さらに小さい画面（iPhone SEとか）用 */
@media screen and (max-width: 375px) {
  .btn-line {
    /* 画面が狭すぎたら「会員証」の文字を消すか検討してね */
    padding: 5px 8px;
  }
  .main-nav li a {
    font-size: 28px;
  }
}



/* ==========================
    hero
========================== */

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  height: 100vh;
  padding: 0;
  text-align: center;
  background: #fff url("images/homeMV_AI.png") right center / cover no-repeat;
  z-index: -1;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20%;

  font-family: "Noto Serif JP", serif;
}

.hero-inner {
  max-width: 1200px;
}

.hero-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* 「ほっ」 */
.hero-text .big-char {
  font-size: 60px;
  display: inline-block;
  margin: 0.1em 0;
  vertical-align: middle;
  color: #fff;
  transform: rotate(-6deg);
}

/* スマホ対応（画面からはみ出さないように調整） */
@media screen and (max-width: 768px) {
  .hero-text {
    font-size: 24px;
  }
  .hero-text .big-char {
    font-size: 60px;
  }

  .hero {
    background-position: center center;
  }
}

/* ==========================
    スライダー
========================== */

.slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
  z-index: 2;
}

.slider-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.slide {
  flex: 0 0 auto;
}

.slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ==========================
    ニュース
========================== */

.news {
  width: 100%;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background: #fff;
}

.news-inner {
  max-width: 800px;
  width: calc(100% - 40px);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  text-decoration: none;
  display: block;
}

.news-text {
  background-color: #fff;
  border-radius: 50px;
  padding: 18px 30px 18px 60px;
  font-size: 16px;
  color: #333;
  text-align: left; /* 左揃え */
  line-height: 1.5;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
  border: 1px solid #e8ddd4;
}

.news-text::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("images/icon-coffee.png") center center / contain no-repeat;
}

.news-item:hover .news-text {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-color: #d8c8ba;
}

.news-date {
  font-weight: 700;
  color: #694e30;
  margin-right: 20px;
  flex-shrink: 0;
}

/* --- スマホ用 --- */
@media screen and (max-width: 768px) {
  .news {
    padding: 40px 0;
  }
  .news-text {
    padding: 15px 20px 15px 55px;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }
  
  .news-text::before {
    left: 20px;
    width: 20px;
    height: 20px;
  }

  .news-date {
    margin-bottom: 5px;
  }
}

/* ==========================
    コンセプト
========================== */

.concept-img {
  width: 100%;
  height: 60vh;
  background: url("images/image1.png") right center / cover no-repeat;
}

.concept-text {
  background: #fff;
  padding: 120px 20px;
  text-align: center;
}

.concept-text p {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #694e30;
}

/* ==========================
    コンセプト - レスポンシブ
========================== */
@media screen and (max-width: 768px) {
  .concept-img {
    height: 45vh;
    background-position: 70% center; 
  }

  .concept-text {
    padding: 80px 20px;
  }

  .concept-text p {
    font-size: 15px; 
    line-height: 2.0;
  }
}

/* ==========================
    メニュー
========================== */

.menu {
  position: relative;
  background-color: #dfcfbd;
  padding: 120px 20px 0;
  overflow: hidden;
  padding-bottom: 40vw;
}

.menu-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.menu p {
font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #694e30;
  margin-bottom: 60px;
}


.menu-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: url("images/menu-bg.png") center bottom / contain no-repeat;
  z-index: 0;
  pointer-events: none;

  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.menu.is-show .menu-bg {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s; /* 0.3秒だけ待ってから動き出す */
}


.menu-button a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #694e30;
  font-weight: 700;
  border: solid 1px #694e30;
  border-radius: 999px;
  display: flex;
  box-sizing: border-box;
  width: 200px;
  height: 80px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  cursor: pointer;
  transition: all 0.3s;
}

.menu-button a:hover {
  color: #fff;
  background: #694e30;
  transition: all 0.3s;
}


/* ==========================
    メニュー - レスポンシブ
========================== */
@media screen and (max-width: 768px) {
  .menu {
    padding-top: 80px;
  }

  .menu p {
    font-size: 14px;
    line-height: 2.0;
    margin-bottom: 40px;
  }

  .menu-button a {
    width: 160px;
    height: 60px;
    font-size: 12px;
  }

  /* スマホ用画像 */
  .menu-bg {
    aspect-ratio: 1 / 1;
    background-image: url("images/menu-bg-sp.png"); 
    bottom: 10px;

  }

  .menu-inner {
    padding-bottom: 70vw;
  }
}

/* ==========================
    エンジョイドトール
========================== */

.enjoy {
  width: 100%;
  padding: 120px 20px;
  background: #fff;
}

.enjoy-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.enjoy p {
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
  color: #694e30;
}




/* .enjoy-main {
margin-bottom: 40px;
  max-width: 800px;
  margin-inline: auto;
}

.enjoy-main a {
  display: block;
  transition: opacity 0.3s;
}

.enjoy-main img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
 */



/* LINE特設エリア */
.enjoy-line-area {
  margin-bottom: 80px; /* サブバナーとの間隔 */
}

.line-visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px; /* 画像の下に少し余白 */
}

.line-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* 少し角を丸くすると馴染む */
}

.line-button-unit {
  text-align: center;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 64px;
  background: #06c755;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
  transition: all 0.3s;
}

.btn-more:hover {
  transform: translateY(-3px);
  background: #05b34c;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}



/* サブバナー */
.enjoy-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}

.enjoy-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s ease, transform 1.0s ease;}

  .enjoy-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.enjoy-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.enjoy-item:hover, .enjoy-main a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* ==========================
    エンジョイドトール - レスポンシブ
========================== */
@media screen and (max-width: 768px) {
  .enjoy {
    padding: 80px 20px;
  }

  .enjoy p {
    margin-bottom: 40px;
    font-size: 14px;
  }


  .enjoy-sub {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .enjoy-main {
    margin-bottom: 20px;
  }

    .enjoy-line-area {
    margin-bottom: 60px;
  }
  
  .btn-more {
    width: 200px;
    height: 54px;
    font-size: 14px;
  }

  .line-visual {
    max-width: 100%; /* スマホは画面いっぱい */
    margin-bottom: 24px;
  }

}



/* ==========================
    店内インテリア
========================== */

.interior {
  width: 100%;
  padding: 120px 20px;
  background: #dfcfbd;
}

.interior-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.interior p {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  color: #694e30;
}

.interior-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

.icon-items img {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
}

.icon-items p {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.interior-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.interior-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ==========================
    店内インテリア - レスポンシブ
========================== */

@media screen and (max-width: 768px) {
  .interior {
    padding: 80px 20px;
  }

  .interior p {
    font-size: 14px;
    margin-bottom: 40px;
  }

   .interior-icons {
    gap: 20px;
    margin-bottom: 40px;
  }


  
  .icon-items img {
    width: 80px;
  }

  .icon-items p {
    font-size: 11px;
  }

   .interior-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* ==========================
    access
========================== */

.access {
  width: 100%;
  padding: 120px 20px; /* 40pxから20pxへ */
  background: #fff;
}

.access-inner {
  max-width: 1000px; /* 他のセクションと合わせて1000pxに */
  margin: 0 auto;
}

.access-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* マップを少し広めに */
  gap: 60px;
  align-items: start;
}

.access-map {
  width: 100%;
  aspect-ratio: 16 / 9; /* 少し横長の方が今っぽい */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 影を柔らかく */
  border: 1px solid #eee; /* 境界線をうっすら */
}

/* 情報リストのブラッシュアップ */
.access-dl {
  border-top: 1px solid #694e30; /* 一番上にラインを入れる */
}

.access-dl dt {
  font-size: 13px; /* 少し大きく */
  background: #f8f4f0; /* 濃い茶色から薄いベージュへ（文字を茶色に） */
  color: #694e30;
  padding: 20px 15px;
  border-bottom: 1px solid #e8ddd4;
  justify-content: flex-start; /* 左寄せ */
}

.access-dl dd {
  font-size: 15px; /* 14pxから15pxへ */
  padding: 20px 20px;
  border-bottom: 1px solid #e8ddd4;
}

/* ==========================
    access - レスポンシブ
========================== */
@media screen and (max-width: 768px) {
  .access {
    padding: 80px 20px;
  }

  /* スマホでは縦並びにする */
  .access-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .access-map {
    aspect-ratio: 4 / 3; /* スマホでは高さを出す */
    order: 2; /* マップを情報の下に持ってくる（好みで！） */
  }

  .access-info {
    order: 1;
  }

  .access-dl {
    grid-template-columns: 6em 1fr; /* スマホでは見出し幅を少し広げる */
  }

  .access-dl dt, .access-dl dd {
    padding: 15px 12px;
    font-size: 13px;
  }
}


/* ==========================
    parallax
========================== */

.parallax {
  position: relative;
  height: 480px;
  /* 枠の中に背景を固定 */
  clip-path: inset(0);
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

/* 画像の指定は今のままでOK */
.parallax-menu .parallax-bg {
  background-image: url("images/image2.png");
}

.parallax-footer .parallax-bg {
  background-image: url("images/image3.png");
}

.parallax-footer {
  height: 600px;
}

/* ==========================
    footer
========================== */

.footer {
  background: #dfcfbd; /* 既存の背景色はそのまま */
  color: #694e30;      /* 文字色をドトールブラウンに変更 */
  padding: 80px 20px 40px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 160px; /* 少しだけ大きく */
  height: auto;
}

.footer-tel {
  font-size: 18px; /* 電話番号は少し目立たせる */
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-privacy {
  margin-bottom: 15px;
}

.footer-privacy a {
  color: #694e30; /* リンク色も茶色に */
  font-size: 13px;
  text-decoration: none; /* 下線を消してスッキリ */
  transition: opacity 0.3s;
}

.footer-privacy a:hover {
  opacity: 0.6;
}

.footer-copy {
  margin-top: 60px; /* コピーライトの前に余白をたっぷりとる */
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ==========================
    footer - Responsive
========================== */
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-logo img {
    width: 130px;
  }

  .footer-tel {
    font-size: 16px;
  }

  .footer-copy {
    margin-top: 40px;
  }
}