@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
/*共通*/
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
#wrapper {
	font-family: 'Noto Sans JP', sans-serif;
}
html {
	scroll-behavior: smooth;
}
a:hover img {
	opacity: 0.8;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1, Style=0, Opacity=80);
}
.red {
	color: #ff0000;
}
:root {
	--ssky: #2bc5fb;
	--ssky2: #c2eef7;
	--spurple: #7655ac;
	--sorange: #fd9230;
	--spink: #fb5c9c;
	--spink2: #fff4fc;
	--jblue: #0065d6;
	--grey: #444;
	--red: #ff0000;
	--subfont: "Kosugi Maru", sans-serif;
}
.small {
	font-size: .8em;
}
article img {
	width: 100%;
}
.noWrap {
	white-space: nowrap;
}
section {
	background-color: var(--ssky2);
	position: relative;
}
section::before {
	position: absolute;
	content: "";
	top: -1em;
	width: 100%;
	height: 4.5em;
	background: url(../images/bg2.png) repeat-x center / contain;
	transform: rotate(-15deg);
	z-index: 2;
}
article .inner {
	max-width: 970px;
	margin: 0 auto;
	padding: 4em clamp(0.5rem, 0.254rem + 1.23vw, 1rem);
	position: relative;
	z-index: 3;
}
section#intro::before {
	content: none;
}
/*ナビゲーション*/
article nav {
	background: var(--ssky);
	text-align: center;
	padding: 2px 0 7px 0;
}
article nav li {
	display: inline-block;
	margin: 5px 5px 0 5px;
}
article nav li a {
	display: inline-block;
	background: #fff;
	font-size: clamp(0.75rem, 0.658rem + 0.46vw, 0.938rem);
	font-weight: 700;
	line-height: 1;
	padding: .4em .6em;
	border-radius: 15px;
}
/*ボタン*/
.btnWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	row-gap: 1em;
	margin: 1em 0;
}
.btnWrap .Btn {
	width: calc((100% - 2em) / 2);
}
.btnWrap2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	row-gap: 1em;
	margin-top: 1em;
}
.btnWrap2 .Btn {
	width: calc((100% - 2em) / 2);
}
.Btn a {
	color: #fff;
	text-align: center;
	position: relative;
	display: block;
	font-weight: 700;
	padding: .5em .8em;
	background: var(--sorange);
	box-shadow: 1px 1px 3px var(--grey);
	border-radius: 1.5em;
	transform: translate(0, 0);
	transition: all .2s;
}
.Btn a:hover {
	box-shadow: 0px 0px 0px var(--grey);
	transform: translate(1px, 1px);
}
.Btn a::after {
	content: "";
	border-top: solid 2px;
	border-right: solid 2px;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 50%;
	right: 12%;
	translate: 100% -50%;
	transform: rotate(45deg);
}
/*メインタイトル*/
section h2 {
	max-width: fit-content;
	font-family: var(--subfont);
	font-size: clamp(1.375rem, 1.129rem + 1.23vw, 1.875rem);
	line-height: 1;
	color: var(--jblue);
	font-weight: 900;
	margin: 0 auto 1.2em;
	border-radius: .6em;
	position: relative;
	padding: .5em 1.2em;
	background: #fff;
	box-shadow: 2px 2px 2px #999;
}
section h2::before {
	content: "";
	background: url(../images/flower1.png) no-repeat center / contain;
	position: absolute;
	width: 1.6em;
	height: 1.6em;
	top: -16px;
	left: -12px;
	filter: drop-shadow(1px 1px 2px #999);
}
section h2::after {
	content: "";
	background: url(../images/flower2.png) no-repeat center / contain;
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	bottom: -12px;
	right: -7px;
	filter: drop-shadow(1px 1px 2px #999);
}
/*導入#intro*/
#intro .inner {
	padding-top: 2.5em;
}
/*お申込みはこちら#apply*/
#apply h2 + p {
	max-width: 800px;
	margin: 0 auto;
}
#apply details {
	margin: 0 auto 2.5em;
}
#apply summary {
	max-width: 800px;
	margin: 0 auto;
	background: var(--sorange);
	font-size: 1.2em;
	font-weight: 800;
	color: #fff;
	padding: .3em;
	cursor: pointer;
	list-style-type: none;
	position: relative;
	text-align: center;
}
#apply summary span {
	margin-right: 1em;
}
#apply summary::marker, #apply summary::-webkit-details-marker {
	display: none;
}
#apply summary::after {
	content: "";
	position: absolute;
	width: .7em;
	height: .7em;
	border-left: solid 2px #fff;
	border-bottom: solid 2px #fff;
	display: inline-block;
	top: 50%;
	translate: 0 -70%;
	transform-origin: center;
	transform: rotate(-45deg);
	transition: all .4s;
}
#apply details::details-content {
	interpolate-size: allow-keywords;
	height: 0;
	opacity: 0;
	overflow: clip;
	transition: all .4s allow-discrete;
}
#apply details[open]::details-content {
	opacity: 1;
	height: auto;
}
#apply details[open] summary::after {
	translate: 0 -30%;
	transform: rotate(135deg);
}
/* height:0→autoへのアニメーションが対応していない場合は、固定値にアニメーションさせる */
/*@supports not (interpolate-size: allow-keywords) { 
	#apply details[open]::details-content {
		height: 50vh;
		overflow-y: scroll;
	}
}*/
#apply summary + div {
	max-width: 800px;
	margin: auto;
	background: var(--sorange);
	padding: 0 1em 1em 1em;
}
#apply details dl {
	padding: 1em;
	background: #fff;
}
#apply details dt {
	font-weight: 800;
}
#apply details dd {
	margin: 0 0 .5em 1em;
}
#apply h3 {
	font-family: var(--subfont);
	font-size: 1.6em;
	font-weight: 900;
	margin: 0 auto 0.5em;
	color: var(--spurple);
	-webkit-text-stroke: 5px #fff;
	text-stroke: 5px #fff;
	paint-order: stroke;
	text-align: center;
	align-items: center;
	display: flex;
	justify-content: center;
}
#apply h3::before, #apply h3::after {
	content: "～";
}
#apply h3::before {
	margin-right: .3em;
}
#apply h3::after {
	margin-left: .3em;
}
.detailsBox2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	margin: 1.5em auto 3em;
	gap: 2em;
}
.detailsBox2 > li {
	background: #fff;
}
.detailsBox2 > li > p {}
.detailsBox2 > li > h4 {
	font-size: 1.2em;
	font-weight: 800;
	text-align: center;
	background-color: var(--spink);
	color: #fff;
	padding: .3em;
}
.detailsBox2 > li > h4 + div {
	padding: .8em 1em 0 1em;
}
.note2 {
	border: solid 2px var(--spink);
	font-size: .9em;
	padding: .5em 1em;
	margin: .5em auto .8em;
	border-radius: 6px;
	background: var(--spink2);
}
.note3 {
	margin: -32px 0 0 0;
	text-align: right;
	font-size: .8em;
}
/*白浜イベント情報 #info 白浜おすすめスポット#suggest*/
.detailsBox3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	margin: .5em auto 3em;
	gap: 2em;
}
.detailsBox3 li {
	background: #fff;
	padding: 0 0 .8em 0;
}
.detailsBox3 h3 {
	font-size: 1.2em;
	font-weight: 800;
	letter-spacing: .05em;
	text-align: center;
	background-color: var(--spink);
	color: #fff;
	padding: .3em;
}
.detailsBox3 p {
	padding: .8em 1em 0 1em;
}
.detailsBox3 dl {
	padding: .8em 1em 0 1em;
	display: grid;
	grid-template-columns: 4em 1fr;
}
#suggest .detailsBox3 dl {
	grid-template-columns: 5em 1fr;
}
.detailsBox3 dt {
	font-weight: 800;
}
#suggest .Btn a {
	font-size: 1.4em;
	max-width: 500px;
	margin: auto;
}
/*その他おすすめ#recommendation*/
#other a {
	display: block;
	margin: 2% auto 0;
	width: min(370px, 75%);
}
@media screen and (max-width: 759.9px) {
	.spnone {
		display: none !important;
	}
	article {
		font-size: 14px;
		line-height: 1.5;
	}
	/*メインビジュアル*/
	.titlePc {
		display: none !important;
	}
	/*↓↓削除不可*/
	#wrapper {
		line-height: 1.4;
	}
	#dirPathBlock, #anchorLinkBlock {
		font-size: 10px;
		margin: 1% 1% 0 1%;
	}
	#dirPathBlock p, #anchorLinkBlock a {
		font-size: 12px;
	}
	h1 {
		font-size: 12px;
		margin: 0 1%;
	}
	/*↑↑削除不可*/
}
/*760px以上*/
@media screen and (min-width: 760px), print {
	.pcnone {
		display: none !important;
	}
	article {
		line-height: 1.6;
		font-size: 15px;
	}
	.btnWrap2 {
		max-width: 750px;
		margin: 1em auto 0;
	}
	.btnWrap2 .Btn {
		width: calc((100% - 3em) / 3);
	}
	.note1 {
		min-height: 5em;
	}
	section::before {
		top: 0;
		transform: rotate(-11deg);
	}
	/*メインビジュアル*/
	.titlePc img {
		min-height: 480px;
		object-fit: cover;
		object-position: center;
	}
	.titleSp {
		display: none !important;
	}
	#other .inner div {
		display: flex;
		justify-content: space-between;
	}
	/*↓↓削除不可*/
	#wrapper {
		line-height: 1.231;
	}
	#dirPathBlock, h1, .iframe_end-content_gadget, #anchorLinkBlock {
		width: 100%;
		max-width: 970px;
		min-width: 760px;
		margin: auto;
	}
	/*panlist&back*/
	#dirPathBlock, #anchorLinkBlock {
		width: 100%;
		margin: 10px auto;
		display: block;
		font-size: 12px;
	}
	#dirPathBlock p, #anchorLinkBlock a {
		font-size: 12px;
	}
	h1 {
		font-size: 14px;
		width: auto;
		max-width: 970px;
		margin: 0 auto 5px;
	}
	/*↑↑削除不可*/
}