@charset "UTF-8";
/* CSS Document */

/*--------------------
Base
---------------------*/
@font-face {
　　font-family: "fot-tsukuardgothic-std", sans-serif;
　　font-weight: 700;
　　font-style: normal;
 }

html{
	font-size:62.5%;/*16px×62.5%=10px*/
}

body{
	color:#000000;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-feature-settings: "palt";
	font-size: 1.6rem;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

img{
	max-width:100%;
	height: auto;
}

input,textarea{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	color:#000000;
	font-size: 1.6rem;
	outline: none;
}
.text-center{
	text-align: center;
}

a:link {
	color:#000000;
	text-decoration: none;
}

.link:hover {
  text-decoration: underline #000000 0.5px;
}

a:visited {
	color:#000000;
}

/*--------------------
header
---------------------*/

.header{
	position:sticky;
	display: block;
	top: 0;
	left: 0;
	z-index: 100;
	box-sizing: border-box;
	width:100%;
	height: auto;
	padding: 12px 20px;
	background-color: #FFF8DC;
}

.site-title{
	width: 95px;
}


nav {
    position:sticky;
    width: 100%;
    z-index: 10;
	background-color: #FFF8DC;
}

.nav-list {
    /*最初はナビゲーションボタンは非表示*/
    display: none;
    list-style:none;
}

.nav-item{
	margin: 40px 0 40px;
}

.nav-item>a{
	color:#000000;
	font-size: 1.6rem;
	text-transform: capitalize;
	text-decoration: none;
	text-align: center;
}

.hamburger {
    position: absolute;
    top: 20px;
    right:20px;
    cursor: pointer;
    width: 20px;
    height: 10px;
    z-index: 10;
}
.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #000000;
    width:100%;
    z-index: 10;
	border-radius: 2px;
}

.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}

/*--------------------
footer
---------------------*/
.footer{
	box-sizing: border-box;
	width:100%;
	height: 40px;
	background-color: #FFF8DC;
	color:#000000;
	margin: auto 0;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 1.2rem;
}


/*--------------------
hero
---------------------*/

.hero_image{
	display: flex;
	width: 100%;
	align-items: center;
	padding-bottom: 30px
}

.hero_image_l{
	width: 75%;
}

.hero_image_r{
	width: 25%;
	margin: 0px 20px;
}

/*--------------------
about
---------------------*/
.image_top{
	width: 120px;
	text-align: center;
	margin: 0 auto;
}

.hero{
	padding: 20px;
}

.hero_section{
	background-color: #FFF8DC;
	border-radius: 20px;
	padding: 30px;
}

.hero_head{
	font-size: 2.0rem;
	text-align:  center;
	padding-bottom: 30px;
}

.hero_subhead{
	font-size: 1.4rem;
	line-height: 2.8rem;
}

/*--------------------
main
---------------------*/
.main{
	padding: 50px 20px 40px;
}

.section{
	padding-bottom: 80px;
}

.section-head{
	padding-bottom: 20px;
}

.lowpage-title{
	font-size: 2.4rem;
	color: #9B6633;
}

/*--------------------
Room
---------------------*/
.room_image{
	padding: 0 30px;
}

.room_main{
	padding-bottom: 10px;
}

.room_image_sub{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	padding-bottom: 20px
}

.room_sub{
	width: 32%;
}

.section_head{
	font-size: 2.0rem;
	line-height: 3.0rem;
	text-align: center;
	padding: 0 30px 40px;
}

.section_title{
	font-size: 2.0rem;
	text-align: center;
	padding: 0 30px 20px;
}

.section_subhead{
	font-size: 1.2rem;
	line-height: 2.4rem;
	padding: 0 30px 40px;
}

.room_attention{
	background-color: #FFF8DC;
	border-radius: 20px;
	padding: 30px;
}

.room_subhead_1{
	font-size: 1.2rem;
	line-height: 2.4rem;
	padding-bottom: 20px;
}

.room_subhead_2{
	font-size: 1.2rem;
	line-height: 2.4rem;
}

/*--------------------
Reserve
---------------------*/
.reserve_subhead{
	font-size: 1.2rem;
	line-height: 2.4rem;
	text-align: center;
	padding: 0 30px 20px;
}

.fas_button_radius{
	width: 200px;
	height: 50px;
	background: #FFF8DC;
	border: none;
	border-radius: 10px;
	color: #000000;
	font-size: 2.0rem;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	cursor: pointer;
	transition: background-color 1s;
}

.fas_button_radius:hover{
	background: #9A6633;
}

.fas_button_radiu:focus,
.fas_button_radiu:active {
  background-color: black;
  transition: none;
}

.btm{
	text-align: center;
}

.btm_c{
	text-align: center;
}

/*--------------------
contact
---------------------*/

.contact_image{
	width: 100%;
	padding-top: 20px;
}

.access{
	font-size: 1.6rem;
	line-height: 3.2rem;
	text-align: center;
	padding: 40px 30px;
}

.access_subhead{
	font-size: 1.4rem;
	line-height: 2.8rem;
	padding: 0 30px 40px;
	text-align: center;
}

.access_subhead-2{
	font-size: 1.4rem;
	line-height: 2.8rem;
	padding: 0 30px 20px;
	text-align: center;
}

/*--------------------
Link
---------------------*/

.link_image{
	display: flex;
	justify-content: space-around;
	width: 100%;
	align-items: center;
}

.link_image_sub{
	width: 135px;
}

.name{
	font-size: 1.2rem;
	line-height: 1.6rem;
	text-align: center;
	padding-top: 10px;
}

.sponsor_image{
	width: 90px;
	display: inline-block;
	text-align: center;
}

/*--------------------
タブレットサイト
---------------------*/

@media screen and (min-width:450px) {
    /*　画面サイズが450pxからはここを読み込む　*/
	
.section_subhead{
	font-size: 1.4rem;
	line-height: 2.8rem;
}
	
.room_subhead_1{
	font-size: 1.4rem;
	line-height: 2.8rem;
}

.room_subhead_2{
	font-size: 1.4rem;
	line-height: 2.8rem;
}

.reserve_subhead{
	font-size: 1.4rem;
	line-height: 2.8rem;
}
	
.contact_pc{
	display: flex;
	justify-content: space-around;
	width: 100%;
}
	
.contact_image{
	width: 60%;
	display: flex;
  　flex-direction: column;
	align-items: flex-start;
}
	
.contact_section{
	display: flex;
    flex-direction: column;
}
	
.access{
	padding-top: 0px;
}

.link_image_sub{
	width: 150px;
}

.name{
	font-size: 1.4rem;
	line-height: 1.8rem;
	padding-top: 20px;
}
	
.sponsor_image{
	width: 115px;
}

}

/*--------------------
PCサイト
---------------------*/

@media screen and (min-width:1025px) {
    /*　画面サイズが960pxからはここを読み込む　*/

/*--------------------
header
---------------------*/

.header{
	position:sticky;
	display: block;
	top: 0;
	left: 0;
	z-index: 100;
	box-sizing: border-box;
	width:100%;
	height: auto;
	padding: 25px 100px;
	background-color: #FFF8DC;
}

.site-title{
	width: 188px;
}

.header-inner{
	display: flex;
    justify-content: space-between;
	align-items: center;
}

.nav-list{
	display: flex;
    justify-content: flex-end;
	font-size: 1.5rem;
	text-transform: capitalize;
}

.nav-item{
	margin: 0 0 0 50px;
}
	
.hamburger{
	display: none;
}	
	
/*--------------------
footer
---------------------*/
.footer{
	box-sizing: border-box;
	width:100%;
	height: 120px;
	background-color: #FFF8DC;
	color:#000000;
	margin: auto 0;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 2.0rem;
}
	
/*--------------------
hero
---------------------*/
.hero_image{
	padding-bottom: 90px;
}
	
.hero_image_r{
	margin: 0px 100px;
}
	
/*--------------------
about
---------------------*/
.image_top{
	width: 300px;
}
	
.hero{
	padding: 90px 100px;
}
	
.hero_section{
	border-radius: 50px;
	padding: 60px 90px;
}
	
.hero_head{
	font-size: 2.7rem;
	padding-bottom: 45px;
}

.hero_subhead{
	font-size: 2.0rem;
	line-height: 4.0rem;
}
	
/*--------------------
main
---------------------*/
.main{
	padding: 60px 100px 180px;
}

.section{
	padding-bottom: 180px;
}

.section-head{
	padding-bottom: 60px;
}

.lowpage-title{
	font-size: 3.6rem;
}
	
/*--------------------
Room
---------------------*/

.room_pc{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 60px
}
	
.room_image{
	width: 100%;
}
	
.section_head{
	font-size: 2.8rem;
	padding: 0 50px 60px 45px;
}
	
.br-reverse{
	display: none;
}
	
.section_title{
	font-size: 2.4rem;
	padding: 0 50px 25px 45px;
}

.section_subhead{
	font-size: 2.0rem;
	line-height: 4.0rem;
	padding: 0 50px 60px 45px;
}

.room_attention{
	border-radius: 50px;
	padding: 60px 90px;
}

.room_subhead_1{
	font-size: 2.0rem;
	line-height: 4.0rem;
	padding-bottom: 45px;
}

.room_subhead_2{
	font-size: 2.0rem;
	line-height: 4.0rem;
}

/*--------------------
Reserve
---------------------*/
.reserve_subhead{
	font-size: 2.0rem;
	padding-bottom: 60px;
}
	
.fas_button_radius{
	width: 320px;
	height: 80px;
	border-radius: 20px;
	font-size: 2.4rem;
}
	
/*--------------------
contact
---------------------*/
	
.contact_pc{
	display: flex;
	width: 100%;
}
	
.contact_image{
	padding-top: 0px;
	width: 47%;
}
	
.contact_section{
	padding-left: 45px;
}
	
.access{
	font-size: 2.4rem;
	line-height: 3.6rem;
	padding: 0 0 45px;
}

.access_subhead{
	font-size: 2.0rem;
	line-height: 4.0rem;
	padding: 0 0 45px;
}

.access_subhead-2{
	font-size: 2.0rem;
	line-height: 4.0rem;
	padding: 0 0 25px;

}
	
/*--------------------
Link
---------------------*/

.link_image_sub{
	width: 240px;
}

.name{
	font-size: 2.0rem;
	line-height: 3.2rem;
	padding-top: 25px;
}

.sponsor_image{
	width: 200px;
}

	
}
