body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans JP", "Noto Sans", "Yu Gothic", "Meiryo",
    sans-serif;
}

/* 親ヘッダー - 横幅1920pxで中央寄せ */
.main-header {
  width: 100%;
  position: fixed;
  top: 20px;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

/* 中央コンテナ */
.header-inner {
  width: 100%;
  max-width: 1820px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  pointer-events: auto;
  /* 中のボタンはクリック可能 */
}

/* 左ロゴボックス（白背景、角丸） */
.logo-box {
  background: white;
  padding: 10px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 16px;
  color: #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 150px;
}

.logo-box img {
  width: 100%;
  height: auto;
}

/* 右側アクションボックス（白背景、角丸） */
.action-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 7px 50px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 資料請求ボタン */
.btn-request {
  background-color: #06c755;
  color: white;
  font-size: 13px;
  padding: 13px 37px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-request span {
  background: white;
  color: #06c755;
  padding: 3px 12px;
  margin-left: 6px;
  border-radius: 15px;
  font-size: 11px;
}

/* ハンバーガーアイコン（CSS三本線） */
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
}

.menu-icon span {
  height: 3px;
  background: #222;
  border-radius: 2px;
}

.menu-icon span:nth-child(2) {
  width: 60%;
  /* 真ん中だけ短くする */
  align-self: flex-start;
  /* 左寄せ */
}

/* --- スマホ時（768px未満）だけ1つのボックスに統合 --- */
@media screen and (max-width: 767px) {
  .main-header {
    width: 100%;
  }

  .header-inner {
    justify-content: center;
    background: #ffffffc7;
    padding: 14px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: nowrap;
    width: 90%;
    justify-content: space-around;
  }

  .wish-reason-box {
    margin: 33px auto 0 auto;
  }

  .logo-box {
    max-width: 160px !important;
  }

  .logo-box,
  .action-box {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .logo-box {
    font-weight: bold;
    font-size: 13px;
    color: #222;
    white-space: nowrap;
    max-width: none;
    /* ←これを追加 */
  }

  .btn-request {
    color: white;
    font-size: 12px;
    padding: 15px 12px;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    margin-left: 4px;
    flex-shrink: 0;
  }

  .menu-icon span {
    background: #222;
    border-radius: 2px;
  }
}




.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 左：背景画像エリア */
.menu-left {
  width: 60%;
}

/* 右：メニューエリア */
.menu-right {
  width: 40%;
  padding: 60px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  height: 100vh;
}

/* 閉じるボタン */
.menu-right .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 64px;
  cursor: pointer;
  color: #6e6e6e;
}

/* メニュー本体 */
.menu-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin-top: 60px;
}

/* ブロックを 3つ横並び */
.menu-block {
  width: calc(33.333% - 40px);
  min-width: 180px;
  max-width: 240px;
}

.menu-block h3 {
  font-size: 30px;
  color: #00a389;
  margin-bottom: 10px;
  font-weight: normal;
}

.menu-block h4 {
  font-size: 13px;
  color: #00a389;
}

.menu-block ul {
  list-style: none;
  padding: 0;
  margin: 23px auto;
  line-height: 26px;
}

.menu-block li {
  margin-bottom: 8px;
}

.menu-block a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.menu-block a:hover {
  color: #1cb4a7;
}



@media screen and (max-width: 767px) {
  .menu-overlay {
    flex-direction: column;
  }

  .menu-left {
    display: none;
  }

  .menu-right {
    width: 100%;
    padding: 40px 0 0 0;
    overflow-y: auto;
  }

  .menu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 4px;
    align-items: flex-start;
    justify-content: space-between;
    margin: 30px auto;
    width: 95%;
  }

  .menu-block {
    width: 47%;
    box-sizing: border-box;
    min-width: 120px;
  }

  .menu-block h3 {
    font-size: 27px;
    margin-bottom: 6px;
  }

  .menu-block ul {
    list-style: none;
    padding: 0;

  }

  .menu-block li {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .menu-block a {
    color: #333;
    text-decoration: none;
  }

  .menu-block a:hover {
    color: #1cb4a7;
  }

  .menu-buttons {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
  }

  .btn-primary {
    background: #bca67a;
    color: #fff;
  }

  .btn-secondary {
    background: #fff;
    border: 1px solid #999;
    color: #333;
  }

  .menu-footer {
    font-size: 12px;
    text-align: center;
    color: #555;
  }

  .sns-icons {
    margin-top: 12px;
  }

  .sns-icons a {
    margin: 0 10px;
    font-size: 18px;
    color: #555;
  }
}




/* ご予約ボタン */
.btn-reserve {
  background-color: #06c755;
  color: white;
  padding: 15px 28px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  border: none;
  width: 240px;
  font-size: 14px;
  position: relative;
}

.btn-reserve img {
  width: 100%;
  height: auto;
  max-width: 33px;
  margin-right: 14px;
}

.btn-reserve .arrow {
  position: absolute;
  right: 20px;
}

/* お問い合わせボタン */
.btn-contact {
  border: 1px solid #999;
  background-color: #fff;
  color: #333;
  padding: 19px 28px;
  text-decoration: none;
  font-size: 14px;
  width: 200px;
  text-align: center;
  font-weight: normal;
}

.menu-buttons {
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  max-width: 650px;
}

.btn-reserve,
.btn-contact {
  box-sizing: border-box;
  width: 48%;
  margin: 1%;
}

@media screen and (max-width: 1300px) {

  .btn-reserve,
  .btn-contact {
    box-sizing: border-box;
    width: 100%;
    margin: 1em auto;
  }
}

@media screen and (max-width: 980px) {
  .menu-buttons {
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
  }

  .btn-reserve,
  .btn-contact {
    width: 100%;
  }

  .menu-buttons {
    flex-direction: column;
  }

  .btn-reserve,
  .btn-contact {
    width: 100%;
  }
}

.site-footer-wrapper {
  padding: 32px 16px;
  font-size: 13px;
  color: #333;
  max-width: 640px;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}

.site-footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.site-footer-social a {
  display: inline-block;
  margin-right: 12px;
  text-decoration: none;
}

.site-footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  color: #060606;
  text-decoration: none;
}

.site-footer-social img:hover {
  opacity: 1;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  justify-content: flex-start;
}

.site-footer-links a {
  text-decoration: none;
  color: #333;
}

.site-footer-links a span {
  font-size: 11px;
}

.chosen_bana {
  width: 100%;
  height: auto;
  margin: 1em 0;
  max-width: 560px;
}

.chosen_bana img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-info {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer-social {
    margin-top: 8px;
  }

  .site-footer-links {
    flex-direction: column;
    gap: 22px;
  }

  .chosen_bana {
    margin: 1em auto 0 auto;
  }

}


#menuOverlay {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

#menuOverlay.menu-style-open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 100000;
}

/* 閉鎖アニメーション中 */
#menuOverlay.menu-closing {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  z-index: 100000;
  /* transition完了まで残す */
}

.main {
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
}



.contact-block {
  text-align: center;
  padding: 2em 1em;
  max-width: 500px;
  margin: 0 auto;
}

.contact-phone {
  font-size: 25px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.contact-hours {
  font-size: 16px;
  color: #666;
  margin: 1em auto;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

.btn {
  border-radius: 25px;
  color: #fff;
  width: 36%;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  padding: .7em 1em;
  text-decoration: none;
  transition: background-color .3s;
}

.btn.contact {
  background-color: #218ea3;
}

.btn.line {
  background-color: #2ecc71;
}

.btn:hover {
  opacity: 0.85;
}

.footer {
  background: #1a2037;
  color: #eee;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 2em 1em;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #444;
  padding-bottom: 1.5em;
}

.footer-logo-block {
  max-width: 500px;
  line-height: 29px;
}

.footer-logo-block h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-reserve {
  text-align: center;
  margin: 2em 0;
}

.reserve-btn {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 1em 3em;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #444;
  padding-top: 2em;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 2em;
}

.footer-col h4 {
  font-size: 16px;
  color: #69f9ec;
  margin-bottom: 1em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 30px;
}


.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2em;
  padding-top: 1em;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.footer-bottom-links {
  margin-bottom: 1em;
  line-height: 33px;
}

.footer-bottom-links a {
  margin: 0 0.5em;
}

.footer-social {
  margin: 2em auto;
}

.footer-social a {
  font-size: 18px;
  margin: 0 0.5em;
  color: #fff;
}


.halletto-section {
  padding: 60px 20px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.halletto-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.halletto-logo {
  flex: 0 0 200px;
  text-align: center;
}

.halletto-logo img {
  width: 150px;
  height: auto;
}

.halletto-kana {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #ba7c88;
  letter-spacing: 0.05em;
}

.halletto-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.9;
}

.halletto-text strong {
  color: #ba7c88;
}

.faq-accordion {
  border-top: 1px solid #ddd;
  max-width: 1000px;
  width: 100%;
  margin: 2em auto;
}

.faq-item {
  border-bottom: 1px dashed #999;
}

.faq-title {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  position: relative;
  color: #333;
  transition: background 0.3s ease;
}

.faq-title:hover {
  background: #f9f9f9;
}

.faq-title::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-title::after {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.faq-item.open .faq-content {
  max-height: 890px;
  padding: 10px 20px 16px;
}




.mogigafdas {
  color: black;
}

.mogigafda {
  text-shadow: none
}

@media (max-width: 800px) {
  .halletto-logo {
    flex: 0 0 100%;
    text-align: center;
  }
}

.tops_box_image {
  position: absolute;
  bottom: -30px;
  left: 15px;
  width: 100%;
  height: auto;
  max-width: 175px;
}

.tops_sita {
  margin: 2.5em auto;
  font-size: 20px;
  width: 90%;
}


.ctas-button {
  display: inline-block;
  background: linear-gradient(to right, #17c2a4, #20c4b0);
  color: #fff;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 2em auto;
}

.ctas-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.cart_maurdadaf {
  width: 100%;
  max-width: 34px;
  position: relative;
  margin-right: 16px;
}

.cart_maurdadaf img {
  width: 100%;
  height: auto;
}

.cart_num_maru_desu {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background-color: #22c0b3;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.typewriter {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #333;
    width: -moz-fit-content;
    width: fit-content;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.title_gazou {
    width: 100%;
    /* or 固定値 */
    overflow: hidden;
    position: relative;
}

/* ズーム＋フェードイン */

.fade-zoom-in {
    width: 100%;
    height: auto;
    transition: transform 6s ease, opacity 1.5s ease;
    opacity: 0;
    transform: scale(1);
    display: block;
}

.fade-zoom-in.visible {
    opacity: 1;
    transform: scale(1.1);
    /* 拡大しても枠からはみ出さない */
}

/* 左からスライド＋フェードイン */

.slide-fade-in {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide-fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.fades-out {
    opacity: 0;
    transform: scale(1.1);
    /* ズームアウト中 */
}

.fades-in {
    opacity: 1;
    transform: scale(1);
    /* 元のサイズにズームイン */
}

.fades-out {
    opacity: 0;
}

.news-section {
    max-width: 1000px;
    margin: 20px auto;
    font-family: "Noto Sans JP", sans-serif;
    width: 95%;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.5em;
}

.news-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list .date {
    width: 120px;
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.news-list .label {
    display: inline-block;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.label.news {
    background: #e6f7f1;
    color: #1ca57a;
}

.label.important {
    background: #e7eafc;
    color: #3a52d7;
}

.news-list a {
    color: #333;
    text-decoration: none;
    flex: 1;
    transition: color 0.2s;
}

.news-list a:hover {
    color: #1ca57a;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .news-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }
    .news-list .date {
        width: auto;
        font-size: 13px;
        margin-bottom: 4px;
    }
    .news-list .label {
        margin: 4px 0;
    }
    .news-list a {
        font-size: 15px;
        line-height: 1.5;
    }
}




