@charset "UTF-8";


/* -----------------------
   初期設定
----------------------- */

html {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-kerning: none;
}

body {
  background-color: black;
  color: #fff;
  overflow-x: hidden;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-feature-settings: "kern" 0;
  letter-spacing: 0.05em;
  /* 文字全体の間隔を統一 */
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.5;
  /* ふわっと反応する */
}


/* -----------------------
   共通スタイル
----------------------- */

section {
  margin-top: 10rem;
  text-align: center;
  margin: 20px auto 0 auto;
}

.title-box {
  text-align: center;
  margin: 80px auto 40px;
  position: relative;
}

.section-title {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.1em;
  padding-left: 20px;

}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1.2em;
  background-color: #9B0C09;
  border-radius: 2px;
}


.title-bottom {
  font-size: 0.9rem;
  color: #fff;
  margin-top: 5px;
  padding-left: 23px;
  letter-spacing: 0.05em;
}



/* -----------------------
   main-visual 
----------------------- */

.main-visual {
  width: 100%;
  position: relative;
}

.main-visual img {
  width: 100%;
  height: auto;
}

.main-visual__backImg {
  position: relative;
}

.main-visual__pcBackimg {
  display: block;
}

.main-visual__spBackimg {
  display: none;
}

.main-visual__noelLogo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 15;
  width: 100px;
}

.main-visual__dotBack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/dot_back.png");
  background-repeat: repeat;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.main-visual__textImg {
  position: absolute;
  bottom: 90px;
  left: 55px;
  z-index: 20;
  width: 50%;
  transform: rotate(-5deg);
}



/* -----------------------
   global_nav
----------------------- */

.global_nav {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.863);
  text-align: center;
  z-index: 1000;
  /* 一番前に表示 */
  padding: 30px 0;
  transition: all 0.4s ease;
}

.global_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.global_nav li {
  position: relative;
  padding-left: 12px;
  /* 線と文字の間に余白を作る */
}


.global_nav a {
  display: flex;
  flex-direction: column;
  /* 上：英語、下：日本語 */
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  /* 四角の内側余白 */
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.global_nav li a {
  text-decoration: none;
  align-items: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

/* 英語部分 */
/* 英語部分：高さを揃える */
.global_nav .en {
  position: relative;
  display: inline-block;
  padding-left: 1.1rem;
  min-height: 1.6em;
  /* ← ここで高さを揃える */
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  font-weight: bold;
}

.global_nav .en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  /* 線の太さ */
  height: 100%;
  /* 英語テキストの高さに合わせる */
  background-color: #c91414;
  /* 赤色 */
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

/* 日本語部分 */
.global_nav .jp {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 2px;
  color: #777;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
}


/* カーソルを合わせた時に .en だけ赤く */
.global_nav a:hover .en {
  color: #c91414;
}

/* ホバー時、日本語の色も白に */
.global_nav a:hover .jp {
  color: #fff;
}


/* -----------------------
   hamburger
----------------------- */


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transform: 0.3s;
}


/* 開閉アニメーション */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* -----------------------
   text
----------------------- */

.top-text-box {
  margin: 0px auto;
  text-align: center;
}

.text-top {
  color: #9B0C0A;
}

.inner-text {
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 2px;
}


/* -----------------------
   system
----------------------- */


.system {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* 右半分に画像背景を敷く */
.system::before {
  content: "";
  position: absolute;
  right: 0;
  top: 100px;
  bottom: 0;
  width: 50%;
  height: 350px;
  background: url("../img/system_bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.system .title-box,
.system .system-area,
.system .inner-text {
  position: relative;
  z-index: 1;
}

.system-area {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
  flex-wrap: wrap;
}


.system-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 5px solid #9B0C09;
  margin-top: 5rem;
  width: 600px;
  height: 200px;
  flex: 1;
  box-sizing: border-box;
}

.inner-system {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.system-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family: "Noto Sans JP", sans-serif;
}

.system-item .time {
  width: 100%;
  background-color: #9B0C09;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  letter-spacing: 2px;
  box-sizing: border-box;
}

.system-item .price {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9B0C09;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 40px 0;
  text-align: center;
}

small {
  font-size: 1rem;
}

.system-text {
  font-weight: bold;
  line-height: 1.5rem;
  margin-bottom: 0.8rem;
}

.system-ste {
  font-size: 0.8rem;
}

.system-item .tax {
  font-size: 0.7rem;
  color: #888;
  margin-left: 4px;
}


.system .table-box {
  text-align: center;
  margin-bottom: 40px;
}


.system-table {
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  border-collapse: collapse;
  /* 枠線の重なりをなくす */
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.system-table th,
.system-table td {
  border-bottom: 1px solid #ddd;
  padding: 15px 10px;
}

.system-table th {
  background-color: #f8f6f4;
  color: #333;
  font-weight: bold;
}

.system-table td {
  color: #555;
  font-size: 1rem;
}

.system-table .tax {
  font-size: 0.75rem;
  color: #999;
  margin-left: 3px;
}


/* -----------------------
   service
----------------------- */

.service_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
}

.service_img {
  flex: 0 0 60%;
  height: 300px;
  background: url("../img/service_img.jpg") center / cover no-repeat;
}

.service_text {
  flex: 0 0 45%;
  margin-left: -70px;
  text-align: left;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;

}

/* テキスト装飾 */
.service_text h3 {
  display: inline-block;
  padding: 0.3rem 1rem;
  background-color: #9B0C0A;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.service_text p {
  font-size: 1rem;
  line-height: 1.8;
}

/* -----------------------
   slider
   ----------------------- */

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-track li {
  flex: 0 0 25%;
  /* ← 4枚並べる */
  list-style: none;
}

.slider-track img {
  width: 100%;
  aspect-ratio: 5 / 3;
  /* ←横4：縦3 の比率（例：横長） */
  height: 250px;
  object-fit: cover;
  display: block;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(-300%);
  }

  /* 最後の画像で止める */
}

/* ナビゲーションボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-btn:hover {
  background: #9B0C0A;
}





/* -----------------------
   rental
   ----------------------- */


.table-box {
  max-width: 800px;
  margin: 60px auto;
  font-size: 1rem;
}

.table-box table {
  width: 100%;
}

td {
  color: #000000;
  background-color: #AFAFAF;
  padding: 15px 10px;
  font-size: 0.9rem;
}

.rental_item {
  color: #fff;
  background-color: #5F5F5F;
  letter-spacing: 0.1rem;
}

small {
  font-size: 0.7rem;
}


/* -----------------------
   contact
   ----------------------- */


.contact-box {
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}


.contact-left {
  width: 50%;
  background-color: #9B0C0A;
  text-align: center;
}

.contact-right {
  flex: 1;
  background-color: #715454;
  text-align: center;
}

.maill-item {
  flex: 0 1 300px;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-left__link,
.contact-right__link {
  display: block;
  padding: 40px 16px;
}

.contact-right__link {
  pointer-events: none;
}

.contact-left__mailIcon img,
.contact-right__tellIcon img {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
}

.tel-item img {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
}

.contact-right {
  width: 50%;
  background-color: #715454;
  text-align: center;
}

.pc-tellText {
  display: block;
}

.sp-tellText {
  display: none;
}

/* メールと電話の色違い */
.mail-item {
  background-color: #9B0C0A;
}

.tel-item {
  background-color: #715454;
}


/* 各アイテム */
.contact-item {
  flex: 0 1 300px;
  text-align: center;
  padding: 4rem 2rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.map-box {
  width: 100%;
  margin-top: 0;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}



/* -----------------------
   footer
----------------------- */

.footer_box {
  text-align: center;
  background-color: #2C2C2C;
  padding: 50px;
}

.footer_logo {
  margin-bottom: 40px;
}

.footer_logo p {
  font-size: 0.8rem;
}

.footer_logo img {
  width: 100px;
}


.footer_nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_nav ul {
  display: flex;
  gap: 50px;
}

.footer_nav li {
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
}

.shop-info {
  margin-top: 2rem;
  font-size: 0.8rem;
}

.contact-inline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-inline a {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0.5rem;
}

.contact-inline img {
  width: 20px;
  height: auto;
}

/* モーダルオーバーレイ */
.dispNone {
  display: none;
}

#modalOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

#modalBox {
  z-index: 1001;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: 100%;
  padding: 0 16px;
}

.slider-track__list {
  cursor: pointer;
}

#modalCloseBtn {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.modalPictureBox__image {
  width: 100%;
}



/* スマホ対応 */
@media screen and (max-width: 768px) {

  body {
    /* 全体の余白を小さく統一 */
    box-sizing: border-box;
  }

  section {
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }

  .system-area,
  .service_box,
  .contact-box {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }


  /* 画像などが端まで広がる要素だけ別扱い */
  .main-visual,
  .service_img {
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
  }

  .main-visual__textImg {
    bottom: 16px;
    left: 16px;
    width: 90%;
  }

  .main-visual__noelLogo {
    width: 60px;
    top: 16px;
    left: 16px;
  }

  .main-visual__pcBackimg {
    display: none;
  }

  .main-visual__spBackimg {
    display: block;
  }

  .main-visual__dotBack {
    display: none;
  }

  .main-visual__backImg::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    width: 100%;
    height: 170px;
  }


  /* -----------------------
   global_nav
----------------------- */

  .global_nav {
    padding-left: 0;
    padding-right: 0;
  }

  .global_nav ul {
    flex-direction: column;
    gap: 25px;
  }

  .global_nav .en {
    font-size: 1.2rem;
    min-height: 1.6rem;
  }

  .global_nav .jp {
    font-size: 0.8rem;
  }


  /* -----------------------
hamburger
----------------------- */

  .hamburger {
    display: flex;
  }

  .global_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
  }

  .global_nav.active {
    display: flex;
  }

  .global_nav ul {
    flex-direction: column;
    gap: 24px;
  }

  .global_nav a {
    font-size: 1.4rem;
  }

  /* -----------------------
  top-text-box
----------------------- */

  .top-text-box {
    padding: 16px;
  }

  .text-top {
    letter-spacing: 0;
    line-height: 1.3;
    text-align: justify;
  }

  .inner-text {
    line-height: 1.5;
    letter-spacing: 0;
    font-size: 0.85rem;
    text-align: left;
  }



  /* -----------------------
   system
----------------------- */

  /* 背景はそのまま */
  .system::before {
    width: 100%;
    top: 0;
  }


  /* ボックス全体 */
  .system-area {
    display: flex;
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    /* ← 中央寄せの決め手！ */
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    padding: 0 10px;
  }

  /* 各ボックス */
  .system-box {
    width: 90%;
    /* スマホ幅に自動フィット */
    max-width: 500px;
    /* タブレットでもバランスよく */
    margin: 0 auto;
  }

  .inner-system {
    width: 100%;
  }

  .system-item .time {
    font-size: 1rem;
    padding: 15px;
  }

  .system-item .price {
    padding: 25px 0;
  }


  .system::before {
    width: 100%;
    /* スマホでは背景を全面にしてしまう案 */
    top: 0;
  }

  .system-area {
    margin-top: 5rem;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;

  }

  .system-box {
    margin: 0;
  }

  .system-text {
    padding: 0 16px;
  }

  .system-ste {
    padding: 0 16px;
  }


  /* -----------------------
   service
----------------------- */
  .service_box {
    flex-direction: column;
  }

  .service_img {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
    border-radius: 0;
  }

  .service_text {
    margin-left: 0;
    margin-top: -40px;
    /* スマホでは少しだけ上に重ねる */
    width: 90%;
    padding: 20px;
  }



  /* -----------------------
  footer
----------------------- */

  .contact {
    width: 100%;
    overflow: hidden;
    /* 横スクロール防止 */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .contact-box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    /* ← セクション内の横余白をリセット */
  }

  .contact-left,
  .contact-right {
    flex: 1;
    min-width: 50%;
  }

  .contact-right__link {
    pointer-events: auto;
  }

  .mail-item,
  .tel-item {
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    box-sizing: border-box;
  }

  .mail-item {
    background-color: #9B0C0A;
  }

  .tel-item {
    background-color: #715454;
  }

  /* mapボックスも横幅を合わせる */
  .map-box {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
  }


  /* -----------------------
  footer
----------------------- */

  .footer_box {
    padding: 40px 20px;
  }

  /* ロゴ */
  .footer_logo img {
    width: 80px;
  }

  .footer_logo p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  /* ナビゲーション */
  .footer_nav {
    flex-direction: column;
  }

  .footer_nav ul {
    flex-direction: column;
    list-style: none;
    /* ← 丸を消す */
    gap: 15px;
    padding: 0;
  }

  .footer_nav li {
    font-size: 1rem;
    letter-spacing: 0.15rem;
  }

  /* ショップ情報 */
  .shop-info {
    margin-top: 1.5rem;
    line-height: 1.8;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
  }



  /* メール・電話：縦並び */
  .contact-inline {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 0.1rem;
  }

  .contact-inline a {
    margin: 0.3rem 0;
  }

  .contact-inline img {
    width: 18px;
  }

  .pc-tellText {
    display: none;
  }

  .sp-tellText {
    display: block;
  }

}


/* -----------------------
  超小型スマホ (〜400px)
----------------------- */
@media screen and (max-width: 400px) {



  /* ハンバーガー位置調整 */
  .hamburger {
    right: 12px;
    top: 12px;
    width: 24px;
    height: 18px;
  }

  .hamburger span {
    height: 2px;
  }

  /* メニュー全体 */
  .global_nav ul {
    gap: 18px;
  }

  .global_nav a {
    font-size: 1rem;
    padding: 6px 12px;
  }

  .global_nav .en {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .global_nav .jp {
    font-size: 0.7rem;
  }

  .top-text-box {
    text-align: left;
    display: block;
  }

  /* system（料金体制） */
  .system-area {
    padding: 0 10px;
    gap: 12px;
  }

  .system-box {
    width: 100vw;
    max-width: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin-bottom: 0.9rem;
  }

  .system-item p {
    font-size: 0.9rem;
  }

  .system-ste {
    line-height: 1rem;
  }

  /* service（付属サービス） */
  .service_img {
    height: 200px;
  }

  .service_text {
    margin-top: -25px;
    width: 92%;
    padding: 15px;
  }

  .service_text h3 {
    font-size: 1.1rem;
  }

  .service_text p {
    font-size: 0.9rem;
  }
}