@charset "utf-8";

/* 共通**************ここから************************************************************************* */
/* 基本設定： ページ全体 */
html {
	scroll-behavior: smooth;
}



body {
	font-family: "Zen Maru Gothic", sans-serif;
	width: 100%;
	font-size: 16px;
	margin: 0 auto 0 auto;
	/* overflow-x: hidden; */

}

/* ***********レスポンシブ************************************************* */
@media screen and (max-width: 800px) {
	body {
		margin: 0 auto 0 auto;
	}
}



/* ********************************************************** */

img {
	max-width: 100%;
}

/* ヘッダー領域 */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255, 255, 255, 1);

}

/* コンテナ */
header .container {
	display: flex;
	/* Flexboxでレイアウト */
	justify-content: space-between;
	/* 左右に分ける */
	align-items: center;
	/* 垂直方向に中央揃え */
	width: 100%;
	height: 70px;

}

/* ロゴボックス */
.logo-box {
	display: inline-block;
	margin-top: 5px;
	margin-left: 5px;
}

.headA img {
	max-width: 500px;

}

/* ナビゲーション */
#navi {
	display: flex;
	/* ナビゲーションアイテムを横並びに */
	align-items: center;
	/* 垂直方向に中央揃え */
	/* color: #a94442; */
	color: #000;

}

#navi ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	background-color: #fff;
	/* color: #a94442; */
	color: #000;
	display: flex;
	/* リストアイテムを横並びに */
}

#navi>ul>li {
	position: relative;
}

#navi>ul>li>a {
	/* color: #a94442; */
	color: #000;
	padding: 15px 20px;
	display: block;
	text-decoration: none;
}

#navi>ul>li:hover>a {
	background-color: rgba(0, 0, 0, 0.2);
}

/* ドロップダウンメニュー */
#navi>ul>li>.dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(255, 255, 255, 0.2);
	min-width: 200px;
}

#navi>ul>li:hover>.dropdown {
	display: block;
}

#navi>ul>li>.dropdown>li>a {
	/* color: rgb(90, 33, 33); */
	color: #000;
	text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
	padding: 10px;
	display: block;
	text-decoration: none;
}

#navi>ul>li>.dropdown>li>a:hover {
	background-color: rgba(0, 0, 0, 0.2);

}

/* アクティブ線付けるやつ */
#navi ul li a.active {
	border-bottom: solid 1px #a94442;
	color: #000;

}


/* ******ナビゲーションレスポンシブデザイン ************************************************************/

.headC {
	/* 800px以下で表示するため */
	display: none;
	/* 背景と枠消してアイコンだけ見せる */
	background: none;
	border: none;
	font-size: 24px;
	/* マウスオーバーのときにクリックできる*/
	cursor: pointer;
	/* 他のレイアウトとかぶらんようにする*/
	margin-right: 20px;
	z-index: 101;
}

/* レスポンシブ時に表示 */
@media screen and (max-width: 1100px) {

	/* トップロゴの大きさ */

	.headA {
		max-width: 90%;
		max-height: 60px;
	}


	.headC {
		display: block;
		margin-left: auto;
	}

	#navi ul {
		flex-direction: column;
		align-items: center;
		display: none;
		position: absolute;
		top: 60px;
		right: 0;
		background-color: #fff;
		width: 100%;
	}

	#navi.nav-open ul {
		display: flex;
	}

	#navi>ul>li {
		text-align: center;
	}

	#navi>ul>li>.dropdown {
		position: static;
	}

	/* 2階層目（ドロップダウン）を完全に非表示 */
	#navi>ul>li>.dropdown {
		display: none !important;
	}

}


/* 共通**************ここまで************************************************************************* */







/*------メイン画像領域-------------------------------------------*/
.main-image {
	position: relative;
	top: 60px;
	width: 100%;
	height: 100vh;
	text-align: center;
	margin-bottom: 60px;
}

/*------ SKYメインイメージ ------------*/
.main-image .left-box {
	position: absolute;
	z-index: 5;
	right: 44%;
	left: 0;
	/* 写真くっつけたい場合↓ */
	/* right: 40%; */
}

/* -------------------PARKメインイメージ ----------------------*/
.main-image .right-box {
	position: absolute;
	z-index: 2;
	left: 44%;
	right: 0;
	/* 写真くっつけたい場合↓ */
	/* left: 30%; */
}

.main-image img {
	width: 100%;
	height: 100vh;
	background-size: cover;

}

.main-image .left-image {
	clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}

.main-image .right-image {
	clip-path: polygon(25% 0%, 100% 0, 100% 100%, 0% 100%);
}


/* --jquery ------------------------------*/
.image {
	display: none;
	transition: opacity 0.5s ease;
}

.image.show {
	display: block;
}

.image.hide {
	display: none;
}




/* メインイメージテキスト */
.main-image .main-massege {
	width: 80%;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	font-size: 2vw;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
	color: #fff;
	line-height: 3rem;
}

.main-image .main-massege p {
	text-shadow: 2px 2px 10px black,
		-2px 2px 10px black,
		2px -2px 10px black,
		-2px -2px 10px black;

}

.main-image .image-text {
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	/* テキストを最前面に */
	color: white;
	/* 背景画像の上でも見えるように */
	/* margin-top: 0;
	margin-bottom: 10px; */
	/* font-size: 5vw; */
	font-size: 7.5vw;
	letter-spacing: 0.2em;
	margin-left: 0.2em;
	text-decoration: none;
}

/* --------SKY ---------------------------------------*/
.main-image .left-text {
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	/* テキストを最前面に */
	color: white;
	/* 背景画像の上でも見えるように */

	text-shadow: 2px 2px 10px black,
		-2px 2px 10px black,
		2px -2px 10px black,
		-2px -2px 10px black;
}

/*-------- PARK -------------------------*/
.main-image .right-text {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	/* テキストを最前面に */
	color: white;
	/* 背景画像の上でも見えるように */

	text-shadow: 2px 2px 10px black,
		-2px 2px 10px black,
		2px -2px 10px black,
		-2px -2px 10px black;
}


.small-main {
	display: none;
}



/* レスポンシブ */
/* レスポンシブ時に表示 */
@media screen and (max-width: 800px) {
	.main-image {
		display: none;
	}

	.small-main {
		/* ↓出現させる ↓*/
		display: block;
		width: 100%;
		height: 100vh;
		background-image: url(../images/main_sky_3.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
	}

	.small-main p {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #fff;
		font-size: 2vw;
		letter-spacing: 0.1em;
		color: #fff;
		line-height: 3rem;
		text-shadow: 2px 2px 10px black,
			-2px 2px 10px black,
			2px -2px 10px black,
			-2px -2px 10px black;
	}
}


/*----------------info領域------------------------------------*/
.info {
	display: flex;
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto 0 auto;
	/* ↓ちょうどよくリンクが飛ぶところ */
	scroll-margin-top: 100px;


}

.info .oshirase-box {
	flex: 0 0 60%;


}

.info .calendar-box {
	flex: 0 0 40%;

}



/* ----.infoの文字 ----*/
.info .h2-font {
	text-align: left;
	font-size: 2rem;
	margin-left: 20px;
	color: #a94442;


}

.info .h2-span {
	font-size: 1rem;

}

/* -------おしらせ -----------------------------------------------*/
/* ----------おしらせ テーブル--------------------------------------------------*/


.news-table {
	max-width: 100%;
	border-collapse: collapse;
	/* color: rgb(90, 33, 33); */
	color: #000;
	margin: 0 auto;

}

.news-table tr {
	border-bottom: 1px solid #eee;
}

.news-table td {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 0px;

	vertical-align: middle;
	text-align: left;
}

.news-table .date {
	width: 100px;
	font-size: 0.9rem;
}

.news-table .label {
	background-color: #f9c8a7;
	color: #a94442;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 12px;
	padding-right: 12px;

	border-radius: 20px;
	font-size: 0.8rem;
	display: inline-block;
}

.news-table .text {
	padding-left: 0;
	font-size: 1rem;
}


/*---- キャレンダー -----------------------------------------------------------*/
.calendar-box .calendar-area {
	text-align: center;
	margin-bottom: 20px;
}

.calendar-box .calendar {
	width: 350px;
	height: 250px;
}

.calendar-box .calendar:hover {
	opacity: 0.8;
}

/* レスポンシブ ***********************/
@media screen and (max-width: 800px) {
	.info {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 100%;
		padding: 0 15px;


	}

	.info .oshirase-box,
	.info .calendar-box {
		flex: 0 0 100%;
		width: 100%;
		margin-bottom: 20px;

	}



	.info .h2-font {
		font-size: 1.5rem;
		text-align: center;
		margin-left: 0;
	}

	.info .h2-span {
		font-size: 0.9rem;
		display: block;
		text-align: center;
	}



}


/*----gallery領域-----------------------------------------------------*/

.gallery {
	max-width: 100%;
	overflow: hidden;
	position: relative;

	/* ↓ちょうどよくリンクが飛ぶところ */
	scroll-margin-top: 200px;
}

.carousel {
	display: flex;
	width: calc(100% * 32);
	/* 画像枚数に応じて変更 */
	animation: slide 300s linear infinite;
	list-style: none;
	padding: 0;
	margin: 0;
}

.item {
	flex: 0 0 auto;
	width: 300px;
	/* 表示領域に合わせて調整 */
}

.item img {
	width: 100%;
	height: 350px;
	display: block;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-4500px);
	}
}



/* ------グルメ領域---------------------------------------------------------*/
.food {
	max-width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto 0 auto;
	display: flex;
	margin-bottom: 10px;
	color: #a94442;
	/* ↓ちょうどよくリンクが飛ぶところ */
	scroll-margin-top: 100px;
}


/* -----グルメ左---------------------------------------------------- */
.container-left {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;

	padding-top: 40px;
	padding-bottom: 40px;
	padding-right: 0;
	padding-left: 0;
}

.container-left .text-wrapper {
	position: relative;
	width: 100%;
	/* max-width: 600px; */
	text-align: center;
	margin-bottom: 30px;
}

.container-left .background-image {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background-image: url(../images/hottoke-ki.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	opacity: 0.2;
	z-index: 0;
}

.container-left .food-text {
	position: relative;
	z-index: 1;

	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;
	text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}

.container-left .food-text h2 {
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: 10px;

}

.container-left .food-text p {
	margin-bottom: 0;
	line-height: 1.5rem;
	/* color: rgb(90, 33, 33); */
	color: #000;

}

.container-left .food-photo {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.container-left .food-photo img {
	border-radius: 50%;
	box-shadow: 2px 2px 3px #000;
	width: 200px;
	height: 200px;
	object-fit: cover;
}



/* ----グルメ右-----------------------------------------*/
.container-right {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
}

.container-right .text-wrapper {
	position: relative;
	width: 100%;
	/* max-width: 600px; */
	text-align: center;
	margin-bottom: 30px;
}

.container-right .background-image1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background-image: url(../images/pasuta.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	/* opacity: 0.3; */
	z-index: 0;
}

.container-right .food-text {
	position: relative;
	z-index: 1;
	padding: 40px 20px;
	text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}

.container-right .food-text h2 {
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: 0;


}

.container-right .food-text p {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.5rem;
	/* color: rgb(90, 33, 33); */
	color: #000;


}

.container-right .food-photo {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.container-right .food-photo img {
	box-shadow: 2px 2px 3px #000;
	width: 300px;
	height: 200px;
}

.container-right .food-photo img:hover {
	opacity: 0.8;
}



/* レスポンシブ **************************************************************************************/
@media screen and (max-width: 800px) {
	.food {
		flex-direction: column;
		align-items: center;
		width: 100%;
		/* padding: 0 15px; */
		/* text-align: center; */
	}

	.food .container-left,
	.food .container-right {
		flex: 0 0 auto;
		width: 100%;
		margin-bottom: 20px;
	}
}


/*----- youtube------------------------------------------------------------- */
.youtube-box {
	width: 100%;
	max-width: 1000px;

	height: auto;
	margin: 0 auto 0 auto;
	display: flex;
}

.youtube-box .youtube-image:hover {
	opacity: 0.8;
}

.youtube-box .youtube-image {
	flex: 0 0 60%;
}

.youtube-box .youtube-wrapper {
	flex: 0 0 40%;
}

.responsive-iframe {
	width: 100%;

}

.youtube-box .youtube-wrapper {
	position: relative;
	width: 100%;
	/* max-width: 600px; */
	text-align: center;
	margin-bottom: 30px;
	color: #a94442;
	text-shadow: 1px 1px 0 #000, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}

.youtube-box .youtube-text h2 {
	font-size: 2rem;
	line-height: 2.5rem;

}

.youtube-wrapper .youtube-text p {
	text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
	/* color: rgb(90, 33, 33); */
	color: #000;
}


.youtube-box .background-image2 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background-image: url(../images/akaibotan.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	opacity: 0.3;
	z-index: 0;
}





/* *****レスポンシブ **********************************/
@media screen and (max-width: 800px) {
	.youtube-box {
		flex-direction: column;
		align-items: center;
		width: 100%;
		text-align: center;
	}

	.youtube-box .youtube-image,
	.youtube-box .youtube-wrapper {
		flex: 0 0 auto;
		width: 100%;
		margin-bottom: 20px;
	}

	.responsive-iframe {
		position: relative;
		width: 100%;
		padding-bottom: 56.25%;
		/* 16:9の比率 */
		height: 0;
		overflow: hidden;
	}

	.responsive-iframe iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 0;
	}

}



/*--- フッター領域 --------------------------------------------------------*/
footer {
	width: 100%;
	height: auto;
	margin-top: 30px;
	background-image: url(../images/footer-copy.webp);
	background-repeat: repeat-x;
	background-size: contain;
	color: #a94442;
}

footer .container {
	padding-top: 200px;
	padding-bottom: 40px;

}


footer .container {
	display: flex;
	flex-wrap: wrap;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}


.footA .footer-text h2 {

	margin-bottom: 10px;
}

.footB {
	flex: 0 0 100%;
}

.footC {
	flex: 0 0 100%;
}


/* フッターA領域 */
.footA {
	display: flex;
	margin-bottom: 30px;

}

.footA h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 3rem;
	letter-spacing: 0.2em;
}

.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #000;
}

.footA a {
	/* color: rgb(90, 33, 33); */
	color: #000;
	text-decoration: none;
}

.footA .footer-right {
	display: flex;
	flex-direction: column;

}

.footA .sns-icon {
	display: flex;
	gap: 30px;
	margin-top: 10px;
}

.footA .sns-icon img {
	width: 100px;
	height: 100px;
}




.footA .sns-icon a:hover {
	opacity: 0.8;
}


/* フッターB領域 */
.footB .footB_menu {
	margin-bottom: 20px;
}

.footB h3 a {
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: solid 1px #a94442;
	font-size: 1.2rem;
	color: #a94442;
	;
}

.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footB a {
	display: block;
	padding: 5px;
	/* color: rgb(90, 33, 33); */
	color: #000;
	font-size: 0.8rem;
	text-decoration: none;
	line-height: 1.5rem;
}

.footB a:hover {
	background-color: rgba(0, 0, 0, 0.3);
}


.footB {
	display: flex;
}

.footB .footB_menu {
	flex: 1;
	margin-right: 20px;
}



/* フッターC領域 */
.footC {
	font-size: 12px;
	text-align: center;
	color: #000;
}



/* *****レスポンシブ **********************************/
@media screen and (max-width: 800px) {
	footer .container {
		padding-top: 100px;
	}

	footer .container .footB {
		flex-direction: column;
		width: 100%;
		/* padding: 0 15px; */
		text-align: center;
	}

	.footB .footB_menu {
		margin-bottom: 0px;
	}

	footer .container .footB h3 a {
		display: inline-block;
		width: 70%;
	}

	footer .container .footB ul li {
		display: none;
	}

	footer .container .footA {
		flex-direction: column;
		width: 100%;

		text-align: center;

	}

	footer .container .footA img {
		width: 50%;
		margin: 0 auto 0 auto;

	}

	.footA .sns-icon {
		gap: 0px;
	}

	.footA .sns-icon a {
		width: 100%;
		height: 100%;

	}

}

/* --右下のgotop--------------------------- */
.gotop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1;

}

.gotop:hover {
	opacity: 0.8;
}

.gotop img {
	width: 100px;
	height: 100px;
}

/* レスポンシブ *****************************************************************************/
@media screen and (max-width: 800px) {
	.gotop {
		display: none;
	}
}