@charset "UTF-8";

/* =============================================
 COMMON CSS
============================================= */

/*英数字ゴシック*/
@import url('https://fonts.googleapis.com/css?family=Montserrat');

*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat',游ゴシック体, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック","ヒラギノ角ゴ ProN" , sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #3a332f;
    min-width: 320px;
}

p,
h1,
h2,
h3,
h4,
h5 {
    padding: 0;
    margin: 0;
    font-weight: normal;
}

a {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    text-decoration: none;
    color: inherit;
    display: unset;
}

ul,
ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

div{
    box-sizing:border-box;
}


/* -------- iOSでのデフォルトスタイルをリセット -------- */

input[type="submit"],
input[type="button"] {-webkit-appearance: none;}
input[type="text"], textarea{border-radius: 0;}
textarea,input, select {font-size: 16px !important;}

/* ------------------------------------------------ */


/* ================ images ================ */

img{
    padding: 0;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ================ header ================ */

.main{
    margin-top: 60px;
}

.page__header{
    background-color: #EEE;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ================ text ================ */

.txt{
    text-align: center;
    padding: 1rem 0;
}

.sub_title{
    border-top: #3a332f solid 1px;
    border-bottom: #3a332f solid 1px;
    text-align: center;
    margin: 0 auto 40px;
    padding: 10px;
    font-size: 16px;
    max-width: 280px;
}

.help_txt{
    color: #666;
    font-size: 90%;
}

/* ================ header_text ================ */

h1.contents_title{
    font-weight: bold;
}

h1.contents_title,
h2.contents_title{
    text-align: center;
    color: #330706;
    margin-bottom: 40px;
    font-weight: bold;
}

h1.contents_title span,
h2.contents_title span{
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #886c3d;
}

h3.contents_title{
    text-align: center;
    color: #886c3d;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

/* ================ page main image ================ */

.page_main_img,
.page_main_img_02,
.page_main_img_03 {
	text-align: center;
    padding: 10% 4%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.page_main_img h2,
.page_main_img_02 h2,
.page_main_img_03 h2 {
    margin: 2em auto;
    font-size: 18px;
}

.page_main_img p,
.page_main_img_02 p,
.page_main_img_03 p {
    line-height: 2;
}


/* ============================ MD ============================ */

.md{
    display: none;
}

.pc{
    display: none;
}

@media only screen and (min-width: 768px) {

    .sp{
        display: none;
    }

    .md{
        display: block;
    }

}

/* ============================ PC ============================ */


@media only screen and (min-width: 1025px) {

    body,
    html {
        font-size: 16px;
    }

    .pc,
    .md{
        display: block;
    }

    .page_main_img{
        padding: 7% 0;
    }

}

/* =============================================
 CONTENTS CSS
============================================= */


/* ================ container ================ */

.container {
    width: 100%;
    padding: 60px 0;
    margin: 0;
}

.contents_inner {
    max-width:1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex_box,
.float_box_pc,
.float_box_md{
    box-sizing: border-box;
}

.flex_box{
    display: flex;
}

/* PC(1024px以上)のみフロートさせる */
.float_box_pc{
    float: none;
}

/* MD(768px以上)でもフロートさせる */
.float_box_md{
    float: none;
}

.float_box{
    float: left;
    margin-bottom: 30px;
}

/* 右にフロートさせる */
.float_box.float_right,
.float_box_md.float_right{
    float: right;
}

.clearfix.col2 > .float_box,
.clearfix.col2 > .float_box_md{
    width: 50%;
}

.clearfix.col3 > .float_box,
.clearfix.col3 > .float_box_md,
.clearfix.col3 > .float_box_pc{
    width: 33.33%;
}



.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clearfix.col4 > .float_box{
    width: 50%;
    box-sizing: border-box;
}


/* MD */

@media only screen and (min-width: 768px) {
    .container {
        padding: 60px 0 80px;
    }
    .contents_inner {
        padding: 0 30px;
    }

    .float_box_md {
        float: left;
        margin-bottom: 8px;
    }

    .clearfix.col4 > .float_box{
        margin-bottom: 10px;
    }
    .clearfix.col4 > .float_box:nth-child(2n){
        margin-right: 0;
    }

}
@media only screen and (max-width: 767px) {
    .clearfix.col3 > .float_box_md{
        width: 100%;
    }
}
/* PC */

@media only screen and (min-width: 1024px) {

    .clearfix.col2 > .float_box_pc{
        width: 50%;
    }

    .float_box_pc {
        float: left;
        margin-bottom: 40px;
    }

    .clearfix.col4 > .float_box{
        width:33%;
    }

    .clearfix.col4 > .float_box:nth-child(4n){
        margin-right: 0;
    }
}

/* SP */

@media only screen and (max-width: 767px) {

    .clearfix.col2 > .float_box_md,
    .clearfix.col2 > .float_box_pc,
    .clearfix.col3 > .float_box_pc{
        width: 100%;
    }
}


/* ================ VIEW BTN ================ */

.btn {
    border: 1px solid #886c3d;
    background-color: #886c3d;
    transition: color .3s;
    transition: background-color .3s;
    letter-spacing: .03rem;
    color: #FFF;
    text-align: center;
    width: 100%;
    line-height: initial;
    margin: 20px auto;

}

.btn a {
    position: relative;
    display: block;
    padding: .7rem 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    width: 100%;
}

.btn_s{
    max-width: 220px;
}

.btn_xs{
    max-width: 160px;
}

.btn_l{
    max-width: 300px;
    background-color: #FFF;
    color: #886c3d;
    font-weight: bold;
}
.btn_s a,
.btn_xs a{
    font-size: 12px;
}

.btn_xs a{
    padding: .5rem 0;
}

.btn a::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: .7rem;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #FFF;
}

.btn_l.btn a::after{
    border-left-color: #886c3d;
}

.read_more{
    width: 100%;
    text-align: center;
    padding: .8rem 0 .2rem;
    color: #886c3d;
    text-decoration: underline;
    font-family: 'Montserrat';
    display: inline-block;
}

.btn_l.yoyaku{
    max-width: 300px;
    background-color: #fcb2a9;
    color: #FFF;
    font-weight: bold;
    border-color: #fcb2a9;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 3px #904d45;
    background: -webkit-repeating-linear-gradient(-45deg, #f9c5bf, #f9c5bf 3px, #fcb2a9 3px, #fcb2a9 7px);
    background: repeating-linear-gradient(-45deg, #f9c5bf, #f9c5bf 3px, #fcb2a9 3px, #fcb2a9 7px);
}

.btn_l.btn.yoyaku a::after{
    border-left-color: #FFF;
}


/* 200424 各コースから予約ページに遷移するために設定 ここから */
button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        margin: 0;
        font-family: 'Montserrat',游ゴシック体, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック","ヒラギノ角ゴ ProN" , sans-serif;
}

.btn button{
  color: #ffffff;
  position: relative;
    display: block;
    padding: .7rem 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    width: 100%;
    height: auto;
    font-family: 'Montserrat',游ゴシック体, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック","ヒラギノ角ゴ ProN" , sans-serif;
    font-weight: bold;
    text-shadow: 0 0 3px #904d45;
    height: 5.5em;
}

.btn button:hover{
}

.btn button::after{
position: absolute;
    top: 0;
    bottom: 0;
    right: .7rem;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #FFF;
}

@media only screen and (max-width: 767px) {
  /* SP */
  .btn button.shop_course_sp{
    height: auto;
  }
}

/* 200424 各コースから予約ページに遷移するために設定 ここまで */

@media only screen and (min-width: 1024px) {

    .btn{
        margin: 30px 0;
    }

    .btn:hover {
        background-color: #FFF;
        color: #886c3d;
    }

    .btn_l:hover {
        background-color: #886c3d;
        color: #FFF;
    }

    .btn:hover a::after{
        border-left-color: #886c3d;
    }

    .btn_l:hover a::after{
        border-left-color: #FFF;
    }

    .btn_l.yoyaku:hover{
        transition: .3s;
        opacity: .6;
    }

    .btn_l.btn.yoyaku:hover a::after{
        border-left-color: #FFF;
    }

}

/* ============================ 共通エフェクト ============================ */

.fadeIn {
    -webkit-animation-fill-mode:both;
    -ms-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:1.5s;
    -ms-animation-duration:1.5s;
    animation-duration:1.5s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    visibility: visible !important;
}
@-webkit-keyframes fadeIn {
     0% { opacity: 0; }
     100% { opacity: 1;}
}
@keyframes fadeIn {
     0% { opacity: 0;}
     100% { opacity: 1;}
}

/* ====== Slick 共通 ====== */

.slick-next { right: 15vw; z-index: 99;}
.slick-prev { left: 15vw; z-index: 100;}

.slick-prev,
.slick-next{
    bottom: -42px;
    top: unset;
    width: 50px;
    height: 20px;
}
.slick-prev:before,
.slick-next:before{
    padding: 0;
    width: 50px;
    height: 20px;
    content: "";
    display: block;
    background-image: url(../common/img/slick_arrow_right.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.slick-prev:before{
    background-image: url(../common/img/slick_arrow_left.png);
}
.slick-dots li{

}
.slick-dots li button:before{
    content: "■";
    font-size: 20px;
    color: #886c3d;
}

.slick-dots li.slick-active button:before{
    color: #886c3d;
}

.main_images .slick-dots{
    bottom: 10px;
    right: 10px;
    text-align: right;
}

.main_images.slick-dotted.slick-slider{
    margin-bottom: 0;
}



/* =============================================
 SCENE CSS
============================================= */

.top_scene{
    background-color: #fbf1e4;
    background-image: url(/common/img/top_scene_bg.jpg);
}

.top_scene_article{
    border: 1px #f1e7dc solid;
    background-color: #FFF;
    max-width: 350px;
    margin: 0 auto 10px;
    padding: 6px;
    box-sizing: border-box;
    width: 95%;
    text-align: center;
    box-shadow: #e0ddc5 3px 6px 6px 0px;
}

.scene_txt{
    margin-top: 10px;
}
.scene_txt span{
    margin-top: 5px;
    font-size: 8px;
    display: block;
    color: #ceb287;
}

.top_scene_article{
    transition: .3s;
    transform: rotateZ( 0deg ) ;
}

.top_scene_article:hover{
    transform: rotateZ( 6deg ) ;
}

.top_scene .float_box:nth-child(even) .top_scene_article:hover{
    transform: rotateZ( -6deg ) ;
}

/* =============================================
 SHOP CSS
============================================= */

/* === 各店舗写真 === */
.shop_otsuka{
    background-image: url(/common/img/shop_otsuka.jpg);
    }
    .shop_takenotsuka{
    background-image: url(/common/img/shop_takenotsuka.jpg);
    }
    .shop_otsu{
    background-image: url(/common/img/shop_otsu.jpg);
    }
    .shop_hachinohe{
    background-image: url(/common/img/shop_hachinohe.jpg);
    }
    .shop_tokoname{
    background-image: url(/common/img/shop_tokoname.jpg);
    }
    .shop_tsuyama{
    background-image: url(/common/img/shop_tsuyama.jpg);
    }
    .shop_uji{
        background-image: url(/common/img/shop_uji.jpg);
        }
    .shop_takatsuki{
        background-image: url(/common/img/shop_takatsuki.jpg);
        }
    .shop_kyouto{
        background-image: url(/common/img/shop_kyouto.jpg);
        }


.shop{
    background-color: #FDF3E7;
    background-image: url(/common/img/top_shop_bg.gif);
}

.shop_article{
    border: 1px #f1e7dc solid;
    background-color: #FFF;
    max-width: 500px;
    margin: 0 auto 10px;
    padding: 10px;
    display: flex;
    box-sizing: border-box;
    width: 100%;
}

.shop_photo{
    width: 45%;
}

.shop_photo img{
    width: 94%;
}

.shop_text{
    font-size: 11px;
    width: 60%;
    padding-left: 10px;
    box-sizing: border-box;
}

.shop_text span {
    font-size: 90%;
    line-height: 1.2;
}

.shop_text h2{
    font-weight: bold;
}

.shop_tel{
    font-size: 18px;
    font-weight: bold;
}

.shop_tel span{
    font-size: 13px;
}

.mg8 {margin: 6% 0;}
/*.shop_btn.takenotsuka,
.shop_btn.otsu {
        margin-top: 16%;
}*/

.mg2 {margin: 3% 0;}

@media only screen and (width: 768px) {
    .shop_tel{
        font-size: 12px;
    }
}

.shop_btn a{
    display: block;
}

.shop_btn p{
    background-color: #776252;
    padding: 5px 0;
    border-radius: 4px;
    margin-top: 2px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    width: 49%;
}

.shop_btn p:nth-of-type(2){
    float: left;
}

.shop_btn p:nth-of-type(3){
    float: right;
}

.shop_btn p.entry_btn{
    display: block;
    width: 100%;
    background-color: #f18a83;
    margin-bottom: 1px;
}

.shop_btn p.line_btn{
    background-color: #4caf50;
    color: #FFF;
    font-weight: bold;
    border-color: #4caf50;
    margin-left: auto;
    margin-right: auto;
}


/* ============================ PC ============================ */
@media only screen and (min-width: 1025px) {
    .shop_article{
        padding: 15px;
    }
}


/* =============================================
 GALLERY CSS
============================================= */

.gallery_icon{
    max-width: 170px;
    margin: 0 auto;
}
ul.photo_gallery{
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
ul.photo_gallery li {
    display: inline-block;
    margin-bottom: 1%;
    margin-right: 1%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    transition: all .5s;
}

ul.photo_gallery li img{
    max-height: 100%;
    max-width: unset;
    max-width: auto;
}

ul.photo_gallery li:hover{
    transition: all .5s;
    border-radius: 0;
}

ul.photo_g li :not(:nth-child(2n)) {
    margin-right: 1rem;
}

@media only screen and (min-width: 920px) {
    ul.photo_gallery{
        max-width: 100%;
    }
}

/* =============================================
20200309 臨時休業のお知らせ用CSS
============================================= */
.info_text{
  max-width: 90%;
  margin: 0 auto 10px;
  text-align: left;
}

@media only screen and (min-width: 768px) {
    .info_text{
        max-width: 76%;
        margin: 0 auto 10px;
    }
}
@media only screen and  (min-width: 1024px) {
    .info_text{
        max-width: 59%;
        margin: 0 auto 10px;
    }
}
