/* body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
} */

body {
  font-family: 'BIZ UDPGothic', 'Noto Sans JP', 'M PLUS 1p', sans-serif;
  font-size: 90%;
  color: #393939;
  background-color: #000000;
}


/* 数字フォント用 */
.f-number {
  font-family: 'BIZ UDPGothic';
  font-weight: 700;
}

/* 太い文字 */
.f-bold {
  font-family: 'Noto Sans JP';
  font-weight: 700;
}

/* 英語の強調 */
.f-em {
  font-family: 'Jockey One';
}


/* リンク色の指定 ///////////////////////////////// */
/* a { color: #000000; text-decoration: underline;} */
a { color: #000000; text-decoration: none;}

a:hover { color: #000000; }

/* 長いアドレスを改行させるCSS ///////////////// */
.break-all {
  word-break: break-all;
}

/* 文字の終端を合わせる為の記述 ///////////////// */
.text-container-justfit {
  text-align: justify;
}
.text-container-justfit p {
  display: inline-block; /* 必要に応じてブロック要素に変更 */
  width: 100%;
}

/* フォントサイズの追加 ////////////////////////// */
.fs-7 {font-size: 0.9rem;}
.fs-8 {font-size: 0.8rem;}
.fs-9 {font-size: 0.7rem;}
.fs-10 {font-size: 0.6rem;}
.fs-big {font-size: 3.5rem;}




/* メイン画像上の配置 */
.overlay-main-top {
  position: absolute;
  top: 20px; /* Bottom positioning */
  right: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 0px;
}
/* メイン画像下の配置 */
.overlay-main-bottom {
  position: absolute; 
  bottom: 0px;
  right: 0px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 0px;
}

/* 普通画像上の配置 */
.overlay-top {
  position: absolute;
  top: 30px;
  left: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.0);
  padding: 10px;
  border-radius: 0px;
}
/* ポイントの数字 */
.overlay-bottom {
  position: absolute; 
  bottom: 100px;
  right: 0px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 0px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

/* 横並び画像の配置 */
.overlay-multi {
  position: absolute; 
  bottom: 0px;
  right: 0px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 20px 5px 20px;
  border-radius: 0px;
}




/* 背景画像の指定 img/sample11.png */
.bg-img01 {
  background-image: url("../img/bg-000.png");
  background-size: cover;
}


/* 背景画像の指定 img/sample11.png */
.bg-img02 {
  background-image: url("../img/bg-001.png");
  background-size: cover;
}
.bg-img03 {
  background-image: url("../img/bg-002.png");
  background-size: cover;
}
.bg-img04 {
  background-image: url("../img/bg-003.png");
  background-size: cover;
}
.bg-img05 {
  background-image: url("../img/bg-004.png");
  background-size: cover;
}









/* カルーセルの高さを画面いっぱいにする */
.carousel-item {
  height: 100vh; /* 画面の高さいっぱいに表示 */
}
.carousel-item img {
  width: 100%;  /* 画面の幅いっぱいに表示 */ 
  height: 100%;  /* 画面の高さいっぱいに表示 */
  object-fit: cover; /* 画像を中央に表示 */
  background-color: #000;

}


/* パララックス */
.rising-area {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.rising-area.visible {
  opacity: 1;
  transform: translateY(0);
}



/* よくある質問エリア用 ///////////////// */
  details {
    border: 1px solid #ccc; /* 枠線 */
    border-radius: 5px;
    margin-bottom: 5px; /* 隙間を追加 */
  }

  details summary {
    list-style: none;
    cursor: pointer;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: flex-start; /* 記号フォントをテキストの上に揃える */
    appearance: none; /* デフォルトの▶︎記号を削除 */
  }

  details summary::-webkit-details-marker {
    display: none; /* デフォルトの記号を非表示にする */
  }

  details summary::before {
    font-family: "Font Awesome 5 Free";
    content: '\f067';
    margin-right: 10px;
    color: #ccc;
    flex-shrink: 0; /* 記号フォントのサイズを固定 */
  }

  details[open] summary::before {
    content: '\f068';
  }

  details summary span {
    flex: 1; /* テキスト部分が利用可能なスペースを占めるように設定 */
    display: inline-block; /* テキスト部分をブロック化して折り返しを有効にする */
  }

  details > p {
    margin: 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
  }
/* よくある質問エリア用 ///////////////// */
    
