@charset "utf-8";


[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "\ea92";
}
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
    top: 0;
  background:#f7edef;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:500px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}



/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #333;
}

a:hover{
     text-decoration: none;   
}

/*------------------------------
        fadein
------------------------------*/
.fadeIn {
    transform: translate3d(0, -10px, 0);
    transition: 1s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/*********************************

                common

**********************************/
body{
    color: #696969;
    font-size: 13px;
    line-height: 1.3;
    font-family: noto-sans-cjk-jp, sans-serif;
}
.inner{
    max-width: 1200px;
    margin-left: auto;
  margin-right: auto;
}
a{
    text-decoration: none;
    color:#696969;
}
.wrapper{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
a:hover{
    opacity: 0.7;
}
@media screen and (min-width:640px){
    body{
        font-size: 16px;
        line-height: 1.6;
    }
    .wrapper{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}
    
}
/*********************************

               header

**********************************/
header{
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #ffffff;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #CBC6C6;
}
.header-content{
    padding: 0 20px;
    position: relative;
}
.logo img{

    width:130px;
    height: 60px;
}
/*========= ハンバーガーメニュー ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:absolute;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}



/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    /*top: 60px;
    left:50%;
    transform: translate(-50%,-50%);*/
    width: 100%;
    padding-top: 60px;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
    width: 100%;
    height: 60px; 
    border-bottom: dotted #dd959b 2px;
    box-sizing: border-box;
    justify-content: center;
}

#g-nav li a{
	text-decoration: none;
	letter-spacing: 0.1em;
    display: inline-block;
    margin-top: 20px;
}

.nav-contact {
    color: #fff;
}
    
/*予約ボタン設定*/
.nav-contact {
    background: #92b65d;/*背景色*/
    border-radius: 27px;
    width: 125px;
    height: 27px;
    padding: 6px  5px 2px 5px;
    color: #fff;  
    display: block;
}
.item a{
    margin-top: 10px !important;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0px;
	right: 0px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= アイコン ===============*/
.instagram{
    font-size: 30px;
    color: #696969;
    position: absolute;
    top: 10px;
    right: 50px;
}
.icon-instagram:before {
  content: "\ea92";
}
@media screen and (min-width:640px){
    header{
        height: 85px;
    }
    .header-content{
        padding: 0;
        height: 85px;
    }
    .logo img{
        height: auto;
        width: 163px;
        margin-left: 3%;
        justify-content: center;
    }
    .logo{
        margin-top:20px;
    }
    .openbtn{
        display: none;
    }
    #g-nav{
        right: 0;
        height: auto;
        width: 50%;
    }
    #g-nav ul{
        display: flex;
        padding-top: 0;
        margin-right: 20%;
        position: absolute;
        right: 0px;
    }
    #g-nav li{
        border-bottom: none;
    }
    #g-nav li a{
    margin-top: 10px;
        
}
    .nav-contact a{
        width: 130px;
        height: 33px;
        
    }
    .instagram{
        right: 3%;
        font-size: 36px;
        top: 0px;
    }
       .item a{
    margin-top: 5px !important;
}
}
/*********************************

　　　　       main

**********************************/
/*========= heroimagスライダー ===============*/
.hero{
    margin-top: 60px;
    margin-bottom: 45px;
}
.slider {
  position:relative;
	/*z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 400px;
}
.slider-item img{
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:400px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    object-fit: cover;
}

/*矢印の設定*/

.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;
	z-index: 3;
    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:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
/******************************************
           content
*******************************************/
/*********::common***********/
h1{
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}
.subtitle{
    text-align: center;
    font-size: 14px;
    margin-bottom: 25px;
}
hr{
    border-top: 2px dotted #da8d93;
   margin-bottom: 40px;
    margin-top: 40px;
}

/*********::concept***********/
.frame-left{
    background-image: url("../img/concept-frame-l.png");
    width: 85px;
    height: 75px;
    background-size: contain;
        background-repeat: no-repeat;
}
.frame-right{
    background-image: url("../img/concept-frame-r.png");
    width: 85px;
    height: 75px;
    background-size: contain;
        background-repeat: no-repeat;
}
.concept-inner{
    width: auto;
    height: 352px;
    position: relative;
}
.concept-text{
    position: absolute;
    top: 50%;
    left: 50%;
     transform: translate(-50%, -50%);
    width: 100%;
}
.concept-frame{
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}


.concept-content p{
    text-align: center;
    margin-bottom: 20px;
}
.concept-text2{
    line-height: 1.85em;
}
.anchors{
    max-width: 385px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.anchor{
    position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eee0e0;
    border: 0.5px solid #696969;
}
.anchor p{
    position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :100px;
  text-align:center;
    font-size: 9px;
}
/*********:menu***********/
.menu-content p{
    line-height: 1.385em;
    text-align: center;
    margin-bottom: 20px;
}
.menu-content img{
    width: 275px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/*********gallery***********/
.gallery-content p{
    line-height: 1.385em;
    text-align: center;
    margin-bottom: 20px;
}
.gallery-content img{
    width: 275px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*********massege***********/
.massege-content img{
     width: 175px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}
.massege-text{
    text-align: left;
    line-height: 1.385em;
    margin-bottom: 30px;
    background: url("../img/ami.png") no-repeat center;
    background-size: 70%;
}
/*********contact***********/
.contact-content p{
    line-height: 1.385em;
    text-align: center;
    margin-bottom: 30px;
}
/*********accsess***********/
.accsess-img1{
    width: 240px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius:50%;
}
.accsess-rogo{
    width: 150px;
    height: auto;
    display: block;
     margin: 0 auto 20px auto;
}
.accsess-img2{
    width: 260px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}
/*.shop-list{
    text-align: center;
    width: 250px;
    height: auto;
    margin: 0 auto 20px auto;
}
.shop-list dt{
    float: left;
}*/
.shop-list{
    overflow: hidden;
    text-align: center;
    width: 250px;
    margin: 0 auto;
}
.shop-list dt{
    float: left;
    clear: both; 
}
.shop-list dd{
    padding-bottom: 5px;
}
.accsess-content ul{
    border: solid 1px #696969;
    border-radius: 5px;
    margin-bottom: 85px;
}
.guide{
    padding: 16px;
    line-height: 1.385em;
}

/*********詳しくはこちらボタン***********/
.detailspage{
    text-align: center;
   
}
.detailspage a{
     color: #696969;
    border-bottom: 2px solid #92b65d;
}
.detailspage a::after{
    content: url("../img/link.png");
    vertical-align: sub;
}
@media screen and (min-width:640px){
    /*********::common***********/
    main p{
        font-size: 16px;
    }
h1{
    font-size: 35px;
}
    hr{
   margin-bottom: 70px;
        margin-top: 70px;}

.subtitle{
    font-size: 16px;
    margin-bottom: 50px;
}
/*********::concept***********/
    .br-sp{
        display: none;
    }
    .concept-frame{
        max-width: 1200px;
        height: auto;
    }
    .frame-left {
        width: 330px;
        height: 200px;
        background-size: auto;
    }
     .frame-right {
        width: 330px;
        height: 200px;
        background-size: auto;
    }
    .concept-inner{
        height: 730px;
    }
    .concept-text{
        
    }
    .concept-content p{
        margin-bottom: 50px;
    }
    .concept-text2{
        line-height: 3em;
    }
    .anchors{
        max-width: 790px;
    }
    .anchor{
        width: 220px;
        height: 220px;
    }
    .anchor p{
        font-size: 16px;
        width: 220px;
    }
    /*********menu***********/
    .menu-content{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .menu-content img{
        width: 100%;
        height: auto;
    }
    .menu-subcont{
        width: 50%;
        height: auto;
    }
    .menu-content h1,.menu-subcont p{
        text-align: right;
    }
    .menu-subcont p{
        line-height: 2.25em;
    }
    /*********gallery***********/
    .gallery-content{
        display: flex;
         align-items: center;
    }
    .gallery-subcon{
        width: 50%;
        height: auto;
    }
    .gallery-subcon img{
        width: 100%;
        height: auto;
    }
    .gallery-subcon h1, .gallery-subcon p{
        text-align: left;
    }
    .gallery-subcon p{
        line-height: 2.25em;
    }
    /*********message***********/
    .massege-content2{
        display: flex;
        align-items: center;
    }
    .massege-subcont1{
        width: 33%;
        height: auto;
    }
    .massege-subcont2{
        width: 66%;
        height: auto;
    }
    .massege-subcont1 img{
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    .massege-text{
        height: 280px;
        margin-left: 7%;
        line-height: 2em;
        background: url("../img/ami.png") no-repeat center;
    }
    .massege-detailspage{
        text-align: right;
    }
    /*********contact***********/
    .contact-text{
        margin-top: 90px;
        padding-bottom: 30px;
        
    }
    .contact-content p{
        line-height: 2em;
    }
     /*********accsess***********/
    .accsess-content2{
        display: flex;
        align-items: center;
    }
    .accsess-subcont1{
        width: 50%;
    }.accsess-subcont2{
        width: 50%;
    }
    .accsess-subcont2 img{
        width: 100%;
        max-width: 510px;
    }
    .accsess-subcont1 img{
        width: 100%;
        max-width: 274px;
    }
    .guide{
        line-height: 2em;
    }
    .accsess-content ul{
        margin-top: 80px;
    }
    
    
    
    
    
    .detailspage{
        margin-top: 35px;
    }
}



/******************************************
pagrtop
*******************************************/

#page_top{
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background:#efefef;
    position: fixed;
    right: 18px;
    bottom: 100px;
    opacity: 0.7;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #92b65d;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 7px;
  color: #92b65d;
  position: absolute;
  top: 25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (min-width:640px){
    .hero{
    margin-top: 85px;
}
    .slider{
        height: 650px;
    }
    .slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
    .slider-item img {
        height: 650px;
    }
    /*pagetop*/
    #page_top{
        width: 80px;
        height: 80px;
    }
    #page_top a::after{
        font-size: 14px;
        top: 40px;
    }
    #page_top a::before{
        font-size: 50px; 
        top: -85px;
    }
}
/*********************************

　　　　       footer

**********************************/
.footer-content{
    height: 165px;
    width: auto;
    background-color: #e7d2d2;
}
.banner{
    width: 200px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    padding-top: 25px;
    padding-bottom: 35px;
}
.banner a:hover{
    opacity: 0.7;
}
.copy{
    font-size: 7px;
    text-align: center;
}
@media screen and (min-width:640px){
    .footer-content{
        height: 200px;
    }
    .banner{
        height: auto;
        width: 250px;
    }
}
/* fadeUp */

.fadeUpTrigger{
opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}moon';
  src:  url('fonts/icomoon.eot?go1ob6');
  src:  url('fonts/icomoon.eot?go1ob6#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?go1ob6') format('truetype'),
    url('fonts/icomoon.woff?go1ob6') format('woff'),
    url('fonts/icomoon.svg?go1ob6#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}*/

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "\ea92";
}

/*********************************

                common

**********************************/
body{
    color: #696969;
    font-size: 13px;
    line-height: 1.3;
    font-family: noto-sans-cjk-jp, sans-serif;
}
.inner{
    max-width: 1200px;
    margin-left: auto;
  margin-right: auto;
}
a{
    text-decoration: none;
}
.wrapper{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
a{
    color:#696969;
}
@media screen and (min-width:640px){
    body{
        font-size: 16px;
        line-height: 1.6;
    }
    .wrapper{
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}
    
}
/*********************************

               header

**********************************/
header{
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #ffffff;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #CBC6C6;
}
.header-content{
    padding: 0 20px;
    position: relative;
}
.logo img{

    width:130px;
    height: 60px;
}
/*========= ハンバーガーメニュー ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:absolute;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}



/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    /*top: 60px;
    left:50%;
    transform: translate(-50%,-50%);*/
    width: 100%;
    padding-top: 60px;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
    width: 100%;
    height: 60px; 
    border-bottom: dotted #dd959b 2px;
    box-sizing: border-box;
    justify-content: center;
}

#g-nav li a{
	text-decoration: none;
	letter-spacing: 0.1em;
    display: inline-block;
    margin-top: 20px;
}

.nav-contact {
    color: #fff;
}
    
/*予約ボタン設定*/
.nav-contact a{
    background: #92b65d;/*背景色*/
    border-radius: 27px;
    width: 110px;
    height: 27px;
    
    color: #fff;  
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0px;
	right: 0px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= アイコン ===============*/
.instagram{
    font-size: 30px;
    color: #696969;
    position: absolute;
    top: 10px;
    right: 50px;
}
.icon-instagram:before {
  content: "\ea92";
}
@media screen and (min-width:640px){
    header{
        height: 85px;
    }
    .header-content{
        padding: 0;
        height: 85px;
    }
    .logo img{
        height: auto;
        width: 163px;
        margin-left: 3%;
        justify-content: center;
    }
    .logo{
        margin-top:20px;
    }
    .openbtn{
        display: none;
    }
    #g-nav{
        right: 0;
        height: auto;
        width: 50%;
    }
    #g-nav ul{
        display: flex;
        padding-top: 0;
        margin-right: 20%;
        position: absolute;
        right: 0px;
    }
    #g-nav li{
        border-bottom: none;
    }
    #g-nav li a{
    margin-top: 10px;
        
}
    .nav-contact a{
        width: 130px;
        height: 33px;
        
    }
    .instagram{
        right: 3%;
        font-size: 36px;
        top: 0px;
    }
}
/*********************************

　　　　       main

**********************************/
/*========= heroimagスライダー ===============*/
.hero{
    margin-top: 60px;
    margin-bottom: 45px;
}
.slider {
  position:relative;
	/*z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 400px;
}
.slider-item img{
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:400px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    object-fit: cover;
}

/*矢印の設定*/

.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;
	z-index: 3;
    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:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
/******************************************
           content
*******************************************/
/*********::common***********/
h1{
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}
.subtitle{
    text-align: center;
    font-size: 14px;
    margin-bottom: 25px;
}
hr{
    border-top: 2px dotted #da8d93;
   margin-bottom: 40px;
    margin-top: 40px;
}

/*********::concept***********/
.frame-left{
    background-image: url("../img/concept-frame-l.png");
    width: 85px;
    height: 75px;
    background-size: contain;
        background-repeat: no-repeat;
}
.frame-right{
    background-image: url("../img/concept-frame-r.png");
    width: 85px;
    height: 75px;
    background-size: contain;
        background-repeat: no-repeat;
}
.concept-inner{
    width: auto;
    height: 352px;
    position: relative;
}
.concept-text{
    position: absolute;
    top: 50%;
    left: 50%;
     transform: translate(-50%, -50%);
    width: 100%;
}
.concept-frame{
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}


.concept-content p{
    text-align: center;
    margin-bottom: 20px;
}
.concept-text2{
    line-height: 1.85em;
}
.anchors{
    max-width: 385px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.anchor{
    position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eee0e0;
    border: 0.5px solid #696969;
}
.anchor p{
    position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :100px;
  text-align:center;
    font-size: 9px;
}
/*********:menu***********/
.menu-content p{
    line-height: 1.385em;
    text-align: center;
    margin-bottom: 20px;
}
.menu-content img{
    width: 275px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/*********gallery***********/
.gallery-content p{
    line-height: 1.385em;
    text-align: center;
    margin-bottom: 20px;
}
.gallery-content img{
    width: 275px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*********massege***********/
.massege-content img{
     width: 175px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}
.massege-text{
    text-align: left;
    line-height: 1.385em;
    margin-bottom: 30px;
    background: url("../img/ami.png") no-repeat center;
    background-size: 70%;
}
/*********contact***********/
.contact-content p{
    line-height: 1.385em;
    text-align: center;
    margin-bottom: 30px;
}
/*********accsess***********/
.accsess-img1{
    width: 240px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius:50%;
}
.accsess-rogo{
    width: 150px;
    height: auto;
    display: block;
     margin: 0 auto 20px auto;
}
.accsess-img2{
    width: 260px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}
/*.shop-list{
    text-align: center;
    width: 250px;
    height: auto;
    margin: 0 auto 20px auto;
}
.shop-list dt{
    float: left;
}*/
.shop-list{
    overflow: hidden;
    text-align: center;
    width: 250px;
    margin: 0 auto;
}
.shop-list dt{
    float: left;
    clear: both; 
}
.shop-list dd{
    padding-bottom: 5px;
}
.accsess-content ul{
    border: solid 1px #696969;
    border-radius: 5px;
    margin-bottom: 85px;
}
.guide{
    padding: 16px;
    line-height: 1.385em;
}

/*********詳しくはこちらボタン***********/
.detailspage{
    text-align: center;
   
}
.detailspage a{
     color: #696969;
    border-bottom: 2px solid #92b65d;
}
.detailspage a::after{
    content: url("../img/link.png");
    vertical-align: sub;
}
@media screen and (min-width:640px){
    /*********::common***********/
    main p{
        font-size: 16px;
    }
h1{
    font-size: 35px;
}
    hr{
   margin-bottom: 70px;
        margin-top: 70px;}

.subtitle{
    font-size: 16px;
    margin-bottom: 50px;
}
/*********::concept***********/
    .br-sp{
        display: none;
    }
    .concept-frame{
        max-width: 1200px;
        height: auto;
    }
    .frame-left {
        width: 330px;
        height: 200px;
        background-size: auto;
    }
     .frame-right {
        width: 330px;
        height: 200px;
        background-size: auto;
    }
    .concept-inner{
        height: 730px;
    }
    .concept-text{
        
    }
    .concept-content p{
        margin-bottom: 50px;
    }
    .concept-text2{
        line-height: 3em;
    }
    .anchors{
        max-width: 790px;
    }
    .anchor{
        width: 220px;
        height: 220px;
    }
    .anchor p{
        font-size: 16px;
        width: 220px;
    }
    /*********menu***********/
    .menu-content{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .menu-content img{
        width: 100%;
        height: auto;
    }
    .menu-subcont{
        width: 50%;
        height: auto;
    }
    .menu-content h1,.menu-subcont p{
        text-align: right;
    }
    .menu-subcont p{
        line-height: 2.25em;
    }
    /*********gallery***********/
    .gallery-content{
        display: flex;
         align-items: center;
    }
    .gallery-subcon{
        width: 50%;
        height: auto;
    }
    .gallery-subcon img{
        width: 100%;
        height: auto;
    }
    .gallery-subcon h1, .gallery-subcon p{
        text-align: left;
    }
    .gallery-subcon p{
        line-height: 2.25em;
    }
    /*********message***********/
    .massege-content2{
        display: flex;
        align-items: center;
    }
    .massege-subcont1{
        width: 33%;
        height: auto;
    }
    .massege-subcont2{
        width: 66%;
        height: auto;
    }
    .massege-subcont1 img{
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    .massege-text{
        height: 280px;
        margin-left: 7%;
        line-height: 2em;
        background: url("../img/ami.png") no-repeat center;
    }
    .massege-detailspage{
        text-align: right;
    }
    /*********contact***********/
    .contact-text{
        margin-top: 90px;
        padding-bottom: 30px;
        
    }
    .contact-content p{
        line-height: 2em;
    }
     /*********accsess***********/
    .accsess-content2{
        display: flex;
        align-items: center;
    }
    .accsess-subcont1{
        width: 50%;
    }.accsess-subcont2{
        width: 50%;
    }
    .accsess-subcont2 img{
        width: 100%;
        max-width: 510px;
    }
    .accsess-subcont1 img{
        width: 100%;
        max-width: 274px;
    }
    .guide{
        line-height: 2em;
    }
    .accsess-content ul{
        margin-top: 80px;
    }
    
    
    
    
    
    .detailspage{
        margin-top: 35px;
    }
}



/******************************************
pagrtop
*******************************************/

#page_top{
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background:#efefef;
    position: fixed;
    right: 18px;
    bottom: 100px;
    opacity: 0.7;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #92b65d;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 7px;
  color: #92b65d;
  position: absolute;
  top: 25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (min-width:640px){
    .hero{
    margin-top: 85px;
}
    .slider{
        height: 650px;
    }
    .slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
    .slider-item img {
        height: 650px;
    }
    /*pagetop*/
    #page_top{
        width: 80px;
        height: 80px;
    }
    #page_top a::after{
        font-size: 14px;
        top: 40px;
    }
    #page_top a::before{
        font-size: 50px; 
        top: -85px;
    }
}
/*********************************

　　　　       footer

**********************************/
.footer-content{
    height: 165px;
    width: auto;
    background-color: #e7d2d2;
}
.banner{
    width: 200px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    padding-top: 25px;
    padding-bottom: 35px;
}
.banner a:hover{
    opacity: 0.7;
}
.copy{
    font-size: 7px;
    text-align: center;
}
@media screen and (min-width:640px){
    .footer-content{
        height: 200px;
    }
    .banner{
        height: auto;
        width: 250px;
    }
}
/* fadeUp */

.fadeUpTrigger{
opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}