@import url('root.css');
/* :root {
    --main-bg: #232323;
    --panel-bg: #232323;
    --accent-pink: rgb(183, 107, 135);
    --border-silver: #bfc2c7;
    --border-gray: #44474c;
    --glass-bg: rgba(255,255,255,0.07);
    --glass-border: rgba(220,220,220,0.13);
    --glass-shadow: 0 8px 32px 0 rgba(31,38,135,0.11);
    --main-width: 980px;

    --grad-right: #b76b87;
    --grad-mid: #9a2d44;
    --grad-left: #81172e;
} */

* {
  box-sizing: border-box;
}

body {
    background: linear-gradient(rgba(50,50,50,0.8),rgba(50,50,50,0.8)),url('../img/AdobeStock_523358895.jpeg');
    color: #f3f3f3;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ヘッダー・フッターはご指定のまま */
.header-bar {
    width: 100%;
    background: #181818;
    border-bottom: 1px solid #333;
    padding: 0;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px 0 16px;
}
.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 35%;
}
.header-logo-img { 
  width: 100%; 
  cursor: pointer;
}
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.header-lang {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}
.lang-btn {
    width: 5rem;
    background: transparent;
    border: 1px solid #888;
    color: #fff;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 2px 2px 0 0;
    cursor: pointer;
    outline: none;
    opacity: 0.8;
    transition: background 0.2s, color 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
    background: #333;
    color: #fff;
    opacity: 1;
}
.lang-btn:not(.active) {
    color: #bbb;
    background: #222;
}
.header-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #DDD;
    font-size: 1.6rem;
    font-weight: bold;
    gap: 6px;
}
.tel-icon {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 2.3rem;
}
.tel-number {
    margin-left: -7px;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    display: inline-block;
    transform: scaleX(0.8);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.header-hours {
    background: #111;
    color: #ddd;
    font-size: 0.95rem;
    padding: 2px 10px;
    border-radius: 2px;
    margin-left: 4px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.header-contact-btn {
    display: flex;
    align-items: center;
    background: var(--accent-pink);
    color: #fff;
    font-size: 1.08rem;
    font-weight: bold;
    border-radius: 3px;
    padding: 6px 18px;
    margin-left: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: none;
}
.header-contact-btn:hover {
    background: #9a2d44;
    color: #fff;
}
.contact-icon {
    font-size: 1.2rem;
    margin-right: 6px;
    display: inline-block;
}

  /* 全体設定 */
  .menu-guide {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    background: var(--main-bg);


  }
    .title {
    margin-top: 70px;
    font-size: 3rem;
    font-weight: bold;
    display: flex;
    overflow: hidden;
  }
  .title span {
    opacity: 0;
    color: var(--nav-grad-mid);
    transform: translateX(50px);
    animation-fill-mode: forwards;
    animation-name: slideInRight;
    animation-duration: 0.5s;
  }
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* メニュー項目 */
  .menu-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3rem;
    background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url('../img/AdobeStock_1106651649.jpeg') 0 0 / cover no-repeat;
  }
  /* 画像 */
  .menu-photo {
    margin-top: 4rem;
    flex: 1 1 40%;
    max-width: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  /* テキスト */
  .menu-text {
    margin-top: 4rem;
    flex: 1 1 60%;
  }
  .menu-text-bg {
    background: #333;
    padding: 0 1rem;
  }
  .menu-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    /* color: #ddd; */
    color: var(--nav-grad-top);
    text-shadow: 1px 1px 1px #FFF, -1px -1px 1px #FFF, 1px -1px 1px #FFF, -1px 1px 1px #FFF;
  }
  .menu-text h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    color: #ccc;
    padding: 0 1rem;
  }
  .menu-text p {
    line-height: 1.6;
    color: #bbb;
    margin: 1rem;
  }

  /* 画像とテキストの左右入れ替え */
  .menu-item.reverse {
    flex-direction: row-reverse;
  }
      .science-section {
      background: linear-gradient(135deg, #232526 0%, #1a1a1a 100%);
      border-radius: 14px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.6);
      margin-bottom: 36px;
      padding: 32px 28px 24px 28px;
      transition: box-shadow 0.2s;
      border-left: 2px solid rgb(129, 23, 46);
    }
    .science-section:hover {
      box-shadow: 0 12px 36px rgba(0,0,0,0.85);
    }
    .science-section h2 {
      color: var(--nav-grad-mid);
      font-size: 1.4em;
      margin-bottom: 18px;
      border-bottom: 1px solid #2e4444;
      padding-bottom: 8px;
      letter-spacing: 0.03em;
    }
    .science-section .kouka {
      color: var(--nav-grad-top);
    }
    .science-section p {
      font-size: 1.13em;
      line-height: 1.8;
      margin: 0;
      color: #AAA;
    }

.voice-section {
  position: relative;
  margin: 4rem 0 3rem 0;
  padding: 2rem 1rem;
  background: #333;
  border-radius: 16px;
  border: 1px solid #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.sakura {
  background: url('../img/sakura.png') no-repeat center center / 70%;
  width: 100%;
}
.voice-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #FFF;
  width: 70%;
  margin-left: 15%;
  letter-spacing: 0.8rem;
}

.voice-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.voice-card {
  background: #555;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  color: #CCC;
  box-shadow: 2px 2px 2px #777;
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}
.avatar1 {background: #FFDAB9;}
.avatar2 {background: #F7C1D9;}
.avatar3 {background: #D9F99D;}
.avatar4 {background: #B7E4A0;}
.avatar5 {background: #F8B7C6;}
.avatar6 {background: #FFFACD;}
.avatar7 {background: #E5F9E0;}
.avatar8 {background: #FBB982;}
.avatar9 {background: #F9C89B;}

.voice-name {
  font-weight: 600;
  color: #CCC;
  display: block;
  font-size: 1.05rem;
}

.voice-menu {
  font-size: 0.95rem;
  color: #CCC;
  margin-top: 0.1rem;
  display: block;
}

.voice-comment {
  font-size: 1rem;
  color: #CCC;
  line-height: 1.7;
  margin: 0;
  margin-top: 0.5rem;
  flex: 1;
}
.space {
  height: 160px;
}
.circle-image {
  position: absolute;
  right: 24px;   /* 右端からの距離 */
  bottom: 24px;  /* 下端からの距離 */
  width: 160px;   /* 画像サイズ */
  height: 160px;
  overflow: hidden;
  border-radius: 50%; /* 円形に切り抜く */
  box-shadow: 0 2px 8px rgba(0,0,0,0.18); /* お好みで影も */
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を円にフィットさせる */
  display: block;
}s

/* フッター */
footer {
    margin-top: 0;
    background: #857a88;
    color: #fff;
    text-align: center;
    font-size: 0.85rem;
    padding: 32px 0 18px 0;
    border-top: 2px solid #333;
    background-image: url('./img/bg_footer.jpg');
    background-repeat: repeat;
    background-size: 80px 80px;
    letter-spacing: 0.04em;
}
.footer-links {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: var(--main-width);
    margin-left: auto;
    margin-right: auto;
}
.footer-links a {
    color: #fff;
    text-decoration: underline;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fffbe6;
}
.footer-address {
    margin-top: 8px;
    font-size: 0.97em;
    color: #fff;
    opacity: 0.92;
    font-family: 'Noto Serif JP', serif;
}
.footer-copyright {
    font-size: 0.82rem;
    color: #fff;
    margin-top: 8px;
    opacity: 0.85;
    font-family: 'Noto Serif JP', serif;
}

.SP {display: none;}
@media (max-width: 767px) {
  body {
    width: 100vw;
  }
    .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    }
    .menu-guide {
      width: 100vw;
    }
    .title {
      margin-top: 30px;
    font-size: 2rem;
    }
    .menu-item {
      flex-direction: column;
      text-align: center;
      padding-bottom: 1rem;
    }
    .menu-item.reverse {
      flex-direction: column;
    }
    .menu-photo {
      width: 100%;
      margin-bottom: 1.5rem;
    }
    .menu-text {
      margin-top: 0;
    }
    .menu-text h2 {
      font-size: 1.5rem;
    }
    .menu-text h3 {
      font-size: 1.1rem;
    }
    .science-section {
      padding: 18px 10px 14px 10px;
    }
    .voice-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .voice-card {
        max-width: 100%;
        width: 100%;
    }
    .PC {display: none;}
    .SP {
      display: block;
    }
}

