@charset "utf-8";
/* レイアウトのためのCSS */
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* area */
#container {
  overflow-x: hidden;
  /*以下、IE11用*/
  z-index: 1;
  position: relative; /* 疑似要素::beforeの基準点 */
}

#container::before {
  content: "";
  /* container全体に広げる */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* 背景画像の設定 */
  background-image: url("../img/background.jpg");

  /* ★★★ 変更点: 画像を繰り返し、隙間をなくす ★★★ */
  background-size: auto; /* 拡大縮小せず、原寸大で扱う */
  background-repeat: repeat; /* 縦横に画像を繰り返して隙間を埋める */

  background-position: top left; /* 繰り返しは通常、左上から開始 */

  /* 背景画像にのみ透明度30% (不透明度70%)を適用 */
  opacity: 0.2;

  /* containerのコンテンツの下に配置 */
  z-index: -1;
}
/* font-family */
h1,
h2,
#service .service-area section h3,
#g-nav,
#footer-link,
.scrolldown1 span,
#vidual-area dt,
.footer-logo {
  /* Oswald (サンセリフ) から EB Garamond (セリフ体) へ変更 */
  font-family: "EB Garamond", serif;
  /* letter-spacingはセリフ体の可読性を考慮し、ここでは維持します */
  letter-spacing: 0.2em;
}
/* heading */
h2 {
  font-size: 2.5rem;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}
/* header */
#header h1 a {
  color: #333;
}
#header h1 {
  position: absolute;
  top: 22px;
  left: 20px;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  #header h1 {
    position: absolute;
    top: 22px;
    left: 20px;
    padding: 0;
  }
}
/* vidualarea */
#vidual-area {
  position: relative;
  height: 100vh;
}
body.appear #vidual-area::after {
  content: "";
  background: linear-gradient(90deg, #a55f00 0%, #d2d200 100%);
  width: 0;
  height: 0%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#vidual-area #slider-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: -1; /*最背面へ*/
}
#vidual-area h2 {
  line-height: 1.5;
  text-transform: uppercase;
  font-size: 3vw;
  position: absolute;
  top: 36%;
  left: 5%;
}
/* #vidual-area dl の既存の配置ルールを維持 */
#vidual-area dl {
  position: absolute;
  bottom: 7%;
  /* ここに以前のdlの中央配置に関するflexboxプロパティを統合します */
  display: flex; /* dtとddを横並びにするためflexboxを使用 */
  flex-direction: row; /* dtとddを横に並べる */
  align-items: center; /* 縦方向の中央に揃える */
  gap: 20px; /* dtとddの間のスペース */
  border-radius: 0;
  padding: 37px 90px;
  opacity: 0; /* 初期状態は非表示 */
}

/* ロード完了（appear）から2秒後にフェードイン */
body.appear #vidual-area dl {
  animation: fadeInFollow 2s ease-out 2s forwards; /* 2秒後にフェードイン */
}

/* フェードインアニメーションの定義 */
@keyframes fadeInFollow {
  from {
    opacity: 0;
    transform: translateY(10px); /* 下から少し浮き上がる効果 */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* dtとddをインラインブロックにする既存のルールを上書きして、dlのflexboxを活かす */
#vidual-area dt,
#vidual-area dd {
  /* dlのflexboxによって制御されるため、個別のdisplay設定は不要です。 */
  margin: 0; /* マージンをリセット */
}
/* "Follow Us" テキストのスタイル */
#vidual-area dt {
  text-transform: uppercase; /* 既存のルールを保持 */
  color: #333; /* テキストの色を薄いグレーに */
  font-size: 1.2rem; /* フォントサイズを調整 */
  margin-bottom: 0; /* dtとddを横並びにするため、下マージンは不要 */
  white-space: nowrap; /* スマホで「Follow Us」が2行に分かれるのを防ぐ */
}
.follow-us-area {
  position: absolute;
  background: radial-gradient(ellipse at 36% 35%, #ffffff, transparent 40%);
  height: 93px;
  width: 500px;
  bottom: 0px;
  left: 16px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #vidual-area dt {
    width: initial;
    display: none;
  }
  .follow-us-area {
    background: none;
  }
}
#vidual-area dd ul {
  /* アイコンリストのスタイル */
  list-style: none; /* リストのマーカーを削除 */
  padding: 0; /* デフォルトのパディングを削除 */
  margin: 0; /* デフォルトのマージンを削除 */
  display: flex; /* アイコンを横並びにするためフレックスコンテナに */
  justify-content: center; /* アイコンを水平方向の中央に配置 */
  gap: 10px; /* アイコン間のスペースを調整 */
}
#vidual-area dd ul li {
  /* リストアイテムの既存マージンを上書きして、gapを使用 */
  margin: 0; /* gapプロパティを使うため、liのマージンはリセット */
}
#vidual-area dd ul li a {
  /* 各アイコンリンクのスタイル（円形と色） */
  display: flex; /* アイコン自体を中央に配置するためフレックスコンテナに */
  justify-content: center; /* アイコンを水平方向の中央に配置 */
  align-items: center; /* アイコンを垂直方向の中央に配置 */
  width: 50px; /* 円の幅 */
  height: 50px; /* 円の高さ */
  border-radius: 50%; /* 円形にする */
  background-color: #333; /* 背景色を濃いグレーに */
  color: #eee; /* アイコンの色を薄いグレーに */
  text-decoration: none; /* 下線を削除 */
  font-size: 1.5rem; /* アイコンのサイズを調整 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}
#vidual-area dd ul li a:hover {
  /* アイコンにマウスオーバーした時のスタイル */
  background-color: #555; /* ホバー時の背景色を少し明るく */
}
/* imgタグのアイコンは使用しないため、関連CSSは削除するかコメントアウト */
/* #vidual-area ul img{
    width:20px;}
     */
/* レスポンシブ対応の調整 */
@media screen and (max-width: 960px) {
  #vidual-area {
    height: 100vh; /* 既存のルールを保持 */
  }
  #vidual-area #slider-area {
    width: 100%; /* 既存のルールを保持 */
    height: 100%; /* 既存のルールを保持 */
  }
  #vidual-area h2 {
    font-size: 2.1rem; /* 既存のルールを保持 */
  }
  #vidual-area dl {
    left: -20px;
    bottom: 0px;
    border-radius: 0;
    padding: 37px 100px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  #vidual-area dd ul {
    gap: 5px; /* モバイルでのアイコン間のスペースを調整 */
  }
  #vidual-area dd ul li a {
    width: 40px; /* モバイルでのアイコン円の幅を調整 */
    height: 40px; /* モバイルでのアイコン円の高さを調整 */
    font-size: 1.2rem; /* モバイルでのアイコンサイズを調整 */
  }
}

/* iPhoneランドスケープモード専用の調整 */
@media screen and (max-height: 500px) and (orientation: landscape) {
  #slider {
    height: 750px;
  }

  .vegas-slide-inner {
    background-position: top center !important;
  }
}
@media screen and (max-width: 450px) {
  #vidual-area h2 {
    font-size: 7vw;
    top: inherit;
    bottom: 13%;
  }
  #vidual-area dl {
    bottom: 0px;
    border-radius: 0;
    padding: 37px 60px;
  }
}

.vegas-slide-inner {
  -webkit-mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
}

/* # =================================================================
   # News
   # ================================================================= */
.news-img-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 90%;
  height: 60vh;
  margin: 0 auto;
}
.news-img {
  height: 60vh;
  background: url("../img/footer01.jpg") no-repeat center;
  background-size: cover;
}
.news-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 10vh;
  background: #000;
  z-index: 2;
}
#news,
#live,
#chat {
  padding: 50px 15% 120px;
}
#news .area li,
#live .area li {
  padding: 20px 0;
  border-bottom: 2px #333 dotted;
}
#news .area time,
#live .area time {
  display: block;
  color: #333;
  font-size: smaller;
}
#news .tab,
#live .tab {
  position: relative;
  top: 1px;
}
#news .tab-choice-area,
#live .tab-choice-area {
  background-color: #fff;
}
@media only screen and (max-width: 1110px) {
  .tab-area {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #news,
  #live,
  #chat {
    padding: 0 30px 50px;
  }
}

/* # =================================================================
   # Contact
   # ================================================================= */
#contact {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* ★★★ 変更・追加 ★★★ */
  background: linear-gradient(to right, #657799, #bbbfcc, #6e7fa2);
  /* コンクリを隠している */
}
#contact .contact-detail {
  width: 100%;
  text-align: center;
  padding: 20px;
}
#contact .contact-detail h2 {
  margin: 0;
  font-size: 1.5rem;
}
#contact .contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 450px) {
  #contact .contact-tel {
    flex-direction: column;
  }
}
#contact .contact-tel p {
  text-align: center;
  white-space: nowrap;
}
#contact .contact-tel p a {
  display: block;
  padding: 20px 10px;
  transition: all 0.3s;
  border-radius: 10px;
}
#contact .contact-tel p a:hover {
  background: rgba(255, 255, 255, 0.2);
}
#contact .contact-tel br {
  display: none;
}
@media screen and (max-width: 690px) {
  #contact .contact-detail,
  #contact .contact-tel {
    width: 100%;
  }
  #contact .contact-tel br {
    display: block;
  }
  #contact .contact-detail h2 {
    font-size: 1.2rem;
  }
  #contact .contact-detail p {
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  #contact {
    font-size: 0.8rem;
  }
}

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

/* 450px以下の時にピリオドを非表示にする */
@media screen and (max-width: 450px) {
  .colon {
    display: none;
  }
}
