@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
/* 目次 

1. 共通
2. 予約ボタン
3. フォント
4. スマホ用ナビゲーション
5. メインビジュアル
6. ニュース
7. withについて
8. フッター
9. メディアクエリ


目次ここまで */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #505050;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
a:hover {
  color: var(--accent-color);
}
:root {
  --conten-width: 1200px;
  --d_f: flex;
  --main-color: #ffffff;
  --accent-color: #56bdec;
  --bg-color: #ffffff;
  --bg-color-bl: #ebf5fd;
  --text-color: #333;
  --text-accent-color: #5f5f5f;
  --header-height: 80px;

  --font-size-24: 24px;
  --font-size-teitl20: 20px;
  --font-size-sub18: 18px;
  --font-size-base: 16px;
  --font-size-sub14: 14px;
  --font-size-sub12: 12px;

  --line-height-base: 1.6;
  --line-height-sub: 1.4;

  --margin-1: 1rem;
  --margin-2: 2rem;
  --margin-5: 5rem;
  --margin-10: 10rem;

  --padding-top5-said0: 5rem 0;
  --padding-1: 1rem;
  --padding-2: 2rem;
  --padding-5: 5rem;
}

html {
  scroll-behavior: smooth;
}
@media (width < 950px) {
  [hidden] {
    display: none !important;
  }
}
div#header-placeholder {
  border-bottom: solid 1px #cbcbcb;
  position: sticky;
  top: 0;
  background-color: white;
  padding: 10px;
  z-index: 1000;
}

/* 予約ボタン */
.reservation_botn a {
  position: fixed;
  top: 20%;
  background-color: #00afff;
  padding: 2rem 1.3rem;
  border-radius: 1rem 0 0 1rem;
  right: 0;
  color: #fff;
  font-size: 14px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 90;
}
.reservation_botn img {
  display: inline-block;
  margin-bottom: 0.5rem;
  width: 16px;
  max-width: 16px;
}

.reservation_botn a:nth-of-type(2) {
  top: 42%;
  background-color: var(--accent-color);
}

@media screen and (max-width: 750px) {
  /* .reservation_botn a:nth-of-type(2){
    top: 45%;
} */
  .reservation_botn {
    display: var(--d_f);
    position: relative;
    bottom: 0;
  }
  .reservation_botn a {
    top: auto;
    bottom: 0;
    width: 50%;
    margin: 0;
    padding: 1rem;
    right: auto;
    writing-mode: unset;
    border-radius: 0;
    display: var(--d_f);
    align-items: center;
    justify-content: center;
  }
  .reservation_botn img {
    margin: 0 0.5rem 0 0;
  }
  .reservation_botn a:first-of-type {
    left: 0;
  }
  .reservation_botn a:nth-of-type(2) {
    right: 0;
    top: auto;
  }
}

/* フォント */
.zen-maru-gothic-light {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sp_only {
  display: none;
}

picture,
img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.d_f {
  display: flex;
  align-items: center;
  justify-content: center;
}
a {
  display: block;
}
a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
/* 共通 */
.news_inner-teitl,
.about_inner-teitl,
.schedule_teitl {
  margin-bottom: var(--margin-2);
  color: var(--accent-color);
  letter-spacing: 3px;
}

.teitl-sub {
  color: #959da4;
  margin-left: var(--margin-2);
  display: inline-block;
  font-size: var(--font-size-base);
}

/* ヘッダー */
header {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  height: 80px;
  position: relative;
  z-index: 1000;
  font-size: var(--font-size-sub14);
}
header .logo {
  /* ロゴ用スタイル */
  justify-self: start;
  max-width: 181px;
}
.header_nav {
  display: var(--d_f);
  align-items: center;
  justify-content: space-around;
  width: calc(100% - 200px);
}

.header_nav-list {
  display: var(--d_f);
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  font-size: clamp(12px, 1vw, 16px);
}
header nav {
  width: 76%;
  margin: 0 auto;
  /* display: flex;
    justify-content: space-around; */
}

header .sns {
  /* SNS用スタイル */
  display: var(--d_f);
  align-items: center;
  gap: 0.5rem;
  width: 7%;
  margin: 0 0 0 auto;
}

.header_nav-list .has-submenu {
  position: relative;
}

.header_nav-list .has-submenu > .about-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--main-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  min-width: 160px;
  border-radius: 4px;
  z-index: 10;
}

.header_nav-list .has-submenu.open > .about-submenu {
  display: block;
}

.header_nav-list .has-submenu > a {
  cursor: pointer;
  border-radius: 4px;
}

.header_nav-list .has-submenu > a:hover {
  color: var(--accent-color);
}

.about-submenu li {
  padding: 8px 16px;
  white-space: nowrap;
  text-align: left;
}

.about-submenu li:hover {
  background: #f0f4fa;
}

main {
  margin-top: var(--margin-1);
}

/* メインビジュアル */
.mv {
  width: 100%;
  max-width: var(--conten-width);
  margin: 0 auto;
  margin-bottom: var(--margin-5);
  padding: 0 8rem;
}

/* ニュース */
.news {
  width: 100%;
  background-color: var(--bg-color-bl);
}
.news_inner,
.about_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 8rem;
}

.news_inner li {
  padding: var(--margin-2);
  border-bottom: 1px solid var(--text-accent-color);
}
.news_inner li span {
  margin-right: var(--margin-5);
  color: #959da4;
}
.news_inner li .m2-9 {
  margin-right: 2.9rem;
}

/* withについて */
.about_inner {
  padding-left: 8rem;
  padding-right: 8rem;
}
.about_inner-content {
    width: 80%;
    margin: 0 auto;
}
.about_inner-content picture {
  margin-bottom: var(--margin-5);
}

/* アバウト　ポイント */
.about_points{
  margin-bottom: var(--margin-5);
}
.about_points h3 {
    width: 30%;
    text-align: center;
    background-color: var(--accent-color);
    border-radius: 2rem;
    color: var(--main-color);
    letter-spacing: 2px;
    margin-bottom: var(--margin-1);
    padding-bottom: 0.5rem;
}
.about_points h3 span {
    font-size: 26px;
    color: #fff;
}
.about_points img{
  width: 50%;
  margin-bottom: var(--margin-1);
}
.about_points h4 {
    font-size: var(--font-size-sub18);
    margin-bottom: var(--margin-1);
    line-height: var(--line-height-base);
}
.about_points h5 {
    font-size: var(--font-size-sub14);
    line-height: var(--line-height-base);
}

/* 特典 */
.about_points .tokuten{
  text-align: center;
  margin: var(--margin-2) 0;
  border: 1px solid var(--accent-color);
  border-radius: 1rem;
  padding: var(--padding-2);
}

.about_points .tokuten span{
  color: #cd7758;
  font-size: 22px;
}
.about_points .tokuten a{
  background-color: var(--accent-color);
  color: #fff;
  display: block;
  padding: 0.3rem 0;
  width: 36%;
  margin: 0 auto;
  border-radius: 2rem;
}

.about_points:nth-of-type(3) img{
  width: 24%;
  margin: 0 auto 1rem;
}

.about_points:nth-of-type(4) img{
  width: 14%;
  margin: 0 auto 1rem;
}
.about_points:nth-of-type(4) .teitl-sub-point4{
  font-size: 14px;
}


/* フッター */
div#footer-placeholder {
  background-color: #f3faff;
  padding: 5rem 5rem 1rem;
  border-top: 1px solid #92e0ff;
}
footer {
  max-width: 1200px;
  margin: 0 auto;
}
footer p {
  text-align: left;
}
.footer_logo {
  width: 27%;
  border-right: 1px solid #cbcbcb;
  padding: 1rem;
}
.footer_logo img {
  width: 50%;
  margin-bottom: var(--margin-1);
}

.footer_info {
  padding: 1rem 1rem 1rem 3.5rem;
  width: calc(100% - 30%);
}
.footer_content {
  margin: 0 auto 5rem;
  display: flex;
  flex-wrap: wrap;
}

.footer_bottom p {
  text-align: right;
}

/* フッター　電話番号 */
.footer_info-tell {
  display: var(--d_f);
  align-items: center;
  gap: 3rem;
}
.footer_info-tell a {
  font-size: 2rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-right: 0.5rem;
}
.footer_info-tell span{
  width: calc(100% - 70%);
}
.footer_info-tell span a {
  width: 20%;
}
/* 営業時間 */
.footer_info-time {
  margin-bottom: var(--margin-1);
  font-size: var(--font-size-sub18);
  letter-spacing: 2px;
}

/* メディアクエリ */
@media (width < 950px) {
  /* SP用スタイル 950まで*/
  * {
    font-size: 14px;
  }
  .sp_only {
    display: block;
  }
  .sp_only-none {
    display: none;
  }

  header,
  .news_inner{
    width: 90%;
    padding: 5rem 0;
  }

  header {
    flex-wrap: wrap;
    padding: 0rem 0;
    height: 50px;
  }
  header .logo {
    width: 38%;
    margin: 0 auto;
  }

  header button {
    width: 9%;
    border: 0;
    background-color: #fff;
    font-size: 1rem;
    cursor: pointer;
  }
  .header_nav-list .has-submenu > a {
    padding: 8px 12px;
  }

  /* 初期状態 */
  .header_nav.hidden {
    right: -106%; /* 非表示状態 */
  }

  .header_nav.show {
    right: 0; /* 表示状態 */
    transition: right 0.3s ease; /* スライドアニメーション */
  }
  /* スマホ用ナビゲーション */
  .header_nav {
    display: block;
    position: fixed;
    top: 70px;
    right: -100%; /* 画面外に隠す */
    width: 100%;
    height: 50vh;
    padding: 2rem;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease; /* スライドアニメーション */
    z-index: 100;
  }

  /* 表示状態 */
  .header_nav.show {
    right: 0; /* 画面内にスライドイン */
    height: 70vh;
  }
  .header_nav-list .has-submenu.open > .about-submenu {
    left: 50%;
    top: 0;
  }
  header nav {
    justify-content: flex-start;
    margin: 0;
  }
  .header_nav-list {
    display: block;
    text-align: left;
    padding: 0 0 1rem;
  }
  header .sns {
    width: 30%;
    margin: 0 auto;
    gap: 1rem;
    justify-content: center;
  }
  header .sns li {
    width: calc(100%/2 - 1rem);
  }

  .mv {
    padding: 0;
  }

  .news_inner-teitl,
  .about_inner-teitl,
  .schedule_teitl {
    font-size: var(--font-size-teitl20);
  }
  .teitl-sub {
    font-size: var(--font-size-sub14);
  }

  .news_inner li span {
    display: block;
  }

  .about_inner {
    width: 90%;
    padding: 5rem 0 0;
  }
  .about_inner p {
    margin-bottom: var(--margin-2);
  }
  .about_inner-content,
  .about_inner img {
    width: 100%;
  }
  .about_inner-content picture {
    margin-bottom: 2rem;
}

  /* ポイント　sp */
  .about_points h3 {
    position: relative;
    left: -10%;
    width: 40%;
    border-radius: 0 2rem 2rem 0;
}

.about_points:nth-of-type(4) img {
    width: 20%;
}
.about_points .tokuten a {
    width: 66%;
}
.about_points h3 span {
    font-size: 20px;
}


  /* spフッター */
  div#footer-placeholder {
    padding: 2.6rem 2rem 5rem;
    margin: 5rem 0 0;
  }

  .footer_content {
    gap: 2rem;
  }
  .footer_info {
    padding: 0;
    width: 100%;
  }
  .footer_info-tell{
    gap: 1rem;
  }

  .footer_info-tell a {
    margin-right: 0;
  }

  .footer_info-tell span {
    width: calc(100% - 80%);
  }

  .footer_info-time {
    font-size: var(--font-size-sub14);
  }

  .footer_logo {
    width: 100%;
    border-top: 1px solid #cbcbcb;
    border-right: 0;
    padding: 3rem 0;
    display: var(--d_f);
    justify-content: space-around;
    align-items: center;
    order: 2;
  }
  .footer_logo img {
    width: 30%;
    margin-bottom: 0;
  }

  .footer_bottom p {
    text-align: center;
  }
}

@media (width < 600px) {
  .footer_info-tell span a {
    width: 46%;
  }
}
