@charset "utf-8";
@import url("https://use.typekit.net/uuf8erg.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*--------------------------------------
  リセット
--------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
	display: block;
}

a {
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

img {
	vertical-align: top;
	border: 0;
}

button {
	font-size: 100%;
}

.clear {
	clear: both;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

input,
textarea {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
	table-layout: fixed;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

pre {
	overflow: auto;
}
strong {
	font-weight: bold;
}
.s {
	font-size: 72%;
    font-weight: inherit;
}
.ss {
	font-size: 68%;
    font-weight: inherit;
}
.m {
    font-size: 94%;
}
.l {
    font-size: 120%;
	font-weight: inherit;
}
.ll{
	font-size: 150%;
	font-weight: inherit;
}
.xl{
	font-size: 180%;
	font-weight: inherit;
	line-height: 1.1;
}
.bb {
    font-weight: 700;
    font-size: 130%;
}
.b{
	font-weight: 700;
}
.bk{
	font-weight: 800;
}

span {
	font-weight: inherit;
}

* {
	margin: 0;
	padding: 0;
	
}
p:last-child {
	margin-bottom: 0;
}
h1,h2,h3,h4,h5{
	font-weight: 600;
	line-height: 1.5;
}

/*--------------------------------------
  クリアフィックス
---------------------------------------*/
.clearfix:after {
	visibility: hidden;
	height: 0;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
}

* html .clearfix {
	zoom: 1;
}

*:first-child+html .clearfix {
	zoom: 1;
}

/*--------------------------------------
  画像
--------------------------------------*/
img {
	max-width: 100%!important;
	height: auto;
	transition: all .3s ease;
}
/*--------------------------------------
  リンク
--------------------------------------*/
a {
	color: inherit;
	transition: all .3s ease;
}

a:hover {
	
}
/*--------------------------------------
  全体定義
--------------------------------------*/

:root {
	--color-blue: #1472e2;
	--color-blue2: #e9f4ff;
	--color-white: #fff;
	--color-yellow: #ffe600;
	--color-bk: #222222;
	--color-br: #847867;
	--color-red: #dd0e0e;
	--color-red2: #ffceca;
	--color-gray: #f7f7f7;
	--color-green: #4daa33;
	--color-green2: #e8f9e1;
	--color-orange: #e8990c;
	--color-orange2: #fcf3e6;
	--color-beige:#f4f1ea;
	--color-pink:#f45162;
}
html{
	
}
body {
	font-family: Arial,'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
    color: var(--color-br);
    font-weight: 400;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
	padding: 0;
}

.futura{
	font-family: futura-pt, sans-serif;
}


#wrapper {
	overflow-x: hidden;
}


.fc_white {
	color: var(--color-white);
}
.fc_blue {
	color: var(--color-blue);
}
.fc_bk {
	color: var(--color-bk);
}
.fc_red {
	color: var(--color-red);
}
.fc_red2 {
	color: var(--color-red2);
}
.fc_yellow {
	color: var(--color-yellow);
}
.fc_green {
	color: var(--color-green);
}
.fc_orange {
	color: var(--color-orange);
}


.bg01{
	background-color: var(--color-white);
}
.bg02{
	background-color: var(--color-gray);
}
.bg03{
	background-color: var(--color-br);
}


.marker_yellow {
    background: linear-gradient(transparent 40%, #fffb66 40%);
}

/*--------------------------------------
  header
--------------------------------------*/
#header {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.h_inner {
    width: 90%;
    margin: 0 auto;
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: block;
    width: 260px;
}

#nav {
    margin-left: auto;
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
}
ul.navi {
    display: flex
;
    align-items: center;
    color: #fff;
}

ul.navi li {
	margin-left: 30px;
}
ul.navi li a {
    font-size: 20px;
    display: block;
	text-shadow: 1px 1px 8px #444;
}
ul.navi li a:hover {
	opacity: 0.8;
}
.h_btn {
    margin-left: 30px;
    width: 160px;
}

.h_btn a {
    display: block;
    background: var(--color-br);
	color: #fff;
    text-align: center;
    padding: 6px 0;
    border-radius: 50px;
    font-weight: 600;
}
.h_btn a:hover {
	color: var(--color-br);
	background: #fff;
}

/*--------------------------------------
  FV
--------------------------------------*/
#fv {
    position: relative;
}

:root{
  --slide-duration: 6000ms;
  --fade-duration: 2000ms;
  --zoom-scale: 1.12;
}

.hero_slider {
  height: 100vh;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100vw;
	position: relative;
}
.slick-img img {
    max-width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/*
.hero_slider_sp {
	display: none;
}
*/


/*--------------------------------------
  Contents
--------------------------------------*/


.contents_block {
    padding: 80px 0;
    position: relative;
}
.inner {
	margin: 0 auto;
	max-width: 1200px;
	width: 90%;
	position: relative;
}


.sub_en{
	font-family: futura-pt, sans-serif;
	font-size: 40px;
	text-align: center;
	
}
.ttl {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
	margin-bottom: 70px;
}
.slash {
	position: relative;
}

.slash::before, .slash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    background: url(../images/slash.webp) no-repeat;
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
}
.slash::after {
    transform: scale(-1, 1);
    left: auto;
    right: -2rem;
}

p {
	line-height: 2.0;
}

/*--------------------------------------
  About
--------------------------------------*/
.about_box {
    margin: 0 auto;
    max-width: 720px;
    width: 100%;
}
.about_box p {
	margin-bottom: 2.4rem;
}

/*--------------------------------------
  Rooms
--------------------------------------*/

.room_box {
	display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 120px;
}
.room_img {
    width: 60%;
}
.room_cont {
    width: 34%;
	margin-top: 30px;
}

.room_box:nth-child(odd) {
    flex-direction: row-reverse;
}

.room_cont h3 {
    font-size: 180%;
    margin-bottom: 20px;
}

.room_cont h3 span {
    font-size: 75%;
}


/*--------------------------------------
  gallery
--------------------------------------*/
.txt_box {
    margin: 0 auto;
    max-width: 720px;
    width: 100%;
}
.txt_box p {
	margin-bottom: 2.4rem;
	text-align: center;
}


/*--------------------------------------
  Footer
--------------------------------------*/

/*--------------------------------------
  Access
--------------------------------------*/
.gmap {
	width: 100%;
	height: 450px;
}
.gmap iframe {
	width: 100%;
	height: 100% !important;
	
}

.access_cont {
    margin-top: 30px;
}

.access_cont .ico_access {
	width: 20px;
	display: inline-block;
	margin-right: 10px;
}
.access_cont ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
	
}
.access_cont li {
	width: 49%;
	box-sizing: border-box;
}



/*--------------------------------------
  Contact
--------------------------------------*/


.contact_btn {
    max-width: 300px;
    margin: 0 auto;
    width: 90%;
}

.contact_btn a {
    display: flex
;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    padding: 20px 0;
    font-weight: 500;
}

.contact_btn a:hover {
	background: var(--color-br);
	color: #fff;
}


/*--------------------------------------
  Reserve
--------------------------------------*/
ul.res_list {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

ul.res_list li {
    width: 48%;
    margin-bottom: 30px;
}
ul.res_list li a {
}


ul.res_rooms {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.res_rooms li {
    width: 47%;
    box-sizing: border-box;
    background: #fff;
    padding: 50px;
    margin-bottom: 20px;
	box-shadow: 0 1px 10px #ddd;
}
.res_rooms_img {
    margin-bottom: 30px;
}

.res_r_ttl {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 40px;
    font-size: 130%;
}
.res_link {
    width: fit-content;
    margin: 0 auto;
}
.res_link a {
    display: block;
    font-size: 120%;
    padding: 5px;
}

.res_link a:hover {
    text-decoration: underline;
}



/*--------------------------------------
  Footer
--------------------------------------*/

.f_nav {
    background: var(--color-blue);
    color: #fff;
	padding: 15px 0; 
}

ul.f_menu {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
}

ul.f_menu li {
    margin-right: 36px;
}
ul.f_menu li a {
    display: block;
    font-weight: 600;
    position: relative;
}
ul.f_menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    margin: auto;
    width: 10px;
    height: 10px;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
ul.f_menu li:last-child {
    margin: 0;
}
.copy {
    background:var(--color-br);
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 16px 0;
}

ul.sns_list {
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 10px 0 0;
}

ul.sns_list li {
    width: 24%;
    box-sizing: border-box;
    text-align: center;
}
ul.sns_list li a {
    display: block;
}
ul.sns_list img {
    width: 28px;
}


/*--------------------------------------
  Contact
--------------------------------------*/
#form_area table {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}

#form_area th {
    width: 32%;
    box-sizing: border-box;
	vertical-align: middle;
}
#form_area td {
    width: 70%;
    box-sizing: border-box;
    padding: 18px 10px;
}

input[type="text"],textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    padding: 10px;
}
.btn_area {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 460px;
    margin: 30px auto 0;
}
.btn_area input {
	width: 48%;
	-webkit-appearance: none;
    appearance: none;
    font-family: inherit;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
    border: 0;
    background: #ddd;
    padding: 16px 0;
    font-size: 18px;
}

.btn_back {
    margin: 0 auto;
    width: 200px;
    text-align: center;
}

.btn_back a {
    display: block;
    text-align: center;
    font-weight: 500;
    border: 1px solid;
    padding: 10px 0;
    font-size: 92%;
}
.btn_back a:hover {
    background: var(--color-br);
    color: #fff;
}



@media screen and (max-width:820px) {

#wrapper {
    width: 100%;
    margin: 0 auto;
}	
	

#header {
    position: fixed;
    top: 0;
    left: auto;
    width: 100%;
}	
.btn_menu {
    position: fixed;
    top: 10px;
    right: 5%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 999;
	background: #fff;
}
.btn_menu span {
    display: inline-block;
    transition: all .3s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    background-color: var(--color-br);
}
.btn_menu span:nth-of-type(1) {
    top: 26px;
    width: 50%;
}
.btn_menu span:nth-of-type(2) {
    top: 34px;
    width: 50%;
}
.btn_menu.active span:nth-of-type(1) {
    top: 24px;
    transform: translateY(6px) rotate(-45deg);
}

.btn_menu.active span:nth-of-type(2) {
    top: 36px;
    transform: translateY(-6px) rotate(45deg);
}
	
	
#nav {
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 110vh;
    display: block;
    background: rgba(255,255,255,0.95);
    transform: translateX(100%);
    transition: all .3s ease;
	text-align: center;
	box-sizing: border-box;
	padding: 100px 30px 30px 30px;
	
}
#nav.active {
    transform: translateX(0);
}	
	
	
ul.navi {
    display: block;
}

ul.navi li {
    margin: 0 0 12px;
}
ul.navi li a {
    font-size: 26px;
	padding: 10px 0;
	color: var(--color-br);
	text-shadow: none;
}	

.h_btn {
    display: block;
    margin: 60px auto 20px;
    width: 260px;
}

.h_btn a {
    font-size: 26px;
    padding: 12px 0;
}	
	
	
.room_img,.room_cont {
	width: 100%;
}	
	
	
.hero_slider {
  height: 48vh;
}	
.slick-img img {
    height: 48vh !important;
    object-fit: cover;
}	
	
/*	
	
.hero_slider {
	display: none;
}
.hero_slider_sp {
	display: block;
}	*/
	
	
}

@media screen and (max-width:599px) {

body {

}	
	
.logo {
    display: block;
    width: 172px;
    filter: drop-shadow(0px 0px 3px #666);
}	

.btn_menu {
    width: 54px;
    height: 54px;
    top: 0;
    right: 0;
}
	
.btn_menu span:nth-of-type(1) {
    top: 22px;
}	
.btn_menu span:nth-of-type(2) {
    top: 30px;
}
.btn_menu.active span:nth-of-type(1) {
    top: 22px;
}	
.btn_menu.active span:nth-of-type(2) {
    top: 34px;
}	

ul.navi li a{
	font-size: 18px;

}	
.h_btn a {
	font-size: 18px;
}	
.h_btn {
    margin-top: 30px;
}	
	
	
	
.contents_block {
    padding: 45px 0;
}	
.ttl {
    margin-bottom: 40px;
}
.txt_box p {
    text-align: left;
}	
	
	
.access_cont li {
    width: 100%;
    margin-bottom: 20px;
}
.\33 Dmap iframe {
    height: 400px !important;
}
.gmap {
    height: 400px;
}	
	
	
ul.res_rooms li {
    width: 100%;
	padding: 30px;
}	
	
	
	
}





