@charset "UTF-8";

/* ==========================================================================
   1. Base (共通設定)
   ========================================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Varela Round", "Zen Kaku Gothic New","Zen Maru Gothic","Hiragino Sans", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

strong {
  font-weight: bold;
}

.br-sp, .br-mp {
  display: none;
}

@media (max-width: 768px) {
  .br-sp { display: block; }
}
@media screen and (max-width:430px){
  .br-sp { display: block; }
  .br-mp { display: block; }
}

#page_top{
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  background:#ff6b35;
  opacity: 0.8;
  border-radius: 50%;
  z-index: 998;
}
#page_top a{
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 20px;
  height: 40px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ==========================================================================
   2. Navigation (固定メニュー)
   ========================================================================== */
nav {
width: 100%; 
padding: 1rem 2rem 0.4em;
margin: 0 0 10px;
position: -webkit-sticky; /* Safari対応 */
position: sticky;
top: 0;
z-index: 999;
background-color: rgba(9,13,78,0.85);
backdrop-filter: blur(8px);
}
nav .nav-wrap {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
nav .nav-tel {
margin-left:20px;
}
nav ul {
display: flex;
align-items: center;
flex-wrap: wrap;
}
nav ul li  {
white-space: nowrap;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 100%;
flex: 1;
}
nav ul li a {
display: block;
color:#fff;
padding-bottom: 4px;
margin:0 30px;
position: relative; /* 線の基準点にする */
}

/* 線の土台（最初は幅0） */
.nav-wrap ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;      /* 一番下に配置 */
  left: 0;        /* 左端からスタート */
  width: 0;       /* 最初は長さゼロ */
  height: 2px;    /* 線の太さ */
  background-color: #ffffff; /* 線の色 */
  transition: width 0.3s ease; /* 0.3秒かけて伸びる */
}

/* activeクラスがついた時だけ、後の線を100%に伸ばす */
.nav-wrap ul li.active a::after {
  width: 100%;
  left: 50%;           /* 中央を起点にする */
  transform: translateX(-50%); /* 中央に寄せる */
}

/* 日本語と英語の併記スタイル */
.main {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}
.sub {
  display: block;
  font-size: 0.9rem;
  margin-top: -2px;
}
.tel-mp {display: none;}

.tel-pc {display:flex;align-items: center;}


@media (max-width: 768px) {
  .main {font-size:0.9em;}
}
@media screen and (max-width:430px) {
nav {
padding:0.2rem 0.3rem; margin: 0 auto; width: 100%; 
}
nav ul li a { margin:0 7px;}
.tel-pc {display:none;}
.tel-mp {display: flex; align-items: center;}
}

/* ==========================================================================
   3. Hero Section (メインビジュアル)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../img/background.jpg') no-repeat right center / cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-content {
  margin-right: 10%;
  text-align: center;
}

.sub-text {
   margin-bottom: 1rem;
}

.eng-name {
  display: block;
  font-size: 5rem;
  color: #ff6b35;
  font-family: "Pacifico", cursive;
  line-height: 1;
}

.jp-name {
  font-size: 4rem;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}

.concept-badge {
  display: inline-block;
  background-color: #1a237e;
  padding: 3px 20px;
  border-radius: 6px;
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
}

.tel-button {
  display: inline-flex;
  align-items: center;
  background-color: #ff6b35;
  color: #000;
  padding: 15px 1.7rem;
  border-radius: 50px;
  font-size: 1.5rem;
}

.tel-button img { margin-right: 0.6em; }
.tel-button:hover { transform: scale(1.1); }

.scroll_down{
  position:absolute;
  bottom: 50px;
  right: 18%;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 34px;
  color: #ff6b35;
  font-size: 1.1em;
  font-family: 'Varela Round', sans-serif;
  font-weight: bold;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:#ff6b35;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:125px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 125px;
  background:#ff6b35;
}
@media screen and (max-width:430px){
.hero-section {
  background: url('../img/background.jpg') no-repeat center center / cover;
  height: 90vh;
}
.hero-content {
  margin: auto auto;
  text-align: center;
}
.sub-text {
  margin-bottom: 0.8rem;
}
.sub-text img {
  max-width: 90%;
}
.eng-name {
  font-size: 3rem;
}
.jp-name {
  font-size: 2.5rem;
  margin: 0.5em;
  }
.concept-badge {
  padding: 3px 20px;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 3rem;
  margin-top: 0px;
}
.tel-button {
font-size: 1.1em;
}
.scroll_down{
  bottom: 15px;
  right: 18%;
}
.scroll_down a{
 left: 10px;
  bottom: 0;
  font-size: 14px;
  letter-spacing: .1em;
}

.scroll_down:before {
  left: -4px;
  width: 11px;
  height: 11px;
}

@keyframes circlemove{
  0%{bottom:65px;}
  100%{bottom:0px;}
}

.scroll_down:after{
  height: 65px;
}
}

/* ==========================================================================
   4. Animation (フェードイン演出)
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-item {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

.js-fade {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   5. About Section
   ========================================================================== */
.about-section {
  margin: auto;
  padding: 1rem 20px 3rem;
  position: relative;
}

.about-title {
  font-family: 'Pacifico', cursive;
  color: #ff6b35;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
}

.about-logo { flex: 1; text-align: center; }
.about-logo img { max-width: 400px; height: auto; width: 90%;}

.about-text { flex: 2; text-align: justify; font-size: 1.1rem; }

@media (max-width: 768px) {
  .about-container { flex-direction: column; }
  .about-title { font-size: 4rem; }
  .about-logo { order: 2; margin-bottom: 0; }
  .about-text { order: 3; text-align: left; margin: -2rem 1rem; }
  .about-text p { margin-top: 0; }
}
@media (max-width: 430px) {
  .about-container { width: 90%;}
  .about-logo { order: 2; margin-bottom: 0; }
  .about-text { order: 3; text-align: left; margin: -2rem 0; }
  .about-text p { margin-top: 0; font-size:0.9em;line-height: 1.7em;}
}
/* ==========================================================================
   6. News & Instagram Section
   ========================================================================== */
#news {
padding-top:40px;
}
.news-container {
  margin: 10px 3rem 1rem;
  padding: 10px;
  border: dotted 2px #1a237e;
  border-radius: 8px;
  font-family: "Zen Maru Gothic";
}

.news-container h3 {
  position: relative;
  margin: 0 0 1rem;
  padding: 0.8em;
  text-align: center;
  color: #F7F0EB;
  background-color: #1a237e;
  border-radius: 8px 8px 0 0;
}

.news-icon-pop {
  position: absolute;
  left: 20px;
  top: -25px;
  height: 60px;
  width: auto;
}

.news-container p {
  margin: 3rem auto 1rem;
  text-align: center;
  font-size: 1.08rem;
}

.news-container a.text-link {
  color: #EA5902;
  border-bottom: 2px solid transparent;
}
.news-container a.text-link img {
  position: relative;
  top:-2px;
}
.news-container a.text-link:hover {
  border-bottom: 2px dotted #ff6b35;
}

p.instagramlink { text-align: center; margin: 0 auto 2rem; }
.instagramlink a { display: inline-block; line-height: 0; }
.instagramlink a:hover { transform: scale(1.1); }

/* Instagramウィジェットのコンテナ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* テキストが入るので少し広めが綺麗 */
  width: 85%;
  margin: 0 auto 50px;
}

.insta-item {
  background-color: #fff; /* 背景を白にして線をはっきりさせる */
  border: 1px solid #ff6b35; /* トキタマカラーのオレンジ */
  border-radius: 10px;    /* 角を少し丸くする */
  padding: 12px;          /* 枠線と中身の間の余白 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.insta-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 100%; /* 全体をリンクにする */
}

.insta-img-wrapper {
position: relative;
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}
.insta-overlay-icon {
  position: absolute;
  top: 8px;     /* 上からの距離 */
  left: 8px;    /* 左からの距離 */
  width: 30px;  /* 指定の幅 */
  height: auto;
  z-index: 10;  /* 写真より上にくるように */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* アイコンを見やすくする影 */
  pointer-events: none; /* アイコンがクリックの邪魔をしないように */
}

/* 投稿写真自体のクラス（念のため追加） */
.insta-post-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* ホバー時に少し浮き上がる演出 */
.insta-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2); /* オレンジ系の影 */
}
.insta-date {
display: inline-block;
margin-top: 8px;
color:#ff6b35;
}
p.insta-caption {
  margin-top: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
  /* 3行で省略 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #555;
}

@media (max-width: 768px) {
  .insta-grid {
  grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 95%;
  }
  .insta-item {
    padding: 8px; 
  }

  .news-icon-pop { left: 0; top: -30px; height: 45px; }
}
@media (max-width: 430px) {
.instagramlink img {width:85%; }
.news-container {
  margin: 10px auto 1rem;
}
.insta-grid {
width: 90%;
}
 .insta-grid {
  grid-template-columns: repeat(1, 1fr);
 }
}
/* ==========================================================================
   7. Access Section
   ========================================================================== */
.access-section {
  position: relative;
  background-color: #fdf2e9;
  padding: 1rem 20px 3rem;
}

.access-title {
  font-family: 'Pacifico', cursive;
  color: #ff6b35;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 30px;
}

/* イントロ部分（白枠のカード） */
.access-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
}

.intro-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* --- 周辺地図画像エリア --- */
.intro-image {
  flex: 0 0 150px; /* PCでは幅を固定 */
  text-align: center;
}

.intro-image a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.intro-image a:hover {
  transform: scale(1.05);
}

.intro-image img {
  max-width: 100%;
  height: auto;
}

.intro-text {
  flex: 1;
  line-height: 1.8;
}

.intro-text a.text-link {
  font-weight: bold;
  color: #EA5902;
  border-bottom: 2px solid transparent;
}

.intro-text a.text-link:hover {
  border-bottom: 2px dotted #ff6b35;
}

/* 下部のコンテンツ（店舗情報とマップ） */
.access-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.shop-info { flex: 1; }
.shop-info h3 { color: #1a237e; border-bottom: 2px dotted; margin-bottom: 10px; }
.address { font-weight: bold; margin-bottom: 20px; }

.tel-link {
  display: inline-block;
  background-color: #ff6b35;
  color: #fff;
  padding: 9px 25px;
  border-radius: 50px;
  margin-bottom: 0.8em;
}
.notes {
  list-style: none; /* リスト記号（・）を消す */
  padding: 0;       /* 左側の余白を消す */
  margin: 0;        /* 上下の余白をリセット */
  font-size: 1rem;
  color: #666;
}

.notes li {
  margin-bottom: 8px; /* 項目ごとの行間を調整 */
}
.map-container {
  flex: 1.5;
  border: 8px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Access セクション モバイル対応 --- */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column; /* 縦並び */
    text-align: left;
  }

  .intro-image {
    order: 1;      /* 画像を上に */
    flex: 0 0 auto;
    width: 120px;  /* スマホでの適切な画像サイズ */
    margin: 0 auto 15px; /* 中央寄せにして下に余白 */
  }

  .intro-text {
    order: 2;      /* テキストを下に */
  }

  .access-content {
    flex-direction: column;
  }

  .access-title {
    font-size: 3rem;
  }

  .shop-info {
    font-size: 1.2em;
    width: 90%; 
    margin: 0 auto 2rem;
  }
}
/* ==========================================================================
   8. Footer
   ========================================================================== */
.site-footer {
  background-color: #0d1a44;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* フッター内のテキストとリンク全体の調整 */
.footer-info {
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

/* Instagram画像リンクの個別設定 */
.footer-info a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.footer-info a:hover {
 transform: scale(1.1)
}

.footer-info img {
  vertical-align: middle;
  border: none;
  display: inline-block; 
}

.footer-info a.txt-link {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}

.footer-info a.txt-link img {
  margin-right: 3px;
  position: relative;
  top: -1px; 
}

.footer-info span {
  margin: 0 10px;
  color: #fff;
}

/* コピーライト */
.copyright {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-info span {
    display: none; 
  }
  .footer-info a.txt-link {
    display: block;
    margin-top: 5px;
  }
}