@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');

/* Googleフォント適用 */
body {
    font-family:'Times New Roman','Josefin+Sans', 'Arial',  'Noto Sans JP', 'sans-serif' ,'ヒラギノ丸ゴ ProN W3','Noto Sans JP', 'Verdana', '游ゴシック', 'YuGothic','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo','cursive';
    background: url('img/system.png') no-repeat center center fixed; /* 背景画像 */
    background-size: cover; /* 画面全体にフィット */

    /*padding: 60px 0;   上下の余白を追加 */
    min-height: 100vh; /* 高さを最低100vhにしてスクロールを可能に */
    display: flex;
    flex-direction: column;
    align-items: center; /* コンテンツを中央寄せ */
    font-size: 14px;

}

/* コンテンツ全体のボックス -------------------------------------------------*/
.container {
    width: 90%;
    max-width: 900px;
    margin-top: 100px; /* 上部に余白を追加 */
}

/* SYSTEMの枠 */
.system-box {
    background: #222;
    color: #fff;
    padding: 40px;
    border: 3px solid #D9BC80;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
/* drinkの枠のレイアウト調整 -------------------------------------------------*/
.drink-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* drinkの枠 */
.drink-box {
    background: #222;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    border: 2px solid #EFEAE7;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    width: 48%;  /* 横に2列表示 */
    margin: 1% 0;
    box-sizing: border-box; /* paddingやborderを含めた幅計算 */
}

/* drink_brandの枠 */
.drink-box_brand {
    background: #222;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    border: 2px solid #D9BC80;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    width: 48%;  /* 横に2列表示 */
    margin: 1% 0;
    box-sizing: border-box; /* paddingやborderを含めた幅計算 */
}

/* SYSTEM タイトル */
.title {
    font-size: 36px;
    font-family:'Times New Roman', 'Playfair Display', serif;
    color: #D9BC80;
    margin-bottom: 20px;
}
/* drink タイトル */
.drink-box h2 {
    font-size: 16px;
    font-family: 'Times New Roman','Playfair Display', serif;
    color: #D9BC80;
    margin-bottom: 5px;
}
/* drink_brand タイトル */
.drink-box_brand h2 {
    font-size: 16px;
    font-family:'Times New Roman', 'Playfair Display', serif;
    color: #D9BC80;
    margin-bottom: 5px;
}

.Information-box{
    background: #222;
    color: #fff;
    font-size: 13px;
    padding: 10px;
    border: 2px solid #D9BC80;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    max-width: 900px;

    width: 100%;  /* 横に1列表示 */
    margin-top: 30%;
    box-sizing: border-box; /* paddingやborderを含めた幅計算 */
}
.Information-title {
    font-size: 80px;
    font-family:'Times New Roman', 'Playfair Display', serif;
    color: #D9BC80;
    text-decoration-color: 0px 0px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    margin-top: 20px;;
    text-align: center;

}



/* スライドショー用の画像フレーム（画面幅いっぱい） -------------------------------------------------*/
.img-frame {
    position: relative;
    width: 100vw; /* 画面幅いっぱい */
    height: 500px; /* 高さは適宜調整 */
    overflow: hidden;
    margin: 0;
}

/* スライドショー画像 */
.img-01, .img-02, .img-03 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* 各スライドの背景画像 */
.img-01 {
    background-image: url('img/indoor5.jpg');
    animation: slide-animation-01 24s infinite;
}
.img-02 {
    background-image: url('img/indoor6.jpg');
    animation: slide-animation-02 24s infinite;
}
.img-03 {
    background-image: url('img/indoor7.jpg');
    animation: slide-animation-03 24s infinite;
}

/* スライドショーのアニメーション */
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
   30% {opacity: 1;}
   40% {opacity: 0; transform: scale(1.15);}
   90% {opacity: 0}
  100% {opacity: 1; transform: scale(1.0);}
}

@keyframes slide-animation-02 {
    0% {opacity: 0;}
   30% {opacity: 0; transform: scale(1.1);}
   40% {opacity: 1;}
   60% {opacity: 1;}
   70% {opacity: 0; transform: scale(1.0);}
  100% {opacity: 0;}
}

@keyframes slide-animation-03 {
    0% {opacity: 0;}
   60% {opacity: 0;  transform: scale(1.0);}
   70% {opacity: 1;}
   90% {opacity: 1;}
  100% {opacity: 0; transform: scale(1.1);}
}


/* セクションタイトル -------------------------------------------------*/
.section h2 {

    font-size: 20px;
    font-weight: bold;
    color: #D9BC80;
    margin: 5px 0 5px;
    text-align: center;

    border-bottom: 1px solid #D9BC80;
    display: inline-block;
    padding-bottom: 5px;
}
.section a {
    padding: 0px;
    align-items: center;
}

/* 価格表 -------------------------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
    margin: 5% 0;
}

table td {
    padding: 6px 10px;
    font-size: 14px;
}

table td:first-child {
    text-align: left;
    color: #ffffff;

}

table td:last-child {
    text-align: right;
}

    /* ナビゲーションバー -------------------------------------------------*/
    header {
        width: 100vw;
        background: rgba(0, 0, 0, 0.8); /* 半透明の黒 */
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding:10px;
        max-width: 1200px;
        margin: 0 auto;
        
    }

    .logo {
        color: #D9BC80;
        font-size: 24px;
        font-weight: bold;
    }

    /* 通常のナビゲーションメニュー（PC用） */
    .nav-links {
        display: flex;  /* PCでは表示 */
        gap: 20px;

    }

    /* ハンバーガーメニューが開いたときのアニメーション */
    .nav-links.active {
        display: block ;  /* 表示 */
        opacity: 1;

    }

    /* メニューリンクのデザイン */
    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        padding: 10px 20px;
        display: block;
    }
    

   
    .nav-links a:hover {
        color: #D9BC80;
    }

    /* ハンバーガーメニュー（スマホ用） */
    .hamburger {
        display: none; /* PCでは非表示 */
        flex-direction: column;
        cursor:pointer;
        position: fixed;
        top: 7px;
        right: 10px; /* 画面内に収める */
       /* z-index: 1001; 
        /*background: rgba(0, 0, 0, 0.7);*/
        padding: 10px;
        border-radius: 5px;
        align-items: center;

    }
    /* ハンバーガーのデザイン */
    .hamburger span {
        background: #fff;
        height: 3px;
        width: 30px;
        margin: 5px 0;
        border-radius: 5px;
        transition: 0.3s;
    }

    /* ハンバーガーメニューが開いたときのアニメーション .ハンバーガーアイコンが「×」に変わる動作*/
    .hamburger.open span:nth-child(1) {
        transform: translateY(13px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-13px) rotate(-45deg);
    }

    /* コンセプト -------------------------------------------------*/
    #concept {
        margin-top: 90px;
        top: 40%;
        width:80%;
        max-width: 100vw;
        box-sizing: border-box; /* パディングを含めて幅を計算 */
        color: #000000;
        line-height: 1.2;
        text-align: center;
        background: linear-gradient(to top, rgb(177, 177, 177), #D9BC80);
        border-radius: 11px;
        box-shadow:  5px 5px 10px #0e0e0e,
        -5px -5px 10px #6b6a6a;
        padding: 20px 10px; /* パディングを少し小さくしてはみ出しを防ぐ */
    }

    /* コンセプト h1*/
    #concept h1{

        font-size: 40px;
        font-family:'Hiragino Mincho Pro','ヒラギノ明朝 Pro','Times New Roman';
        margin-bottom: 20px;
        font-weight:normal;
        position: relative;
        padding: 0.3em 0.5em;
        
        text-align: center;

    }
  
    /* コンセプト h2*/
    #concept h2{
        font-family:'Hiragino Mincho Pro','ヒラギノ明朝 Pro','Times New Roman';

        font-size: 13px;
        font-weight:normal;
        padding: 3px;
    }

/* アクセス設定-------------------------------------------------*/

.wrap{
    display: flex;  /* 横並び */
    justify-content: space-between; /* 均等配置 */
    align-items: center; /* 中央揃え */
    flex-wrap: wrap;  /*スマホでは縦並び */
}

.bg{
	flex: 1; /* 画像エリアを可変 */
    text-align: center; /* 画像を中央配置 */

}
.bg img {
    max-width: 100%; /* 幅を親要素に合わせる */
    height: auto; /* 縦横比を維持 */
}

.txt {
    font-size: 18px;
    font-family:'Hiragino Mincho Pro';
    flex: 1; /* テキストエリアを可変 */
    padding: 20 20px;
    margin: 10px;
    
}

.txt h3{
    font-size: 18px;
    font-family:'Hiragino Mincho Pro';
    flex: 1; /* テキストエリアを可変 */
    padding: 20 20px;
    margin: 10px;
    align-items: center; /* 中央揃え */

}
/* マップ調整 */
#map{
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}

#map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

/* 室内イメージスライド表示 -------------------------------------------------

スライドの無限ループ
animation の infinite linear では一度止まるので、スムーズにループさせるには 画像を2回繰り返す のがコツ！
transform: translateX(-50%) にすることで、スライドの端が途切れず循環 できるようにする。
スマホで画像が画面幅にフィット
flex-wrap: nowrap; を使い、横並びを維持
画像サイズを width: 100vw / 3（3枚表示） に調整　*/
/* スライドコンテナ */
.slide-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* スライドラッパー */
.slide-wrapper {
    display: flex;
    width: calc(200% + 200px); /* gapの計算を適正化 */
    animation: slide-loop 30s linear infinite;
    gap: 20px;
}

/* スライド画像 */
.slide-wrapper img {
    height: 300px;
    flex-basis: calc(100vw / 3 - 20px); /* 幅を固定 */
    flex-shrink: 0;
}

/* 室内イメージページ */
#gal {
    margin: 0px;
}

/* 画像ギャラリー */
.gallery {
    height: 300px;
    flex-basis: calc(100vw / 3 - 20px); /* gapを考慮した幅 */
    flex-shrink: 0;
}

.line{
    width: 100px;  /* 幅を300pxに固定 */
    height: auto;  /* 縦横比を維持 */
    max-width: 100%;  /* レスポンシブ対応 */
    align-items: center; /* 中央揃え */

}
/* 無限ループアニメーション */
@keyframes slide-loop {
    0% {  transform: translateX(0%) ; }
    100% {  transform: translateX(-50%) ; }
}
/* スライドを一時停止（PC・スマホ共通） 
.slide-paused:hover .slide-wrapper {
    animation-play-state: paused;
} */

 /* SEC02 PROJECT
------------------------------------------------------------*/
#sec02{
    text-align: center; /* 中央揃え */
    font-size: 50px;
}
#sec02 h1{
    font-family:'Times New Roman', 'Playfair Display', serif;
    color: #000000;
    text-decoration-color: 0px 0px 15px rgba(0, 0, 0, 0.5);
margin-bottom: 0%;
margin-top: 100px;
}
/* SEC03 PROJECT
------------------------------------------------------------*/
#sec03{
    width:70%;
    align-items: center; /* 中央揃え */
    text-align: center ;
	padding: 5% !important;
	margin-top: 100px;
    margin-bottom: 50px;
    font-family:'Hiragino Mincho Pro','ヒラギノ明朝 Pro','Times New Roman';
    background: linear-gradient(145deg, #000000, #656565);
    border-radius: 11px;
    box-shadow:  5px 5px 10px #0e0e0e,
                 -5px -5px 10px #6b6a6a;
    color: #ffffff;
    font-size: 20px;
}
.event-image {
    width: 700px;  /* 幅を300pxに固定 */
    height: auto;  /* 縦横比を維持 */
    max-width: 100%;  /* レスポンシブ対応 */
}

#section_sec03{
    padding: 5px;    

}

.section_sec03 h2 {
    font-size: 20px;
    font-weight: bold;
    color: #D9BC80;
    margin: 5px 0 5px;
    text-align: center;
    border-bottom: 1px solid #D9BC80;
    display: inline-block;
    padding-bottom: 5px;
}
.section_sec03 a {
    padding: 0px;
    align-items: center;
}
/* SEC04 PROJECT
------------------------------------------------------------*/
#sec04{
	padding: 30px !important;
	margin-top: 100px;
    margin-bottom: 50px;
    font-family:'Hiragino Mincho Pro','ヒラギノ明朝 Pro','Times New Roman';
    background: linear-gradient(145deg, #ebeaea, #9d9d9d);
    border-radius: 11px;
    box-shadow:  5px 5px 10px #0e0e0e,
                 -5px -5px 10px #6b6a6a;
     width: 80%;

}

#sec04 h1:first-letter {
        font-size: 3em;
        color: #D9BC80;
        padding: 5px;
        text-shadow: 5px 5px 10px #0e0e0e,
        -5px -5px 10px #6b6a6a;
}

#sec04 h2 {
    color: #000000;

    padding: 5px;
    text-shadow: 5px 5px 10px #8c6516,
    -5px -5px 10px #D9BC80;
}
#sec04 p {
    font-size: 15px;
}
#sec04 h3 {
    position: relative;
    display: inline-block;
    padding: 0 55px;
  }
  h3:before, h3:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
  }
  
  h3:before {
    left:0;
  }
  h3:after {
    right: 0;
  }

/* スマホ対応（高さを小さくする）-------------------------------------------------*/
@media screen and (max-width: 800px) {
    .img-frame {
        height: 250px; /* スマホでは少し低くする */
    }

    #concept {
        padding: 20px 8px; /* スマホでは余白を小さめに */
        font-size: 80%;
        margin: 90px 20px 20px;
        width: 90%;

    }
    #concept h2{
        font-size: 14px;
    }

/* ご案内 */
    #sec03  h1{
        font-size: 35px;
    }
    .section_sec03 h3 {
        font-size: 11px;

    }

   /* スマホ用ナビゲーション */
    .nav-links {
        display: none;  /* 初期非表示 */
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        text-align: center;
        padding: 20px 0;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    /* ハンバーガーメニューが開いたとき */
    .nav-links.active {
        display: flex ;  /* 表示 */
        opacity: 1;
    }

    .hamburger {
        display: flex; /* スマホでは表示 */
       
        right: 20px;
        
    }

    .nav-links li {
        margin: 10px 0;
    }


    /* ドリンク枠表示 */
    .drink-box,
    .drink-box_brand {
        width: 100%; /* スマホでは1列表示 */
    }
    /* アクセス表示 ----------------------------------------*/
    .wrap {
        flex-direction: column; /* スマホでは縦並び */
        margin-bottom: 50px;
    }
    .bg, .txt {
        width: 100%; /* 幅を100%に */
        margin: 10px;
    }
    .vMid {
        text-align: center;
    }
    /*室内イメージスライド表示 スマホ */
    .slide-container {
        width: 100vw;
    }

    .slide-wrapper {
        display: flex;
        width: 200%; /* 画像を2回繰り返すために2倍にする */
        animation: slide-loop 30s linear infinite;
    }

    .slide-wrapper img {
        height: 250px;
        padding: 10px;
        width: calc(100vw / 1); /* スマホで3枚表示 */
    }
    /* マップ調整 */
    #map{
	position: relative;
	padding-bottom: 60%;
	height: 0;
	overflow: hidden; 
    width: 50%

    }
    #map iframe{
        position: absolute;
        top: 0;
        left: 20;
        width: 60% !important;
        height: 100% !important;
        border: 0;
        margin: 10px ;
        
    }
    #sec04 p {
        font-size: 11px;
    }
}







