@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #115f86;
	--primary-inverse-color: #fff;
	--primary-color-rgb: 17, 95, 134;
	--global-space: 3vw;
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {
		left: -200px;
	}

	100% {
		left: 0px;
	}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/*spinのキーフレーム設定（トップページの大きな円形の文字が回るアニメーション）
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {
	box-sizing: border-box;
}

html,
body {
	font-size: 16px;
}

@media screen and (min-width:900px) {

	html,
	body {
		font-size: 16px;
	}

}

body {
	margin: 0;
	padding: 0;
	/* font-family: "M PLUS 1", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	/* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: #f2f1f3 url('../images/bg.png') repeat center top / 150px;
	color: #333;
	line-height: 1.8;
	animation: opa1 0.2s 0.5s both;
}

/*reset*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav,
ul,
li,
ol {
	margin: 0;
	padding: 0;
}

nav {
	padding: 0 1vw;
}

nav ul {
	list-style: none;
}

input {
	font-size: 1rem;
}

ul,
ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

table {
	border-collapse: collapse;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/*videoタグ
video {max-width: 100%;}*/

iframe {
	width: 100%;
}

/*sectionが続く場合*/
section+section {
	margin-top: 8vw;
}

/*段落（全般） 設定
---------------------------------------------------------------------------*/
p {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 2rem;
	font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;
	transition: 0.3s;
}

a:hover {
	color: var(--primary-color);
	filter: brightness(1.2);
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: url('../images/bg1.png') no-repeat center top / 100%;
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: url('../images/bg2.png') no-repeat left top / 100%;
}


/*container
---------------------------------------------------------------------------*/
#container {
	overflow-x: hidden;
}


/*contents
---------------------------------------------------------------------------*/
#contents {
	padding: 6vw var(--global-space);
}

/*other
---------------------------------------------------------------------------*/
.notes {
	display: block;
	font-size: .75rem;
}

sup {
	font-size: .875rem;
}

/*ヘッダー
---------------------------------------------------------------------------*/
header h1 {
	font-weight: normal;
	margin: 0;
	padding: 0;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width:700px) {
	header h1 {
		display: none;
	}

}

/*ヘッダー内のheader-inner（ロゴ画像とメニューブロックを囲むボックス）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
}

/*トップページでのボックス*/
.home .header-inner {
	display: block;
}


/*ヘッダー内のロゴ
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	display: block;
}

#logo {
	margin: 0;
	padding: 0;
	width: 200px;
}

/*トップページのロゴ画像*/
.home #logo {
	width: 230px;
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
}

/*画面幅900px以下の追加指定*/
@media screen and (max-width:900px) {

	.home #logo {
		min-width: 120px;
		width: 20vw;
	}

}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
	display: block;
}

.small-screen #menubar.display-block {
	display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
	display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
	display: none;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";
	content: "\f078";
	/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;
	/*この手の設定がないとアイコンが出ない場合があります*/
	font-size: 0.7rem;
	/*文字サイズを70%に*/
	padding-right: 0.5rem;
	/*右側に空ける余白。0.5文字分。*/
}


/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	display: block;
	text-decoration: none;
}

/*小文字の英語部分*/
#menubar span {
	display: block;
	font-size: 0.7em;
	/*文字サイズを親要素の70%に*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くとる*/
	opacity: 0.6;
	/*透明度。色が60%出た状態。*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックを囲むボックス*/
.large-screen #menubar {
	flex: 1;
}

.large-screen #menubar>nav>ul>li:nth-of-type(1) {
	display: none;
}

.large-screen #menubar>nav>ul>li:nth-of-type(2) {
	margin-left: 10vw;
}

.large-screen #menubar>nav>ul>li:nth-of-type(6) {
	margin-right: 4vw;
}

/*メニューブロック全体の設定*/
.large-screen #menubar>nav>ul {
	display: flex;
	/*メニューを横並びにする*/
	justify-content: space-between;
	align-items: center;
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
	flex: 1;
	/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;
	/*ドロップダウンの幅となる基準を作っておく*/
	text-align: center;
	/*テキストをセンタリング*/
}

/*現在表示中メニュー（current）*/
.large-screen #menubar li.current>a {
	border-bottom: 2px solid var(--primary-color);
	/*下線の幅、線種、varは色のことでcss冒頭で指定しているprimary-colorを読み込みます。。*/
}

/*トップページの3個目のメニューへの指定　※html側で順番をカウントして下さい。*/
.home.large-screen #menubar>nav>ul>li:nth-of-type(3) {
	margin-left: 4vw;
}

/*トップページの4個目のメニューへの指定　※html側で順番をカウントして下さい。*/
.home.large-screen #menubar>nav>ul>li:nth-of-type(4) {
	margin-left: 25vw;
}

/*リンク（a要素）の設定*/
.large-screen #menubar li a {
	padding: 0.8rem 0;
	font-size: .875rem;
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;
	z-index: 2;
	width: 100%;
	top: 100%;
	left: 0px;
}

/*ドロップダウンメニュー1個あたりの上下、左右への余白。*/
.large-screen #menubar ul ul a {
	padding: 0.6rem 1rem !important;
	background: #fff;
	margin: 3px 3px 0;
	border-radius: 5px;
	border: 1px solid #ccc;
}

/*マウスオン時*/
.large-screen #menubar ul ul a:hover {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 100px;
	background: var(--primary-color) url('../images/bg_small_screen.png') no-repeat left bottom / 100vw;
	animation: animation1 0.2s both;
	color: var(--primary-inverse-color);
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
	margin: 1rem;
	/*メニューの外側に空けるスペース*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

.small-screen #menubar a {
	color: inherit;
	padding: 1rem 3rem;
	/*メニュー内の余白。上下、左右へ。*/
}

.small-screen #menubar li li a {
	background: var(--primary-inverse-color);
	color: var(--primary-color);
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	top: 5px;
	right: 2vw;
	width: 50px;
	height: 50px;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: rgba(0, 0, 0, 0.6);
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;
	/*線の太さ*/
	background-color: #fff;
	/*線の色*/
	border-radius: 2px;
	/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {
	top: 0;
}

#menubar_hdr div span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

#menubar_hdr div span:nth-child(3) {
	bottom: 0;
}

#menubar_hdr.ham div span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham div span:nth-child(2) {
	opacity: 0;
}

#menubar_hdr.ham div span:nth-child(3) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}


/*mainブロック
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	position: relative;
}

/*h2見出し*/
main h2 {
	position: relative;
	text-align: center;
	margin: 4rem 0 2rem;
	font-family: 'Noto Serif JP', 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', HGS明朝E, メイリオ, Meiryo, serif;
	font-size: clamp(1.625rem, 1.281rem + 1.72vw, 3rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.1em;
}

/*装飾用の小文字*/
main h2 .small {
	display: block;
	font-size: clamp(0.813rem, 0.734rem + 0.39vw, 1.125rem);
	font-weight: 200;
	margin-top: 1rem;
	letter-spacing: .2em;
}

main h2 .middle {
	display: block;
	font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
	opacity: 0.7;
	font-weight: 500;
	line-height: 1;
}

.h2_heading {
	margin: 3rem auto;
	font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}

@media screen and (min-width:900px) {
	.h2_heading {
		text-align: center;
	}
}

/*h3見出し*/
main h3 {
	font-family: 'Noto Serif JP', 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', HGS明朝E, メイリオ, Meiryo, serif;
	font-size: clamp(1.313rem, 1.203rem + 0.55vw, 1.75rem);
	letter-spacing: .08em;
	font-weight: 600;
	text-align: center;
	color: var(--primary-color);
	margin-top: 3vw;
}

.heading_sideline {
	display: flex;
	justify-content: center;
	align-items: center;
}

.heading_sideline::before,
.heading_sideline::after {
	content: '';
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
}

.heading_sideline::before {
	margin-right: 12px;
}

.heading_sideline::after {
	margin-left: 12px;
}

main h4 {
	font-family: 'Noto Serif JP', 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', HGS明朝E, メイリオ, Meiryo, serif;
	font-weight: 600;
}

/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents,
#footermenu {
	padding: 2rem var(--global-space);
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: rgba(var(--primary-color-rgb), 0.8) url('../images/bg_footer.png') no-repeat left bottom / auto 100%;
	color: var(--primary-inverse-color);
}

#footer-contents a {
	color: inherit;
}

#footer-contents .left {
	margin-bottom: 50px;
}

/*ブロック内で使うbtnの設定*/
#footer-contents .btn a {
	border: 2px solid var(--primary-inverse-color);
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	#footer-contents {
		display: flex;
		gap: var(--global-space);
		justify-content: center;
	}

	#footer-contents .left {
		margin-bottom: 0;
		width: 50%;
		max-width: 450px;
	}

	#footer-contents .right {
		width: 50%;
		max-width: 450px;
	}

}

/*追加指定ここまで*/


/*footer-contents内のマップ。レスポンシブにする為のものなので、基本は編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}

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


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-size: 0.8rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: inherit;
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;
	list-style: none;
	padding: 0 0.3em;
	flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;
	/*太字にする*/
	padding-bottom: 5px;
	/*下に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
small {
	font-size: 100%;
}

footer {
	font-size: 0.7rem;
	background: #1d1b1b;
	color: #fff;
	text-align: center;
	padding: 1rem;
}

/*リンクテキスト*/
footer a {
	color: inherit;
	text-decoration: none;
}

/*著作部分*/
footer .pr {
	display: block;
}

#footer-contents .left h3 {
	margin-bottom: 0;
}

#footer-contents .left p {
	margin-bottom: .5rem;
}

/*フッター内list
---------------------------------------------------------------------------*/
ul.icons,
ul.info {
	list-style: none;
	margin: 1rem 0 0 0;
	padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;
	font-size: .875rem;
}

.icons i {
	font-size: 40px;
}


/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	border-radius: 3px;
	margin-bottom: 1rem;
	background: #fff;
	border: 1px solid #ccc;
	text-indent: -2rem;
	padding: 0.5rem 1em 0.5rem 3em;
	font-size: 1.125rem;
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";
	/*Font Awesomeを使う指定*/
	content: "\f059";
	/*アイコンのコード*/
	padding-right: 1rem;
	/*アイコンとテキストとの間のスペース*/
	color: var(--primary-color);
	/*アイコンの色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*回答*/
.faq dd {
	padding: 0 1rem 1rem 3rem;
	/*ボックス内の余白。上、右、下、左への順番。*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;
	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

/* list */
.list-grid1,
.list-flex,
.list-normal.flex,
.list-half,
.list-free,
dl.faq {
	max-width: 1600px;
	margin: 3vw auto;
}

/*list-normal（activities.htmlで使っているシンプルな２カラムボックス）
---------------------------------------------------------------------------*/
.list-normal * {
	margin: 0;
	padding: 0;
}

.list-normal.flex {
	display: flex;
	gap: 1rem;
}

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

	.list-normal.flex {
		flex-direction: column;
	}

}

/*ボックス１個あたり*/
.list-normal .list {
	display: flex;
	gap: 2vw;
	/* margin-bottom: 3vw; */
}

.list-normal .list.block {
	display: block;
}

.list-normal .list.reverse {
	flex-direction: row-reverse;
}

/*テキストブロック*/
.list-normal .text {
	flex: 1;
	padding: .1rem .5rem;
}

/*画像ブロック*/
.list-normal .image {
	width: 40%;
}

/*h4見出し*/
.list-normal h4,
.list-grid1 .list h4,
.list-flex .list h4 {
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--primary-color);
	line-height: 1.4;
	margin: .5rem 0 1rem;
	text-align: center;
}

.list-normal h4 a,
.list-grid1 .list h4 a,
.list-flex .list h4 a {
	color: inherit;
}


/*list-half（トップページの「人気のアクティビティスポット」で使っている左右にわかれた装飾ボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.list-half {
	display: flex;
	/*直接の子要素を横並びにする*/
	flex-direction: column;
	/*一旦縦並びにしておく*/
}

/*list-halfが続く場合に間にマージンを空ける*/
.list-half+.list-half {
	margin-top: 5vw;
	/*画面幅100%＝100vwです。*/
}

/*h3見出し*/
.list-half h3 {
	margin: 0;
	padding: 0;
	text-align: center;
	/*テキストをセンタリング*/
}

/*h4テキスト*/
.list-half h4 {
	font-weight: normal;
	margin: 0 0 1rem;
	font-size: 1.5rem;
	color: var(--primary-color);
	position: relative;
	padding-right: 100px;
}

/*h4テキスト右側の飾り画像*/
.list-half h4 .kazari {
	position: absolute;
	right: 0px;
	top: -5rem;
	width: 125px;
}

/*左右のラインの装飾*/
.list-half h3::before,
.list-half h3::after {
	content: "|";
	/*このテキストを出力します*/
	display: inline-block;
}

/*左のラインの装飾への追加設定*/
.list-half h3::before {
	transform: rotate(-30deg);
	/*回転角度*/
	margin-right: 0.5rem;
	/*右に空けるスペース*/
}

/*右のラインの装飾への追加設定*/
.list-half h3::after {
	transform: rotate(30deg);
	/*回転角度*/
	margin-left: 0.5rem;
	/*左に空けるスペース*/
}

/*h3テキスト内のアイコン*/
.list-half h3 i {
	margin-left: 0.5rem;
	/*左に0.5文字分のマージンを空ける*/
	font-size: 2rem;
	/*文字サイズ２倍*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	opacity: 0.6;
	/*透明度。60%だけ色を出す。*/
}

/*テキストブロック*/
.list-half .text {
	background: #fff;
	padding: 1rem .5rem;
	margin-bottom: 30px;
	border-radius: 1vw;
}

.list-half .text li {
	font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}


/*画面幅599px以下の追加指定（並び順を変更します。数字が小さな順に並びます。）*/
@media screen and (max-width:599px) {

	/*h3見出し*/
	.list-half h3 {
		order: 1;
	}

	/*画像ブロック*/
	.list-half .image {
		order: 2;
	}

	/*テキストブロック*/
	.list-half .text {
		order: 3;
	}

}

/*追加指定ここまで*/


/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	/*ボックス全体*/
	.list-half {
		flex-direction: row;
		/*縦並びから横並びにする*/
		justify-content: space-between;

		/*以下は変更不要*/
		/* margin-right: calc(-1 * var(--global-space));
		margin-left: calc(-1 * var(--global-space)); */
	}

	/*ボックス全体（※reverse用）変更不要*/
	.list-half.reverse {
		flex-direction: row-reverse;
		/*逆向きに並べる*/
		/* margin-left: calc(-1 * var(--global-space)); */
	}

	/*h3テキスト*/
	.list-half h3 {
		writing-mode: vertical-rl;
		/*縦書きの指定。*/
		text-orientation: upright;
		/*文字の向き*/
		font-size: 0.85rem;
		/*文字サイズを85%*/
		margin-top: 10vw;
		/*上に空けるスペース。画面幅100%＝100vwです。*/
	}

	/*上のラインの装飾への追加設定*/
	.list-half h3::before {
		transform: rotate(-60deg);
		/*回転角度*/
		margin-bottom: 0.5rem;
		/*下に空けるスペース*/
	}

	/*上のラインの装飾への追加設定（※reverse用）*/
	.list-half.reverse h3::before {
		transform: rotate(60deg);
		/*回転角度*/
	}

	/*下のラインの装飾への追加設定*/
	.list-half h3::after {
		transform: rotate(60deg);
		/*回転角度*/
		margin-top: 0.5rem;
		/*上に空けるスペース*/
	}

	/*下のラインの装飾への追加設定（※reverse用）*/
	.list-half.reverse h3::after {
		transform: rotate(-60deg);
		/*回転角度*/
	}

	/*h3テキスト内のアイコン*/
	.list-half h3 i {
		margin: 0;
		margin-top: 0.5rem;
		/*上に0.5文字分のマージンを空ける*/
	}

	/*テキストブロック*/
	.list-half .text {
		margin-bottom: 0;
		flex: 1;
		align-self: flex-start;
		margin-top: 8vw;
		position: relative;
		z-index: 1;
		margin-right: -10vw;
		box-shadow: 2vw 2vw rgba(var(--primary-color-rgb), 0.1);
		padding: 2vw 2vw 1vw;
	}

	/*テキストブロック（※reverse用）*/
	.list-half.reverse .text {
		margin-right: 0;
		margin-left: -10vw;
		box-shadow: -2vw 2vw rgba(var(--primary-color-rgb), 0.1);
	}

	/*画像ブロック*/
	.list-half .image {
		padding: 0;
		/*余白をリセット*/
		width: 50vw;
		/*幅。画面の50%*/
		border-radius: 3vw 0px 0px 3vw;
		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
		overflow: hidden;
	}

	/*画像ブロック（※reverse用）*/
	.list-half.reverse .image {
		border-radius: 0px 3vw 3vw 0px;
	}

}

/*追加指定ここまで*/


/*list-grid1（トップページの「今の季節に人気の観光地」で使っている３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list *,
.list-flex .list * {
	margin: 0;
	padding: 0;
}

.list-grid1 .list,
.list-flex .list {
	display: grid;
	margin-bottom: 1rem;
	padding: 1rem;
	grid-template-rows: auto 1fr auto;
}

.list-grid1 .list figure,
.list-flex .list figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}

.list-grid1 .list .text,
.list-flex .list .text {
	margin: -1rem;
	padding: 1.1rem .5rem;
}

.list-grid1 .list p,
.list-flex .list p {
	/* font-size: 1rem; */
	line-height: 1.5;
}

@media screen and (min-width:768px) {

	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.list-grid1 .list {
		margin-bottom: 0;
	}
}

/*list-free（destinations.htmlで使用しているレイアウトフリー用）
---------------------------------------------------------------------------*/
.list-free * {
	margin: 0;
	padding: 0;
}

/*list-freeボックス*/
.list-free {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 0;
	gap: 4vw;
}

.bg3 .list-free {
	margin-bottom: 0;
}

/*テキストブロック*/
.list-free .text {
	align-self: center;
	flex: 1;
}

/*h3見出し*/
.list-free h3 {
	letter-spacing: 0.1em;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
	position: relative;
	padding: 0 1rem;
	margin: 0 auto;
}

.list-free h3::before,
.list-free h3::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 50px;
	border: 1px solid var(--primary-color);
}

.list-free h3::before {
	top: -15px;
	left: -15px;
	border-right: none;
	border-bottom: none;
}

.list-free h3::after {
	bottom: -15px;
	right: -15px;
	border-left: none;
	border-top: none;
}

.list-free h4 {
	font-weight: 500;
	font-size: 1.3rem;
	color: var(--primary-color);
	margin-bottom: 0.5em;
}

.list-free .image {
	box-shadow: 0px 0px 30px rgba(var(--primary-color-rgb), 0.3);
}

.list-free .image>div {
	background: #fff;
	font-size: 0.7rem;
	padding: 1rem 2rem;
}

@media screen and (min-width:600px) {
	.list-free {
		flex-direction: row;
	}

	.list-free h3 {
		text-orientation: upright;
		padding: 0;
	}

	.list-free .w1 {
		width: 30%;
	}

	.list-free .w2 {
		width: 50%;
	}

	.list-free .order1 {
		order: 1;
	}

	.list-free .order2 {
		order: 2;
	}

	.list-free .order3 {
		order: 3;
	}

	.list-free .mt1 {
		margin-top: 10vw;
	}

	.list-free .mt2 {
		margin-top: 20vw;
	}

}

@media screen and (min-width:768px) {
	.list-free h3 {
		writing-mode: vertical-rl;
	}
}


/*ボタン（btn）
---------------------------------------------------------------------------*/
.btn a,
.bg3 .btn a {
	display: block;
	text-decoration: none;
	font-size: 1.5rem;
	text-align: center;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: 1rem !important;
	margin-top: 1rem !important;
}


/*bg3（トップページの「お知らせ」などで使っている背景）
---------------------------------------------------------------------------*/
.bg3,
.bg3::before {
	background: url('../images/bg3.svg') repeat-x center top / auto 50px;
}

/*背景ブロック全体*/
.bg3 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
}

.bg3::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0px;
	bottom: 0px;
	transform: scaleY(-1);
	/*上下反転*/
}

/*backgroundには、上で読み込む背景画像のカラーを抜き出して指定して下さい。*/
.bg3>div {
	padding: 1px;
	background: #daeaf0;
	padding-left: var(--global-space);
	padding-right: var(--global-space);
	padding-top: 3vw;
	padding-bottom: 5vw;
}

.bg3 a {
	color: inherit;
}


/*bg3内のh2で使うテキスト左右へのバブルの装飾
---------------------------------------------------------------------------*/
.kazari3-wrap {
	position: relative;
	display: inline-block;
}

/*左右の装飾の共通の設定*/
.kazari3-wrap::before,
.kazari3-wrap::after {
	content: "";
	position: absolute;
	top: 0px;
	width: 50px;
	height: 50px;
	background-image: url('../images/kazari3.svg');
	background-repeat: no-repeat;
	background-size: cover;
}

/*左の装飾への追加指定*/
.kazari3-wrap::before {
	left: -100px;
	/*左にずらす*/
}

/*右の装飾への追加指定*/
.kazari3-wrap::after {
	right: -100px;
	/*右にずらす*/
	transform: scaleX(-1);
	/*左右を反転させる*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	background: rgba(0, 0, 0, 0.02);
	/*背景色。0,0,0は黒のことで0.02は色が2%出た状態。*/
	overflow: hidden;
	margin-bottom: 4rem;
	/*ブロックの下に空けるスペース。4文字分。*/
}

/*奇数行目を背景色を少し濃くする。全体同じ色がよければここの数行は削除。*/
.new dt:nth-of-type(odd),
.new dd:nth-of-type(odd) {
	background: rgba(0, 0, 0, 0.04);
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;
	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;
	/*上、左右、下へのdd内の余白*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	margin-right: -1rem;
	text-align: center;
	line-height: 1.8;
	/*行間（アイコンの高さ）*/
	border-radius: 3px;
	/*角を丸くする指定*/
	padding: 0 0.5rem;
	/*上下、左右へのブロック内の余白*/
	width: 8rem;
	/*幅。8文字分。*/
	transform: scale(0.8);
	/*80%のサイズに縮小*/
	background: #fff;
	/*背景色*/
	color: #777;
	/*文字色*/
	border: 1px solid #999;
	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	border-color: transparent;
	/*枠線を出したくないので透明にする*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;
	/*背景色*/
	color: #fff;
	/*文字色*/
	border-color: transparent;
	/*枠線を出したくないので透明にする*/
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		/*gridを使う指定*/
		grid-template-columns: auto 1fr;
		/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	/*記事(dd)設定*/
	.new dd {
		padding: 1rem;
		/*dd内の余白*/
	}

}

/*追加指定ここまで*/


/*2・3カラム（main-contents、sub-contents設定）
---------------------------------------------------------------------------*/
/*main-contentsブロック*/
.main-contents {
	margin-bottom: 2vw;
	/*ボックスの下に空けるスペース*/
}

/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	margin: 0;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.sub-contents h3::first-letter {
	border-left: 3px solid var(--primary-color);
	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	/*カラムで使う為の指定*/
	main.column {
		display: flex;
		/*横並びにする*/
		justify-content: space-between;
		/*並びかたの種類の指定*/
		gap: 3vw;
		/*main-contentsとsub-contentsの間のマージン的な隙間*/
	}

	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		order: 2;
		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}

	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 210px;
		/*幅。お好みで変更して下さい。*/
	}

	/*1つ目のsub-contents*/
	.sub-contents:nth-child(2) {
		order: 1;
		/*並び順。数字の小さい順番に表示されます。*/
	}

	/*2つ目のsub-contents（※３カラムで使いたい場合用）*/
	.sub-contents:nth-child(3) {
		order: 3;
		/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}

}

/*追加指定ここまで*/


/*サブメニュー設定
---------------------------------------------------------------------------*/
.submenu * {
	margin: 0;
	padding: 0;
}

/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;
	/*上、左右、下へのマージン*/
	border-top: 1px solid #ccc;
	/*上の枠線の幅、線種、色*/
}

/*メニュー１個あたり*/
.submenu a {
	display: block;
	text-decoration: none;
	padding: 0.2rem 1rem;
	/*上下、左右へのメニュー内の余白*/
	background: #fff;
	/*背景色*/
}

/*メニュー１個あたり（子メニュー以外）*/
.submenu>li {
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
	border-top: none;
	/*上の線だけなくす*/
}

/*子メニュー*/
.submenu li li a {
	padding-left: 2rem;
	/*左に余白を空ける*/
}


/*box1
---------------------------------------------------------------------------*/
.box1 {
	padding: 1rem;
	/*ボックス内の余白*/
	margin-bottom: 1rem;
	/*ボックスの下に空けるスペース*/
	background: rgba(0, 0, 0, 0.05);
	/*背景色*/
	border: solid 1px #ccc;
	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;
	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}

/*box1内のsubmenuの下マージンをなくす*/
.box1 .submenu {
	margin-bottom: 0;
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view-parts {
	max-width: 1000px;
	/*最大幅*/
	margin: 0 auto 1rem;
	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;
	/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail-parts {
	display: flex;
	/*flexを使う指定*/
	justify-content: center;
	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;
	/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail-parts img {
	width: 100px;
	/*サムネイルの幅*/
	margin: 2px;
	/*サムネイル間のスペース*/
	cursor: pointer;
	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;
	/*マウスオンまでにかける時間。3秒。*/
}

.thumbnail-parts img:hover {
	opacity: 0.8;
	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*animation-text（トップページの大きな円形の文字が回るアニメーション）
---------------------------------------------------------------------------*/
/*サイズや場所の指定*/
.animation-text {
	position: absolute;
	z-index: -1;
	width: 100vw;
	/*画像の幅*/
	right: -50vw;
	/*画面の右半分に収まるように*/
	top: 25vw;
	/*上からの距離*/
}

/*アニメーションに関する指定*/
.spin {
	animation: spin 150s linear infinite;
	/*150s（150秒）が１回転する速度です。お好みで変更して下さい。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	/*太字に*/
	padding: 0.5rem 1rem;
	/*ボックス内の余白*/
	background: var(--primary-color);
	/*背景色*/
	color: var(--primary-inverse-color);
	/*文字色*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #999;
	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	/*幅*/
	margin-bottom: 1rem;
	/*テーブルの下に空けるスペース*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #999;
	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
	padding: 1rem;
	/*ボックス内の余白*/
	word-break: break-all;
	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;
	/*幅*/
	text-align: left;
	/*左よせにする*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	/*th（左側）のみの設定*/
	.ta1 th {
		width: 20%;
		/*幅*/
	}

}

/*追加指定ここまで*/


/*テーブル（ta2）activities_item.htmlの予約状況に使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	text-align: center;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-weight: bold;
	/*太字に*/
	padding: 10px;
	/*ボックス内の余白*/
}

/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 2rem;
	/*テーブルの下に空けるスペース*/
	text-align: center;
	/*センタリング*/
	background: #fff;
	/*背景色*/
	color: #333;
	/*文字色*/
}

.ta2,
.ta2 td,
.ta2 th {
	word-break: break-all;
	border: 1px solid #ccc;
	/*テーブルの枠線の幅、線種、色*/
}

/*曜日と午前午後*/
.ta2 th {
	background: #fffbe3;
}


/*テーブルを小さな端末で横スクロールさせる為の準備
---------------------------------------------------------------------------*/
/*テーブルを囲むブロック*/
.ta-box {
	overflow-x: auto;
	margin-bottom: 1rem;
}

/*ブロック内にあるta2のみ最小幅を設定*/
.ta-box .ta2 {
	min-width: 600px;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
	display: block;
}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	position: fixed;
	right: 20px;
	/* bottom: 20px; */
	bottom: 70px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0, 0, 0, 0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}




/*marker（マーカー風スタイル）
---------------------------------------------------------------------------*/
.marker {
	display: inline-block;
	background: linear-gradient(transparent 80%, yellow 80%);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.color-check,
.color-check a {
	color: #ff0000 !important;
}

.l {
	text-align: left !important;
}

.c {
	text-align: center !important;
}

.r {
	text-align: right !important;
}

.ws {
	width: 95%;
	display: block;
}

.wl {
	width: 95%;
	display: block;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb5vw {
	margin-bottom: 5vw !important;
}

.look {
	display: inline-block;
	padding: 0px 10px;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.small {
	font-size: 0.75em;
}

.large {
	font-size: 2em;
	letter-spacing: 0.1em;
}

.pc {
	display: none;
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	.ws {
		width: 48%;
		display: inline;
	}

	.sh {
		display: none;
	}

	.pc {
		display: block;
	}

}

/* section.scene
---------------------------------------------------------------------------*/
.scene .list-free {
	margin-bottom: 10vw;
}

.scene .list-free h3 {
	writing-mode: inherit;
	margin: 0 auto 1rem;
	max-width: 320px;
}

.scene .list-free h3::before,
.scene .list-free h3::after {
	width: 10px;
	height: 30px;
}

.list-free h3::before {
	top: 5px;
	left: 5px;
}

.list-free h3::after {
	bottom: 5px;
	right: 5px;
}

@media screen and (min-width:600px) {
	.scene .list-free h3 {
		margin: 0 0 20px;
	}

	.scene .list-free h3::before {
		top: 5px;
		left: 5px;
	}

	.scene .list-free h3::after {
		bottom: 5px;
		right: 5px;
	}


	.scene .list-free .text {
		position: relative;
	}
}

@media screen and (min-width:768px) {
	.scene .list-free {
		gap: 4vw;
		margin-top: 0;
		margin-bottom: 0;
	}

	.scene .list-free .text {
		position: relative;
	}

}

/* section.cando
---------------------------------------------------------------------------*/
.cando h3 {
	font-size: 1.325rem;
}

/* section.numbers
---------------------------------------------------------------------------*/
.numbers .notes {
	text-align: center;
}

.numbers .list-grid1 .list {
	background: #ffffff;
	padding: 2rem 0 1.5rem;
	border-radius: 25px;
}

.numbers h3.info-data-h3 {
	/* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	color: #333;
}

.numbers .list-grid1 .list .info-data p {
	font-size: 1.75rem;
	text-align: center;
	line-height: 1;
	letter-spacing: .1em;
}

.numbers .list-grid1 .list .info-data .info-number {
	font-size: 7rem;
	text-align: center;
	color: #115f86;
	font-weight: 600;
}

.numbers .list-grid1 .list .info-data .info-number.slim {
	font-size: clamp(5rem, 3.8rem + 6vw, 6.875rem);
	letter-spacing: -.05em;
}


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

	.numbers .list-grid1 {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (mim-width: 821px) {
	.numbers .list-grid1 .list .info-data .info-number.slim {
		font-size: 5.25rem;
		letter-spacing: -.05em;
	}
}

/* section.problem
---------------------------------------------------------------------------*/
.problem .list-grid1 {
	max-width: 1200px;
}

.problem .list-grid1 .list {
	align-items: end;
}

.problem .list-grid1 .list h3 {}

.problem .list-grid1 .list img {
	object-fit: cover;
	border-radius: 50%;
}

/* section.filter
---------------------------------------------------------------------------*/
.filter {
	max-width: 1600px;
	background: #fff;
	margin: auto;
	margin-top: 5vw;
	padding: 1rem 1rem 0;
	border-radius: 25px;
}

.filter .seal {
	max-width: 275px;
	margin: 0 auto 2rem;
}

.filter .list-normal.flex {
	display: flex;
	gap: 4rem;
	padding: 1rem 0;
}

.filter .list-normal .filter_img {
	position: relative;
}

.filter .list-normal .filter_img .icon {
	width: 50%;
	position: absolute;
	left: -8%;
	top: -7%;
}

.filter .list-normal .filter_img .img {}

.filter .list-normal figcaption {
	font-family: 'Noto Serif JP', 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', HGS明朝E, メイリオ, Meiryo, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #115f86;
	background: #f2f1f3;
	text-align: center;
	padding: .5rem;
	margin-bottom: .5rem;
}

.filter .list-normal .list {
	margin-bottom: 0;
}

@media screen and (min-width:1024px) {
	.filter {
		padding: 1rem 0 0 0;
	}

	.filter .seal {
		max-width: 350px;
		margin: 0 auto;
	}

	.filter .list-normal.flex {
		padding: 4rem;
		gap: 4rem;
	}

	.filter .list-normal .filter_img .icon {
		width: 40%;
		left: -2%;
	}

}

/* section.type
---------------------------------------------------------------------------*/
.type .osusume_h3 {
	position: absolute;
	display: flex;
	align-items: flex-start;
	flex-direction: row-reverse;
	top: 16px;
	right: 26px;
	z-index: 99;
	gap: 8px;
}

.type .osusume_h3 .sub {
	display: block;
	font-size: 1.125rem;
	background: #fff;
	writing-mode: vertical-rl;
	text-orientation: upright;
	padding: 4px 0;
}

.type .osusume_h3 .main {
	display: block;
	font-size: 1.325rem;
	background: #fff;
	writing-mode: vertical-rl;
	text-orientation: upright;
	padding: 4px 0;
}

.type .image {
	position: relative;
}

.type .image .img_product {
	position: relative;
	/* width: 90%;
	top: 5%;
	left: 2.5%; */
	border: 16px solid #ffffff;
}

.type .image .img_setup {
	position: absolute;
	top: 95%;
	left: 0;
	border: 16px solid #ffffff;
}

.type .list-grid1 .list figure {
	margin-bottom: 50%;
}

.type .list-grid1 .list figure figcaption {
	position: absolute;
	bottom: 0%;
	left: 5%;
	padding: 0 4px;
	font-size: .875rem;
	background: #fff;
}

.type .list-grid1.grid_modal .list .text {
	padding: 3.1rem 1rem 0;
	position: relative;
}

/* section.environment
---------------------------------------------------------------------------*/
.environment .list-free .text {
	align-self: center;
	flex: 1;
	box-shadow: 2vw 2vw rgba(var(--primary-color-rgb), 0.1);
	padding: 2vw;
	background: #fff;
	border-radius: 1vw;
}

/*  .list-grid1.grid_modal,
    .list-flex.grid_modal
---------------------------------------------------------------------------*/
.list-flex.grid_modal {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.list-grid1.grid_modal .list .text {
	padding: 1.1rem 1rem 0;
}

.list-grid1.grid_modal .list,
.list-flex.grid_modal .list {
	background: #ffffff;
	margin-bottom: 0;
	position: relative;
}

.list-flex.grid_modal .list .text {
	padding: 1rem;
}

.list-flex.grid_modal .list figure {
	margin: -1rem;
	margin-bottom: 1rem;
}


.list-flex.grid_modal .list .modal__wrap {
	padding: 1rem 0 0;
}

.list-flex label.modal__open-label {
	padding: 8px;
}

@media screen and (min-width:768px) {
	.list-flex.grid_modal {
		flex-direction: row;
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.list-flex.grid_modal .list {
		width: calc(100% / 3 - 20px);
	}

	.list-grid1.grid_modal {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: max-content max-content 1fr auto;
		gap: 0 2rem;
	}

	.list-grid1.grid_modal .list.pc03 {
		grid-column-start: 2;
		grid-row-start: 1;
	}

	.list-grid1.grid_modal .list.pc05 {
		grid-column-start: 3;
		grid-row-start: 1;
	}

	/* 導入事例 */
	/* .example .list-flex.grid_modal {
		display: flex;
		flex-direction: row;
		gap: 1rem;
	}

	.example .list-grid1.grid_modal {
		grid-template-columns: repeat(4, 1fr);
	}

	.example .list-grid1.grid_modal .list.pc05 {
		grid-column-start: 3;
		grid-row-start: 1;
	}

	.example .list-grid1.grid_modal .list.pc07 {
		grid-column-start: 4;
		grid-row-start: 1;
	} */

}

/* modal
-------------------------------------------------------------------------- */
.modal__wrap {
	margin: 0 0 3rem;
	padding: 1rem;
	background: #fff;
}

.modal__wrap input {
	display: none
}

.modal__close-label,
.modal__open-label {
	cursor: pointer
}

.modal__open-label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 8px;
	margin-bottom: 0;
	border: none;
	border-radius: 3px;
	color: #fff;
	background: #467a99;
	outline: 1px solid #467a99;
	font-size: 1.125rem;
	transition: .3s
}

.modal__open-label:hover {
	background-color: #fff;
	color: #467a99;
	outline: 1px solid #467a99
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none
}

.modal__open-input:checked+label+input+.modal {
	display: block;
	animation: modal-animation .6s
}

.modal__content-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 600px;
	background-color: #fefefe;
	z-index: 2;
	border-radius: 5px;
	width: 90vw
}

.modal__close-label {
	background-color: #777;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 20px;
	width: 36px;
	height: 36px;
	line-height: 1.6;
	text-align: center;
	display: table-cell;
	position: fixed;
	z-index: 99999;
	font-size: 1.3em;
	top: -17px;
	right: -4%
}

.modal__content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 20px;
	max-width: 100%
}

.modal__content .sr_picture img {
	width: 100%
}

.modal__background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .45);
	z-index: 1
}

.modal__content .info_heading {
	color: #fff;
	background: #467a99;
	padding: 8px 0;
	border-radius: 3px;
	margin: 20px auto 0;
	font-weight: 400;
	font-size: 1.125rem
}

.modal__content .info_dl dt {
	font-size: 1rem;
	font-weight: 500;
	border-bottom: 1px dashed #b7b7b7;
	padding: 10px 5px 5px
}

.modal__content .info_dl dd {
	padding: 5px;
	font-size: .875rem;
	line-height: 1.8
}

.modal__content .info_dl p {
	padding: 5px;
	font-size: .875rem;
	line-height: 1.8;
	margin-bottom: .5rem;
}

.modal__content .info_dl dd .notes {
	font-size: 13px;
	text-indent: -1em;
	padding-left: 1em
}

.modal__content .info_dl dt i {
	margin-right: 6px;
	color: #2079ad;
	font-size: 1rem
}

.modal__content .info_dl dt a {
	float: right;
	margin: 0;
	font-weight: 500;
	font-size: .875rem
}

@keyframes modal-animation {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@media only screen and (min-width:1024px) {
	.p_lead_small {
		text-align: center;
		font-size: 1rem;
		padding: 40px 0
	}

	.modal__wrap {
		margin: 0;
	}

	.modal__close-label {
		top: -10px;
		right: -2%
	}

	.modal__content-wrap {
		width: 80%
	}

	.modal__content {
		padding: 39px 45px 40px
	}
}

/* タイムライン */
.timeline {
	counter-reset: timeline-counter;
	position: relative;
	margin: 60px auto 0;
	max-width: 1000px;
	padding: 50px 30px 30px 60px;
	border-radius: 25px;
	background: #fff;
}

.timeline-item {
	position: relative;
	margin-bottom: 20px;
}

/* .timeline-marker {
	position: absolute;
	left: -40px;
  width: 24px;
  height: 24px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	color: white;
	font-size: 15px;
	justify-content: center;
  font-size: 30px;
} */


.timeline-marker {
	position: relative;
	top: 43px;
	left: -36px;
	display: inline-block;
	width: 18px;
	height: 12px;
}

.timeline-marker.top {
	height: 18px;
	border-radius: 50%;
	background: var(--primary-color);
}

/* .timeline-marker::before {
	counter-increment: timeline-counter;
	content: counter(timeline-counter);
} */

.timeline-item::before {
	content: '';
	position: absolute;
	/* left: -29px; */
	left: -28px;
	top: 61px;
	width: 2px;
	height: calc(100% + 32px);
	background-color: var(--primary-color);
}

.timeline-item:last-child::before {
	display: none;
}

.timeline-marker::before,
.timeline-marker::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 15px;
	border-radius: 9999px;
	background-color: var(--primary-color);
	transform-origin: 50% calc(100% - 1px);
}

.timeline-marker.top::before,
.timeline-marker.top::after {
	display: none;
}

.timeline-marker::before {
	transform: rotate(45deg);
}

.timeline-marker::after {
	transform: rotate(-45deg);
}

.timeline-content {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	align-items: flex-start;
	margin-bottom: 32px;
}

.timeline-content .title {
	/* margin: 0 0 12px; */
	margin: .5rem 1rem;
	line-height: 28px;
	text-align: left;
}

.timeline-content .txt {
	margin: 0 0 0 1rem;
	max-width: inherit;
	line-height: 1.6;
}

.timeline {
	padding: 50px 30px 30px 60px;
	border-radius: 25px;
}

@media only screen and (min-width:768px) {
	.timeline {
		padding: 100px 100px 70px 125px;
	}

}

@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* floating お問い合わせ */
.contact-button {
	position: fixed;
	z-index: 1000;
	bottom: 0;
	right: 0;
	width: 100%;
}

.contact-button a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 16px;
	border-radius: 0;
	font-size: 1.5rem;
	letter-spacing: .12em;
	text-decoration: none;
	color: #ffffff;
	background-color: var(--primary-color);
	transition: background-color 0.3s;
}

.contact-button a:hover {
	background-color: #0056b3;
}

.contact-button-show {
	display: block;
}

.contact-button span.sub {
	font-size: 1.125rem;
	line-height: 1;
}

.contact-button span.main {
	line-height: 1;
}

@media screen and (min-width: 1024px) {
	.contact-button {
		width: 86px;
		top: 50%;
		transform: translateY(-50%);
	}

	.contact-button a {
		flex-direction: row-reverse;
		align-items: center;
		border-radius: 1vw 0 0 1vw;
		position: fixed;
		padding: 20px 16px;
		gap: 12px;
	}

	.contact-button span {
		writing-mode: vertical-rl;
		text-orientation: upright;
		margin: 2px 0;
		letter-spacing: .12em;
	}

	.contact-button span.sub {}
}

/* setup */
.list-grid1.grid_setup {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .5rem;
	background: #fff;
	padding: .5rem;
}

.example .list-grid1.grid_setup {
	grid-template-columns: auto;
}

.list-grid1.grid_setup .list {
	padding: 0;
	margin-bottom: 0;
}

.list-grid1.grid_setup .list figure {
	margin: 0;
}

.list-grid1.grid_setup .list figure img {
	border: none;
}

@media only screen and (min-width:768px) {
	.example .list-grid1.grid_setup {
		grid-template-columns: repeat(3, 1fr);
	}

}

@media only screen and (min-width:1024px) {
	.list-grid1.grid_setup {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
		padding: 1rem;
	}
}