/* IMPORT CSS */
@import url("grid.css");
img {
	max-width:100%;
	height: auto;/*高さ自動*/
    vertical-align: top;
}
a {
    display:block;
    color: #35383A;
    text-decoration-line: none;  
	cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
a:hover {
	color: #35383A;
}
a img{
transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
a img:hover {
opacity: 0.5 ;
}
.indent{
  /* text-indent: -1em; */
  /* padding-left: 1em; */
}
.indent02{
  text-indent: -1em;
  padding-left: 1em;
	text-align: center;
}
.btm20{ margin-bottom: 20px; }
.btm60{ margin-bottom: 60px; }
.mb00{ margin-bottom: 0px!important; }
.mt00{ margin-top: 0px!important; }
.mt20{ margin-top: 20px!important; }
.pb00{ padding-bottom: 0px!important; }
@media (min-width: 550px){
.sp_on{ display: none; }
.pc_on{ display: block; }
}
@media screen and (max-width: 768px){
.sp_on{ display: block; }
.pc_on{ display: none; }
}
/*ヘッダー -------------------------------------*/	
.header_top{
	width: 100%;
	max-width: 1240px;
    display: flex;
    align-items: flex-end;
	margin: 20px auto;
    position: relative;
	padding: 15px;
	}	
.header_top h1{
	width: 200px;
	display: block;
}
.top_menu{
    display: flex;
    width: 100%;
	margin-left: 20px;
}
.top_menu li{
	margin-right: 20px;
	padding-right: 20px;
    border-right: 1px solid #aaa;
	font-size: 18px;
	font-weight: bold;
	color: #35383A;
}
.top_menu li:last-child{
	margin-right: 0px;
	padding-right: 0px;
    border-right: 0px solid #aaa;
}
.top_menu li a {
position: relative; /*アンダーラインの位置を決めるための基準 */
}
.top_menu li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #000000;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/
}
.top_menu li a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
@media screen and (max-width: 768px){
.top_menu{ display: none; }
.header_top { margin: 30px auto; }
.header_top h1{
	width: 100px;
	display: block;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -30%)!important;
    z-index: 1;
    text-align: center;
}
	}
/* ---------------------------------------------- */
/* ハンバーガーメニュー */
/* ------------------------- */
#header-hamburger {
    position: fixed;
    right: 0;
    cursor: pointer;
    width: 70px;
    height: 70px;
    aspect-ratio: 1/1;
    z-index: 10;
	top: -150px;
    border-radius: 0 0 0 16px;
    background-color: #424e92;
    transition: 0.3s;
}
#header-hamburger.active { top: 0px!important; }
/*ボタン内側*/
#header-hamburger span {
    display: inline-block;
    /*アニメーションの設定*/
    transition: all .4s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    /* バーガー線の位置 */
    height: 4px;
    /* バーガー線の太さ */
    background: #fff;
    width: 30px;
    border-radius: 4px;
}
@media screen and (max-width: 768px){
#header-hamburger { top: 0px!important; }
}
/* ------------------------------------- */
/* 三本線 */
/* ----------------- */
/* バーガー線それぞれのY方向位置 */
#header-hamburger span:nth-of-type(1) { top: 34.4%; }
#header-hamburger span:nth-of-type(2) { top: 48%; /* 数値が半端＝バーの太さがずれるのを防ぐ処置 */ }
#header-hamburger span:nth-of-type(3) { top: 63.4%; }
/* ----------------------------------- */
/* ×印 */
/* ------------------ */
/*activeクラスが付与されると線が回転して×になる*/
#header-hamburger.active span:nth-of-type(1) {
    top: 47%;
    left: 25%;
    transform: rotate(-45deg);
    width: 50%;
    background: #fff;
}
#header-hamburger.active span:nth-of-type(2) { opacity: 0; }
#header-hamburger.active span:nth-of-type(3) {
    top: 47%;
    left: 25%;
    transform: rotate(45deg);
    width: 50%;
    background: #fff;
}
/* ----------------------------------------------- */
/* メニューウィンドウ */
/* -------------------------- */
#hamburger-window {
    position: fixed;
    top: 0;
    padding-top: 100px;
    padding-bottom: 60px;
    right: -1000px;
    /*padding-left: 50px;*/
    z-index: 1;
    /*width: calc(450px + 6.25vw);*/
    height: 100vh;
    overflow: auto;
    transition: 0.3s;
    /* 見た目のCSS */
    background-color: #333232ed;
}
#hamburger-window.open {
    visibility: visible;
    right: 0;
}
.hamburger-window--nav-list {
    position: relative;
    padding: 0 35px;
}
.hamburger-window--nav-list li a {position: relative;}
.hamburger-window--nav-list li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
    background: #e9ae0a;
    bottom: -16px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/
}
.hamburger-window--nav-list li a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/* ---------------------- */
/* 見た目のCSS */
/* ----------------------- */
.hamburger-window--link {
    display: inline-block;
    padding: 15px 0;
	width: 100%;
	margin: auto;
    text-align: center;
}
.hamburger-window--title {
    color: #fff;
    font-size: 16px;
	padding-bottom: 0px;
}
.hamburger-window--link:nth-of-type(1) {
border-top: solid 0px rgba(255,255,255,0.00)!important;
}
.hamburger-window--link:first-of-type {
    border-top: solid 0.5px #fff;
}
.hamburger-window--link {
    border-bottom: solid 0.5px #fff;
}
/* ****************
sp-hamburger
**************** */
@media screen and (max-width: 480px) {
    #header-hamburger {
        width: 60px;
        height: 60px;
    }
    #hamburger-window {width: 100vw;}
    .hamburger-window--link {width: 100%; }
    #hamburger-window {
        padding-right: 5%;
        padding-left: 5%;
    }
    #header-hamburger span:nth-of-type(3)::after {
        top: 8px;
        left: 0;
        font-size: 12px;
    }
    #header-hamburger.active span:nth-of-type(3)::after {
        top: 10px;
        left: 50%;
        font-size: 12px;
    }
}
.contact-button {
	padding: 1rem;
	border: 2px solid #000;
}
body {
  margin: 0;
	display: none;
	font-family: 'Zen Old Mincho', serif;

}
p{ font-family: "Noto Sans JP", sans-serif; }
/* Navbar & Navmenu color */
:root { --background-navbar: rgba(55, 55, 55, 0.98);}
/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 51px;
    /* 固定ヘッダの場合　margin-top: 76px;*/
    margin-top: 0px;
    padding: 0 0 10px 0;
    clear: both;
/*背景*/background-color: rgba(0,0,0,0.7);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
}
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}
.menu li {
  border-top: 1px solid #FFFFFF;
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
.menu li:nth-child(1) {
  border-top: 0px solid #FFFFFF;
}
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.menu-btn {display: none;}
.menu-icon {
display: inline-block;
   /* position: relative;*/
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    right: 0;
    position: absolute;
	z-index: 2000000;   
/*背景*/background-color: #937310;
}
.navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before {top: 9px;}
.navicon:after {bottom: 9px;}
/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
    font-size: 20px;
    left: 20px;
    top: 10px;
    width: 200px;
}
/*メイン画像 -------------------------------------*/
.mainimg_box {
    position: relative;
    width: 100%;
	max-width: 1240px;
	margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.mainimg_box h2,
.mainimg_box h3 {
    position: absolute;
    z-index: 9999;
    background-color: #FFF;
    font-size: 30px;
    text-align: left;
    padding:6px 20px;
}
.mainimg_box h2 {
    left: 0;
    bottom: 100px;
}
.mainimg_box h3 {
    left: 0;
    bottom: 40px; 
}
@media screen and (max-width: 768px) {
    .mainimg_box h2,
    .mainimg_box h3 {
        font-size: 26px;
    }
}
@media screen and (max-width: 480px) {
    .mainimg_box h2,
    .mainimg_box h3 {
        font-size: 22px;
    }
    .mainimg_box h2 {
    bottom: 10px;
    }
    .mainimg_box h3 {
    bottom: 0px; 
    }
}

.mainimg_box .mainimg:nth-child(2n) {
	margin: 0 10px;
}
.mainimg_box .mainimg img {
    width: 100%;
}
/*メインコンテンツ -------------------------------------*/
main {
	margin-top: 0rem;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0px;
}
section {
	/*margin: 5rem 0;*/
	padding: 6rem 10px;
	position: relative;
}
.gray-back {
	position: relative;
	z-index: 10;
	background-color: #F5F5F5;
	background-repeat: repeat;
}
/*キャッチコピー -------------------------------------*/
.catch { text-align: center; }
h2 {
  position: relative;
  padding:0;
  text-align: center;
}
h3{
  padding: 0px;
	text-align: left;
    margin-top: 60px;
    margin-bottom: 20px;
}
.under_mini {font-size: 16px;}
.center {
	text-align: center;
	margin-top: 0px;
}
/*フッター -------------------------------------*/
footer {
	background-color: #fff;
	margin: 0px;
}
footer h4 { border-bottom: 3px solid #ccc;}
.copylight{
	width: 100%;
	background-color: #F3F0EA;
    padding: 5px 0px;
	text-align: center;
	font-size: 12px;
}
/*お問い合わせ -------------------------------------*/
.contact-box {
	border: 1px solid #ccc;
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 20px 0 50px 0;
  font-family: "Noto Sans JP", sans-serif;
}
.table th {
}
/*コピーライト -------------------------------------*/
.copyright {
	text-align: left;
	padding: 1rem 0;
	color: #FFF;
	font-size: 11px;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}
/*ページトップへ戻るボタン -------------------------------------*/
#page_top{
  width: 65px;
  height: 65px;
  position: fixed;
  right: 0;
  bottom: -150px;
/*背景*/background-color: #424E92;
 /* opacity: 0.6;*/
  border-radius: 50%;
	margin-right: 10px;
z-index: 1000;
}
#page_top a{
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 45px;
  color: #fff;
  position: absolute;
  width: 65px;
  height: 65px;
  top: -12px;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
}
#pagetop a:hover { background: #666; }
/* 幅768px以下の表示 -------------------------------------*/
@media screen and (max-width: 800px){
iframe { vertical-align:bottom;}
/*ヘッダー -------------------------------------*/
.header-box { display: none;}	
.text{
	padding-right: 10px;
	padding-left: 10px;
	text-align: left;
}
}
/*スライドショー -------------------------------------*/
.fade {
	max-width: 1240px;
	margin: 0px auto;
	padding: 0;
	height: auto;
}
.fade img{ width: 100%;}
.fade .slick-next { right: 20px; z-index: 99;}
.fade .slick-prev { left: 20px; z-index: 100;}
#wrap{
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
#slider,#slider02,#slider03{
	max-width: 960px;
	margin: 0 auto 10px;
	padding: 0;
	height: auto;
}
.slide-item,.slide-item02,.slide-item03 img{
    width: 100%;
	position: relative;
	display: block;
  }  
#thumbnail-list,#thumbnail-list02,#thumbnail-list03{
max-width: 1000px;
	text-align: center;
  margin: 0 auto;
  flex-wrap:wrap;
}
#thumbnail-list img,#thumbnail-list02 img,#thumbnail-list03 img{
    width: 100px;
	max-width:100px;
	height: auto;/*高さ自動*/
}
.thumbnail-item,.thumbnail-item02,.thumbnail-item03{
	display: inline-block;
  cursor:pointer;
	padding: 0px;
	width: 100px;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
  }
.center_slide { margin: 0 0 0px;}
.center_slide img { width: 100%; height: auto;}
.center_slide .slick-next { right: 20px; z-index: 99;}
.center_slide .slick-prev { left: 15px; z-index: 100;}
.center_slide { margin: 0 0 0px;}
.center_slide img { width: 100%; height: auto;}
.center_slide .slick-next { right: 20px; z-index: 99;}
.center_slide .slick-prev { left: 15px; z-index: 100;}
.double{
	width: 100%;
	text-align: center;
	margin: 0px;
	padding: 0px;
}
.double h4 {
	font-size: 17px;
  position: relative;
	margin-top: 25px;
  padding: 1em 0;
}
.double h4::before,
.double h4::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}
.double h4::before {
  top: 0;
  border-top: 2px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.double h4::after {
  bottom: 0;
  border-top: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.footer_address{ padding: 0px 0 20px 0; }
.banner{ text-align: center; }
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom: -95px;
    /*全体の高さ*/
	height:50px;
}
/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
    position: absolute;
    left: -20px;
    top: -25px;
    /*テキストの形状*/
    color: #eee;
    letter-spacing: 0.05em;
	font-family: system-ui;
}
/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}
/* メインギャラリー */
.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}
.full div::before{
  /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.2);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
.full div.img01 { background-image: url(../img/hero01.jpg); }
.full div.img02 { background-image: url(../img/hero02.jpg); }
.full div.img03 { background-image: url(../img/hero03.jpg); }
.full div.img04 { background-image: url(../img/hero04.jpg); }
.full div.img05 { background-image: url(../img/hero05.jpg); }
.full div.img06 { background-image: url(../img/hero06.jpg); }
.full .slick-dots {
  bottom: 5%;
  z-index: +1;
}
/* メインギャラリー */
.footer_logo{
	line-height: 25px;
	text-align: center;
}
.footer_sub{ font-size: 14px; }
.w960{
max-width: 960px;
	width: 100%;
	margin: auto;
}
.defo_table{
width: 100%;
    border-left: #222 1px solid;
    border-top: #222 1px solid;
    padding: 0px;
    margin: 0 auto 40px auto;
    border-collapse: collapse;
    border-spacing: 0;
	font-size: 13px;
}
.defo_table th {
    border-bottom: #222 1px solid;
    border-right: #222 1px solid;
    padding: 15px;
    text-align: left;
    background: #F4F4E3;
}
.defo_table td {
    border-bottom: #222 1px solid;
    border-right: #222 1px solid;
    padding: 15px;
    text-align: left;
}
table.w28 th { width: 20%; }
table.w28 td { width: 80%; }
table.w37 th { width: 30%; }
table.w37 td { width: 70%; }
@media screen and (max-width: 800px){
.w960{
max-width: 960px;
	width: 100%;
	margin: auto;
    padding: 10px 10px;
}
.defo_table{
width: 100%;
    border-left: #222 1px solid;
    border-top: #222 1px solid;
    margin: 0 auto 40px auto;
    border-collapse: collapse;
    border-spacing: 0;
	font-size: 13px;
}
.defo_table th {
    border-bottom: #222 1px solid;
    border-right: #222 1px solid;
    padding: 15px;
    text-align: left;
    background: #F4F4E3;
	display: block;
}
.defo_table td {
    border-bottom: #222 1px solid;
    border-right: #222 1px solid;
    padding: 15px;
    text-align: left;
	display: block;
}
table.w28 th,table.w37 th { width: 100%; }
table.w28 td,table.w37 td { width: 100%; }
}
/* プルダウン */
 .accordion {
  width: 100%;
  /*max-width: 360px;*/
  margin: 30px auto 20px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
 }
.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 15px;
  color: #4D4D4D;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #CCC;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/*
.accordion li:last-child .link {
  border-bottom: 0;
}*/
#accordion{ padding-bottom: 0rem; }
.accordion li i {
  position: absolute;
  top: 35%;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}
.accordion li.open .link { color: #b63b4d; }
.accordion li.open i { color: #b63b4d; }
.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion li.default .submenu {display: block;}
/*** Submenu -----------------------------*/
 .submenu {
  display: none;
  padding: 15px 15px 15px 15px;
  font-size: 14px;
	 border-left: 1px solid #CCC;
	 border-right: 1px solid #CCC;
	 border-bottom: 1px solid #CCC;
 }
 .submenu li { border-bottom: 1px solid #4b4a5e; }
 .submenu a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  padding: 12px;
  padding-left: 42px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
 }
 .submenu a:hover {
  background: #b63b4d;
  color: #FFF;
 }
.tel{
  display: flex;
  justify-content: center;
}
.caption{
	background-color: rgba(0,0,0,0.8);
	font-size: 25px;
	color: #fff;
	position: absolute;
	bottom: 25px;
	right: 0;
	display: block;
	padding: 5px 15px 5px 15px;
}
.tel_tead{
    border:#fff 2px solid;
    margin-top: 25px;
    margin-bottom: 0px;
    padding:15px 15px 15px 15px;
    display:inline-block;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    font-size: 36px;
}
.tel_tead a{ color: #FFF; }
.tel_tead .text{
    color:#fff;
    text-shadow:0px 0px 10px #000000;
    font-size:16px;
    margin:0px;
    text-align: center;
}
.tel_tead .number{    color: #fff;
    text-shadow: 0px 0px 10px #000000;
    font-size: 30px;
    margin: 0 0 0px 40px;
    position: relative;
    line-height: 20px;}
.tel_tead .number::before {
    content:url(../img/tel_icon.png);
    position: absolute;
    left:-40px; top:-5px;
}
.banner a{ display: contents!important; }
@media screen and (max-width: 800px){
.caption{
	background-color: rgba(0,0,0,0.8);
	font-size: 20px;
	color: #fff;
	position: absolute;
	bottom: 20px;
	right: 0;
	display: block;
	padding: 5px 10px 5px 10px;
}
}
/*プランRSS*/
.plan_rss{display:flex; flex-wrap: wrap; justify-content:space-between; max-width: 1240px; margin: auto; padding-bottom: 50px;}
.plan_rss .mini {    width: 32%;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;}
.plan_rss .mini .plan_img {width:100%; order:1;}
.plan_rss .mini .plan_img img{display: block; width:100%; height:auto;}
.plan_rss .mini .plan_text {width:100%; text-align: left; order:2;}
.plan_rss .mini .plan_text a{font-size:18px; text-decoration: none;}
.plan_rss .mini .plan_text h4{
    font-size: 18px;
    margin: 15px 0;
    border-bottom: 2px solid #333333;
	margin-bottom: 5px;
	padding-bottom: 10px;
}
.plan_rss .mini .plan_text p{font-size:14px;}
@media only screen and (max-width: 800px){
.plan_rss{display:flex; flex-wrap: wrap; justify-content:space-between; width:100%;}
.plan_rss .mini {width:auto; padding:20px;}
.plan_rss .mini .plan_img img{display: block; width:100%; height: auto;}
.plan_rss .mini .plan_text {text-align: left;}
.plan_rss .mini .plan_text a{font-size:16px; text-decoration: none;}
.plan_rss .mini .plan_text h4{
    font-size: 16px;
    margin: 15px 0;
    border-bottom: 2px solid #333333;
	margin-bottom: 5px;
	padding-bottom: 10px;
	}
.plan_rss .mini .plan_text p{font-size:14px;}
}
/******************　検索窓関連ここから　******************/
.search{ background-color: #CD6769; }
form{ padding-bottom: 0px!important; }
#plan_search{
	background-color: #BCDAFF;
	padding: 25px;
}
.form_box .form_title{ text-align: center; }
.form_box .form_title h3{
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
font-size: 25px;
	border: none;
}
.form_box .form_title h3:before {
  content: '';
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
#plan_search .search_box{
	width: 100%;
	max-width: 1240px;
	margin: auto;
}
.plan_form{max-width:1100px;
	margin: auto;}
.plan_form .form_box{display: flex; flex-wrap: wrap; justify-content:space-between;}
.plan_form .title{margin:0 0 5px 0; padding:0; text-align: center; font-size:14px;}
.plan_form span{margin:0 10px 0 0;}
.plan_form select{position: relative;border-radius: 1px;border: 1px solid #bfbfbf; background: #ffffff; padding:10px; line-height: 16px;
    font-size: 13px;}
.plan_form input{position: relative;border-radius: 1px;border: 1px solid #bfbfbf; background: #ffffff; padding:10px;}
.plan_form .check_in {width:auto; text-align: center;}
.plan_form .check_in input{width:100px; cursor: pointer;}
.plan_form .undecided {width:auto; text-align: center;}
.plan_form .undecided input{margin:14px 0 0 0px;}
.plan_form .guests{width:auto; text-align: center;}
.plan_form .guests select{width:100px;}
.plan_form .type {width:auto; text-align: center;}
.plan_form .type select{width:100px;}
.plan_form .price {width:auto; text-align: center;}
.plan_form .price span {width:10px; text-align: center; margin:0;}
.plan_form .search_btn .btn{width:100px; margin:32px auto; padding:10px 0 10px 0; background:#1c5068; background-position:right 15px center; border:none; color:#fff; font-size:18px; cursor: pointer; line-height: 16px;}
.plan_form .option-input{position:relative;  cursor: pointer;}
.plan_form .option-input:before { position: absolute; z-index: 1; top: 0.125rem; left: 0.1875rem; width: 0.75rem; height: 0.375rem; content: ''; -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); -webkit-transform: rotate(-45deg) scale(0, 0); transform: rotate(-45deg) scale(0, 0); border: 2px solid #330301; border-top-style: none; border-right-style: none; display: none;}
.plan_form .option-input:checked:before { -webkit-transform: rotate(-45deg) scale(1, 1); transform: rotate(-45deg) scale(1, 1);}
.plan_form .option-input:after { position: absolute; top: -0.125rem; left: 0; width: 1.5rem; height: 1.5rem; content: ''; cursor: pointer; }
/******************　検索窓関連ここまで　******************/
@media only screen and (max-width: 1000px){
/******************　検索窓関連ここから　******************/
#plan_search{
	background-color: #BCDAFF;
	padding: 0px;
}
.form_box .form_title{
	text-align: center;
    display: block;
    width: 100%;
}
.form_box .form_title h3{
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
	font-size: 25px;
}
.form_box .form_title h3:before {
  content: '';
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
#plan_search .search_box{
	width: 95%;
	max-width: 600px;
	margin: auto;
	padding: 15px 0;
}
.plan_form{
    max-width:800px;
	margin: auto;}
	.plan_form form{ padding-bottom: 0rem;}
.plan_form .form_box{display: flex; flex-wrap: wrap; justify-content:space-between;}
.plan_form .title{margin:0 0 5px 0; padding:0; text-align: center; font-size:14px;}
.plan_form span{margin:0 10px 0 0;}
.plan_form select{position: relative;border-radius: 1px;border: 1px solid #bfbfbf; background: #ffffff; padding:10px; width: 45.5%;}
.plan_form input{position: relative;border-radius: 1px;border: 1px solid #bfbfbf; background: #ffffff; padding:10px;}
.plan_form .check_in {width:50%; text-align: center;}
.plan_form .check_in input{width:90%; cursor: pointer;}
.plan_form .undecided {width:50%; text-align: center;}
.plan_form .undecided input{margin:14px 0 0 0px;}
.plan_form .guests{width:50%; text-align: center;}
.plan_form .guests select{width:90%;}
.plan_form .type {width:50%; text-align: center;}
.plan_form .type select{width:90%;}
.plan_form .price {width:100%; text-align: center;}
.plan_form .price span {width:10px; text-align: center; margin:0;}
.plan_form .search_btn {
	text-align: center;
    display: block;
    width: 100%;}
.plan_form .search_btn .btn{width:100%; margin:20px auto; padding:10px 0 10px 0; background:#1c5068; background-position:right 15px center; border:none; color:#fff; font-size:18px; cursor: pointer;}
.plan_form .option-input{position:relative;  cursor: pointer;}
.plan_form .option-input:before { position: absolute; z-index: 1; top: 0.125rem; left: 0.1875rem; width: 0.75rem; height: 0.375rem; content: ''; -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); -webkit-transform: rotate(-45deg) scale(0, 0); transform: rotate(-45deg) scale(0, 0); border: 2px solid #330301; border-top-style: none; border-right-style: none; display: none;}
.plan_form .option-input:checked:before { -webkit-transform: rotate(-45deg) scale(1, 1); transform: rotate(-45deg) scale(1, 1);}
.plan_form .option-input:after { position: absolute; top: -0.125rem; left: 0; width: 1.5rem; height: 1.5rem; content: ''; cursor: pointer; }
/******************　検索窓関連ここまで　******************/
}
@media only screen and (max-width: 876px){
.plan_form .price {width:100%; text-align: center;}
.plan_form .price select {
    width: 46%;
}
}
.sns {	
    display: flex;
    justify-content: center;
    align-items: center;
}
.sns a {
	margin: 0px 5px;
	padding: 0px 5px;
}
.indent {
	/* padding-left:1em; */
	/* text-indent:-1em; */
	display: block;
}
.indent02 {
	padding-left:1em;
	text-indent:-1em;
	display: block;
}
.midashi_tokusyu {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
border-top: 6px double black;
border-bottom: 6px double black;
line-height: 2;
	max-width: 900px;
	margin: 10px auto 40px;
	font-weight: bold;
	font-size: 30px;
	color: #2B2B2B
}
.midashi_tokusyu::before{
content: “”;
position: absolute;
top: -15px;
left: 20px;
width: 60px;
height: 80px;
background-color: #898787;
z-index: -1;
}
.sub_midashi{ font-size: 2.5rem; }
@media (min-width: 550px) {
.sub_midashi{
	font-size: 3rem;
}
}
.sub_midashi{
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction : column;
	margin-top: 8rem;
 margin-bottom: 2em;
	border-bottom: 0;
}
/*縦下線*/
.sub_midashi::before{
 content: '';
 position: absolute;
 display: inline-block;
 width: 1px;
 height: 20px;
 bottom: -30px;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 background-color:currentColor !important;
 /*Lightning見出しデザイン設定のCSS対策*/
 top:unset;
 border: unset;
 margin-left: unset;
 margin-right:unset;
}
/*MAIN_CODE*/
#ajiwau{
	padding-top: 14rem!important;
	padding-bottom: 10rem!important;
	max-width: 1240px;
	width: 100%;
	margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.ajiwai_box_l{ width: 60%; }
.ajiwai_box_l01{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.ajiwai_box_l01 .ajiwai_box_l01_img{ width: 70%; }
.ajiwai_box_l01 .ajiwai_box_l01_img img{ width: 100%; }
.ajiwai_box_l01 .ajiwai_box_l01_title{
    width: 30%;
    display: flex;
    justify-content: center;
	padding: 0 15px;
}
.ajiwai_box_l01 .ajiwai_box_l01_text{ margin: 25px 40px 0px 35px; }
.ajiwai_box_r{
	width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.ajiwai_box_r .ajiwai_box_r01_img01{
    margin-top: 50%;
    margin-right: 10px;
}
.ajiwai_box_r .ajiwai_box_r01_img02{
    margin-top: 10%;
    margin-right: 0px;
}
@media screen and (max-width: 1024px){
.ajiwai_box_l { width: 75%; }
.ajiwai_box_l01 .ajiwai_box_l01_img { width: 65%; }
.ajiwai_box_l01 .ajiwai_box_l01_title{
    width: 35%;
    display: flex;
    justify-content: center;
	padding: 0 15px;
}
.ajiwai_box_r{
	width: 25%;
    display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
	}	
.ajiwai_box_r .ajiwai_box_r01_img01 {
    margin-top: 20%;
    margin-right: 10px;
}
.ajiwai_box_r .ajiwai_box_r01_img02 {
    margin-top: 10%;
    margin-right: 0px;
    width: 80%;
}	
}
@media screen and (max-width: 768px){
#ajiwau {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	position: relative;
    padding-bottom: 0rem!important;
}	
.ajiwai_box_l{ width: 100%; }
.ajiwai_box_l01 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}
.ajiwai_box_l01 .ajiwai_box_l01_text {margin: 20% 10px 0px 10px;}	
.ajiwai_box_l01 .ajiwai_box_l01_img {
    width: 100%;
    margin-top: 3%;
}

.ajiwai_box_l01 .ajiwai_box_l01_title {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
}
	.ajiwai_box_r {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        /* position: absolute; */
        /* top: 30%;
        right: 43%; */
        flex-wrap: nowrap;
}	
.ajiwai_box_r .ajiwai_box_r01_img01 { width: 100%; }
.ajiwai_box_r .ajiwai_box_r01_img02 { width: 80%; }		
}
#omotenashi{
	padding-top: 14rem!important;
	padding-bottom: 10rem!important;
	max-width: 1240px;
	width: 100%;
	margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.omotenashi_box_l{
width: 55%;		
    display: flex;
    justify-content: center;
}
.omotenashi_box_l .omotenashi_box_l_title{
	margin-top: 15px;
	padding: 0 15px;
    width: 25%;
    display: flex;
    justify-content: center;
}
.omotenashi_box_l .omotenashi_box_l_img{ width: 75%; }
.omotenashi_box_l .omotenashi_box_l_img img{ width: 100%; }
.omotenashi_box_r{
    width: 45%;		
	margin-top: 50px;
}
.omotenashi_box_r .omotenashi_box_r_text{
	margin: 0 10px 50px 10px;
}
.omotenashi_box_r .omotenashi_box_r_img img{
	width: 100%; 
}
@media screen and (max-width: 768px){
#omotenashi {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0rem !important;
}	
.omotenashi_box_l{
width: 100%;	
    justify-content: space-around;	
}
.omotenashi_box_l .omotenashi_box_l_title{
	margin-top: 15px;
	padding: 0 15px;
    width: 25%;
    display: flex;
    justify-content: center;
	order: 1;
}
.omotenashi_box_l .omotenashi_box_l_img{
	width: 65%;
	order: 2;
}	
	.omotenashi_box_l .omotenashi_box_l_img img{
    height: 80%;
    object-fit: cover;
    object-position: center;
	}
.omotenashi_box_r{
        width: 100%;
        margin-top: -20%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        position: relative;
}
.omotenashi_box_r_img	{
        text-align: right;
        width: 40%;
        margin-bottom: 10px;
        margin-left: 55%;
	}
.omotenashi_box_r .omotenashi_box_r_text{
	margin: 0 10px 50px 10px;
	order: 2;
}	
.omotenashi_box_r .omotenashi_box_r_img img{
    width: 100%;
    max-width: 230px;
}
}
#kodawari{
	padding-top: 14rem!important;
	padding-bottom: 10rem!important;
	max-width: 1240px;
	width: 100%;
	margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.kodawari_box_l{
    width: 58%;
    display: flex;
    justify-content: space-between;
}
.kodawari_box_l .kodawari_box_l_img{
    width: 80%;
}
.kodawari_box_l .kodawari_box_l_title{
	margin-top: 15px;
    padding: 0 15px;
    width: 20%;
    display: flex;
    justify-content: center;
}
.kodawari_box_r{
width: 42%;		
	margin-top: 50px;
	position: relative;
}
.kodawari_box_r .kodawari_box_r_text{
	margin: 0 10px 50px 10px;
}
.kodawari_box_r .kodawari_box_r_img img{
	width: 100%;
}
.kodawari_box_r .kodawari_box_r_img02{
    position: absolute;
    left: -105%;
    top: 40%;
    width: 100%;
}
.kodawari_box_r .kodawari_box_r_img03{
	margin-top: 25px;
    width: 100%;
	max-width: 300px;
    padding-left: 20px;
}
@media screen and (max-width: 1024px){
.kodawari_box_r .kodawari_box_r_img03{
    position: absolute;
    left: -125%;
    top: 77%;
    width: 80%;
	}	
}
@media screen and (max-width: 768px){
#kodawari {
    padding-top: 14rem !important;
    padding-bottom: 10rem !important;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.kodawari_box_l {
    width: 100%;
    display: flex;
    justify-content: space-between;
}	
.kodawari_box_l .kodawari_box_l_title{ margin-top: 0px; }
.kodawari_box_l .kodawari_box_l_title h2{
	margin-top: 0px;
	margin-bottom: 0px;
}	
.kodawari_box_r {
    width: 100%;
    margin-top: 50px;
    position: relative;
}
.kodawari_box_r .kodawari_box_r_imgbox{ position: relative; }	
.kodawari_box_r .kodawari_box_r_img{ width: 50%; }
.kodawari_box_r .kodawari_box_r_img02 {
    position: absolute;
    left: auto;
    top: -20px;
    right: 0;
    width: 40%;
}
.kodawari_box_r .kodawari_box_r_img03{
	margin-top: -35px;
    width: 40%;
    max-width: 230px;
    padding-left: 20px;
    right: 0;
    margin-left: 50%;
        position: relative;
        left: auto;
        top: auto;
	}	
}
#cuisine{
	padding-top: 14rem!important;
	padding-bottom: 10rem!important;
	max-width: 1000px;
	width: 100%;
	margin: auto;
	position: relative;
}
#cuisine .midashi_tate{
    position: absolute;
    top: -5.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#cuisine .cuisine_text h3{
    text-align: center;
    margin-top: 0;
}
#cuisine .cuisine_text{
	text-align: center;
	margin-top: 35px;
	margin-bottom: 70px;
}
#cuisine .cuisine_attention{
	max-width: 800px;
	margin-bottom: 60px;
}
#cuisine .cuisine_attention .indent{
    text-align: left;
}
#cuisine .cuisine_box{
	width: 100%;
	display: flex;
	margin-bottom: 50px;
}
#cuisine .cuisine_img{ position: relative; }
#cuisine .cuisine_box .cuisine_box_img{ width: 50%; }
#cuisine .cuisine_box .cuisine_box_img img{ width: 100%; }
#cuisine .cuisine_box .cuisine_box_text{
	width: 50%;
    margin-left: 25px;
}
.label{
	padding: 0px 10px;
	background-color: #C1900A;
	color: #fff;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 30px;
    margin-right: 5px;
}
.zei{ font-size: 18px; }
@media screen and (max-width: 1024px){	
#cuisine .cuisine_box{
	width: 100%;
    display: flex;
    margin-bottom: 50px;
    flex-direction: column;
}	
#cuisine .cuisine_box .cuisine_box_img{
	width: 100%;
	margin-bottom: 15px;
}
#cuisine .cuisine_box .cuisine_box_text{
	width: 100%;
    margin-left: 0px;
}		
}
@media screen and (max-width: 768px){	
#cuisine{
	padding-bottom: 0rem!important;
}
#cuisine .midashi_tate {
    position: absolute;
    top: -9.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}
	
#cuisine .cuisine_text p{
	text-align: left;
}
}
#restaurant{
	/* padding-top: 14rem!important; */
	padding-bottom: 10rem!important;
	max-width: 1240px;
	width: 100%;
	margin: auto;
}
.restaurant_box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.restaurant_text{ width: 45%; }
.restaurant_text h2{
	text-align: left;
	margin-bottom: 20px;
}
.restaurant_text .reservation_btn02{ margin: 0; }
.restaurant_img{ width: 50%;}
.restaurant_img img{ width: 100%;}
@media screen and (max-width: 768px){
#restaurant{ padding-bottom: 0rem!important; }
#restaurant .restaurant_text p{ text-align: left; }
#restaurant .zei{
	font-size: 13px;
	display: block;
}
#restaurant	.business_hours_box p{ text-align: left; }
}
.business_hours_box{
	width: 100%;
	max-width: 800px;
	margin: auto;
	background-color: #FFF6E6;
	padding: 20px;
	text-align: center;
    margin-top: 100px;
}
.business_hours_box .label{
    display: inline-block;
    border-radius: 100px;
    padding: 3px 20px;
    margin-bottom: 10px;
}
.business_hours_box h3{ text-align: center; }
@media screen and (max-width: 1024px){
.restaurant_box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.restaurant_text{
	width: 100%;
        order: 2;
}
.restaurant_text h2{
	text-align: left;
	margin-bottom: 20px;
}
.restaurant_text .reservation_btn02{ margin: 0; }
.restaurant_img{
	width: 100%;
        order: 1;
}
}
#access{
	padding-top: 14rem!important;
	padding-bottom: 3rem!important;
	max-width: 1240px;
	width: 100%;
	margin: auto;
}
.access_c{
	color: #C1900A;
}
.access_text{
    width: 100%;
    display: flex;   
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: center;
	margin: 20px auto;
}
#use{
	padding-top: 14rem!important;
	padding-bottom: 10rem!important;
	max-width: 1240px;
	width: 100%;
	margin: auto;
}
.use_box{
	max-width: 800px;
	margin: auto;
}
.use_box h3{
	text-align: center;
}

.use_box .attention{
	margin-bottom: 75px;
    display: inline-block;
}
.use_box .annotation{
	text-align: center;
}
@media screen and (max-width: 768px){
#use{
	padding-bottom: 0rem!important;
}
.use_box .annotation{ text-align: left; }
.use_box p{ text-align: left; }
}
.midashi_l00{
	font-size: 3.125rem;
	text-align: left;
	line-height: 170%;
}
.midashi_l01{
	font-size: 3.125rem;
	text-align: left;
	line-height: 135%;
}
.midashi_l02{
	font-size: 2.5rem;
	text-align: left;
	/*line-height: 170%;*/
	line-height: 135%;
    margin-bottom: 3rem;
}
.news_box .reservation_btn02{
	width: 30%!important;
	margin: 25px auto 0 auto!important;
}
.content_line{
    margin-top: 18rem;
    position: relative;
}
.content_line::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 80px;
    bottom: 110px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #bdbdbd !important;
    top: unset;
    border: unset;
    margin-left: unset;
    margin-right: unset;
}
.reservation_btn{
	width: 100%;
	max-width: 800px;
	margin: auto;
	background-color: #bdbdbd;
	border-radius: 5px;
	
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0px;
  border: 2px solid #bdbdbd;
}
.reservation_btn:hover {
  background: #937310;
  color: #000;
  border: 2px solid #bdbdbd;
}
.bg_red{
	background-color: #B71C1C;
	padding: 5px 10px;
	color: #fff;
	font-size: 1.3rem;
	border-radius: 5px;
	text-align: center;
	margin-right: 15px;
 bottom: 0;
    /* left: 0; */
    margin: auto 0px;
    width: 170px;
    height: 3.6rem;
}
.bg_white{
	background-color: #fff;
	padding: 0px;
	color: #000;
	font-size: 1.3rem;
	border-radius: 50px;
	text-align: center;
 bottom: 0;
    /* left: 0; */
    margin: auto 0px;
    width: 75px;
    height: 2.6rem;
	margin-right: 10px;
}
.bg_yellow{
	background-color: #EFE1BD;
	padding: 0px;
	color: #000;
	font-size: 1.3rem;
	border-radius: 50px;
	text-align: center;
 bottom: 0;
    /* left: 0; */
    margin: auto 0px;
    width: 75px;
    height: 2.6rem;
	margin-right: 10px;
}
.bg_brown{
	background-color: #918264;
	padding: 0px;
	color: #000;
	font-size: 1.3rem;
	border-radius: 50px;
	text-align: center;
 bottom: 0;
    /* left: 0; */
    margin: auto 0px;
    width: 75px;
    height: 2.6rem;
	margin-right: 10px;
}
.reservation_btn p{
	font-size: 2.5rem;
	color: #fff;
	margin-left: 15px;
	padding: 0px;
	letter-spacing: 2px;
}
.reservation_btn02{
	width: 100%;
	max-width: 200px;
	margin: auto;
	background-color: #918264;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 5px 10px;
	font-size: 1.6rem;
	color: #fff;
	margin-bottom: 10px;
  border: 2px solid #918264;
}
.reservation_btn02:hover {
  background: #fff;
  color: #000;
  border: 2px solid #424242;
}
.reservation_btn02:hover .bg_white{
  background: #937310;
  color: #fff;
}
.bg_white{ transition: .1s cubic-bezier(0.45, 0, 0.55, 1); }
ul#newsList{
	margin:0px;
	padding:0;
}
ul#newsList li{
	color: #666;
	font-size: 1.4rem;
	border-bottom: 2px solid #D9D9D9;
	line-height: 140%;
	list-style-type: none;
	margin-top: 0px;
	margin-right: 0;
	margin-left: 0;
	padding-top: 0px;
	margin-bottom: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	display: flex;
}
ul#newsList li span {
    width: 7em;
    display: inline-block;
    font-size: 12px;
    opacity: 1;
    padding-right: 2.5rem;
	color: #766D59;
}
ul#newsList li a {
    display: inline-block;
    position: relative;
    font-weight: 400;
    box-sizing: border-box;
    transition: all 0.3s ease;
  text-decoration:none;
}
ul#newsList li a:hover{ color: #A47500; }
.sns_box{
	width: 100%;
	margin: 60px auto 25px;;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0px;
}
.sns_box a{
	width: 10%;
	margin: 0 20px;
}
.sns_box_footer{
	width: 100%;
	margin: 0px auto;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	padding: 15px 0px;
}
.sns_box_footer a{
	width: 10%;
	margin: 0 15px 0 0;
}
.main_text_box{ margin: 20px 0; }
.main_text_box .midashi_l01{ margin-top: 0px; }
.main_text{ text-align: left; }
.sub_content_box{
    display: flex;
    flex-direction: row;
	justify-content: space-between;
	margin-top: 25px;
}
.sub_content_left{ width: 49%; }
.sub_content_right{ width: 49%; }
.footer_address{
    display: flex;
    flex-direction: row;
	justify-content: space-between;
}
.footer_address_box{
	width: 100%;
	max-width: 800px;
	margin: auto;
}
.footer_address_box p{ text-align: center; }
.footer_address_box h2{ text-align: center; }
footer .invoice{
	font-weight: bold;
    text-align: center;
    padding: 0.5rem;
    background-color: #fff;
    color: #000;
    font-size: 13px;
}
footer .footer_text{
	text-align: left;
    font-size: 10px;
	padding-bottom: 0px;
}
.footer_box { padding: 0px 10px; }
.footer_nav li{
    position: relative;
    padding-left: 15px;
    list-style: none;
    font-size: 1.3rem;
}
.footer_nav li:before{
 content:'';
 display:inline-block;
 position:absolute;
 left:0px;
 top:12px;
 width:5px;
 height:5px;
 border-bottom:1px solid #888;
 border-right:1px solid #888;
 transform:rotateZ(-45deg);
}
.footer_nav li a{
	color: #fff;
  display: inline-block;
  text-decoration:none;
  transition: color .3s;
}
.footer_nav li a:hover{ color: #CFA31D; }
.text_line{
    border-bottom: 2px solid #D9D9D9;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.sub_title{ font-size: 2.3rem; }
.sub_title_footer{
	font-size: 1.3rem;
    letter-spacing: 0.1rem;
}
.footer_yoyaku_tbpc{display: block; }	
.footer_yoyaku_sp{ display: none; }	
.google-map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 975px){
.google-map iframe{
    height: 250px;
}
#ajiwau { padding-top: 6rem!important; }
.sns_box { width: 70%; }
section {
    padding: 4rem 10px;
    position: relative;
}
.reservation_btn {
    width: 100%;
    max-width: 100%;
}	
.footer_yoyaku_tbpc{ display: block; }	
.footer_yoyaku_sp{ display: none; }
	.t_lr10 {
	margin-left: 10px;
	margin-right: 10px;
}	
}
@media screen and (max-width: 685px){
	.facility_box .col {
		margin-bottom: 25px;
	}	
.navtext h1 { line-height: 1.1; }	
.sub_content_box { display: block; }
.sub_content_left { width: 100%; }
.sub_content_right { width: 100%; }	
.news_box .reservation_btn02, .room_box .reservation_btn02 {
    width: 70%!important;
    margin: 25px auto 0 auto!important;
}
.sns_box { width: 90%; }
	.footer_yoyaku_tbpc{ display: none; }	
	.footer_yoyaku_sp{ display: block; }	
	.footer_yoyaku_sp .reservation_btn {
    width: 100%;
    max-width: 85%;
		margin-bottom: 25px;
}
.footer_box { padding: 50px 10px 0px; }
.footer_address { display: block; }
.footer_address_box{
		width: 100%;
	margin-bottom: 20px;
}	
.sns_box_footer {
    width: 70%;
    margin: 0px auto;
    display: flex;
    justify-content: center;	
    flex-wrap: wrap;
    padding: 15px 0px;
}		
footer .invoice {
    font-size: 13px;
    width: 85%;
    margin: auto;
}
.copyright { text-align: center; }
}
.mina_banner{ width: 800px; }
@media screen and (max-width: 800px){
    .mina_banner{ width: 100%; }
}
.insta_box{
    width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-between;
}
.insta_box p{margin-right: 10px;}
.insta_box p:last-child{margin-right: 0;}
@media screen and (max-width: 860px){
    .insta_box{width: 100%;}
}
@media screen and (max-width: 421px){
    .insta_box {
        margin: 40px 0 0 0;
        flex-direction: column;
        justify-content: center;
    }
    .insta_box p{margin-right: 0;}
}
@media screen and (max-width: 1000px){
    #ajiwau video{
    width: 100%;
    height: auto;
}
}
/* TOPスライダー ↓ */
.slider{
	width: 1240px;
	margin: 0 auto;
    min-height: 600px;
}
#slider_max div{
    margin-left: 4px;
}
@media screen and (max-width: 1000px){
    .slider{
        min-height: 400px;
    }
}
@media screen and (max-width: 690px){
    .slider{
        min-height: 200px;
    }
}
/* 営業カレンダー ↓ */
.iframe-wrap {
    /* position: relative; */
    width: 800px;
    margin: 50px auto 0 auto;
    /* padding: calc(400 / 730 * 100%) 0 0; */
}
/* .iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */
/* @media screen and (max-width: 1236px){
    .iframe-wrap {
    padding: calc(400 / 600 * 100%) 0 0;
}
}
@media screen and (max-width: 1020px){
    .iframe-wrap {
    padding: calc(400 / 500 * 100%) 0 0;
}
}
@media screen and (max-width: 856px){
    .iframe-wrap {
    padding: calc(400 / 410 * 100%) 0 0;
}
} */
@media screen and (max-width: 799px){
    .iframe-wrap {
    width: 100%;
}
}
/* @media screen and (max-width: 375px){
    .iframe-wrap {
    padding: calc(400 / 410 * 100%) 0 0;
}
} */
/* フォトギャラリー ↓ */
.iframe-photo {
    width: 100%;
}
.iframe-photo iframe {
  width: 100%;
  height: 580px;
}
@media screen and (max-width: 1260px){
    .iframe-photo {
    margin-top: 50px;
}
    .iframe-photo iframe {
        height: 400px;
}
}
@media screen and (max-width: 440px){
    .iframe-photo iframe {
        height: 254px;
}
}
/* フォトギャラリー ↓ */
.slider_fade {
    position: relative;
}
.slider_fade > li {
    position: absolute;
    list-style: none;
    visibility: hidden;
    animation: anime_slider_fade 20s 0s infinite;
}
.slider_fade > li:nth-of-type(2) {
    animation-delay: 4s;
}
.slider_fade > li:nth-of-type(3) {
    animation-delay: 8s;
}
.slider_fade > li:nth-of-type(4) {
    animation-delay: 12s;
}
@keyframes anime_slider_fade {
    0% {
        visibility: visible;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    48.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.iframe-wrapper {
  position: relative;
  padding-bottom: 42.25%;
  height: 0;
  overflow: hidden;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1508px){
    .iframe-wrapper {
  padding-bottom: 38.25%;
}
}
@media screen and (max-width: 1228px){
    .iframe-wrapper {
  padding-bottom: 41.25%;
}
}
@media screen and (max-width: 1177px){
    .iframe-wrapper {
  padding-bottom: 42.25%;
}
}
@media screen and (max-width: 1085px){
    .iframe-wrapper {
  padding-bottom: 43.25%;
}
}
@media screen and (max-width: 1000px){
    .iframe-wrapper {
  padding-bottom: 41.25%;
}
}
@media screen and (max-width: 900px){
    .iframe-wrapper {
  padding-bottom: 67.25%;
}
}
@media screen and (max-width: 878px){
    .iframe-wrapper {
  padding-bottom: 56.25%;
}
}
@media screen and (max-width: 700px){
    .iframe-wrapper {
  padding-bottom: 75.25%;
}
}
@media screen and (max-width: 630px){
    .iframe-wrapper {
  padding-bottom: 83.25%;
}
}
@media screen and (max-width: 573px){
    .iframe-wrapper {
  padding-bottom: 91.25%;
}
}
@media screen and (max-width: 524px){
    .iframe-wrapper {
  padding-bottom: 100.25%;
}
}
@media screen and (max-width: 499px){
    .iframe-wrapper {
  padding-bottom: 117.25%;
}
}
@media screen and (max-width: 466px){
    .iframe-wrapper {
  padding-bottom: 129.25%;
}
}
@media screen and (max-width: 390px){
    .iframe-wrapper {
  padding-bottom: 170.25%;
}
}
@media screen and (max-width: 375px){
    .iframe-wrapper {
  padding-bottom: 181.25%;
}
}