@charset "utf-8";
@import url("reset.css");

@media all and (min-width: 768px), print {


/* 全共通
****************************************************/

/* html
=================================================*/

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-size: 20px;
	color: #333;
	line-height: 1.7;
	font-family: a-otf-ryumin-pr6n, serif;
	font-style: normal;
	font-weight: normal;
}

.bg_black {
	font-size: 20px;
	color: #a56d35;
	line-height: 1.7;
	font-family: a-otf-ryumin-pr6n, serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
}

img {
	max-width: 100%;
	height: auto;
}

/* 表示・非表示
=================================================*/

.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

/* ローディング
=================================================*/
#splash {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #333;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 画面推移
=================================================*/
/*画面遷移アニメーション*/
.splashbg {
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #333;/*伸びる背景色の設定*/
	animation-name: PageAnime;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

@keyframes PageAnime {
	0% {
		transform-origin: left;
		transform:scaleX(0);
	}
	50% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/* ヘッダー
=================================================*/

header {
	position: absolute;
}

.site-header {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: auto;
	margin: 0 auto;
	z-index: 20;
}

.site-header-logo {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 30px 0;
	/*filter: drop-shadow(1px 1px 1px #5c3e20);*/
	text-align: center;
}

.site-hm {
	position: fixed;
	width: 10%;
	height: auto;
	padding: 30px;
	z-index: 9999;
}

/* ハンバーガーメニュー
=================================================*/

/* ボタン */

.openbtn {
	position: relative;
	background: #a56d35;
	cursor: pointer;
	width: 80px;
	height: 80px;
	z-index: 9999;
}

/* ボタン内側 */
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 20px;
	height: 3px;
	background: #fff;
}

.openbtn span:nth-of-type(1) {
	top: 30px;
  	width: 45%;
}

.openbtn span:nth-of-type(2) {
	top: 38px;
  	width: 35%;
}

.openbtn span:nth-of-type(3) {
	top: 46px;
  	width: 20%;
}

/* 回転して×になる */

.openbtn.active span:nth-of-type(1) {
	top: 33px;
	left: 20px;
	transform: translateY(6px) rotate(-135deg);
	width: 45%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
	top: 45px;
	left: 20px;
	transform: translateY(-6px) rotate(135deg);
	width: 45%;
}

/* ナビゲーション */

#g-nav.panelactive {
	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: #ddded9;
	transform: scale(0);
	left: -50px;
	top: -50px;
	transition: all .6s;
}

.circle-bg.circleactive {
	transform: scale(50);
}

#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;
}

.logo_m {
	margin: 50px auto 40px auto;
	text-align: center;
	opacity: 1;
}

.logo_m a {
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: .2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes gnaviAnime {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

.gnav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 40%;
	height: auto;
	font-size: clamp(15px, 1vw, 25px);
	margin: 0 auto 30px auto;
}

.gnav-item {
	width: 40%;
	height: auto;
}

#g-nav ul {
	opacity: 0;
	/*position: absolute;*/
	z-index: 999;
	/*top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);*/
}

#g-nav.panelactive ul {
	opacity: 1;
}

#g-nav.panelactive ul li {
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: .2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes gnaviAnime {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

/* リストのレイアウト設定 */

#g-nav li {
	color: #a56d35;
	font-weight: bold;
	text-align: left; 
	list-style: none;
}

#g-nav li a {
	color: #a56d35;
	text-decoration: none;
	padding: 10px;
	display: block;
	/*text-transform: uppercase;*/
	letter-spacing: 0;
	font-weight: bold;
}

.button_solid a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 10%;
	padding: 10px 25px;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: #000;
	text-decoration: none;
}

.button_solid a:hover {
	background: #a56d35;
}

.button_solid {
	color: #fff;
	opacity: 1;
}

.button_solid a {
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: .2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes gnaviAnime {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

.button_solid2 a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 10%;
	padding: 10px 25px;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: #000;
	text-decoration: none;
}

.button_solid2 a:hover {
	background: #a56d35;
}

.button_solid2 {
	margin-bottom: 50px;
	opacity: 1;
}

.button_solid2 a {
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: .2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes gnaviAnime {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

/* 予約ボタン
=================================================*/

/* 右つき */

.fixed_btn {
	width: 200px;
	height: auto;
	position: fixed;
	bottom: 0;
	right: 0;
	transition: 0.5s;
	z-index: 9999;
}

.btn_rsv {
	text-decoration: none;
	color: #fff;
	background: #000;
	font-weight: bold;
	display: block;
	max-width: 200px;
	margin: 0 auto;
	line-height: 80px;
	text-align: center;
	transition: 0.5s;
}

.btn_rsv::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 8px;
	height: 8px;
}

.btn_rsv:hover {
	color: #fff;
	background: #a56d35;
}

/* footerまでスクロールしたら消す */
.is-hidden {
	visibility: hidden;
	opacity: 0;
}

/* タイトル
=================================================*/

h2.title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 39px;
	color: #a56d35;
	letter-spacing: 1;
	text-align: center;
/*
	text-shadow: 2px  2px 3px #a56d35,
		-2px  2px 3px #a56d35,
		 2px -2px 3px #a56d35,
		-2px -2px 3px #a56d35;
*/
}

h2.title02 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 34px;
	color: #a56d35;
	letter-spacing: 1;
	text-align: center;
/*
	text-shadow: 2px  2px 3px #a56d35,
		-2px  2px 3px #a56d35,
		 2px -2px 3px #a56d35,
		-2px -2px 3px #a56d35;
*/
}

.login_box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	height: auto;
	background: #000;
	margin: 0 auto;
}

/* 改行 */

span.css-br {
	font-size: 20px;
	margin: 0 auto;
	text-align: center;
}

span.css-br::before {
	content: "\A" ;
	white-space: pre;
}

/* 項目タイトル
=================================================*/

h3.headline {
	width: 100%;
	height: auto;
	margin: 0 auto 80px auto;
	text-align: center;
}

h3.spell {
	font-size: 36px;
	color: #a56d35;
	letter-spacing: 15px;
	margin-bottom: 15px;
}

h4.room01 {
	width: 100%;
	height: auto;
	font-size: 46px;
	color: #333;
	margin: 0 auto;
	text-align: center;
}

h4.room02 {
	width: 100%;
	height: auto;
	font-size: 46px;
	color: #333;
	margin: 0 auto 35px auto;;
	text-align: center;
}

h4.room03 {
	width: 100%;
	height: auto;
	font-size: 46px;
	color: #333;
	margin: 0 auto 15px auto;
	text-align: center;
}

h5.name {
	display: block;
	font-size: 20px;
	color: #a56d35;
	margin: 0 auto 20px auto;
	text-align: center;
}

h5.heading {
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: #a56d35;
	margin: 0 auto 20px auto;
	text-align: center;
}

/* フェードアニメーション
=================================================*/

.fade-in {
	opacity: 0;
	transition-duration: 800ms;
	transition-property: opacity, transform;
}

.fade-in-up {
	transform: translate(0, 50px);
}

.fade-in-down {
	transform: translate(0, -50px);
}

.fade-in-left {
	transform: translate(-50px, 0);
}

.fade-in-right {
	transform: translate(50px, 0);
}

.scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}

/* 下の予約ボタン
=================================================*/

.line {
	border-top: 1px solid #dfdcd8;
	padding: 50px 0 40px 0;
}

.rsv_txt {
	max-width: 72%;
	height: auto;
	margin: 0 auto 15px auto;
	padding: 0;
}

.btn_rsv_b a {
	text-decoration: none;
	background: #f8f3ee;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	max-width: 70%;
	padding: 40px 25px;
	font-size: 24px;
	color: #313131;
	transition: 0.3s ease-in-out;
	font-weight: 500;
}

.btn_rsv_b a::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 1px solid #333;
	transition: 0.2s;
}

.btn_rsv_b a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	transform: rotate(45deg);
}

.btn_rsv_b a:hover::before {
	top: 0;
	left: 0;
}

.btn_rsv_b a:hover {
	text-decoration: none;
	background-color: #f8f3ee;
}

/* フッター
=================================================*/

#footer .pagelink {
	display: flex;
	padding: 40px 30px;
}

#footer {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 40px;
	color: #fff;
}

#footer a {
	text-decoration: none;
	color: #fff;
}

#footer a:hover {
	text-decoration: underline;
}

#footer .primary {
	display: flex;
	padding: 10px 30px;
	background: url('../images/bg_primary.png') no-repeat;
	background-size: cover;
}

#footer .primary a:hover {
	opacity: 0.8;
}

#footer .secondary {
	padding: 50px 30px;
	background: url('../images/bg_footer.jpg') no-repeat;
	background-size: cover;
}

#footer .secondary .flex {
	display: flex;
}

#footer .secondary .flex .left {
	width: 30%;
}

#footer .secondary .flex .right {
	display: flex;
	width: 70%;
	justify-content: flex-end;
}

#footer .tertiary {
	display: flex;
	padding: 40px 30px;
	background: #222;
}

/* logo */

#footer p.logo {
	position: relative;
	padding: 0;
	margin: 0 0 20px 0;
	width: 100%;
}

#footer p.add {
	font-size: 18px;
	color: #9f6934;
	font-weight: bold;
}

/* address */

.address {
	margin: 10px 0 0;
	padding: 0;
}

/* navi */

.navi-section {
	display: flex;
	flex-direction: column;
	width: 30%;
	margin-left: 20px;
}

#footer .parent {
	margin: 0 0 16px 0;
	padding: 0;
	font-weight: bold;
}

#footer .navi {
	margin: 0 0 15px 0;
	padding: 0;
	list-style: none;
}

#footer .navi li {
	margin: 8px 0 0 0;
	padding: 0;
}

#footer .navi li:first-child {
	margin: 0;
}

/* sns-navi */

#footer .sns-navi {
	margin: 20px 0 0;
	padding: 0;
}

#footer .sns-navi li {
	display: inline-block;
	margin: 0 20px 0 0;
	padding: 0;
	font-size: 20px;
}

#footer .sns-navi li:last-child {
	margin-right: 0;
}

/* sitenavi */

#footer .sitenavi {
	display: flex;
	flex-wrap: nowrap;
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 14px;
	list-style: none;
	box-sizing: border-box;
}

#footer .sitenavi li {
	display: block;
	margin: 0 0 0 20px;
	padding: 0;
}

#footer .sitenavi li img {
	width: 80%;
	height: auto;
}

#footer .sitenavi li:first-child {
	margin-left: 0;
}

/* copyright */

#footer .copyright {
	width: 50%;
	margin: 0;
	padding: 0;
	font-size: 12px;
	text-align: right;
}

/* トップページ
****************************************************/

/* vegasスライダー
=================================================*/

#slider {
	width: 100%;
	height: 100vh;
	margin-bottom: 65px;
}

/* コンセプト
=================================================*/

.concept {
	width: 540px;
	height: 320px;
	position: absolute;
	top: 50%;
	left: 12%;
	font-size: 22px;
	color: #a56d35;
	line-height: 2.2;
	font-weight: bold;
	text-shadow: 0 0 10px #fff;
	z-index: 1;
}

.concept p {
	padding-top: 55px;
}

/* スクロールダウン
=================================================*/

.scrolldown {
	position: absolute;
	left: 50%;
	bottom: 10px;
	height: 50px;
}

.scrolldown span{
	position: absolute;
	left: -15px;
	top: -15px;
	color: #eee;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
}

.scrolldown::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	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;
	}
}

/* 新型コロナ感染防止
=================================================*/

.covid-19 {
	display: flex;
	flex-wrap: wrap;
	width: 1020px;
	height: auto;
	margin: 0 auto 30px auto;
}

.covid-19-ttl {
	margin: 0 auto 30px auto;
	text-align: center;
}

.covid-19-txt {
	font-size: 18px;
	color: #a56d35;
	margin: 0 auto 30px auto;
}

.covid-19-link {
	font-size: 18px;
	margin-left: auto;
}

/*矢印ボタン*/

.btn_arrow {
	position: relative;
	display: inline-block;
	margin-bottom: 65px;
	padding: 0 20px;
	color: #a56d35;
	text-decoration: none;
	outline: none;
}

.btn_arrow::before {
	content: '';
	position: absolute;
	bottom:-8px;
	left:15%;
	width: 85%;
	height: 1px;
	background:#a56d35;
	transition: all .3s;
}

.btn_arrow::after {
	content: '';
	position: absolute;
	bottom:-3px;
	right:0;
	width: 15px;
	height:1px;
	background:#a56d35;
	transform: rotate(35deg);
	transition: all .3s;
}

.btn_arrow:hover::before {
	left:20%;
}

.btn_arrow:hover::after {
	right:-5%;
}

/*矢印が右に移動して背景がつく*/

.btn_arrow02 {
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	border: 1px solid #555;
	padding: 5px 30px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: clamp(13px, 1vw, 20px);
	color: #333;
	outline: none;
    /*アニメーションの指定*/
	transition: all .2s linear;
}

.btn_arrow02:hover {
	background: #333;
	color: #fff;
}

/*矢印と下線の形状*/
.btn_arrow02::before {
	content: "";
    /*絶対配置で下線の位置を決める*/
	position: absolute;
	top: 50%;
	right: -26px;
    /*下線の形状*/
	width: 40px;
	height: 1px;
	background: #333;
    /*アニメーションの指定*/
	transition: all .2s linear;
}

.btn_arrow02::after {
	content: "";
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
	top: 20%;
	right: -21px;
    /*矢印の形状*/
	width: 1px;
	height: 12px;
	background: #333;
	transform:skewX(45deg);
    /*アニメーションの指定*/
	transition: all .2s linear;
}

/*hoverした際の移動*/
.btn_arrow02:hover::before {
	right: -30px;
}

.btn_arrow02:hover::after {
	right: -25px;
}

/* top slickスライダー
=================================================*/

.sl-slider {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 150px;
	z-index: -1;
}

.slider img {
	width: 100%;/*スライダー内の画像を横幅100%に*/
	height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
	margin: 0 10px;/*スライド左右の余白調整*/
}

/* 画像とテキストを重ねる
=================================================*/

/* Room box */

.r_box {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto 35px auto;
}

.r_box-left {
        width: 95%;
        height: auto;
}

.r_box-right {
        position: absolute;
        top: 60%;
        right: 0;
	background: rgba(246,240,234,0.8);
        transform: translateY(-50%);
        width: 45%;
        height: auto;
        line-height: 2.0;
        padding: 40px 80px;
}

.r_box-right h1 {
	font-size: 56px;
	color: #a56d35;
	margin: 0 0 35px 0;
}

.r_box-right p {
	font-size: 18px;
	color: #333;
	margin-bottom: 35px;
}

/* HONOKA box */

.h_box {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto 150px auto;

}

.h_box-left {
        position: absolute;
        top: 60%;
        left: 0;
	background: rgba(0,0,0,0.8);
        transform: translateY(-50%);
        width: 700px;
        height: auto;
        line-height: 1.8;
        padding: 40px 80px;
	color: #fff;
}

.h_box-right {
        width: 95%;
        height: auto;
	margin-left: auto;
}

.h_box-left h1 {
	margin: 0 0 35px 0;
}

.h_box-right h2 {
	margin: 0 0 20px 0;
}

.h_box-left p {
	font-size: 16px;
	margin-bottom: 35px;
}

/* Miuro box */

.m_box {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto 150px auto;
}

.m_box-left {
        width: 95%;
        height: auto;
}

.m_box-right {
        position: absolute;
        top: 60%;
        right: 0;
	background: rgba(0,0,0,0.8);
        transform: translateY(-50%);
        width: 700px;
        height: auto;
        line-height: 1.8;
        padding: 40px 80px;
	color: #fff;
}

.m_box-right h1 {
	margin: 0 0 35px 0;
}

.m_box-right p {
	font-size: 16px;
	margin-bottom: 35px;
}

/* Access
=================================================*/

.top_access_box {
	display: flex;
	flex-wrap: nowrap;
	width: 95%;
	height: auto;
	margin-bottom: 80px;
}

.top_access_img {
	width: 100%;
	height: auto;
	margin-right: 50px;
}

.top_access_txt {
	width: 500px;
	height: auto;
	font-size: 16px;
	margin: 0 auto;
	padding: 50px 0;
        line-height: 1.8;
}

/* View moreボタン
=================================================*/

.btn_line {
	display: flex;
}

.btn_line a {
	position: relative;
	display: block;
	width: 300px;
	height: 57px;
	line-height: 57px;
	margin: 40px auto 10px auto;
	text-align: center;
	text-decoration: none;
	color: #a56d35;
	font-weight: bold;
	transition: .25s;
	box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);
	background: #fff;
	z-index: 999;
}

.btn_line a::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	width: 0;
	height: 0;
	border: 2px solid transparent;
}

.btn_line a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 0;
	height: 0;
	border: 2px solid transparent;
}

.btn_line a:hover {
	color: #a56d35;
}

.btn_line a:hover::before {
	width: 100%;
	height: 100%;
	border-top-color: #a56d35;
	border-right-color: #a56d35;
	transition: width .25s ease-out, height .25s ease-out .25s;
}

.btn_line a:hover::after {
	width: 100%;
	height: 100%;
	border-bottom-color: #a56d35;
	border-left-color: #a56d35;
	transition: border-color 0s ease-out .5s, width .25s ease-out .5s, height .25s ease-out .75s;
}

/* 新型コロナ感染対策防止ページ
****************************************************/

/* リスト */

.list {
	position: relative;
	width: 90%;
	margin: 0 auto;
	font-size: 18px;
	color: #a56d35;
	padding: 0.5em 1em 0.5em 2.3em;
}

.list li {
	position: relative;
	line-height: 1.5;
	padding: 0.5em 0;
	list-style-type: none!important;
}

.list li::before {
	content: '';
	display: block;
	position: absolute;
	top: .7em;
	left: -1.5em;
	width: 10px;
	height: 5px;
	border-left: 3px solid #a56d35;
	border-bottom: 3px solid #a56d35;
	transform: rotate(-45deg);
}

/* Roomページ
****************************************************/

/* Roomの種類
=================================================*/

/* Room Number */

.room_number {
	width: 130px;
	height: 130px;
	margin: 0 auto 25px auto;
	text-align: center;
}

/* Presidential Suite */

.img_room01 {
	width: 100%;
	height: auto;
	margin: 0 auto 40px auto;
	text-align: center;
}

/* Luxury Suite */

.img_room02 {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: auto;
	margin: 0 auto 50px auto;
}

.room02_item_l1 {
	width: 70%;
	height: auto;
}

.room02_item_r1 {
	width: 30%;
	height: auto;
	padding-top: 50px;
}

.room02_item_l2 {
	width: 30%;
	height: auto;
	padding-top: 50px;
}

.room02_item_r2 {
	width: 70%;
	height: auto;
}

/* Standard */

.room_line {
	width: 95%;
	height: 4px;
	background: #a56d35;
	margin: 0 auto 35px auto;
}

.img_room03 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 95%;
	height: auto;
	margin: 0 auto 50px auto;
}

.room03_item {
	width: 30%;
	height: auto;
	font-size: 32px;
	margin-bottom: 60px;
}

.room03_item span {
	display: block;
	text-align: center;
}

.room03_item_txt {
	display: block;
	width: 96%;
	height: auto;
	font-size: 16px;
	line-height: 1.6;
	margin: 0 auto;
	padding-top: 15px;
}

/* テキスト */

.room_txt {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	margin: 0 auto 40px auto;
}

.room_txt_item {
	width: 100%;
	height: auto;
	text-align: center;
}

.room-link-btn {
	width: 50%;
	height: auto;
	margin: 0 auto 40px auto;
	text-align: center;
}

.room-link-btn02 {
	display: none;
}

/* 画像を拡大して四隅を暗く */

.imgWrap {
	overflow: hidden;
}

.imgEff {
	position: relative;
	width: 100%;
	height: 100%;
	transition-duration: 0.3s;
}

.imgEff:hover {
	transform: scale(1.1);
}

.imgEff::before {
	content: "View More";
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)); /* 円形グラデーション */
	transition-duration: 0.3s;
	opacity: 0; /* 見えないように透過しておく */
	display: flex; /* 文字の中央配置 */
	justify-content: center; /* 文字の中央配置 */
	align-items: center; /* 文字の中央配置 */
	color: #fff;
	font-size: 22px;
	text-shadow: 0 0 2px #000;
	filter: blur(4px); /* ブラー効果 */
}

.imgEff:hover::before {
	opacity: 1; /* マウスオーバーで可視化 */
	transform: scale(1.3); /* 文字の拡大率 */
	filter: blur(0); /* ブラー効果を解除 */
}

/* アメニティ */

.amenity_s {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 95%;
	height: auto;
	margin: 0 auto 50px auto;
}

.amenity_s_box {
	width: 31%;
	height: auto;
}

h5.ttl_amenity_s {
	width: 100%;
	height: auto;
	border-bottom: 1px solid #d2c6a2;
	text-align: left;
	text-indent: 10px;
	margin-bottom: 20px;
}

.amenity_s_item {
	display: flex;
	flex-wrap: nowrap;
	/* justify-content: space-between; */
	width: 98%;
	height: auto;
	margin: 0 auto;
}

.amenity_s_item ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	font-size: clamp(12px, 1vw, 16px);
}

.amenity_s_item ul li {
	margin-left: 0;
	text-indent: -1em;
	padding-left: 1em;
}

.amenity_s_item ul li::before {
	content:  "・";
}

.flex-item1 {
	flex-basis: 37%;
}

.flex-item2 {
	flex-basis: 34%;
}

.flex-item3 {
	flex-basis: 29%;
}

.flex-item4 {
	flex-basis: 66%;
}

/* リンクボタン */

.button_link a {
	text-decoration: none;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto 50px auto;
	max-width: 240px;
	padding: 10px 25px;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: #000;
	filter: drop-shadow(0px 2px 4px #ccc);
	border-radius: 3px;
}

.button_link a:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

/* Rooms詳細ページ
****************************************************/

/* room slickスライダー
=================================================*/

.sl-slider-room {/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 100%;
	margin: 0 auto 35px auto;
}

.sl-slider-room img {
	width: 100%;/*スライダー内の画像を横幅100%に*/
	height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.sl-slider-room .slick-slide {
	margin: 0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
	position: absolute;/*絶対配置にする*/
	top: 42%;
	cursor: pointer;/*マウスカーソルを指マークに*/
	outline: none;/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;/*矢印の色*/
	border-right: 2px solid #666;/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
	left: -1.5%;
	transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
	right: -1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	border: 0;
	color: transparent;
	outline: none;
	width: 20px;/*ドットボタンのサイズ*/
	height: 8px;/*ドットボタンのサイズ*/
	display: block;
	/*border-radius: 50%;*/
	background: #ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button {
	background: #333;/*ドットボタンの現在地表示の色*/
}

/* 画像を拡大
=================================================*/

.imgWrap2 {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
}
.imgWrap2 img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.imgWrap2 img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}

/* Diamond
=================================================*/

.room_ico_01 {
	width: 130px;
	height: 130px;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

h2.room_name_01 {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 72px;
	color: #333;
	letter-spacing: 1;
	text-align: center;
/*
	text-shadow: 2px  2px 3px #a56d35,
		-2px  2px 3px #a56d35,
		 2px -2px 3px #a56d35,
		-2px -2px 3px #a56d35;
*/
}

h2.room_name_01:first-letter {
	color: #a56d35;
}

h2.room_name_01 span {
	display: block;
	font-size: 24px;
}

.room_ico_02 {
	width: 130px;
	height: 130px;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

h2.room_name_02 {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 56px;
	color: #333;
	letter-spacing: 1;
	text-align: center;
/*
	text-shadow: 2px  2px 3px #a56d35,
		-2px  2px 3px #a56d35,
		 2px -2px 3px #a56d35,
		-2px -2px 3px #a56d35;
*/
}

h2.room_name_02:first-letter {
	color: #a56d35;
}

h2.room_name_02 span {
	display: block;
	font-size: 24px;
}

/* design concept */

h4.design_concept {
	position: relative;
	font-size: 42px;
	color: #333;
	padding: 1.5rem;
	text-align: center;
	margin-bottom: 35px;
}

.design_concept_txt {
	width: 80%;
	height: auto;
	margin: 0 auto 35px auto;
	text-align: left;
}

.room_flex_container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 79%;
	height: auto;
	margin: 0 auto 50px auto;
}

.room_flexbox_txt {
	width: 65%;
	height: auto;
	font-size: 16px;
}

.room_flexbox_txt p {
	margin-bottom: 20px;
}

.room_flexbox_overview {
	width: 33%;
	height: auto;
}

.room_overview_txt {
	width: 94%;
	height: auto;
	font-size: 16px;
	margin: 0 auto;
}

/* Reception Salon */

h5.reception_salon {
	width: 80%;
	height: auto;
	font-size: 48px;
	font-weight: bold;
	position: relative;
	font-weight: normal;
	margin: 0 auto 20px auto;
	padding-top: 50px;
	padding-left: 40px;
}

h5.reception_salon::before {
	content:  '';                   /* 空白の要素を作る */
	width: 0;                       /* 幅指定 */
	height: 0;                      /* 高さ指定 */
	border-style: solid;            /* 三角を作る */
	border-width: 0px 0 110px 80px; /* 三角を作る */
	border-color: transparent transparent #f8f3ee transparent;  /* 三角を作る */
	position: absolute;            /* 位置調整 */
	z-index: -1;                   /* 重なり調整 */
	transform: rotate(30deg);       /* 回転 */
	top: -20px;                     /* 位置調整 */
	left: 30px;                     /* 位置調整 */
}

h5.reception_salon span:nth-child(1) {
	color: #a56d35;
}

h5.reception_salon span:nth-child(2) {
	color: #a56d35;
}

.reception_salon_txt {
	width: 80%;
	height: auto;
	font-size: 16px;
	margin: 0 auto 50px auto;
}

.reception_salon_txt p {
	margin-bottom: 20px;
}

/* Room flexbox
=================================================*/

.img_room_slider {
	width: 80%;
	height: auto;
	margin: 0 auto 35px auto;
}

/* 客室概要
=================================================*/

table.overview {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	margin-bottom: 20px;
}

.overview th {
	color: #999;
}

.overview td {
	font-size: clamp(13px, 1vw, 18px);
	border-bottom: 1px dashed #999;
	text-align: left;
}

.overview th,tr:last-child td {
	border-bottom: 2px solid #999;
}

.overview td,th {
	padding: 5px 10px;
}

/* HONOKA
****************************************************/

.honoka_flex_container {
	display: flex;
	/*flex-wrap: nowrap;
	justify-content: space-between;*/
	align-items: center;
	width: 72%;
	height: auto;
	margin: 0 auto 100px auto;
}
/*
.honoka_flex_item_l {
	width: 30%;
	height: auto;
}

.honoka_flex_item_r {
	width: 50%;
	height: auto;
}

.chef_name {
	width: 100%;
	height: auto;
}

.chef_name span {
	display: block;
	font-size: 28px;
}

.chef_txt {
	width: 100%;
	height: auto;
	font-size: 16px;
}
*/

.honoka_flex_item {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.logo_honoka {
	width: 100%;
	height: auto;
	margin: 0 auto 80px auto;
	text-align: center;
}

.honoka_txt {
	width: 100%;
	height: auto;
	font-size: 24px;
	margin: 0 auto;
	line-height: 2.0;
}

.speciality {
	width: 80%;
	height: auto;
	margin: 0 auto 100px auto;
}

.speciality_ttl {
	width: 80%;
	height: auto;
	color: #fff;
	margin: 0 auto 25px auto;
	letter-spacing: 1em;
	text-align: center;
	word-spacing: 30px;
}

.notice_txt {
	width: 100%;
	height: auto;
	font-size: 12px;
	margin: 0 auto;
	text-align: right;
}

/* course slickスライダー
=================================================*/

.img_course_slider {
	width: 100%;
	height: auto;
	margin: 0 auto 35px auto;
}

.sl-slider-course {/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 100%;
	margin: 0 auto 35px auto;
}

.sl-slider-course img {
	width: 100%;/*スライダー内の画像を横幅100%に*/
	height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.sl-slider-course .slick-slide {
	margin: 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
	display: none;
	position: absolute;/*絶対配置にする*/
	top: 42%;
	cursor: pointer;/*マウスカーソルを指マークに*/
	outline: none;/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;/*矢印の色*/
	border-right: 2px solid #666;/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
	display: none;
	left: -1.5%;
	transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
	display: none;
	right: -1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	border: 0;
	color: transparent;
	outline: none;
	width: 20px;/*ドットボタンのサイズ*/
	height: 8px;/*ドットボタンのサイズ*/
	display: block;
	/*border-radius: 50%;*/
	background: #ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button {
	background: #333;/*ドットボタンの現在地表示の色*/
}

/* HONOKA inside
=================================================*/

.restaurant_txt {
	width: 50%;
	height: auto;
	margin: 0 auto 35px auto;
}

.restaurant_txt h3 {
	font-size: 24px;
	margin-bottom: 25px;
	text-align: center;
}

.restaurant_txt p {
	font-size: 18px;
}

.restaurant_flex_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: auto;
	margin: 0 auto;
}

.restaurant_flex_item {
	width: 49%;
	height: auto;
	margin: 0 auto 100px auto;
}

/* Miuro
****************************************************/

.miuro_flex_container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: auto;
	margin: 0 auto 50px auto;
}

.miuro_flex_item_l {
	width: 50%;
	height: auto;
}

.miuro_flex_item_r {
	width: 30%;
	height: auto;
}

.bartender_name {
	width: 100%;
	height: auto;
}

.bartender_name span {
	display: block;
	font-size: 28px;
}

.bartender_txt {
	width: 100%;
	height: auto;
	font-size: 16px;
}

.logo_miuro {
	width: 90%;
	height: auto;
	margin: 0 auto 80px auto;
}

.miuro_txt {
	width: 100%;
	height: auto;
	font-size: 18px;
	margin: 0 auto;
	line-height: 2.0;
}

.speciality {
	width: 80%;
	height: auto;
	margin: 0 auto 100px auto;
}

.speciality_ttl {
	width: 80%;
	height: auto;
	color: #fff;
	margin: 0 auto 25px auto;
	letter-spacing: 1em;
	text-align: center;
	word-spacing: 30px;
}

/* cocktails slickスライダー
=================================================*/

.img_cocktails_slider {
	width: 100%;
	height: auto;
	margin: 0 auto 35px auto;
}

.sl-slider-cocktails {/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 100%;
	margin: 0 auto 35px auto;
}

.sl-slider-cocktails img {
	width: 100%;/*スライダー内の画像を横幅100%に*/
	height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.sl-slider-cocktails .slick-slide {
	margin: 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
	display: none;
	position: absolute;/*絶対配置にする*/
	top: 42%;
	cursor: pointer;/*マウスカーソルを指マークに*/
	outline: none;/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;/*矢印の色*/
	border-right: 2px solid #666;/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
	display: none;
	left: -1.5%;
	transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
	display: none;
	right: -1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	border: 0;
	color: transparent;
	outline: none;
	width: 20px;/*ドットボタンのサイズ*/
	height: 8px;/*ドットボタンのサイズ*/
	display: block;
	/*border-radius: 50%;*/
	background: #ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button {
	background: #333;/*ドットボタンの現在地表示の色*/
}

/* Miuro inside
=================================================*/

.restaurant_txt {
	width: 50%;
	height: auto;
	margin: 0 auto 35px auto;
}

.restaurant_txt h3 {
	font-size: 24px;
	margin-bottom: 25px;
	text-align: center;
}

.restaurant_txt p {
	font-size: 18px;
}

.restaurant_flex_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: auto;
	margin: 0 auto;
}

.restaurant_flex_item {
	width: 49%;
	height: auto;
	margin: 0 auto 100px auto;
}

/* アメニティ紹介ページ
****************************************************/

/* テキスト */

.amenity_txt {
	width: 95%;
	height: auto;
	margin: 0 auto 35px auto;
	text-align: center;
}

.img_amenity {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: auto;
	margin: 0 auto 35px auto;
}

.amenity_item {
	width: 32%;
	height: auto;
	margin: 0 auto 35px auto;
	text-align: center;
}

.amenity_item img {
	margin-bottom: 15px;
}

.amenity_item span {
	display: block;
	font-size: 16px;
}

h2.amenity {
	width: 80%;
	position: relative;
	font-size: 24px;
	font-weight: bold;
	margin: 0 auto 35px auto;
	padding: 1.5rem 2rem;
	-webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
	box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
}

h2.amenity::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	content: '';
	background: #a56d35;
}

h2.amenity::after {
	bottom: 0;
}

.facility {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 80%;
	height: auto;
	margin: 0 auto 50px auto;
}

ul.kind {
	width: 16%;
	height: auto;
}

ul.kind li {
	list-style: inside;
	letter-spacing: -0.05em;
	font-size: clamp(16px, 1vw, 20px);
}

ul.kind2 {
	width: 20%;
	height: auto;
}

ul.kind2 li {
	list-style: inside;
	letter-spacing: -0.05em;
	font-size: clamp(16px, 1vw, 20px);
}

.facility_item {
	width: 68%;
	height: auto;
	font-size: clamp(16px, 1vw, 20px);
}

.ico_fa {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: auto;
	font-size: clamp(16px, 1vw, 18px);
}

.ico_fa_item {
	width: 16%;
	height: auto;
	text-align: center;
}

.ico_fa_item span {
	display: block;
}

/* Reservation
****************************************************/

.login_box {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #000;
	top: 50%; /*親のtopから50%*/
	left: 50%; /*親のleftから50%*/
	transform: translateY(-50%) translateX(-50%); /*子要素自体の大きさを考慮*/
}

.head {
	-webkit-border-radius: 6px 6px 0px 0px;
	-moz-border-radius: 6px 6px 0px 0px;
	border-radius: 6px 6px 0px 0px;
	background: #a56d35;
	color: #fafafa;
}

.login_box h2 {
	text-align: center;
	padding: 15px 0 15px 0;
	font-size: 1.2em;
}

.login_box input {
	margin-bottom: 10px;
}

.login_box input:first-of-type {
	margin-top: 35px;
}

.login_box input {
	font-size: 0.8em;
	padding: 15px 10px 10px;
	font-family: 'Source Sans Pro',arial,sans-serif;
	border: 1px solid #dcb68f;
	background: #dcb68f;
	color: #333;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 70%;
	max-width: 70%;
}

::-webkit-input-placeholder {
	color: #7a7a7a;
}

:-moz-placeholder {
	color: #7a7a7a;  
}

::-moz-placeholder {
	color: #7a7a7a; 
}

:-ms-input-placeholder {  
	color: #7a7a7a;  
}

.login_box button {
	margin-top: 15px;
	margin-bottom: 25px;
	background: #a56d35;
	padding: 12px 10px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #a56d35;
	-webkit-transition: .5s;
	transition: .5s;
	display: inline-block;
	cursor: pointer;
	width: 30%;
	color: #fff;
	text-align: center;
}

.login_box button:hover, .button:hover {
	background: #a56d35;
}

.login_box .txt {
	width: 360px;
	height: auto;
	font-size: 16px;
	color: #fff;
	margin: 0 auto 7px auto;
}

.error {
	width: 80%;
	height: auto;
	font-size: 16px;
	color: #ff0000;
	margin: 0 auto;
	padding: 15px 0 0 0;
}

/* Under maintenance
****************************************************/

.mainte_box {
	width: 60%;
	height: auto;
	background: #000;
	color: #fff;
	margin: 0 auto;
	padding: 30px;
	position: absolute;
	top: 50%; /*親のtopから50%*/
	left: 50%; /*親のleftから50%*/
	transform: translateY(-50%) translateX(-50%); /*子要素自体の大きさを考慮*/
	box-sizing: border-box;
}

.mainte_box h5 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}

.mainte_box .txt {
	width: 80%;
	height: auto;
	font-size: 18px;
	margin: 0 auto 15px auto;
}

/* success
****************************************************/

.success_box {
	width: 60%;
	height: auto;
	background: #000;
	color: #fff;
	margin: 0 auto;
	padding: 30px;
	position: absolute;
	top: 50%; /*親のtopから50%*/
	left: 50%; /*親のleftから50%*/
	transform: translateY(-50%) translateX(-50%); /*子要素自体の大きさを考慮*/
	box-sizing: border-box;
}

.success_box h5 {
	position: relative;
	padding: 15px;
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}

.success_box h5::before {
	position: absolute;
	bottom: 8px;
	left: calc(50% - 30px);
	width: 60px;
	height: 3px;
	content: '';
	border-radius: 3px;
	background: #a56d35;
}

.success_box .txt {
	width: 80%;
	height: auto;
	font-size: 18px;
	margin: 0 auto 15px auto;
	text-align: center;
}

/* Access
****************************************************/

h5.access_heading {
	display: block;
	font-size: 24px;
	font-weight: bold;
	color: #a56d35;
	margin: 0 auto 20px auto;
	text-align: center;
}

.access_txt {
	width: 80%;
	height: auto;
	font-size: 18px;
	margin: 0 auto 30px auto;
}

.gmap {
	width: 80%;
	height: auto;
	margin: 0 auto 10px auto;
	text-align: center;
}

.to_gmap {
	width: 80%;
	height: auto;
	margin: 0 auto 40px auto;
	text-align: right;
}

.access_flex_container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: auto;
	margin: 0 auto 50px auto;
}

.access_flex_img {
	width: 30%
	height: auto;
}

.access_flex_img img {
	width: 90%;
	height: auto;
}

.access_flex_item {
	width: 70%;
	height: auto;
	background: #eceae6;
	margin: 0;
	padding: 55px 70px;
	box-sizing: border-box;
}

.access_flex_item span.br {
	display: block;
}

.logo_yoko {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

h5.address {
	position: relative;
	font-size: 28px;
	margin-bottom: 20px;
}

h5.address::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #a56d35;
	bottom: -3px;
	width: 8%;
}

h5.traffic {
	width: 80%;
	font-size: 20px;
	border-bottom: 1px solid #333;
	margin: 0 auto 25px auto;
}

/* サイトマップ
****************************************************/

.sitemap_flex_container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 80%;
	height: auto;
	margin: 0 auto 100px auto;
}

.sitemap_flex_item1 {
	width: 20%;
	height: auto;
}

.sitemap_flex_item2 {
	width: 40%;
	height: auto;
}

.sitemap_flex_container a {
	color: #333;
	text-decoration: none;
}

.sitemap_flex_container a:hover {
	text-decoration: underline;
}

/* PageTop
****************************************************/

.pagetop {
	background: #000;
	text-align: center;
}

.arrow-top {
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	display: inline-block;
	transform: rotate(-45deg);
	width: 10px;
	height: 10px;
}

/* マージン
=================================================*/

.mb25 {
	margin-bottom: 25px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb80 {
	margin-bottom: 80px;
}

.mb100 {
	margin-bottom: 100px;
}
}
