@charset "UTF-8";
/* ↓ 船橋ホテル Color設定 */
/* ↑ 船橋ホテル Color設定 */
/* ↓ 船橋ホテル フォントサイズ設定 */
/*↑基本的なフォントサイズ*/
/*↑h4タグのフォントサイズ ($basic-font-sizeの1.5倍の大きさ)*/
/*↑h3タグのフォントサイズ ($h4-font-sizeの1.5倍の大きさ)*/
/*↑h2タグのフォントサイズ ($h3-font-sizeの1.5倍の大きさ)*/
/*↑h1タグのフォントサイズ ($h2-font-sizeの1.5倍の大きさ)*/
/*↑サブタイトル(h2直下の読み)のフォントサイズ*/
/* ↑ 船橋ホテル フォントサイズ設定 */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* スムーズスクロールを有効にする */ }

body {
  font-family: "Yu Mincho", "MS PMincho", "Hiragino Mincho ProN", serif;
  overflow-x: hidden;
  color: #C4CDD4;
  letter-spacing: 0.3em; }

/* ページ遷移時のフェードイン */
.page-fade-in {
  animation: pageFadeIn 2s ease-in-out; }

@keyframes pageFadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
a {
  text-decoration: none;
  color: #000000; }

h1 {
  font-size: 2.304em; }

h2 {
  font-size: 2.88em;
  display: flex;
  flex-direction: column;
  align-items: center; }

h3 {
  font-size: 1.44em; }

h4 {
  font-size: 1.2em; }

p {
  font-size: 1em; }

li {
  list-style: none; }

.btn {
  font-size: 14px;
  border: 1px solid #C4CDD4;
  text-align: center;
  max-width: 200px;
  font-family: 'Noto Serif JP', serif; }

.btn a {
  color: #C4CDD4;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box; }

.btn11 {
  position: relative;
  border: none;
  border-bottom: 1px solid #C4CDD4;
  width: fit-content; }

.btn11 a::after {
  content: ">";
  margin-left: 20px; }

.sub-title {
  font-size: 0.288em; }

.section-space {
  padding: 100px 10px; }

#catchCopy,
#news,
#rooms,
#service,
#access,
#faq {
  position: relative; }

.catchCopy-contents,
.price-contents,
.news-contents,
.event-contents,
.taxi-contents,
.rooms-contetns,
.service-contents,
.access-contetns,
.faq-contents {
  padding: 30px 0; }

/* ↓ HEADER */
header {
  position: fixed;
  width: 100%;
  background-color: #000000BF;
  z-index: 9999; }

.header-contents {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center; }
  .header-contents ul {
    display: flex;
    gap: 20px; }
    .header-contents ul:hover a {
      opacity: 0.5; }
    .header-contents ul li {
      position: relative;
      padding-right: 15px;
      transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out; }
      .header-contents ul li:hover {
        opacity: 1; }
      .header-contents ul li:not(:last-child)::after {
        content: " / ";
        position: absolute;
        right: -10px;
        color: #C4CDD4;
        font-size: 16px; }
      .header-contents ul li a {
        position: relative;
        color: #C4CDD4;
        text-decoration: none;
        transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out; }
        .header-contents ul li a:hover {
          opacity: 1; }
        .header-contents ul li a::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: -3px;
          width: 100%;
          height: 1px;
          background-color: #C4CDD4;
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.3s ease-in-out; }
        .header-contents ul li a:hover::after {
          transform: scaleX(1); }
        .header-contents ul li a:not(:hover)::after {
          transform: scaleX(0);
          transform-origin: right; }

.header-logo img {
  width: 150px; }

.sp-menu {
  display: none; }
  @media (max-width: 1024px) {
    .sp-menu {
      display: block; } }

.reserve-button {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 9998;
  width: 135px;
  height: 135px;
  background-color: #C4CDD4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  animation: fuwafuwa 2s infinite;
  visibility: visible;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9998; }
  .reserve-button.scrolling-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
  .reserve-button:hover {
    color: #ffffff;
    background-color: #d0d7dd; }

.reserve-img {
  width: 30px;
  box-shadow: none;
  border-radius: 0px; }
  .reserve-img:hover {
    box-shadow: none; }

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0px); } }
/* ↑ HEADER */
/* ↓ TOP */
.top-contents {
  height: 100vh; }

.top-back {
  background-image: url("../img/top-img.jpg");
  background-position: 50% 100%;
  background-size: cover;
  height: 100vh;
  position: relative; }

.top-text {
  position: absolute;
  bottom: 1.7em;
  left: 1.7em;
  color: #ffffff; }
  .top-text h1 {
    text-align: left; }

.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  /* 文字と下線の間隔 */ }

.underline span {
  display: inline-block;
  /* GSAPで動かすため */ }

.underline-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  /* 下線の太さ */
  background-color: #C4CDD4;
  /* ゴールド系の色 */ }

@keyframes arrowmove {
  0% {
    bottom: 1%; }
  50% {
    bottom: 2%; }
  100% {
    bottom: 1%; } }
.scroll_down {
  position: absolute;
  bottom: 1%;
  right: 40px;
  animation: arrowmove 1s ease-in-out infinite; }
  .scroll_down a {
    position: absolute;
    left: -24px;
    bottom: 17px;
    color: #C4CDD4;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    writing-mode: vertical-rl;
    text-decoration: none;
    text-transform: uppercase; }
  .scroll_down::before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #C4CDD4;
    transform: skewX(-31deg); }
  .scroll_down::after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 2px;
    height: 85px;
    background: #C4CDD4; }

@media (max-width: 768px) {
  .scroll_down a {
    font-size: 9px;
    left: -15px;
    bottom: 5px; }
  .scroll_down::before {
    right: -3px;
    height: 10px; }
  .scroll_down::after {
    height: 50px; } }
/* ↑ TOP */
/* ↓ catchCopy*/
#catchCopy {
  width: 100%;
  background: #333333;
  padding: 65px 0; }

.tl {
  width: 300px;
  position: absolute;
  top: 10px;
  left: 0; }

.bl {
  width: 300px;
  position: absolute;
  bottom: 10px;
  right: 0;
  transform: rotate(180deg);
  /* 45度回転 */ }

.cc-flower {
  position: absolute;
  top: 0;
  right: 0; }

.catchCopy-top {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto; }

.catchCopy-animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; }

.catchCopy-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  line-height: 2.5rem;
  align-items: center;
  gap: 20px; }
  @media (max-width: 1024px) {
    .catchCopy-text {
      width: 100%;
      padding-left: 1.2rem; } }
  @media (max-width: 768px) {
    .catchCopy-text {
      line-height: 2.0rem; } }

@media (max-width: 1024px) {
  .catchCopy-img {
    width: 100%;
    text-align: center; } }
.catchCopy-img img {
  width: 650px;
  mask-image: radial-gradient(circle, white 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask-image: radial-gradient(circle, white 50%, rgba(255, 255, 255, 0) 100%); }
  @media (max-width: 1024px) {
    .catchCopy-img img {
      width: 95%;
      object-fit: cover;
      height: 150px; } }

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(0%); } }
.scroll-infinity {
  padding: 50px 0; }

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden; }

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0; }

.scroll-infinity__wrap:hover .scroll-infinity__list {
  animation-play-state: paused; }

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both; }

.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both; }

.scroll-infinity__item {
  width: calc(100vw / 5); }

.scroll-infinity__item > img {
  width: 100%; }

/* ↑ catchCopy*/
/* ↓ #news */
#news {
  background-image: url("../img/back/haikei01.png");
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.7019607843);
  background-blend-mode: screen;
  background-attachment: fixed;
  background-position: bottom center;
  background-color: #ffffff;
  color: #000000; }

.news01,
.news02 {
  padding: 0 20px;
  text-align: center; }

.news-contents {
  display: flex;
  max-width: 1200px;
  margin: 0 auto; }

.news-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  line-height: 1.5em; }
  .news-text .btn {
    font-style: normal;
    position: relative;
    display: block;
    width: 300px;
    max-width: 80%;
    margin: 2em auto 4em;
    border: 1px solid #222222;
    transition: .5s;
    font-weight: lighter;
    text-align: center;
    letter-spacing: 2px;
    font-size: 80%; }
  .news-text .btn a {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: block;
    color: #222222;
    padding: .8em 0;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease; }
  .news-text .btn11:hover a {
    color: #ffffff;
    background-color: #C4CDD4; }

.news-img {
  text-align: center; }
  .news-img img {
    height: 300px;
    box-shadow: 1px 0 5px rgba(0, 1, 0, 0.5); }

@media (max-width: 1500px) {
  .news-text {
    width: 100%; }

  .news-img img {
    width: 350px; } }
@media (max-width: 1024px) {
  .news-contents {
    max-width: 600px;
    flex-direction: column; } }
@media (max-width: 480px) {
  .news-img img {
    width: 95%; } }
/* ↑ news */
/* ↓ event */
#event {
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  color: #000000;
  padding: 100px 10px 0; }

.event-contents {
  display: flex;
  gap: 20px; }

.lalaarena {
  background-image: url("../img/lalaarena.jpeg");
  background-size: cover;
  background-blend-mode: screen;
  /* background-attachment: fixed; */
  background-position: center;
  width: 50%;
  height: 50vh;
  box-shadow: 1px 0 5px rgba(0, 1, 0, 0.5); }

/* イベント説明テキスト */
.event-text {
  text-align: left;
  margin: 20px 10px; }

.event-datails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2列 */
  gap: 20px;
  /* カード間の余白 */
  max-width: 900px;
  margin: 20px auto; }

/* 各月のイベントボタン */
.event-toggle {
  width: 100%;
  background: #333;
  color: white;
  padding: 12px;
  font-size: 18px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 5px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.event-toggle::after {
  content: "＋";
  /* 開閉アイコン */
  font-size: 20px;
  transition: transform 0.3s ease; }

/* 開いた状態の矢印変更 */
.event-toggle.active::after {
  content: "−";
  transform: rotate(180deg); }

/* イベントリスト（デフォルトでは非表示） */
.event-list {
  max-height: 0;
  overflow: hidden;
  background: white;
  padding: 0 15px;
  margin-top: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: max-height 0.5s ease-out, padding 0.5s ease-out; }

/* 各イベント情報 */
.event-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0; }

.event-item:last-child {
  border-bottom: none; }

.event-item h3 {
  color: #333;
  margin-bottom: 5px; }

.taxi-section {
  background: #fff8e9;
  padding: 3em 1em 100px;
  text-align: center; }

.taxi-inner {
  max-width: 800px;
  margin: 0 auto; }

.taxi-title {
  line-height: 1.6;
  margin-bottom: 1em; }
  .taxi-title .taxi-badge {
    font-weight: bold;
    font-size: 1.2em;
    color: #c78c06; }
  .taxi-title .discount {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2em; }

.taxi-image {
  margin: 1.5em auto; }
  .taxi-image img {
    max-width: 100%;
    height: auto; }

.taxi-steps-container {
  background: #fffaf0;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); }

.taxi-steps-title {
  font-size: 1.4em;
  margin-bottom: 1.5em;
  color: #E1BD5B;
  display: flex;
  flex-direction: column; }
  .taxi-steps-title span {
    font-size: 0.7em; }

.taxi-steps-list {
  list-style: none;
  padding: 0;
  text-align: left; }
  .taxi-steps-list li {
    border-left: 4px solid #E1BD5B;
    padding-left: 1em;
    margin-bottom: 2em;
    position: relative; }
  .taxi-steps-list .btn a {
    color: #000000; }
  .taxi-steps-list .btn11 {
    border-bottom: solid 1px #000000; }

.step-label {
  display: inline-block;
  background: #E1BD5B;
  color: #fff;
  font-weight: bold;
  padding: 0.3em 0.8em;
  border-radius: 5px;
  margin-bottom: 0.5em; }

.tel {
  font-weight: bold;
  margin-top: 0.5em; }

.taxi-highlight {
  color: #e74c3c;
  font-weight: bold; }

.taxi-notes {
  margin-top: 2em;
  background-color: #fff3e0;
  padding: 1.5em;
  border-radius: 8px;
  text-align: left; }
  .taxi-notes h4 {
    font-size: 1.2em;
    margin-bottom: 0.8em;
    color: #c75f20; }
  .taxi-notes ul {
    padding-left: 1.2em; }
    .taxi-notes ul li {
      margin-bottom: 0.5em;
      line-height: 1.6;
      list-style: unset; }

@media (max-width: 1440px) {
  .event-contents {
    flex-direction: column; }

  .lalaarena {
    width: 100%; } }
@media (max-width: 768px) {
  .event-datails {
    grid-template-columns: 1fr;
    /* 1列 */ }

  .taxi-section {
    padding: 3em 0em 100px; }

  .taxi-steps-container {
    padding: 0.5em;
    margin: 0px 10px; }

  .step-label {
    padding: 2px 10px; } }
/* ↑ event*/
/* ↓ Rooms */
#rooms {
  background: #333333; }

.type-select {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 10px;
  align-items: center; }

.type-list {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  width: 80%; }
  .type-list li {
    border-bottom: 1px solid #e2e6ea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    transition: background 0.3s;
    position: relative;
    overflow: visible;
    height: 100px; }
    .type-list li > img {
      width: 150px;
      height: 150px;
      position: absolute;
      right: 60px;
      border-radius: 50%;
      z-index: 99;
      opacity: 0;
      transition: opacity 0.5s ease; }
    .type-list li::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 0.01em;
      width: 0;
      background-color: #C4CDD4;
      transition: width 0.4s ease; }
    .type-list li:hover::after {
      width: 100%; }
    .type-list li:first-child {
      border-top: 1px solid #e2e6ea; }
    .type-list li:hover .type-dot::before {
      left: 6px; }
    .type-list li:hover .type-dot::after {
      left: -50px;
      opacity: 1; }
    .type-list li:hover .type-text {
      transition: color 0.3s ease; }
      .type-list li:hover .type-text strong,
      .type-list li:hover .type-text span {
        color: #C4CDD4; }
    .type-list li:hover img {
      opacity: 1; }
    .type-list li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      text-decoration: none;
      color: #e2e6ea;
      transition: color 0.5s ease;
      height: 100px; }
      .type-list li a .type-text strong {
        display: block;
        font-size: 18px; }
      .type-list li a .type-text span {
        font-size: 12px; }
      .type-list li a .type-dot {
        width: 30px;
        /* 少し大きめに */
        height: 24px;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center; }
        .type-list li a .type-dot::before {
          content: "＞";
          position: absolute;
          left: -20px;
          top: 50%;
          transform: translateY(-50%);
          font-size: 20px;
          /* 矢印を大きく */
          font-weight: bold;
          transition: left 0.3s ease-in-out; }

#googleview {
  text-align: center; }

.streetView-contetns {
  padding: 20px 0; }

@media (max-width: 1024px) {
  .type-select {
    flex-direction: column; } }
@media (max-width: 768px) {
  .type-list {
    width: 100%; }
    .type-list li {
      padding: 10px;
      height: 70px; }
      .type-list li > img {
        width: 80px;
        height: 80px; }
      .type-list li a {
        height: 70px; }
        .type-list li a .type-text strong {
          display: block;
          font-size: 15px; }
        .type-list li a .type-text span {
          font-size: 9px; } }
/* ↑ Rooms */
/* ↓ service */
#service {
  color: #000000; }

.service-contents {
  max-width: 1200px;
  margin: 0 auto; }

.service-slider .slide-item {
  text-align: center;
  padding: 10px;
  opacity: 0.6;
  transition: opacity 0.3s ease; }
  .service-slider .slide-item.slick-center {
    opacity: 1; }
  .service-slider .slide-item img {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    object-fit: cover; }
  .service-slider .slide-item p {
    margin-top: 8px;
    font-weight: bold; }

.ameFaci {
  text-align: center;
  padding-top: 40px; }
  .ameFaci h3 {
    padding-bottom: 15px;
    display: flex;
    flex-direction: column; }

.ameFaci-contents > ul {
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; }
  .ameFaci-contents > ul li {
    border: solid 1px #333333;
    display: flex;
    align-items: center;
    transition: border 0.3s ease; }
    .ameFaci-contents > ul li:hover {
      border: solid 1px #C4CDD4; }
    .ameFaci-contents > ul li p {
      font-size: 10px; }
    .ameFaci-contents > ul li img {
      width: 30px; }
  .ameFaci-contents > ul:first-of-type {
    max-width: 300px; }
    .ameFaci-contents > ul:first-of-type li {
      width: 100px;
      padding: 5px;
      text-align: center;
      flex-direction: column-reverse;
      justify-content: space-between;
      gap: 5px; }
  .ameFaci-contents > ul:nth-of-type(2) {
    max-width: 700px; }
    .ameFaci-contents > ul:nth-of-type(2) li {
      margin: 2px 3px;
      width: 140px;
      height: 50px;
      font-weight: normal;
      flex-direction: row-reverse;
      justify-content: space-evenly; }

.drier {
  width: 15px !important; }

.nailclippers {
  width: 10px !important; }

/* ↑ service */
/* ↓ ACCESS */
#access {
  background: #333333; }

iframe {
  width: 100%; }

.access-route-box {
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 900px;
  margin: 40px auto;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center; }
  .access-route-box h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333; }
  .access-route-box .subtext {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px; }
  .access-route-box form {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .access-route-box form label {
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: flex-start;
      cursor: pointer;
      color: #000000; }
    .access-route-box form .btn {
      margin-top: 24px; }
      .access-route-box form .btn button {
        padding: 12px 36px;
        font-size: 1rem;
        cursor: pointer;
        background-color: #222;
        color: #fff;
        border: none;
        border-radius: 6px;
        transition: background 0.3s ease; }
        .access-route-box form .btn button:hover {
          background-color: #444; }

/* ↑ ACCESS */
/*  ↓ FAQ */
#faq {
  background-size: cover;
  background-color: #FFFFFF;
  background-blend-mode: screen;
  background-attachment: fixed;
  background-position: 0% 50%;
  color: #000000; }

.faq-contents {
  width: 75%;
  max-width: 750px;
  margin: 0 auto;
  /* iPadサイズ（768px〜1024px） */
  /* スマホサイズ以下 */ }
  @media (min-width: 768px) and (max-width: 1024px) {
    .faq-contents {
      width: 80%;
      padding: 0px; } }
  @media (max-width: 767px) {
    .faq-contents {
      width: 90%;
      padding: 0px; } }

details {
  margin: 15px 0;
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 8px;
  transition: background-color 0.3s ease, border-color 0.3s ease; }
  details:hover {
    background-color: #f9fafb; }
    details:hover summary::after {
      color: #C4CDD4; }
  details[open] summary::after {
    transform: rotate(90deg);
    color: #C4CDD4; }
  details[open] {
    background-color: #f9fafb; }

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  outline: none;
  transition: background-color 0.5s ease; }
  summary::after {
    content: "▶";
    font-size: 10px;
    transition: transform 0.5s ease, color .5s ease; }

.inner {
  padding: 10px 20px 0px;
  border-top: 1px solid #1B1A55;
  margin-top: 10px;
  transition: max-height 0.3s ease;
  /* スローなアニメーション */ }
  .inner p {
    font-size: 0.8em; }

/* ↑ FAQ */
/* ↓ footer */
/* フッターボタンのデザイン */
.footer-buttons {
  display: none; }

/* ↓ footer */
.footer-contents {
  padding-top: 20px;
  background-color: #2c3e50; }

.groupHotel {
  width: 100%;
  text-align: center;
  margin-bottom: 20px; }
  .groupHotel h3 {
    font-weight: bold;
    margin-bottom: 15px; }

.group-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; }

.group-card {
  background: #fff;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out; }
  .group-card:hover {
    transform: translateY(-5px); }
  .group-card img {
    width: 100%;
    height: auto;
    border-radius: 8px; }

.group-text {
  margin-top: 10px; }
  .group-text h3 p {
    font-size: 10px; }

/* .footer のデザイン */
.footer {
  width: 100%;
  text-align: center;
  padding: 20px 20px 0;
  background: #1a252f; }

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px; }

.footer-logo img {
  width: 120px; }

.footer-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 12px; }
  .footer-links a {
    color: #C4CDD4;
    text-decoration: none;
    transition: 0.3s; }
    .footer-links a:hover {
      text-decoration: underline; }

.footer-cr {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px; }

/* スマホ対応 */
/* ↑ footer */
.pageTop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: solid 1px #2e2e2e;
  transition: color .3s ease, background .3s ease;
  background-color: #E5E4E2; }
  .pageTop:hover {
    color: #C4CDD4;
    background-color: #2e2e2e; }
  .pageTop::before {
    content: "▲";
    /* 矢印 */ }

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  color: #333333; }

.modal.active {
  display: flex !important; }

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 700px;
  position: relative; }

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer; }

.modal-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  margin-top: 20px; }

.modal-option {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px; }

/* ↓ レスポンシブ */
@media (max-width: 1350px) {
  .catchCopy-top {
    flex-direction: column; }

  .catchCopy-img {
    width: 100%;
    text-align: center; }
    .catchCopy-img img {
      width: 95%;
      object-fit: cover;
      height: 150px; } }
@media (max-width: 1024px) {
  h1 {
    font-size: 2.0736em; }

  h2 {
    font-size: 2.592em; }

  h3 {
    font-size: 1.296em; }

  h4 {
    font-size: 1.08em; }

  p {
    font-size: 0.9em; }

  .header-contents ul {
    display: none; }

  #hamburger-menu {
    display: block;
    width: 30px;
    height: 25px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 1000; }
    #hamburger-menu span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: #C4CDD4;
      margin: 5px 0;
      transition: 0.3s; }

  #nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    text-align: center;
    z-index: 999;
    align-items: center;
    justify-content: center; }
    #nav-menu ul {
      list-style: none;
      padding: 50px 0;
      margin: 0; }
      #nav-menu ul a {
        color: #000000;
        text-decoration: none;
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.2rem;
        transition: color 0.5s ease; }
        #nav-menu ul a:hover {
          color: #C4CDD4; }
        #nav-menu ul a span {
          font-size: 10px; }
    #nav-menu .tl {
      width: 200px;
      top: 0; }
    #nav-menu .bl {
      width: 200px;
      bottom: 0; }

  /* メニューが開いたときのスタイル */
  #nav-menu.active {
    display: flex; }

  #hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }

  #hamburger-menu.active span:nth-child(2) {
    opacity: 0; }

  #hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }

  .tl {
    width: 200px; }

  .bl {
    width: 200px; }

  .access-roots {
    flex-direction: column;
    gap: 30px; }

  .footer-container {
    flex-direction: column;
    gap: 40px; }

  .footer {
    width: 100%; } }
@media (max-width: 768px) {
  h1 {
    font-size: 1.8432em; }

  h2 {
    font-size: 2.304em; }

  h3 {
    font-size: 1.152em; }

  h4 {
    font-size: 0.96em; }

  p {
    font-size: 0.8em; }

  .section-space {
    padding: 40px 10px; }

  #nav-menu .tl {
    width: 175px; }
  #nav-menu .bl {
    width: 175px; }

  .tl {
    width: 100px; }

  .bl {
    width: 100px; }

  #catchCopy {
    padding: 40px 0; }

  .roomValue,
  .roomModerate,
  .roomGrace,
  .roomSuperior,
  .roomLuxury {
    font-size: 2.0rem;
    padding: 15px 20px; }
    .roomValue i span,
    .roomModerate i span,
    .roomGrace i span,
    .roomSuperior i span,
    .roomLuxury i span {
      font-size: 0.6rem; }

  .rooms-line {
    width: 90%; }

  .reserve-button {
    display: none; }

  .reserve-img {
    display: none; }

  .footer-buttons {
    position: fixed;
    background-color: unset;
    bottom: 50px;
    right: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    transition: opacity 0.5s ease;
    z-index: 1000; }
    .footer-buttons.hidden {
      opacity: 0;
      pointer-events: none; }
    .footer-buttons .footer-button {
      width: 50px;
      /* 幅を狭くして縦長に */
      height: 200px;
      /* 高さを指定して縦長に */
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      writing-mode: vertical-rl;
      /* 縦書きにする（必要に応じて） */
      color: white;
      border-radius: 10px 0 0 10px;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
      gap: 10px; }
      .footer-buttons .footer-button img {
        width: 20px; }
      .footer-buttons .footer-button.tel {
        display: flex;
        background-color: #808080;
        color: #fff;
        border: none; }
        .footer-buttons .footer-button.tel:hover {
          background-color: #a6a6a6; }
      .footer-buttons .footer-button.recruit {
        background-color: #808080;
        color: #fff;
        border: none; }
        .footer-buttons .footer-button.recruit:hover {
          background-color: #a6a6a6; }
      .footer-buttons .footer-button.reserve {
        background-color: #C4CDD4;
        /* ゴールド */
        color: #000000;
        border: none; }
        .footer-buttons .footer-button.reserve:hover {
          background-color: #d6dce1; }

  .group-card {
    width: 185px; }

  .modal-links {
    flex-direction: column; } }
@media (max-width: 480px) {
  h1 {
    font-size: 1.2672em; }

  h2 {
    font-size: 1.584em; }

  h3 {
    font-size: 0.792em; }

  h4 {
    font-size: 0.66em; }

  p {
    font-size: 0.55em; }

  .top-text {
    left: 0.7em;
    bottom: 0.7em; }

  #nav-menu .tl {
    width: 150px; }
  #nav-menu .bl {
    width: 150px; }

  .roomValue,
  .roomModerate,
  .roomGrace,
  .roomSuperior,
  .roomLuxury {
    font-size: 1.5rem;
    padding: 5px 10px; }
    .roomValue i span,
    .roomModerate i span,
    .roomGrace i span,
    .roomSuperior i span,
    .roomLuxury i span {
      font-size: 0.4rem; }

  .group-text {
    height: 50px;
    margin-left: 0.7em; }

  .footer-top {
    padding: 10px;
    gap: 15px; }

  .footer-buttons {
    bottom: 20px; }
    .footer-buttons .footer-button {
      height: 150px;
      /* 高さを指定して縦長に */
      padding: 0;
      width: 40px; }

  .footer-links {
    flex-direction: column;
    gap: 5px; } }
/* ↑ レスポンシブ */
/* スクロールバーの幅 */
::-webkit-scrollbar {
  width: 5px;
  /* 横スクロールバーの場合は height */ }

/* スクロールバーの背景 */
::-webkit-scrollbar-track {
  background: #000000;
  /* 背景色 */ }

/* スクロールバーの動く部分 */
::-webkit-scrollbar-thumb {
  background: #C4CDD4;
  /* つまみ（スクロールバーの動く部分）の色 */ }

/* スクロールバーのつまみにホバーしたとき */
::-webkit-scrollbar-thumb:hover {
  background: #d6dce1; }
