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

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

::before , ::after {
	box-sizing: inherit;
}

html {
	 font-size: 62.5%; /* font-sizeは16pxの62.5%の10px */
}

@media screen and (min-width: 599px) {
    html {
        font-size: 75%;
    }
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem; /*font-size : 14px と同等*/
}

h1 {
	font-size: 5.6rem; /* font-size: 56px と同等 */
}

h2 {
	font-size: 2.8rem; /* font-size: 28px と同等 */
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

th,td {
    border: solid 1px;              /* 枠線指定 */
}
 
table {
    border-collapse:  collapse;     /* セルの線を重ねる */
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/***************** ヘッダー *****************/
header {
	height: 6.0rem;
	width: 100%;
	background-color: #fff;
	z-index: 10;
	position: fixed;
	top: 0px;
    left: 0px;
	text-align: center;
}

.menu {
	display: inline-block;
	width: auto;
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 2px;
}

/*共通 横並びのための設定*/
.gnavi{
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    margin:0 0 5.0rem 0;
    list-style: none;
}

.gnavi li a{
    display: block;
    padding:2.0rem 3.0rem;
    text-decoration: none;
    color: #381a12;
}

.gnavi li{
    margin-bottom:2.0rem;
}

/*中心から外に線が伸びる（中央）*/
.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top:50%;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background: #381a12;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.s-menu {
	display: none;	/*スマホメニュー非表示*/
}

.s-menu a {
	color: #000;
}

.nav {
	width: 100%;
	background: rgba(255,255,255,0.9);
	position: fixed;
	text-align: center;
	top: 6.0rem;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s, visibility .5s;
}

.nav li {
	padding: 1.5rem;
}

.nav.show {
	opacity: 1;
	visibility: visible;
}





@media screen and (max-width: 599px) {
    .gnavi {
        display: none;
    }
	
	.s-menu {
		display: block;
		text-align: right;
		width: 100vw;
		font-size: 2.4rem;
		padding: 1.2rem 2.0rem;
	}
	
	.scrolldown2 {
		display: none;
	}
}


/***************** スライダー *****************/
#slider {
	position: relative;
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-text img {
	width: 25rem;
	margin-bottom: 30px;
}

.slider-text {
	position: absolute;
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	color: #fff;
	letter-spacing: 3px;
	text-align: center;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.slider-text h3 {
	font-size: 1.2rem;
}

.slider-text h2 {
	padding-top: 10px;
	font-size: 2.2rem;
}

.reserve-btn {
	position: relative;
	overflow: hidden;
	display: inline-block;
	padding: 10px 30px;
	border: solid #fff 1px;
	margin-top: 80px;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 1px;
	/*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.reserve-btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#fff;
}

.reserve-btn:hover span{
	color:#000;
}

/*== 背景が流れる（中央から横全体） */
.reserve-btn:before {
	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#fff;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.reserve-btn:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-3px;
    /*丸の形状*/
	width:8px;
	height:8px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width: 2px;
	height: 50px;
	background:#eee;
}




/***************** コンテンツ *****************/
.contents {
	height: auto;
	background: #fff;
	text-align: center;
}

.covid-19 {
	display: none;
	width: auto;
	background: #381a12;
	padding: 20px 100px;
	margin-top: 80px;
	font-size: 1.3rem;
	letter-spacing: 2px;
	color: #fff;
}

/*ボタン内spanの形状*/
.covid-19 span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#f4d88d;
}

.covid-19:hover span{
	color: #fff;
	transition: 0.3s;
}


.covid-19:hover {
	background: #ad3e13;
	transition: 0.3s;
}


/*新型コロナウイルスに関してのお知らせ*/
.top-infomation {
	background: #fff;
	max-width: 1000px;
	margin: 100px auto;
	padding: 20px;
	border: solid 1px #ECECEC;
}

.top-infomation h3  {
	border-bottom: solid 1px #ECECEC;
	padding-bottom: 8px;
	margin-bottom: 10px;
	text-align: left;
	font-size: 2.0rem;
	font-weight: 600;
	color: #b02d0e;
}

.top-infomation p {
	text-align: left;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 2.5rem;
}

.top-infomation-content {
	background: #f7f7f7;
	text-align: left;
	padding: 20px;
	margin-top: 20px;
	line-height: 2.1rem;
}

.top-infomation-content strong {
	font-size: 1.2rem;
}

.top-infomation-content li {
	font-size: 1.2rem;
	font-weight: 300;
	margin: 12px 0px;
}


.container {
	max-width: 1000px;
	height: auto;
	display: flex;
	flex-wrap:wrap;
	align-items:top;
	text-align: left;
	margin: 0 auto;
}

.contents-left {
	width: 50%;
}

.contents-right {
	width: 50%;
}

.contents-right img {
	width: 100%;
	max-width: 721px;
}

.contents-left h3 {
	font-weight: 500;
	font-size: 1.5rem;
	color: #000;
	background: #f7f7f7;
	margin-right: 0px;
	padding: 10px;
}

.contents-left p, .container p {
	font-size: 1.2rem;
	font-weight: 300;
	padding-right: 2.5rem;
	line-height: 2.5rem;
}

.contents-bottom-wrap  {
	background: #f7f7f7;
	margin-top: 100px;
	text-align: center;
}

.contents-bottom {
	max-width: 1000px;
	margin: 100px auto;
}

.contents-bottom h3 {
	font-size: 2.7rem;
	font-weight: 300;
	color: #b02d0e;
	letter-spacing: 0.15rem;
}

.contents-bottom span {
	font-size: 1.2rem;
	padding-right: 7px;
	padding-left: 20px;
	color: #b02d0e;
}

.contents-bottom ul {
	margin-top: 40px;
	margin-bottom: 40px;
	
}

.contents-bottom li {
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.15rem;	
	line-height: 2.5rem;
}

.contents-bottom p {
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 2.5rem;
	margin-bottom: 50px;
	letter-spacing: 0.1rem;
}

.top-img {
	width: 30%;
	min-width: 320px;
	margin: 0 auto;
	padding-bottom: 30px;
}

.top-img img {
	width: 100%;
}





@media screen and (max-width: 599px) {
   .container {
       flex-wrap: wrap;
   }
	
	.contents {
		padding: 0px 2.5rem;
	}
	
	.top-infomation {
		width: 100%;
		
	}
	
	.contents-left {
		width: 100%;
	}
	
	.contents-left h3 {
		margin-right: 0px;
	}
	
	.contents-left p {
		padding-right: 0px;
	}

	.contents-right {
		width: 100%;
		margin: 30px 0px;
	}
	
	.contents-bottom-wrap {
		padding: 0 2.5rem;
		text-align: left;
	}
}





/***************** フッター *****************/
footer {		
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	align-items: center;
	flex-wrap: wrap;
	background: #b02d0e;
	height: auto;	
	padding: 20px;
	margin-top: auto;
	
}

.footer-wrap {
	display : -webkit-box;     /* old Android */
	display : -webkit-flex;    /* Safari etc. */
	display : -ms-flexbox;     /* IE10        */
	display : flex;
	align-items: center;
	flex-wrap: wrap;
	width: auto;
	margin: 0 auto;
	
}

.footer-left {
	padding-right: 50px;
	text-align: left;
	font-size: 1.2rem;
	color: #fff;
}

.footer-left p {
	line-height: 1.9rem;
}

.footer-left img {
	width: auto;
	height: 80px;
	text-align: center;
	margin: 8px 5px;
}

.footer-left a {
	color: #fff;
}

.footer-right {
	width: auto;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 400;
	color: #fff;
}

.footer-left span {
	padding-right: 5px;
	font-size: 1.0rem;
}

.footer-access {
	margin-top: 10px;
	
}

.footer-access td {
	padding: 7px;
	border: 1px solid #fff;
	font-size: 1.1rem;
	font-weight: 400;
}

.footer-access th {
	padding: 7px;
	border: 1px solid #fff;
	font-size: 1.1rem;
}


@media screen and (max-width: 599px) {
	.footer-left{
		margin: 0 auto;
		padding-bottom: 15px;
		padding-right: 10px;
		text-align: center;
	}
	
	.footer-right {
		margin: 0 auto;
	}
	
}




/***************** トップに戻るボタン *****************/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#381a12;
	border-radius: 25px;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.5rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 15px;
	bottom:15px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



/***************** メニューページ *****************/
.menu-top {
	position: relative;
	height: 40.0rem;
	background-image: url('img/pixta_48328255_XL.jpg');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.menu-toptext {
	position: absolute;
	width: 90%;
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	color: #fff;
	letter-spacing: 3px;
	text-align: center;
	top: 23.0rem;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.menu-toptext h3 {
	font-size: 1.4rem;
}

.menu-toptext h2 {
	font-size: 2.2rem;
}

.menu-contents {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	height: auto;
	background:  #fff;
	text-align: left;
	padding: 100px 0px;
}

.menu-title {
	letter-spacing: 0.1rem;
	font-weight: 600;
	font-size: 1.8rem;
	color: #b02d0e;
	padding-bottom: 2rem;
}

.menu-main {
	margin-top: 50px;
	font-size: 1.2rem;
	line-height: 2.4rem;
}

.menu-main p {
	margin-bottom: 50px;
	font-size: 1.2rem;
	line-height: 2.5rem;
	font-weight: 300;
}

.table-menu {
	width: 100%;
	margin-bottom: 40px;
}

.table-menu table {
	border: none;
	
}

.table-menu th {
	border: none;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	padding-left: 1.0rem;
	padding-right: 1.0rem;
}

.table-menu tr:nth-child(odd) {
	border: none;
	background: #ECECEC;
}

.table-menu td {
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	padding-left: 0.3rem;
	padding-right: 0.3rem;
	border: none;
	border-bottom: none;
	text-align: center;
}

.menu-text {
	font-size: 1.2rem;
	line-height: 2.5rem;
	font-weight: 300;
}

@media screen and (max-width: 599px) {
	.menu-top {
	position: relative;
	height: 40.0rem;
	background-image: url('img/48328255.jpg');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
	
}



/***************** アクセスページ *****************/
#access {
	display : block;
	height: auto;
	width: 90%;
	max-width: 1000px;
	background: #fff;
	margin: 0 auto;
	padding-top: 160px;
}

.access-top {
	display: inline-block;
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}

.access-title {
	border-left: 10px solid #b02d0e;
	padding: 0rem 1.2rem;
	letter-spacing: 0.1rem;
	font-size: 2.5rem;
	margin-bottom: 4rem;
}

.access-title2 {
	border-left: 10px solid #cccccc;
	padding: 0.2rem 1.2rem;
	letter-spacing: 0.1rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.access-top p {
	margin-top: 0.8rem;
	margin-bottom: 5.0rem;
	line-height: 2.5rem;
	font-size: 1.2rem;
}

.access-top a {
	color: #000;
}

.access-top span {
	padding-right: 0.5rem;
	font-weight: 600;
}

.noborder {
	border: 0px none;
	padding-right: 1.8rem;
}

.access-map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	margin-bottom: 200px;
	margin-top: 40px;
}

.access-map iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.pc-access td {
	width: 50%;
}

.s-access {
	display: none;
}


@media screen and (max-width: 599px) {
	.s-access {
		display: block;
	}	
	
	.pc-access {
		display: none;
	}
}

