@charset "utf-8";
body{
    font-family: serif;
    margin: 0 7% 0 7%;
}
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 86%;
  height: 100%;
  z-index: 9999;
  background:#333;
  text-align:center;
  color:#fff;
}

/*==================================================
splash画像の差し替えcss
===================================*/
/* PC画面用のスタイル */
@media only screen and (min-width: 768px) {
#splash img {
        content: url('img/open-pc.png'); /* PC画面用の画像を指定 */
    }
}
/* スマホ画面用のスタイル */
@media only screen and (max-width: 767px) {
#splash img {
        content: url('img/open-sf.png'); /* スマホ画面用の画像を指定 */
    }
}

/* Loading画像中央配置　*/
#splash_logo {

}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:100vw;
  height: 100vh;  
}







/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
  top: 0;
  width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
  z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
  transform: scale(0);/*scaleをはじめは0に*/
  right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

#g-nav li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
    display: none;
  position:fixed;
  top:10px;
  right: 10px;
  z-index: 9998;/*ボタンを最前面に*/
  cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: white;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= レイアウトのためのCSS ===============*/

h1{
  font-size:1.2rem;
}

h2{
  font-size: 2vw;
  text-align: center;
  margin: 0 0 30px 0;
}

p{
  margin-top:20px;  
}

small{
  color:#fff;
  display: block;
  text-align: center;
}

#header{
  width:100%;
}

section{
  padding:100px 30px;
}

section:nth-child(2n){
  background:#f3f3f3; 
}

#footer{
  background:#333;
  padding:20px;
}

/*==================================================
ヘッダー画像の差し替えcss
===================================*/
/* PC画面用のスタイル */
@media only screen and (min-width: 768px) {
    #header img {
        content: url('img/head.jpg'); /* PC画面用の画像を指定 */
    }
}
/* スマホ画面用のスタイル */
@media only screen and (max-width: 767px) {
    #header img {
        content: url('img/head2.jpg'); /* スマホ画面用の画像を指定 */
    }
}

.wrapper{
    width: 60vw;
    margin: 0 15% 0 15%;
    
}
/*==================================================
usp文章のためのcss
===================================*/
.usp{
    margin: 1% 5% 0 5%;
}

.usp1{
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    background-image: url(img/washi.jpg);
      box-shadow: inset 0 0 10px 15px #FFF;
    
}

.usp2{
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 6%;
}
p{
    font-size: 1.4rem;
}
.usbox{
    display: flex;
}
.usbox-a,.usbox-b{
    width: 50%;
}
.usbox-a{
   margin-top: 5%;
}
.usbox-b img{
    width: 100%;
}
/* スマホ画面用のスタイル */
@media only screen and (max-width: 767px) {
.usp{
    margin: 5% 5% 0 5%;
}
.usp2{
    margin-top: 15%;
}
.usbox{
    display: block;
}
.usbox-a,.usbox-b{
    width: 100%;
}
.usbox-a{
   margin-top: 0;
}
}


/*==================================================
catch,guide文章のためのcss
===================================*/
.catch{
    background-image: url(img/washi.jpg);
      box-shadow: inset 0 0 10px 10px #FFF;
    margin-top: 5%;

}
.catchbox{
    text-align: center;
    font-size: 1.4rem;
}


.guide{
    text-align: center;
    margin-top: 5%;
}


.sp_br {
  display: none; //768px以上では改行タグを無効に。
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block; //768px未満で改行タグを有効に。
  }
}



/*==================================================
スライダーのためのcss
===================================*/

/*　背景画像設定　*/
.slider{
    margin: 5% 0 5% 0;
}

.slider-item01 {
    background:url(img/top.jpg);
}

.slider-item02 {
    background:url(img/top1.jpg);
}

.slider-item03 {
    background:url(img/top2.JPG);
}

.slider-item04 {
    background:url(img/top3.JPG);
}

.slider-item05 {
    background:url(img/top5.JPG);
}

.slider-item06 {
    background:url(img/top6.jpg);
}
.slider-item {
    width: 80%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:65vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
    border-radius: 25px;
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
  z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;

    text-align:center;
  margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#C0C0C0;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/
ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #fff;
}

a:hover,
a:active{
  text-decoration: none;
}


.container{
  background:#555;
}

.container p{
  padding: 300px 0; 
  text-align: center;
  color: #fff;
}


.g-map{
    display: flex;
    justify-content: center;
    margin: 5% 10% 0 5%;
}

.guide{
    width: 50%;
    background-image: url(img/memo.png);
    background-size: cover;
    padding-top: 10%;
}
.googlemap{
    width: 50%;
    margin-top: 5%;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9; //アスペクト比（縦横比）を指定
}

/*==================================================
口喜のおにぎりのためのcss
===================================*/
.onigiri{
    background-image: url()
}
.oni{
  display: flex;
  margin: 0 5% 0 5%;

}
.oniline{
    width: 30%;
text-align: center;
    margin: 0 5% 0 5%;
}


.koukioni{
    font-size: 2rem;
    margin-top: 10%;
    margin-bottom: 0;
}
.oniall{
    margin: 0 5% 0 5%;
    text-align: center;
}
.oniall img{
    width: 90vw;
}



@media screen and (max-width: 768px) {
  .oni {
    display: block; //768px未満で改行タグを有効に。
  }
  .oniline{
        width: 90%;
    }
  .koukioni{
    font-size: 1.3rem;
    margin-top: 20%;
    margin-bottom: 10%;
}
    .oniall img{
    width: 90vw;
}


}

/*==================================================
ご予約はこちらボタンのためのcss
===================================*/
.tel{
    display: block;
    text-align: center;
    margin-top: 10%;
}
.shiny_btn02 {
  display: none;
  color: #fff; /* 文字色 */
  padding: 1em 2em;
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  background: #4D9BC1; /* 背景色 */
  background-image: -webkit-linear-gradient(top, #FF6347, #FFE4C4); /* グラデーション背景色 */
  background-image: -moz-linear-gradient(top, #555555, #000000); /* グラデーション背景色 */
  background-image: -ms-linear-gradient(top, #555555, #000000); /* グラデーション背景色 */
  background-image: -o-linear-gradient(top, #555555, #000000); /* グラデーション背景色 */
  background-image: -webkit-gradient(to bottom, #555555, #000000); /* グラデーション背景色 */
  overflow: hidden;
  position: relative;
  text-align: center;
}
.shiny_btn02::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny_btn02 4s ease-in-out infinite;
  transform-origin: unset;
}

/* 光るアニメーション */
@-webkit-keyframes shiny_btn02 {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}





.modal{
    margin-top: 5%;
    /*background-image: url(img/menuback_pc.jpg);*/
    background-size: contain;
    border-radius: 5%;
    padding-top: 5%;
}
/*===モーダル表示のためのcss　*/

.hide-area{/*モーダル表示をする場所をあらかじめ隠す*/
  display: none;
}

.modaal-fullscreen .modaal-content-container{/*full画面の色設定*/
  background: #333;
  color: #fff;
  text-align: center;
}

.modaal-fullscreen .modaal-close{/*ボタンの色、位置*/
  background:none;
  right:20px;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

/*キャプション*/
.caption{
    display: block;
    padding: 10px 0;
}

/*===　サムネイル表示のためのcss　*/

.gallery,.gallery0{/*ベースになるギャラリーを横並びに*/
  display: flex;
    justify-content: center;

}

.gallery li,.gallery0 li{
  width:33.333%;
    padding: 0 10px;
}
.gallery0 img{
    border-radius:  5%;
}
.gallery img{
    border-radius:  5% 5% 70% 70% ;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sf { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sf { display: block !important; }
}



/*画像の横幅を100%にしてレスポンシブ化*/
img{
  max-width:100%;
  height:auto;
  vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*========= レイアウトのためのCSS ===============*/

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  text-align: center;
  font-size:4vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin:30px 0;
}

p{
  margin:0 10px 10px 10px;
  word-wrap : break-word;
}



/*ブログ画面の設定--------------------------------------*/
.wordpress{
  margin: 5% 15% 5% 15%;
  width: 70%; /* モーダルの幅を60%に設定 */
  height: 80%;
  border: 10px solid;
border-image: url(img/washi.jpg) 33% / 13px 13px repeat;
}









/*フッター設定--------------------------------------*/
.footer02 {
 color: antiquewhite;
 background-image: url(img/foot.jpg);
 text-align: center;
 padding: 20px;
}

.footer02 .copyright {
 margin: 0;
 font-size: 15px;
}


/*スマホOK設定--------------------------------------*/
@media(max-width: 750px){
    
    
body{
  margin: 0;
    }

#splash {
  width: 100%;
}
    
h1{
  font-size:4vw;
  margin:15px 0;
}
h2{
  font-size: 1.4rem;

    }
.wrapper{
    width: 90vw;
    margin: 0 5% 0 5%;
}

.slick-prev, 
.slick-next {
    height: 15px;
    width: 15px;
}
.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:40vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/

}
.slick-dots {
  margin:5px 0 0 0;/*ドットの位置*/
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  top:5px;
}

.openbtn1{
  top:15px;
  z-index: 9998;/*ボタンを最前面に*/
    width: 50px;
    height:50px;
}
.catchbox{
    font-size: 1rem;
    margin: 5%;
}
.guide{
    margin-top: 0;
    width: 100%;
}
.g-map{
    display: block;
    margin: 5% 5% 0 5%;
}

.googlemap{
    width: 100%;
}
.usp1{
    font-size: 1.3rem;
}

.usp2{
    font-size: 1.1rem;   
}
p{
    font-size: 1rem;
}
.modal{
    margin-top: 15%;
    /*background-image: url(img/menuback_sf.jpg);*/
    background-size: cover;

}
.shadow_btn01 {
  display: flex;
    }
    
.wordpress{
  padding:0;
  margin: 0;
  width: 95%; /* モーダルの幅を60%に設定 */
  height: 60vh;
}    
    #externalPage{
    height: 100%;      
    }
.footer02 {
 padding: 10px;
}
.footer02 .copyright {
 font-size: 10.5px;
}

.shiny_btn02 {
  display: inline-block;
  max-width: 150px; /* ボタン幅 */

}
}