:root {
    --main-yellow: #FFD752;
    --main-orange: #F58300;
    --main-green: #038129;
    --sub-green:  #046B22;
    --main-gray:  #262626;
    --main-bg:    #FFFBEF;
}

body {
    margin: 0;
    padding: 0;
    margin-top: 120px;
    background: var(--main-bg);
    color: var(--main-gray);
    font-family: "M PLUS 1", "Noto Sans Japanese", sans-serif;
}

.main-content {
    padding-left: 120px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;   /* ロゴ左・ボタン右端配置 */
    height: 120px;
    background: #FFFBEF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 10000;
    /* padding: 0 24px; */
}

.header-logo {
    height: 120px;
    width: auto;
    margin-right: 32px;
}

/* top banner */
.top-banner-area {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: 0;
}

.top-banner-img {
  display: block;
  width: 100vw;      /* ブラウザ横幅いっぱい */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .top-banner-img {
    width: 100vw;
    min-width: 0;
    max-width: 100%;
    height: auto;
  }
  .top-banner-area {
    padding: 0;
    margin: 0;
  }
}

/* ドロップダウン・グローバルで上位レイヤー表示 */
.main-nav {
  position: relative;
  z-index: 100;
}

/* メニュー本体（ul）を画面上部に「固定」でフル幅表示 */
.main-nav ul {
  display: none;
  position: fixed;          /* ←これがポイント */
  top: 0;
  left: 0;
  width: 90vw;             /* ビューポート全幅 */
  background: #FFFBEF;
  box-shadow: 0 4px 18px rgba(50,50,50,0.12);
  padding: 32px 0 14px;
  margin: 0;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 1100;            /* 上位レイヤーに */
}

/* メニューを表示するとき */
.main-nav.open ul {
  display: flex;
}

.menu-btn {
  display: block;
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-icon {
  width: 32px;
  height: 32px;
}

h1 {
    color: var(--main-orange);
    font-family: "Mochiy Pop One", "M PLUS 1", sans-serif;
    font-size: 2.2em;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* バルーン */
.balloon-box {
  background: #fff;
  border-radius: 110px 110px 110px 75px / 61px 61px 76px 68px;
  width: max-content;           /* ←テキスト長に合わせて横幅可変 */
  min-width: 240px;             /* 短すぎ防止。必要に応じて調整 */
  max-width: 90vw;              /* はみ出し防止 */
  margin: 0 0 30px 0;           /* ←左寄せ、下に余白 */
  padding: 32px 38px 25px 38px;
  text-align: center;
  box-shadow: 0 6px 24px #ecd06b24, 0 1.5px 0 #ffeb87;
  position: relative;
}

.balloon-mark {
  color: var(--main-orange);
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 4px;
  display: block;
}

.balloon-title {
  font-family: "Mochiy Pop One", "M PLUS 1", sans-serif;
  font-size: 2em;
  color: #262626;
  font-weight: bold;
  margin: 10px 0 0 0;
}

/* Footer */
footer {
    background: var(--main-green);
    color: var(--main-yellow);
    text-align: center;
    font-size: 1.1em;
    padding: 18px 8px;
    margin-top: 90px;
    border-radius: 14px;
}

/* company */
.company-label {
    color: #F58300;
    font-size: 1.15em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 6px;
}
.company-title {
    color: #262626;
    font-size: 2.05em;
    font-weight: bold;
    margin-bottom: 32px;
}
.company-table {
    width: 90%;
    border-collapse: collapse;
    font-size: 1.08em;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border-radius: 10px;
    margin-bottom: 36px;
    overflow: hidden;
}
.company-table th, .company-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-weight: normal;
}
.company-table th {
    color: #046B22;
    background: #FFFBEF;
    font-weight: bold;
    width: 18%;
}
.company-table td {
    width: 82%;
}
.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}
.company-table a {
    color: #F58300;
    text-decoration: underline;
}

/* privacy */
.mainTitle {
  text-align: center;
  margin: 40px 0 16px 0;
  color: #ef8718;
  font-weight: bold;
  font-size: 2.1em;
  letter-spacing: 1px;
}
.subtitle {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 32px;
}
.policy-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 24px 16px 40px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(212,212,212,0.08);
}
.policy-box h2 {
  font-size: 1.2em;
  color: #ef8718;
  border-left: 7px solid #60c659;
  padding-left: 7px;
  margin-top: 32px;
  margin-bottom: 6px;
  font-weight: bold;
}
.policy-box ul, .policy-box ol {
  margin-left: 1.8em;
  margin-bottom: 1em;
}
.policy-box li {
  margin-bottom: 4px;
  line-height: 1.7;
}
.policy-box p {
  line-height: 1.9;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .mainTitle { font-size: 1.2em; }
  .subtitle { font-size: 1em; }
  .policy-box { padding: 10px 3vw; }
  .footer-illust { width: 99vw; }
}

.access-flex {
    display: flex;
    flex-direction: row;
    gap: 38px;
    align-items: flex-start;
}
.access-map {
    flex-basis: 55%;
    min-width: 280px;
    max-width: 420px;
}
.access-details {
    flex-basis: 45%;
    min-width: 200px;
}
@media (max-width: 950px) {
    .access-flex {
        flex-direction: column;
        gap: 14px;
    }
    .access-map, .access-details {
        max-width: 100%;
        min-width: 0;
        padding: 8px 3vw;
    }
    .access-map iframe {
        height: 180px;
    }
}

/* calender */
.calendar-section {
  max-width: 1000px;
  margin: 60px auto;
  padding-bottom: 30px;
}
.calendar-header-area {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin: 55px 0 20px 0;
  justify-content: flex-start;
}
.calendar-mark {
  color: #F58300;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 4px;
  display: block;
  letter-spacing: 0.02em;
}
.calendar-head-title {
  font-family: "Mochiy Pop One", "M PLUS 1", sans-serif;
  font-size: 2.1em;
  color: #262626;
  margin: 12px 0 0 0;
  font-weight: bold;
}
.calendar-info-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px #ffeeae9c;
  padding: 24px 30px 18px 30px;
  min-width: 310px;
  max-width: 390px;
  font-size: 1.1em;
}
.calendar-hours th, .calendar-hours td {
  padding: 2px 8px 7px 8px;
  text-align: left;
  font-weight: normal;
  font-size: 1em;
  vertical-align: top;
  color: #52420a;
}
.calendar-hours th {
  font-weight: bold;
  width: 2.3em;
  color: #262626;
}
.calendar-legend {
  margin-top: 17px;
  margin-bottom: 8px;
  font-size: 1em;
  color: #262626;
}
.calendar-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 6px;
  margin-left: 18px;
  vertical-align: middle;
}
.calendar-dot.open { background: #46b7f1; margin-left: 0; }
.calendar-dot.close { background: #e95450; }
.calendar-dot.short { background: #98ba49; }

.calendar-caution {
  font-size: 0.95em;
  color: #444;
  margin-top: 8px;
}
.calendar-title-box {
  background: #fffbe8;
  border-radius: 60px 60px 60px 35px/38px 38px 60px 50px;
  box-shadow: 0 4px 12px rgba(240,200,50,0.07);
  display: inline-block;
  padding: 35px 50px 28px 48px;
  margin-bottom: -40px;
  position: relative;
  left: 0;
}
.calendar-title-mark {
  display: block;
  color: #F58300;
  font-weight: bold;
  font-size: 1.2em;
  text-align: left;
}
.calendar-title {
  font-family: "Mochiy Pop One", "M PLUS 1", sans-serif;
  font-size: 2em;
  color: #262626;
  margin: 7px 0 0 0;
  text-align: left;
  font-weight: bold;
}
.calendar-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 9px rgba(220,170,95,0.10);
  padding: 40px 18px 24px 18px;
  margin: 45px auto 18px auto;
  min-height: 630px; /* 余白調整 */
  max-width: 870px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-card iframe {
  border-radius: 11px;
  box-shadow: 0 2px 12px rgba(80,90,90,0.10);
}
.calendar-note {
  background: #fffbe8;
  border-radius: 10px;
  padding: 17px 22px;
  color: #262626;
  font-size: 1em;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto 0 auto;
  box-shadow: 0 1px 6px rgba(230,205,80,0.08);
}
.calendar-note-icon {
  color: #F58300;
  font-size: 1.2em;
  margin-right: 6px;
}

@media (max-width: 900px) {
  .calendar-card {
    padding: 14px 2vw;
    min-height: 400px;
  }
  .calendar-card iframe {
    width: 99vw;
    min-width: 0;
    height: 320px;
  }
  .calendar-title-box {
    padding: 17px 12vw 12px 8vw;
  }
  .calendar-header-area {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .balloon-box, .calendar-info-card { 
    max-width: 99vw;
    min-width: 0;
    margin-right: 0;
  }
  .balloon-box { 
    padding: 25px 13vw 17px 8vw;
  }
}
}

/* アクセス */
.access-section {
  max-width: 900px;
  margin: 54px auto;
  background: #fffbef;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(200,170,95,0.06);
  padding: 40px 22px 34px 22px;
}

/* 地図＋情報カード横並び */
.access-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
}

.access-map {
  flex-basis: 52%;
  min-width: 260px;
  max-width: 380px;
  /* 高さ合わせ */
  display: flex;
  align-items: stretch;
}
.access-map iframe {
  width: 100%;
  height: 340px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(120,160,80,0.13);
}

/* 情報カード（右） */
.access-details {
  flex-basis: 48%;
  background: #fffde3;
  border-radius: 18px;
  padding: 33px 20px 28px;
  box-shadow: 0 2px 12px rgba(240,200,100,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.08em;
  justify-content: center;
}

.access-address { margin-bottom: 12px; }
.access-post, .access-addr { color: #262626; font-weight: bold; margin-bottom: 2px; }
.access-telbox {
  background: #fff8dd;
  border-radius: 8px;
  padding: 14px 12px;
  text-align: left;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(230,170,90,0.11);
  display: flex;
  align-items: center;
  gap: 8px;
}
.access-telicon { font-size: 1.4em; color: #F58300; margin-right: 6px; }
.access-telnum a { font-size: 2em; color: #257fff; font-weight: bold; text-decoration: underline; }
.access-info-list {
  list-style: disc inside;
  color: #046B22;
  font-size: 1em;
  padding-left: 0;
  margin-top: 13px;
}
.access-info-list li { margin-bottom: 10px; }

/* レスポンシブ対応 */
@media (max-width: 950px) {
  .access-flex { flex-direction: column; gap: 18px; }
  .access-map, .access-details { max-width: 100%; min-width: 0; padding: 12px 2vw; }
  .access-map iframe { height: 210px; }
  .balloon-box { padding: 22px 10vw 15px 10vw; min-width: 0; max-width: 99vw; }
}


/* スマートフォン向け（画面幅600px以下） */
@media screen and (max-width: 600px) {
    .logo {
        position: static;
        width: 80px;
        height: 80px;
        display: block;
        margin: 10px auto 0 auto;
        border-width: 3px;
    }
    body {
        margin-left: 0;
        padding-top: 5px;
        text-align: center;
    }
    h1 {
        font-size: 1.3em;
        margin-bottom: 38px;
    }
    footer {
        font-size: 0.97em;
        padding: 0px 2px;
        margin-top: 45px;
    }

    /* .main-header {
        flex-direction: column;
        height: auto;
        min-height: 70px;
        padding: 6px 0 4px 0;
        /* shadowや背景はそのまま */
    } */

    .header-logo {
        height: 70px;
        margin: 0 auto 6px auto;
        display: block;
        width: auto;
        /* 横幅に応じて必要ならmax-width:90vw; */
    }

    /* .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%;
    }
    .main-nav li {
        width: 100%;
        margin: 0;
    }
    .main-nav a {
        display: block;
        padding: 12px 0;
        font-size: 1.13em;
        border-radius: 0;
        border-bottom: 1px solid #ececec;
        background: none;
    }

    .main-nav a:last-child {
        border-bottom: none;
    } */
}