@charset "UTF-8";

@font-face {
    font-family: Philosopher-Regular;
    src: url("../fonts/Philosopher-Regular.ttf") format("truetype");
}

@media (max-width: 768px) {
    h2 {
        color: #12437a;
    }

   
}

@media (min-width: 768px) {

     a[href^="tel:"]{
    pointer-events: none;
  }
}



/* #flickscroll 写真ナビ関連
--------------------------- */


/*写真ナビとヘッダーとのスペース*/
#pnav{
   margin-top: 20px;
}

/*写真ナビからアクセスページに戻るリンクの設定*/
.aback{
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
}

.aback a {
    color: #432;
}

.aback a:hover {
    color: #0bd;
}


/*アクセスページから写真ナビへの緑のリンク*/
.toNavi{
    text-align: center;
    background-color: #3cb371;
    padding: 10px 12px 8px 12px;
    border-radius: 10px;
    width: fit-content;
    margin-left: 40px;   
}

.map a{
    color: #fff;
}

/*マウスオーバーの設定してない*/
.map a:hover{
    
}

.toNavi img{
    vertical-align: middle;
    margin: 0px 4px 5px 4px;
}
/*アクセスページから写真ナビへの緑のリンクここまで*/



/*この設定で画面からはみ出すのを制御？*/
#flickscroll img{
    max-width: 100%;
    height: auto;   
}


#flickscroll {
    margin: 0 auto;
    width: 600px;
    height: 700px;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;


}
#flickscroll ul {
   
    top: 0;
    left: 0;
    height: 700px;
    position: absolute;
    overflow: hidden;
}
#flickscroll ul li {
    width: 600px;
    height: 700px;
    float: left;
    display: inline;
    overflow: hidden;
}

/* #flickthumb
--------------------------- */
#flickthumb {
    margin: 10px auto;
    width: 600px;
    height: 100px;
    text-align: center;
}
#flickthumb ul {
    width: 600px;
    height: 100px;
}
#flickthumb ul li {
    width: 100px;
    height: 100px;
    float: left;
    cursor: pointer;
    display: inline;
}
#flickthumb ul li.active {
    filter:alpha(opacity=100)!important;
    -moz-opacity: 1!important;
    opacity: 1!important;
}


/* =======================================
    ClearFixElements
======================================= */
#flickscroll ul:after,
#flickthumb ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

#flickscroll ul,
#flickthumb ul {
    display: inline-block;
    overflow: hidden;
}








/*　共通部分
------------------------------------------------------*/

html {
    font-size: 100%;
}

body {
    line-height: 1.7;
    color: #432;

    /*これが全体のフォント設定*/
    font-family: Philosopher-Regular;
    src: url("../fonts/Philosopher-Regular.ttf") format("truetype");

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

main ul{
    list-style-type: none;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2%;
}


/* HEADER
------------------------------------------------------*/


/*ヘッダー全体を囲うクラス*/

.page-header{
    display: flex;
    justify-content: space-between;
}


/*左上のロゴに関するクラス*/

.logo{
    width: 210px;
    margin-top: 15px;
    margin-left: 50px;
}

/* ナビに関する項目  */

.main-nav {
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}

.main-nav li {
    margin-left: 36px;
}

.main-nav a {
    color: #432;
}

.main-nav a:hover {
    color: #0bd;
}



/* 2段目のブロック
-------------------------------------------------------- */


/*2段目全体を囲うブロック*/

.top-contents{
    display: flex;
    justify-content: space-between;


    /*border: solid 1px blue;*/

    /*トップ絵アニメーション由来の設定*/
    margin-top: 25px;
   
}

.top-contents a{
    color: #432;
}

.top-contents a:hover {
    color: #0bd;
}


/*トップ画像のブロック*/

.for-anime{
    width: 64%; /*下と対*/
    /*border: solid 1px red;*/
 /*   background-image:url(../pic/topp_0.png) ;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;*/

}




/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  max-width  : 700px; /*デフォルトは400px＞700pxで様子見*/
  height     : 470px; /*デフォルトは250px*＞470pxで様子見*/
  margin     : auto;
  overflow   : hidden;
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 25s infinite;   /* 4画像 × 各5s = 20s */
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
    background-image : url(../pic/topp_0.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;   /* 背景の画像を指定 */
}
.box .src2 {
    background-image : url(../pic/topp_a.jpg);   /* 背景の画像を指定 */
    animation-delay  : 5s;
    background-size: cover;
    background-position: center top; 
}
.box .src3 {
    background-image : url(../pic/topp_b.jpg);   /* 背景の画像を指定 */
    animation-delay  : 10s;
    background-size: cover;
    background-position: cover top; 
}
.box .src4 {
    background-image : url(../pic/topp_c.jpg);   /* 背景の画像を指定 */
    animation-delay  : 15s;
    background-size: cover;
    background-position: center top; 
}
.box .src5 {
    background-image : url(../pic/topp_d.jpg);   /* 背景の画像を指定 */
    animation-delay  : 20s;
    background-size: cover;
    background-position: center top; 
}

@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}





/*お知らせ欄のブロック*/

.infoB{
    width: 32%; /*上と対*/
    height: 470px; /*この指定で背景画像が大きく変わる！注意*/
    /*border: solid 1px;*/
}


.infoB h2{
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    border-bottom: 2px solid #1863aa;
}

.osirase{
    margin-top: 10px;
 /*   border: solid 1px;*/
 
}

.osirase dd{
    padding: 3px 6px 6px 6px;
    margin-bottom: 8px;
    border-bottom: 2px dotted #ddd;

}

.hankyu{
    color: #228b22;
}

.zenkyu{
    color: #dc143c;
}


/* 3段目のブロック
-------------------------------------------------------- */

.scd-contents{
    display: flex;
    justify-content: space-between;

    margin-top: 30px;

    /*border: solid 1px red;*/
}


.jikan{
    width: 80%;
}

.yasumi{
    color: #f00;
}

.hidari{
    width: 64%;

    /*border: solid 1px;*/
}

.migi{
    width: 32%;

    /*border: solid 1px;*/
}




.lst-top{
    /*border: solid 1px;*/
}

.lst-top li{
    background-color: white;
    margin-bottom: 5px;
    padding-left: 10px;

}

/*予約優先ページのリンクについての設定*/
.yoyaku a{
    color: #d72f2f;
}

.yoyaku a:hover{
    color: #0bd ;


}

.yoyaku img{
    vertical-align: middle;
    margin-left: 0px;
    transition-duration: 0.3s;
}

.yoyaku img:hover{
    transform: scale(1.1);
    transition-duration: 0.3s;

}

.yakan img{
    width: 236px;
    height: 50px;
    transition-duration: 0.3s;
}

.yakan img:hover{
    transform: scale(1.1);
    transition-duration: 0.3s;

}


.yoyaku{
       
    color: #F00;
    margin-left: 15px;
}

.icon{
    margin: 5px 15px 10px 0px;
    vertical-align: middle;
}

.denwa{
    font-size: 20px;
    color: #f00;
}

.denwa a{
    color: #f00;
}

.kugiri {
    border-bottom: 1px solid #573418;
    width: 85%;
    padding: 0px 0px 20px 0px;


}


/*トップ以外のページ*/

.map p{
    margin-bottom: 15px;

}

.map h2{
    margin-top: 30px;
}

.map h3{
    margin: 0px 0px 20px 30px;
    background-color: #d63196;
    color: #FFF;
    padding: 10px;
    border-radius: 10px;

} 

.mapimg{
    text-align: center;
    heigt: ;
  /*  border: 1px solid;*/
}

.acs-icon{
    vertical-align: middle; 
    border-radius: 8px; 
    margin: 5px 10px 5px 5px;
}

.gmap{
    margin:60px 0px 60px 0px ;
}

.gmap iframe{
    width: 100%;
    height: 400px;
    
}


.staff ul{
    margin-bottom: 25px;
}

.staff p{
    margin-bottom: 25px;
}

.staff h1{
    margin: 30px 0px 15px 0px;
}

.staff h2{
    margin-bottom: 10px;
}
.staff li{
    margin-bottom: 15px;
}

.staff a {
    color: #432;
}

.staff a:hover {
    color: #0bd;
}

.night h2{
    margin: 20px 0px 20px 0px;
}

.night p{
    margin-bottom: 20px;
}

/* フッター
-----------------------------------------------*/

footer {
    background-color: #432;
    text-align: center;
    padding: 26px 0;
    margin-top: 50px;

}

footer p {
    color: #fff;
    font-size: 1rem;
}



/* スマホ対応
----------------------------------------------- */

@media (max-width: 768px) {
    



.page-header{
    display: flex;
    flex-direction: column;
}

.logo{
    width: 150px;
    margin-top: 15px;
    margin-left: 25px;
}

.main-nav {
    display: flex;
    font-size: 1.0rem;
    text-transform: uppercase;
    margin-top: 15px;
    list-style: none;
}



.top-contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*トップ画像のブロック*/

.for-anime{

    width: 96%; /*下と対*/
    height: 300px; /*この指定で背景画像が大きく変わる！注意*/
    margin-top: 0px;
  /*  background-image:url(../pic/stopp_0.png) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center middle;*/
}




/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  max-width  : 700px; /*デフォルトは400px＞700pxで様子見*/
  height     : 300px; /*デフォルトは250px*＞470pxで様子見*/
  margin     : auto;
  overflow   : hidden;
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 25s infinite;   /* 4画像 × 各5s = 20s */
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
    background-image : url(../pic/topp_0.png);
    background-repeat: no-repeat;
    background-size: cotain;
    background-position: center center;   /* 背景の画像を指定 */
}
.box .src2 {
    background-image : url(../pic/topp_a.jpg);   /* 背景の画像を指定 */
    animation-delay  : 5s;
    background-size: cover;
    background-position: center center; 
}
.box .src3 {
    background-image : url(../pic/topp_b.jpg);   /* 背景の画像を指定 */
    animation-delay  : 10s;
    background-size: cover;
    background-position: center center; 
}
.box .src4 {
    background-image : url(../pic/topp_c.jpg);   /* 背景の画像を指定 */
    animation-delay  : 15s;
    background-size: cover;
    background-position: center center; 
}
.box .src5 {
    background-image : url(../pic/topp_d.jpg);   /* 背景の画像を指定 */
    animation-delay  : 20s;
    background-size: cover;
    background-position: center center; 
}

@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}








/*お知らせ欄のブロック*/

.infoB{
    width: 96%; /*上と対*/

    height: 100%; 
 

}

.infoB h2{
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    border-bottom: 2px solid #1863aa;
}


.scd-contents{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
}

.hidari{
    width: 96%;
}

.migi{
    width: 96%;
}

.jikan{
    width: 100%;
}


.kugiri {
    /*区切り線を100％にする＞PCは85％*/
    width: 100%;
  
}





/*トップ以外のページ*/

.map h2{
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.staff h2{
    font-size: 16px;
    margin-bottom: 10px;
}

.night h2{
    font-size: 16px;
    margin: 20px 0px 20px 0px;
}








/* #flickscroll
--------------------------- */

/* JS以外の指定 */

#pnav{
   margin-top: 20px;
}

.aback{
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
}

/*緑のリンク設定　左のマージンを消して1行に収まるように*/
.toNavi{
    text-align: center;
    background-color: #3cb371;
    padding: 10px 12px 8px 12px;
    border-radius: 10px;
    width: fit-content;
    margin-left: 0px;
   
}

.toNavi a{
    color: #fff;
}

.toNavi img{
    vertical-align: middle;
    margin: 0px 0px 0px 0px;
}


#flickscroll img{
    max-width: 100%;
    height: auto;
  
}


#flickscroll {
    margin: 0 auto;
    width: 360px;
    height: 420px;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;


}
#flickscroll ul {
   
    top: 0;
    left: 0;
    height: 420px;
    position: absolute;
    overflow: hidden;
}
#flickscroll ul li {
    width: 360px;
    height: 420px;
    float: left;
    display: inline;
    overflow: hidden;
}

/* #flickthumb
--------------------------- */
#flickthumb {
    margin: 10px auto;
    width: 360px;
    height: 60px;
    text-align: center;
}
#flickthumb ul {
    width: 360px;
    height: 60px;
}
#flickthumb ul li {
    width: 60px;
    height: 60px;
    float: left;
    cursor: pointer;
    display: inline;
}
#flickthumb ul li.active {
    filter:alpha(opacity=100)!important;
    -moz-opacity: 1!important;
    opacity: 1!important;
}


/* =======================================
    ClearFixElements
======================================= */
#flickscroll ul:after,
#flickthumb ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

#flickscroll ul,
#flickthumb ul {
    display: inline-block;
    overflow: hidden;
}



}

