@charset "utf-8";
/* CSS Document */
@import url("html5doctor_reset.css");

body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
  -webkit-text-size-adjust: 100%;
	background-image: url("../images/bg.jpg");
}
#mainimg .pc{
	max-width: 100vw;
    height: auto;
	vertical-align: bottom;
}
#mainimg .sp{
	max-width: 100vw;
	height: auto;
	display: none;
}

.sp-br{
    display: none;
}

.space10{
	height: 10px;
}
.space40{
	height: 40px;
}
.space50{
	height: 50px;
}

ul{
    list-style-type: none;
}

.small{
    font-size: 80%;
}

/*========================herder===============================*/
#red{
	background-color: #BF272D;
}

h1{
    color: white;
    font-weight: 500;
    font-size: 10px;
    text-align: right;
    padding:2px 30px 2px 0;
}

header {
    text-align: center
}

header .logo{
    padding-top: 30px;
}

header ul{
    width: 1000px;
    margin: 30px auto 10px;
    display: flex;
    justify-content: space-around;
}

header li a{
   font-family: 'M PLUS Rounded 1c';
    text-decoration: none;
    color: #42210B;
    font-size: 110%;
    display: flex;
    flex-direction: column;
    padding: 3px 0;
}

header li a:hover{
    border-bottom: 3px solid #BF272D;
    padding-bottom: 0px;
}

/*========= ハンバーガーメニュー ===============*/

/*アクティブになったエリア*/
#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: #fff;
    /*丸のスタート位置と形状*/
	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:30%;
    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: #42210b;
    border-bottom: 2px solid #BF272D;
	text-decoration: none;
	padding:25px 10px 2px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    font-family:  'M PLUS Rounded 1c';
    width: 100%;
    font-size: 90%;
}



/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:15px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
    display: none;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #BF272D;
  	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%;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

#mainvisual .slider img{
    padding-top: 20px;
}

/*HOME＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#main_content{
    width: 1000px;
    margin: 0 auto;
    text-align: center;
}
/*h2======================*/
h2{
    font-family: 'M PLUS Rounded 1c';
    font-weight: 500;
    font-size: 150%;
    display: inline-block;
}

.heading-031 {
    position: relative;
    padding: .3em 0 .2em 1em;
    color: #42210b;
    /*border-bottom: 3px solid #bf272d;*/
}

.heading-031::before {
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #bf272d;
    content: '';
}

.heading-031::after {
    position: absolute;
    transform: rotate(15deg);
    top: .6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #bf272d;
    content: '';
}
/**/

.greeting p{
    padding: 30px 20px;
    text-align-last: left;
}

.greeting .sentence{
    padding: 0 20px 30px 20px;
}

.recommendation ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
	align-items:center;
}

.recommendation ul li{
	width:50%;
	
}

.recommendation-p{
	text-align-last:left;
}

.recommendation ul a{
    text-decoration: none;
}

.recommendation ul p {
	padding-left:40px;
}

.recommendation img{
    width: 300px;
    height: 300px;
    border-radius: 100%;
    object-fit: cover;
	padding-right:40px
}

/*　画像の拡大　*/

.zoomIn img{
	transform: scale(1);
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img{/*hoverした時の変化*/
	transform: scale(1.1);/*拡大の値を変更したい場合はこの数値を変更*/
}

.news .news-container-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.news .news-thumbnail{
    width: 250px;
    background-color: #bf272d;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0,0, .1);
    margin: 25px;
}


.news .news-thumbnail img{
    width: 250px;
    height: auto;
}

.news .news-content{
    display:flex;
    justify-content: center;
    font-size: 100%;
    align-items: center;
    padding-bottom: 10px;
}

.news .tag{
    background-color: #fff;
    color: #42210b;
    border-radius: 10px;
}

.news .tag p{
    padding: 0 0.7em;
    font-size: 90%;
}

.news .news-thumbnail-text time{
    padding-right: 15px;
}

.news .news-thumbnail-text {
    margin: 0 auto;
    font-family:  'M PLUS Rounded 1c';
    padding: 10px 0;
}

.news .news-thumbnail a{
    text-decoration: none;
    color: #fff;
}

object a{
    color: #42210b!important;
}

a.button p{
    background-color: #fff;
    color: #42210b;
    font-family:  'M PLUS Rounded 1c';
    padding: 0.5em 2em;
    border-radius: 50px;
    width: 50%;
    margin: 0 auto;
     border: 2px solid #bf272d; 
}

a.button{
    text-decoration: none;
}

a.button:hover{
    opacity: 0.8;
}

.shop ul{
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

.shop ul p{
    font-family:  'M PLUS Rounded 1c';
     color: #fff;
     font-size: 100%;
     margin-top:  10px;
     padding: 0.2em 2em;
     border-radius: 20px;
     background-color: #bf272d;
}

.shop ul a{
    text-decoration: none;
}

.shop img{
    width: 180px;
    height: 180px;
    border-radius: 100%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0,0, .1);
}


/*footer==================================================*/
footer{
    background-color: #bf272d;
    color: #fff;
    text-align: center;
}

#footer_nav ul{
    display:flex;
    justify-content: center;
}

#footer_nav li{
    padding-right: 15px;
    padding-left: 15px;
    border-right: 1px solid #fff;
    font-size: 90%;
}

#footer_nav li:last-child{
    border-right: none;
}

#footer_nav li a{
    text-decoration: none;
    color: #fff;
    font-family:  'M PLUS Rounded 1c';
}

footer img{
    padding-bottom: 30px;
}

footer small{
    font-size: 12px;
}

footer img{
    display: block;
    margin: 0 auto;
}

#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 10px;
  z-index: 9999;
}
#page_top a{
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f139';
  font-size: 50px;
  color: #fff;
  background-color: #bf272d;
  border: 2px solid #bf272d;
  border-radius: 50px
}

.red_line{
    height: 1px;
    background-color: #bf272d;
}

/*access＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
iframe{
    display: block;
    width: 100%;
    height: 350px;
}

.parking h3, .shop-list h3, .blog-text h3{
    background-color: #eee;
    padding: .7em;
    border-radius: 5px;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 500;
}

.blog-text h4{
	font-family: 'M PLUS Rounded 1c';
	font-weight: 500;
    color: #42210b;
    font-size: 110%;
}
.parking p{
    padding: 20px
}

/*shop-list=======================================================*/

.shop-menu{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-menu li{
    margin: 10px 10px;
    background-color: #bf272d;
    border-radius: 20px;
}

.shop-menu li a{
    text-decoration: none;
    color: #fff;
    font-family: 'M PLUS Rounded 1c';
    padding: .2em 2em;
    font-size: 85%;
}

.shop-menu li a:hover{
    opacity: 0.8;
}

.shop-list li h4{
    font-family: 'M PLUS Rounded 1c';
    font-weight: 500;
    color: #42210b;
    font-size: 110%;
}

.shop-list li p{
    color: #000;
}

.shop-list li a{
    text-decoration: none;
    display: flex;
    align-items: center;
}

.shop-list li a:hover{
    opacity: 0.8;
}

.shop-list ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.shop-list li img{
   /* border-radius: 5px 0 0;*/
}

.shop-list li{
    /*border:2px solid #bf272d;*/
   /* border-radius: 5px ;*/
    margin: 15px 20px;
    background-color: #eee;
    width: 40%;
    box-shadow: 2px 2px 1px #e7e7e7;
}

.shop-list .shopname{
    padding-left: 15px;
    text-align: left;
}

.shopname p{
    font-size: 90%;
}

.blank{
    visibility: hidden;
}

/*shop-page============================================*/
.shop-explanation{
    margin: 0 auto;
    width: 80%;
}
.shop-explanation h3 {
    padding-bottom: 20px;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 500;
    color: #42210b;
    font-size: 110%;
}
.shop-explanation p {
    text-align-last: left;
}

 table{
    margin: 0 auto;
    width: 80%;
    background-color: #eee;
}
th, td{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align:left;
}

th{
    padding-left: 50px;
    width: 30%;
    color:#42210b;
}

tr{
    border-bottom: 1px solid #999;
}
tr:last-child{
    border-bottom: none;
}

td a{
    color: #000;
}

.shop-map{
    width: 80%;
    margin: 0 auto;
}

/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sort-btn li{
    margin: 10px 10px;
    background-color: #eee;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'M PLUS Rounded 1c';
     padding: .2em 2em;
    font-size: 85%;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
	background:#bf272d;	
    color: #fff;
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 33%;/*横並びで3つ表示*/
  z-index: 1;
list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
}
}

/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
.fancybox-thumbs {
    background: transparent!important;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #FA999B;
}


.gallery{
    background-color: #eee;
    padding: .7em;
    border-radius: 5px;
    font-family: 'M PLUS Rounded 1c';
    font-weight: 500;
}

.pic a{
    color: #000;
}

ol{
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    width: 90%;
    font-size: 80%;
}

.bold{
    font-weight: bold;
}

.blog-text p{
    text-align: center;
    text-align-last: left;
}

.blog-text p.center{
    text-align: center!important;
    text-align-last: center;
}


.blog-text a{
    text-decoration: none;
    color: #42210b;
    border-bottom: 1.5px dashed #42210b;
}

/*ページネーション*/
.pagination, .news .pnavi{
   margin:10px 0;
}
.nav-links{
   display:flex;
   justify-content: center;
}
.pagination .page-numbers,
.page-numbers{
   display:inline-block;
   margin-right:10px;
   padding:10px 15px;
   color:#fff;
   border-radius:3px;
   background:#999;
}
.pagination .current,
.page-numbers.current{
   padding:10px 15px;
   background:#bf272d;
   color:#fff;
}
.pagination .prev,
.pagination .next,
.next.page-numbers,
.prev.page-numbers{
   background:transparent;
   box-shadow:none;
   color:#bf272d;
}
.pagination .dots,
.news .dots{
   background:transparent;
   box-shadow:none;
}


/*<!--記事ページネーション-->*/
.nextt {
    display: flex;
    justify-content: space-around;
    font-family: 'M PLUS Rounded 1c';

}

.nextt a{
    text-decoration: none;
    color: #42210b;
    border-bottom: 1.5px dashed #42210b;
}