@charset "utf-8";

/*
Theme Name: rico
*/

/*全体*/
body{
    font-family: "Noto Serif JP", serif;

}

p{
    line-height: 2;
}
a{
    color: #fff;
    text-decoration: none;
}

h2{
    font-size: 32px;
    font-weight: normal;
}
h2,p{
    color: #57473a;
}
h3{
    color: #b8967a;
}

.container{
    background-image: url(img/bg.jpg);
    background-size: cover;
}

.title{
    margin-bottom: 50px;
}






/*ナビゲーション*/
.gnav ul {
  display: flex;
  gap: 40px;
}

.gnav{
    background-image: url('img/footerbg.png');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}

.gnav a{
    color: #fff;
    font-size: 14px;
}
.gnav a:hover{
    color: #57473a;
}

/*トップ*/
.top{
    width: 80%;
    margin: 0 auto;
    padding: 100px 0 200px;
    text-align: center;
}

.top .title{
    margin-top: 20px;
    padding: 0 20px 20px;/* 文字と線の隙間を調整 */
    display: inline-block; /* サイズや位置の調整をしやすくする */
  background-image: url('img/deco.png'); /* 読み込みたい画像パス */
  background-position: center bottom; /* 中央下寄せ */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-size: 100% auto; /* 横幅100%、縦幅（線の太さ）を指定 */
}

.top .title:first-of-type{
    padding-bottom: 30px;
}


.logo2{
    width: 20%;
    margin: 0 auto;
    max-width: 600px;
    padding-bottom: 20px;
}

.logo2 img{
    width: 100%;
    margin: 0 auto;
}


/*トップ(インフォメーション)*/
.tinfo{
    border: 1px solid #57473a;
    padding: 30px;
    width: 70%;
    margin: 20px auto 100px;
}

.tinfo h3{
    color: #57473a;
    margin-bottom: 20px;
}
.tinfo p{
    margin-bottom: 20px;
}



/*トップ(コンセプト)*/
.con{
    display: flex;
    align-items: center;
    padding: 0px 20px 120px;
    gap: 30px;
}


.con img{
    width: 50%;
}

.concept1 img{
    order: 2;
}
.concept1 .txt{
    order: 1;
}

.ctext p{
    text-align:left;
    padding-bottom: 20px;
}

/*トップ(リクルート)*/

.button{
    background-image:url(img/button.png);
    width: 15%;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

.button a{
    letter-spacing: 0.05em;
}

.trecruit p{
    margin-bottom: 30px;

}



/*フッター*/
.footer{
    background-image: url('img/footerbg.png');
    background-size: cover;
    padding: 50px 100px 20px;
}
.footer p{
    color: #fff;
}
.flist{
    display: flex;
    gap: 50px;
    margin-bottom: 50px;

}
.col1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    flex-grow: 1;
}
.col1 .tel{
    font-size: 20px;
}

.flogo img{
    width: 20%;
}

.col1 .sns{
    width: 20%;
}

.address{
    margin: 10px 0;
}

.col2{
    width: 50%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.col2 h3{
    margin-bottom: 20px;
}
.fnav li{
    text-align: center;
    margin-bottom: 20px;
}


.footer a{
    color: #fff;
}

.copy{
    text-align: center;
}

.fnav a:hover{
    color: #57473a;
}


/*メインビジュアル*/
.wrapper{
    position: relative;
    width: 100%;
   height: 900px;
}


.logo-frame{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}
.logo-frame img{
    width: 50%;
    margin: 0 auto 10px;
}

.img-frame{
   position: absolute;
   width: 100%;
   height: 900px;
   overflow: hidden;
   margin: 0 auto;
}

.img-01, .img-02, .img-03, .img-04{
   position: absolute;
   top:0;
   left:0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;
}
.img-01{
   background-image: url(img/main1.png);
   animation: slide-animation-01 24s infinite;
}
.img-02{
   background-image: url(img/main2.jpg);
   animation: slide-animation-02 24s infinite;
}
.img-03{
   background-image: url(img/concept1.jpeg);
   animation: slide-animation-03 24s infinite;
}
.img-04{
   background-image: url(img/suite.jpg);
   animation: slide-animation-04 24s infinite;
}
@keyframes slide-animation-01 {
  0% {opacity: 1;}
  15% {opacity: 1;}
  25% {opacity: 0;}
  90% {opacity: 0}
  100% {opacity: 1;}
}
@keyframes slide-animation-02 {
  0% {opacity: 0;}
  15% {opacity: 0;}
  25% {opacity: 1;}
  40% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes slide-animation-03 {
  0% {opacity: 0;}
  40% {opacity: 0;}
  50% {opacity: 1;}
  65% {opacity: 1;}
  75% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes slide-animation-04 {
  0% {opacity: 0;}
  65% {opacity: 0;}
  75% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0;}
}

/*メイン２*/
.wrapper2{
    position: relative;
    width: 100%;
    height: 600px;
}
.wrapper2 img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wrapper2 p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    text-shadow: 3px 0px 2px RGBA(0,0,0,1);
    letter-spacing: 0.03em;
}




/*メニュー*/
.menu{
    width: 60%;
    text-align: center;
    margin:0 auto;
    padding: 10% 0;
}
.menu h2{
    margin: 20px 0 0;
}
.menu h3{
    font-weight: normal;
    letter-spacing: 0.1em;
}
.mtext{
    margin: 50px 0;
}
.mtext p:nth-child(6){
    margin-top: 20px;
}

/*飲み放題*/
.free ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.free ul li:nth-child(1){
    color: #b8967a;
    letter-spacing: 0.1em;
}
.free ul li:nth-child(2){
    color: #57473a;
}

.free ul:nth-child(1){
    margin-bottom: 40px;
}

/*ルーム*/
.roomflex{
    display: flex;
    gap: 50px;
}

.roombg{
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 0px 10px RGBA(98,83,70,0.5);
}

.mtitle2{
    letter-spacing: 0.1em;
    margin-top: 20px;
}
.mtitle2 h3{
    font-size: 14px;
    color: #b8967a;
}
.mtitle2 p{
    font-size: 16px;
}

.roompr{
    font-size: 20px;
}
.roompr span{
    font-size: 14px;
    padding-left: 10px;
}


/*求人*/
.recruit{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 100px;

}

.recruitwra{
    padding: 100px 0 0;
}

.recruit h2{
    margin: 20px 0 10px;
}

.recruit dt{
    color: #b8967a;
    border-bottom: 1px solid #b8967a;
    padding: 10px 10px;
    margin: 40px 0 10px;
}

.recruit p{
    padding-left: 10px;
}

.space{
    margin-top: 20px;
}


.boy{
    margin-top: 100px;
}

/*問い合わせ連絡先*/
.contact{
    background-color: rgba(255,255,255,0.4);
    padding: 80px 10px;
    text-align: center;
}

.contact p{
    font-size: 12px;
}

.contact h3{
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.contactflex{
    display: flex;
    gap: 50px;
    margin: 30px 30% 50px;
}

.contact1{
    width: 50%;
    text-align: center;
}

.contact1 p{
    margin-bottom: 5px;
}

.contact2 .cbutton:nth-child(3){
    margin-top: 20px;
}

.cbutton{
    background-image:url(img/button.png);
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

.cbutton a{
    letter-spacing: 0.05em;
}



/*店舗情報*/
.info{
    width: 50%;
    margin: 0 auto;
    padding: 100px 0 100px;
    text-align: center;
}
.info h2{
    margin: 20px 0 0;
}
.info h3{
    font-weight: normal;
    letter-spacing: 0.1em;
}

.info .mtitle{
    margin-bottom: 50px;
}

.table2{
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}
.table2 th{
    color: #57473a;
    padding: 20px 10px;

    
}
.table2 td{
    color: #57473a;
    padding: 20px 0;
    text-align: center;

}
.table2 tr{
    border-bottom: 1px solid #57473a;
}

.table2 a{
    color: #57473a;
}
.table2 a:hover{
    color: #b8967a;
}

.info2{
    margin-top: 100px;
}

.map {
  position: relative;
  padding-bottom: 70%;
  height: 0;
  overflow: hidden;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*決済*/
.info3{
    width: 70%;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.info3 h2{
    font-size: 18px;
}
.info3 p{
    font-size: 14px;
    color: #b8967a;
}

.pay{
    margin-top: 20px;
    padding: 20px 70px;
}
.pay1{
    margin-bottom: 20px;
}
.pay1,.pay2{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pay1 .pimg,.pay2 .pimg{
    display: flex;
    align-items: center;
    width: 10%;
}
.pay1 img,.pay2 img{
    width: 80%;
    height: 50px;
    object-fit: contain;
}
.pay2 .pimg1{
    width: 100%;
}

.bl{
    padding-bottom: 100px;
}

/*ポリシー*/
.policy{
    width: 80%;
    margin: 0 auto;
    padding: 50px ;
    border: 1px solid #fff;
    background-color: rgba(32,25,20,0.5);
    color: #fff;
}

.policy dd{
    margin-left: 10px;
}
.policy ul{
    margin-left: 30px;
}
.policy dl{
    margin: 10px 0;
}
.policy li{
    list-style: disc;
}

.hamburger{
    display: none;
}

@media(max-width: 767px){
 /* ▼①【追加】スマホ時も上部に背景バーを残す設定 */
  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* PCと同じ高さ */
    z-index: 99;  /* ボタンのすぐ下の階層 */
    /* PC用の背景グラデーションと右余白(padding)は自動で引き継がれます */
  }   
/* ボタンの配置と見た目 */
  .hamburger {
    display: block;
    position: fixed;
    top: 18px;/* 60pxのバーの中央に配置されるよう調整 */
    right: 20px;
    z-index: 100; /* 最前面 */
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* 三本線の共通スタイル */
  .hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }
  .hamburger__line:nth-child(1) { top: 0; }
  .hamburger__line:nth-child(2) { top: 11px; }
  .hamburger__line:nth-child(3) { bottom: 0; }

  /* ボタンがアクティブ（バツ印）になった時 */
  .hamburger.is-active .hamburger__line:nth-child(1) { transform: translateY(11px) rotate(-45deg); }
  .hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; }
  .hamburger.is-active .hamburger__line:nth-child(3) { transform: translateY(-11px) rotate(45deg); }

  /* スマホ時のメニュー（全画面表示の例） */
  nav.gnav.js-nav #menu {
    display: flex; /* hiddenクラスの打ち消し */
    flex-direction: column; /* 縦並びにする */
    justify-content: center; /* 中央寄せ */
    align-items: center; /* 中央寄せ */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: none;
    background-color: rgba(214,183,159,0.83);
    z-index: 90;/* 背景バー(99)より下にすることで、バーの後ろから出てきます */
    /* 初期状態は右側に隠す */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-right: 0; /* PC用の右余白をリセット */
    gap: 20px;
  }

  /* メニューが開いた時 */
  nav.gnav.js-nav.is-active #menu{
    transform: translateX(0);
  }

  /*全体(スマホ)*/
p{
    font-size: 15px;
    line-height: 1.8;
}
h2{
    font-size: 20px;
}

h3{
    font-size: 14px;
}
.container{
    background-size: cover;
}

.title{
    margin-bottom: 20px;
  }

/*トップ(スマホ)*/
.top{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 100px;
}

.logo2{
    width: 50%;
}

/*トップ(インフォメーション)(スマホ)*/
.tinfo{
    padding: 20px;
    width: 90%;
    margin-bottom: 50px;
}




/*トップ(コンセプト)(スマホ)*/
.con{
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 30px;
}

.con img{
    width: 100%;
}

.concept1 img{
    order: 1;
}
.concept1 .txt{
    order: 2;
}

/*.ctext p{
    text-align:left;
    padding-bottom: 20px;
}*/
/*トップ(リクルート)(スマホ)*/

.button{
    width:40%;
}

.trecruit {
    margin-top: 40px;
}



/*フッター(スマホ)*/
.footer{
    padding: 50px 30px 20px;
}

.flist{
    flex-direction: column;
    /*gap: 50px;
    margin-bottom: 50px;*/

}
.col1{
    align-items: center;
    text-align: center;
    /*gap: 20px;
    flex-grow: 1;*/
}
.col1 .tel{
    font-size: 18px;
}

.flogo img{
    width: 20%;
    margin: 0 auto;
}



.col1 .sns{
    width: 10%;
    margin: 0 auto;
}


.col2{
    width: 100%;
}

.fnav li{
    margin-bottom: 10px;
}





/*メインビジュアル(スマホ)*/
.wrapper{
   height: 600px;
}


.logo-frame img{
    width: 70%;
    margin: 0 auto 10px;
}
.logo-frame{
    width: 80%;
}


.img-frame{
   height: 600px;
}

.img-01, .img-02, .img-03, .img-04{
   background-position: 60% 0%;
}


/*メイン２(スマホ)*/
.wrapper2{
    height: 600px;
}

.wrapper2 p{
    font-size: 28px;
}


/*メニュー(スマホ)*/
.menu{
    width: 80%;
    padding: 10% 0;
}

.bottle,.free{
    margin-bottom: 100px;
}

/*ルーム(スマホ)*/
.roomflex{
    flex-direction: column;
}

.menu li{
    font-size: 15px;
}

.mtitle2 p{
    font-size: 15px;
}

.mtitle2 h3{
    font-size: 12px;
}
/*
.mtitle2 h3{
    font-size: 10px;
    color: #b8967a;
}


.roompr{
    font-size: 20px;
}
.roompr span{
    font-size: 14px;
    padding-left: 10px;
}
*/

/*求人(スマホ)*/
.recruit{   
    width: 80%;
    margin-bottom: 50px;

}

.recruitwra{
    padding: 50px 0 0;
}


.recruit dt{
    margin: 20px 0 10px;
}


/*.space{
    margin-top: 20px;
}*/


.boy{
    margin-top: 50px;
}

/*問い合わせ連絡先(スマホ)*/
.contact{
    padding: 50px 10px;
}

/*.contact p{
    font-size: 12px;
}*/

/*.contact h3{
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}*/

.contactflex{
    flex-direction: column;
    gap: 30px;
    margin: 30px 0px 0px;
}

.contact1{
    width: 100%;
}


.cbutton{
    width: 60%;
}


/*店舗情報(スマホ)*/
.info{
    width: 80%;
    padding: 50px 0 100px;
}


.info .mtitle{
    margin-bottom: 30px;
}


.table2 th{
    font-size: 14px;
    padding: 10px 10px 10px 0px;

    
}
.table2 td{
    font-size: 14px;
    padding: 10px 0px;

}
.table2 tr{
    border-bottom: 1px solid #57473a;
}



.info2{
    margin-top: 50px;
}



/*決済(スマホ)*/
.info3{
    width: 90%;
    padding: 30px 10px;
}

.info3 h2{
    font-size: 18px;
}
.info3 p{
    font-size: 12px;
}

.pay{
    margin-top: 10px;
    padding: 0px 10px;
}
.pay1{
    margin-bottom: 10px;
}
.pay1,.pay2{
    gap: 5px;
    flex-wrap: wrap;
}

.pay1 .pimg,.pay2 .pimg{
    width: 20%;
}


.bl{
    padding-bottom: 100px;
}


/*ポリシー(スマホ)*/
.policy{
    width: 80%;
    padding: 20px ;
}


}

