@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=Noto+Sans+JP:wght@100..900&display=swap');
/*テンプレート専用cssファイルの読み込み *************/
@import url("inview.css");
@import url("mainimg.css");
/*fancyboxの読み込み ***************************/
@import url("https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css");

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）********/
:root {
	--primary-color: #000033;			/*テンプレートのテーマカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/
	--secondary-color: #0c0b09;			/*テンプレートのサブカラー*/
	--secondary-inverse-color: #fff;	/*secondary-colorの対となる色*/
	--accent-color: #fe5815;			/*テンプレートのアクセントカラー*/
	--accent-inverse-color: #fff;		/*accent-colorの対となる色*/
	--content-space: 4rem;	 /*余白の一括管理用。主に左右の余白。4rem＝4文字分。*/
}

/*animation11のキーフレーム設定（汎用的）*****************/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}
/*opa1のキーフレーム設定（汎用的）***********************/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*全体の設定 ********************************************/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}
	}/*追加指定ここまで*/

body {
	margin: 0;padding:0;
	/* font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif; */ /*Font種類ゴシック*/
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	-webkit-text-size-adjust: none;
	background: #f5f5f5;	/*背景色*/
	color: #555;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

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

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}

/*section*/
section {
	padding: var(--content-space);	/*section内の余白。css冒頭のcontent-spaceを読み込みます。*/
}
.padding0 {
	padding: 0 !important;  /*余白。0*/
	margin: 0 !important;  /*余白。0*/
}
/*リンクテキスト全般の設定 ****************/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}
/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*コンテナー（サイト全体を囲むブロック）**************/
#container {
	position: relative;
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}

/*header（ロゴが入った最上段のブロック）************************/
/*ヘッダーブロック*/
header {
	padding: 0rem var(--content-space);		/*ヘッダー内の余白。上下に１文字分、左右についてはcss冒頭のcontent-spaceを読み込みます。*/
	color: #fff;		/*文字色*/
	position: absolute;
	width: 100%;
	background: rgba(255,255,255,0.7)
}
header a {color: inherit;}

/*ロゴ*/
#logo a {text-decoration: none;}
#logo img {
	display: block;
	width: 220px;	/*ロゴの幅*/
	margin-top: 0 !important;padding-top: 0 !important;
}

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

	/*ヘッダーブロック*/
	header {
		display: flex;	/*中のコンテンツを横並びにする*/
		justify-content: space-between;
		gap: 1rem;	/*中のコンテンツ同士に空けるマージン的な余白。*/
		align-items: center;
	}

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

/*header-box（ヘッダー右側にあるボタン）************************/
/*ボックス全体*/
#header-box * {margin: 0;padding: 0;}

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

	#header-box {
		margin-right: 30px;	/*ハンバーガーアイコンと重ならないように適当な余白*/
	}

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

/*ボタンが入ったボックス*/
#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;	/*ボタン同士の間に空けるスペース。１文字分。*/
}
/*メニュー１個あたり（ここにない設定は、下の方にある「btn共通設定」にあります。）*/
#header-box .btn a {
	display: block;text-decoration: none;
	padding: 0.5rem 2rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;		/*角を少し丸くする*/
}
/*ボタンに使用しているアイコン*/
#header-box .btn i {
	margin-right: 1rem;		/*アイコンの右側に１文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}
/*ボタンが入ったボックス*/
#header-box select {
	list-style: none;
	display: flex;
	gap: 1rem;	/*ボタン同士の間に空けるスペース。１文字分。*/
}
/*メニュー１個あたり（ここにない設定は、下の方にある「btn共通設定」にあります。）*/
#header-box select a {
	display: block;text-decoration: none;
	padding: 0.5rem 1rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px;		/*角を少し丸くする*/
}
/*ボタンに使用しているアイコン*/
#header-box select i {
	margin-right: 1rem;		/*アイコンの右側に１文字分のスペースを空ける*/
	transform: scale(1.1);	/*アイコンサイズを140%に。*/
}

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

	/*ボタンが入ったボックス*/
	/*
	#header-box .btn {
		display: inline-block;
	}
	*/
	/*ボタン１個あたり*/
	/*
	#header-box .btn li {
		margin-bottom: 0.5rem;
	}
	*/
	}/*追加指定ここまで*/

/*開閉メニュー **********************/
/*メニューブロック共通*/
#menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

/*メニュー１個あたり*/
#menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}

/*３本バー（ハンバーガー）アイコン設定 ***********************/
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 5px;	/*右からの配置場所*/
	top: 5px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	background: var(--primary-color);	/*ボタン色*/
	border-radius: 10px 10px 10px 10px;	/*角を丸くする指定。左上、右上、右下、左下の順番。この場合は左下だけ角を丸くする。*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #ff0000;
}
/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;
}
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*コンテンツ ***************************************/
/*コンテンツブロック*/
#contents {
	flex: 1;
}
/*トップページ以外のコンテンツ*/
body:not(.home) #contents {
	padding-top: 10rem;		/*上に10文字分の余白を空ける*/
	padding-bottom: 10rem;	/*下に10文字分の余白を空ける*/
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}

/*p要素（段落タグ） ******************************/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}

/*main（メインコンテンツ）**************************/
/*h2見出し*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-top: 2vw;		/*下にスペースを空ける*/
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}

/*見出し内のspan（小さな装飾文字と上部のアクセントライン）*/
main h2 span.small {
	display: inline-block;
	border-top: 2px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ90%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 1rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出しをセンタリングする場合*/
main h2.c {
	align-items: center;
}

/*list-grid-parts4 ************************************/
.list-grid-parts4 .list-partso * {margin: 0;padding: 0;}
.list-grid-parts4 .list-partsw * {margin: 0;padding: 0;}
/*ブロック全体を囲むブロック*/
.list-grid-parts4 {
	display: grid;
}
	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {
	/*ブロック全体を囲むブロック*/
	.list-grid-parts4 {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	}/*追加指定ここまで*/
	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {
	/*ブロック全体を囲むブロック*/
	.list-grid-parts4 {
		grid-template-columns: repeat(4, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	}/*追加指定ここまで*/

/*ボックス１個あたり*/
.list-grid-parts4 .list-partso {
    display: grid;
	position: relative;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fe5815;		/*背景色*/
	color: #fff;			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	border-radius: 8px;		/*角を少しだけ丸くする指定*/
	overflow: hidden;
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース。2文字分。*/
}
.list-grid-parts4 .list-partsw {
    display: grid;
	position: relative;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color:  var(--primary-color);			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	border-radius: 5px;		/*角を少しだけ丸くする指定*/
	overflow: hidden;
	line-height: 3rem;
	border-radius: 8px;		/*角を少し丸くする*/
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース。2文字分。*/
}

/*ボックス内のfigure画像*/
.list-grid-parts4 .list-partso figure {
	margin: -1rem -1rem 0.5rem;	/*上、左右、下への指定。上、左右についてはボックスのpaddingと相殺させて枠一杯に画像が出るようにしています。*/
}
.list-grid-parts4 .list-partsw figure {
	margin: -1rem -1rem 0.5rem;	/*上、左右、下への指定。上、左右についてはボックスのpaddingと相殺させて枠一杯に画像が出るようにしています。*/
}

/*ボックス内のp要素*/
.list-grid-parts4 .list-partsw p {
	font-size: 	1rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}
.list-grid-parts4 .list-partso p {
	font-size: 	1rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*ボタン O ******************************/
.list-grid-parts4 .btn-partso a {
	display: block;text-decoration: none;
	font-size: 1.3rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--accent-color);
	color: var(--accent-inverse-color);
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 0.5rem;		/*ボタンの上に空けるスペース*/
	border-radius: 4px;		/*角を少し丸くする*/
}
/*マウスオン時*/
.list-grid-parts4 .btn-partso a:hover {
	background: var(--primary-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-inverse-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}/*ボタン ******************************/
.list-grid-parts4 .btn-parts a {
	display: block;text-decoration: none;
	font-size: 1.3rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color);
	color: var(--accent-inverse-color);
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 0.5rem;		/*ボタンの上に空けるスペース*/
	border-radius: 4px;		/*角を少し丸くする*/
}
/*マウスオン時*/
.list-grid-parts4 .btn-parts a:hover {
	background: var(--primary-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-inverse-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}

/*list-grid-parts3 ********************************************/
.list-grid-parts3 .list-partsg * {margin: 0;padding: 0;}
.list-grid-parts3 .list-partsw * {margin: 0;padding: 0;}
.list-grid-parts3 .list-partsb * {margin: 0;padding: 0;}
/*ブロック全体を囲むブロック*/
.list-grid-parts3 {
	display: grid;
}
	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {
	/*ブロック全体を囲むブロック*/
	.list-grid-parts3 {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	}/*追加指定ここまで*/
	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {
	/*ブロック全体を囲むブロック*/
	.list-grid-parts3 {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	}/*追加指定ここまで*/

/*ボックス１個あたり*/
.list-grid-parts3 .list-partsg {
    display: grid;
	position: relative;
	padding: 1rem;			/*ボックス内の余白*/
	background: #cda45e;		/*背景色*/
	color: #fff;			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	border-radius: 8px;		/*角を少しだけ丸くする指定*/
	overflow: hidden;
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース。2文字分。*/
}.list-grid-parts3 .list-partsb {
    display: grid;
	position: relative;
	padding: 1rem;			/*ボックス内の余白*/
	background: var(--secondary-color);	/*背景色*/
	color: #fff;			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	border-radius: 8px;		/*角を少しだけ丸くする指定*/
	overflow: hidden;
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース。2文字分。*/
}
.list-grid-parts3 .list-partsw {
    display: grid;
	position: relative;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color:  var(--primary-color);			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	border-radius: 5px;		/*角を少しだけ丸くする指定*/
	overflow: hidden;
	line-height: 3rem;
	border-radius: 8px;		/*角を少し丸くする*/
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース。2文字分。*/
}
/*ボックス内のfigure画像*/
.list-grid-parts3 .list-partsg figure {
	margin: -1rem -1rem 0.5rem;	/*上、左右、下への指定。上、左右についてはボックスのpaddingと相殺させて枠一杯に画像が出るようにしています。*/
}
.list-grid-parts3 .list-partsb figure {
	margin: -1rem -1rem 0.5rem;	/*上、左右、下への指定。上、左右についてはボックスのpaddingと相殺させて枠一杯に画像が出るようにしています。*/
}
.list-grid-parts3 .list-partsw figure {
	margin: -1rem -1rem 0.5rem;	/*上、左右、下への指定。上、左右についてはボックスのpaddingと相殺させて枠一杯に画像が出るようにしています。*/
}
/*ボックス内のp要素*/
.list-grid-parts3 .list-partsg p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}
.list-grid-parts3 .list-partsb p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}
/*ボックス内のp要素*/
.list-grid-parts3 .list-partsw p {
	font-size: 	1rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}
/*ボタン ******************************/
.list-grid-parts3 .btn-parts a {
	display: block;text-decoration: none;
	font-size: 1.3rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color);
	color: var(--accent-inverse-color);
	padding: 5px 10px;		/*ボタン内の余白*/
	margin-top: 0.5rem;		/*ボタンの上に空けるスペース*/
	border-radius: 4px;		/*角を少し丸くする*/
}

/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid-parts4 .icon-bg1-parts {
	overflow: hidden;
	position: absolute;
	left: 0px;		/*左からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	font-size: 0.7rem;	/*文字サイズ。70%*/
	width: 10rem;		/*幅。10文字分*/
	padding-top: 2rem;	/*テキストの上にとる余白。2文字分。*/
	text-align: center;	/*テキストをセンタリング*/
	transform: rotate(-45deg) translate(-2.4rem,-3rem);	/*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
}
.list-grid-parts3 .icon-bg2-parts {
	overflow: hidden;
	position: absolute;
	left: 0px;		/*左からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	font-size: 0.7rem;	/*文字サイズ。70%*/
	width: 10rem;		/*幅。10文字分*/
	padding-top: 2rem;	/*テキストの上にとる余白。2文字分。*/
	text-align: center;	/*テキストをセンタリング*/
	transform: rotate(-45deg) translate(-2.4rem,-3rem);	/*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
}

/*icon-bg1-parts（サンプルだと「NEW」）*/
.list-grid-parts4 .icon-bg1-parts{
	background: #ff3535;	/*背景色*/
	color: #fff;			/*文字色*/
}
.list-grid-parts3 .icon-bg1-parts {
	background: #ff3535;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2-parts（サンプルだと「UP」）*/
.list-grid-parts4 .icon-bg2-parts {
	background: #358bff;	/*背景色*/
	color: #fff;			/*文字色*/
}
.list-grid-parts3 .icon-bg2-parts {
	background: #358bff;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*****************************************アイコン*/
.list {overflow: hidden;}

/*Light blue icon*/
/*アイコン全体を囲むブロック*/
ul.list-icons {
  list-style: none;margin: 0;padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;  /*アイコン同士に空けるスペース。0.2文字分。*/
  font-size:1rem;  /*文字サイズ80%*/
  margin-bottom: 0.2rem !important;  /*アイコンブロックの下にとるスペース。0.2文字分。*/
  line-height: 1;  /*行間を狭く*/
}

/*アイコン１個あたり*/
ul.list-icons li {
  border: 1px solid #fe5815;  /*枠線の幅、線種、色*/
  background: #fafafa;        /*背景色*/
  padding: 0.2rem !important;  /*余白。0.2文字分*/
  color: #fe5815;    /*文字色*/
}

/*詳細ページ（article内）で使う場合の上書き*/
article ul.list-icons {
  font-size: 1rem;
}
/* ENDアイコン ******************************************/


/*TEXT SLIDE ***************************************/
.text-slide-wrapper {
	overflow-x: hidden;
	overflow-y: hidden;
	margin-top: 0px;
	line-height: 17rem;
}

.text-slide {
	margin-right: 0;
	font-family: "Hiragino Kaku Gothic Pro",sans-serif ;
	display: flex;
	white-space: nowrap;
    font-size: 18rem;	/*文字サイズ*/
	font-weight: bold;
	/* opacity: 0.3;*/	/*透明度。色が30%出た状態。*/
}

.text-slide span {
	/* padding: 0 0px; */
	color: #fe5815;
}
.text-slide b {
	/* padding: 0 0px; */
	color: #00003c;
}
.text-slide  strong {
	/* padding: 0 0px; */
	color: #cda45e;
}
/*END TEXT SLIDE　************/

/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）******************/
.btn a {
	display: block;text-decoration: none;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*マウスオン時*/
.btn a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}

select {
	display: block;text-decoration: none;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
	border: none;
	border-radius: 3px;	/*角を丸くする指定*/
}

/*「＋」アイコン（閉じている場合）*/
select::before {
	content: "＋";	/*アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	display: block;text-decoration: none;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
	border: none;
}

/*マウスオン時*/
select a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);				/*文字色。css冒頭のaccent-colorを読み込みます。*/
}

/*フッターの上のボックス内にあるボタン（ここにない設定は、すぐ上の「btn共通設定」にあります。）******/
/*ボタンに使用しているアイコン*/
.btn-box .btn i {
	margin-right: 2rem;		/*アイコンの右側に２文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

/*ボタンブロック*/
.btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	height: 40vh;		/*ブロックの高さ。画面の高さの80%。お好みで。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ボタン１個あたり*/
.btn-box .btn li {
	width: 80vw;	/*幅。画面幅の80%*/
}
.btn-box .btn a {
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

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

	/*ボタンブロック*/
	.btn-box .btn {
		flex-direction: row;	/*横並びに変更*/
	}
	
	/*ボタン１個あたり*/
	.btn-box .btn li {
		width: 40vw;	/*幅。画面幅の40%*/
	}

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

/*FOOTER  ***********************************/

#footer-parts * {margin: 0;padding: 0;}
#footer-parts ul {list-style: none;}
/*ブロック全体*/
#footer-parts {
	background: var(--secondary-color);
	color: #fff;		/*文字色*/
	padding: var(--content-space);	/*フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
}
#footer-parts a {
	text-decoration: none;
}
#footer-parts a:hover  {
	color: var(--accent-color);
}
/*ロゴやSNSアイコンが入ったブロック*/
#footer-parts div.footer-1-parts {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}
/*メニューブロック*/
#footer-parts div.footer-2-parts {
    flex: 1;
}
#footer-parts div.footer-3-parts {
    flex: 1;
}
	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {
	#footer-parts {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}
	/*ロゴやSNSアイコンが入ったブロック*/
	#footer-parts div.footer-1-parts {
		text-align: left;
		width: 40%;	/*幅。40%。*/
	}
	/*メニューブロック*/
	#footer-parts div.footer-2-parts {
		/*margin-bottom: 0;	下の余白をなくす*/
	}
	/*メニューブロック*/
	#footer-parts div.footer-3-parts {
		/*margin-bottom: 0;	下の余白をなくす*/
	}

	}/*追加指定ここまで*/
	
	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	#footer-parts div.footer-1-parts {
		margin-bottom: 2rem !important;
	}	
	}/*追加指定ここまで*/
	
/*Copyright部分*/
#footer-parts small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}

/*SNSアイコン *******************/
.sns1-parts {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

.sns1-parts i {
	font-size: 30px;	/*アイコンサイズ*/
}
/*Google Map用 *************/
.iframe-box1-parts {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box1-parts iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
/*テーブル *******************/
.week2-parts {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 10px;	/*角を丸くする指定*/
	border: 1px solid #ccc;	/*テーブル外側の線の幅、線種、色*/
	table-layout: fixed;	/*幅を均等に*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
}
/*受付時間の幅*/
.week2-parts th:first-child,
.week2-parts td:first-child {
	width: 25%;
}
/*各曜日の幅*/
.week2-parts th:not(:first-child),
.week2-parts td:not(:first-child) {
	width: calc(75% / 7);	/*受付時間で25%とっているので残りの75%を7で割る*/
}
/*th(曜日)とtd(時間)*/
.week2-parts th,
.week2-parts td {
	padding: 1rem 0;	/*ボックス内の余白。上下に１文字分、左右は0。*/
	text-align: center;	/*テキストをセンタリング*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
}
/*th(曜日)とtd(時間)のそれぞれ最後の右側の線を消す*/
.week2-parts th:last-child,
.week2-parts td:last-child {
	border-right: none;
}
/*最後の行の下線を消す*/
.week2-parts tr:last-child td {
	border-bottom: none;
}
/*th(曜日)の追加指定*/
.week2-parts th {
	background: #fafafa;	/*背景色*/
}
.week2-parts td {
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*END FOOTER  ***********************************/
/*Copyright  ***********************************/
.copyright {
	text-decoration: none;display: block;
	background: #111;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
}
.copyright a::before {
	content: "\e2ca";
	font-weight: bold;
	margin-right: 2em;
}

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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 10%;	/*円形にする*/
}


/*bg1 *************************************/
.bg1 {
	background: var(--primary-color);		/*背景色。css冒頭のsecondary-colorを読み込みます。*/
	color: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}

/*背景画像が少しずつ上に移動する *************************************/
/*共通設定*/
.bg-slideup {
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}

/*slideup1画像*/
.slideup1 {
    background-image: url("../images/bg-slideup1.jpg");	/*背景画像の読み込み*/
	color: #fff;
	border-radius: 10vw 10vw 0 0;
}

/*slideup2画像*/
.slideup2 {
    background-image: url("../img/bg/departure.jpg");	/*背景画像の読み込み*/
	position: relative;
	border-top: 1px solid #333;
}

/*slideup2の上部にグラデーションをかけて、「よく頂く質問」ブロックとの境界をなめらかにする*/
/*
.slideup2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 10vh;	
	background: linear-gradient(var(--secondary-color), transparent);
}
*/

/*お知らせブロック *********************************/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

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

/*icon-bg1。サンプルテンプレートでは「重要」と書いてあるマーク*/
.new .icon-bg1 {
	border-color: transparent;	/*枠線を透明に*/
	background: #cd0000;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*icon-bg2。サンプルテンプレートでは「サービス」と書いてあるマーク*/
.new .icon-bg2 {
	border-color: transparent;				/*枠線を透明に*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

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

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

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


/*テキストのフェードイン設定 *********************************************/
/*fadeInのキーフレーム設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}

/*マニュアルページ用 ***********************************/
#manual {background-image: none;}
.manual {
	padding: 5rem;
}
.manual h2,.manual h3 {
	margin-top: 3rem;
}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

/*その他 *******************************************************/
.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;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; 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;}

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

/*メイン・サブブロック設定 **********************************************/
/*main-contents-partsの設定*/
.main-contents-parts {
	margin-bottom: 20px;		/*ボックスの下に空けるスペース。sub-contents-partsとの間の余白です。*/
}

/*メインコンテンツの中の最初の要素の上余白をなくす*/
.main-contents-parts > *:first-child,
.main-contents-parts > section:first-child > *:first-child {
	padding-top: 0;
	margin-top: 0;
}

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

	/*カラムで使う為の指定*/
	main.column-parts {
		display: flex;	/*flexボックスを使う指定*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		gap: 2rem;						/*main-contents-partsとsub-contents-partsの間のマージン的な隙間*/
	}
	
	/*main-contents-partsの設定*/
	.main-contents-parts {
		margin-bottom: 0;
		order: 1;			/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}
	
	/*.sub-contents-parts*/
	.sub-contents-parts {
		width: 280px;	/*幅*/
		/*width: 230px;*/	/*幅*/
		flex-shrink: 0;
	}

	/*1つ目のsub-contents*/
	.sub-contents-parts:nth-child(2) {
		order: 3;	/*並び順。数字の小さい順番に表示されます。*/
	}
	
	/*2つ目のsub-contents*/
	.sub-contents-parts:nth-child(3) {
		order: 3;	/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}

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

/*sub-contents-parts設定 **********************************/
/*ブロック内のh4タグ*/
#contents .sub-contents-parts h4 {
	margin: 0;border: none;
	font-weight: normal;
	background: #fe5815;	/*背景色*/
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
	padding: 0.5em;		/*タグ内の余白*/
}
#contents .sub-contents-parts h4 a {color: inherit;}

/*SUB MENU設定   *************************************/
/*サブメニューブロック全体*/
.submenu-parts {
	padding: 0;
	margin: 0 0 1rem !important;	/*上、左右、下へのマージン*/
}

/*メニュー１個あたり*/
.submenu-parts li {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.submenu-parts a {
	display: block;text-decoration: none;
	background: #fff;		/*背景色*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}

/*submenu-parts PRICE*/
.submenu-parts li span {
	font-weight: normal;	/*デフォルトだと太字なので標準に*/
	font-size: 1.5em;		/*文字サイズを70%*/	/*下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態。*/
	color: var(--primary-color);	/*文字色。css冒頭のprimary-colorを読み込みます。*/
}

/*アイコン（Font Awesome）*/
.submenu-parts a::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0da";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #ABABAB;			/*アイコンの色*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
}

/*マウスオン時のアイコン設定*/
.submenu-parts a:hover::before {
	color: #666;			/*アイコンの色*/
}

/*SUB box1-parts ***************************************/
/*ボックス全体の設定*/
.box1-parts {
	background: rgba(0,0,0,0.05);	/*背景色。0,0,0は黒の事で0.05は色が5%出た状態。*/
	padding: 10px;					/*ボックス内の余白*/
	border-radius: 5px;				/*角を丸くする指定*/
	margin-bottom: 1rem;			/*ボックスの下に空けるスペース*/
}

/*box1-parts内でsubmenu-partsを使った場合、下のマージンをなくす*/
.sub-contents-parts .box1-parts .submenu-parts {
	margin-bottom: 0 !important;
}

/*btn共通設定（ヘッダーと、フッターの上のボックス内にあるボタンの共通設定）*/
.sub-contents-parts .btn a {
	display: block;text-decoration: none;
	background: var(--primary-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	text-align: center;	/*テキストをセンタリング*/
	margin-bottom: 1rem;
	margin-top: 1rem;
	line-height: 3rem;
}

/*マウスオン時*/
.sub-contents-parts .btn a:hover {
	background: var(--accent-inverse-color);	/*背景色。css冒頭のaccent-inverse-colorを読み込みます。*/
	color: var(--accent-color);					/*文字色。css冒頭のaccent-colorを読み込みます。*/
}

/*フッターの上のボックス内にあるボタン（ここにない設定は、すぐ上の「btn共通設定」にあります。）*/
/*ボタンに使用しているアイコン*/
.sub-contents-parts .btn-box .btn i {
	margin-right: 2rem;		/*アイコンの右側に２文字分のスペースを空ける*/
	transform: scale(1.4);	/*アイコンサイズを140%に。*/
}

/*ボタンブロック*/
.sub-contents-parts .btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;	/*縦並びに*/
	justify-content: center;
	align-items: center;
	gap: 2rem;			/*ボタン同士に空けるスペース。２文字分。*/
	height: 40vh;		/*ブロックの高さ。画面の高さの80%。お好みで。*/
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ボタン１個あたり*/
.sub-contents-parts .btn-box .btn li {
	list-style: none;
	width: 80vw;	/*幅。画面幅の80%*/
}
.sub-contents-parts .btn-box .btn a {
	border-radius: 10px;	/*角を丸くする指定*/
	padding: 1rem 2rem;		/*ボタン内の余白。上下、左右へ。*/
}

/*Masonry Gallery *********************************************/
/*サムネを囲んでいるブロック全体*/
.masonry-grid {
  animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
}
/* カラム幅：PC 4列 */
.grid-sizer,
.grid-item {
  width: calc(25% - 16px);
}
.grid-item {
  margin-bottom: 16px;
}

/* レスポンシブ：1000px 未満で 3列 */
@media (max-width: 1000px) {
  .grid-sizer,
  .grid-item {
    width: calc(33.333% - 16px);
  }
}
/* レスポンシブ：500px 未満で 2列 */
@media (max-width: 500px) {
  .grid-sizer,
  .grid-item {
    width: calc(50% - 16px);
  }
}

/* 中身共通 */
.grid-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.grid-item img,
.grid-item video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* 画像・動画に軽いホバー演出 */
.grid-item img,
.media-wrapper {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.grid-item a:hover img,
.grid-item a:hover .media-wrapper {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* 動画サムネ用ラッパー */
.media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
/* サムネ動画 */
.thumb-video {
  display: block;
  width: 100%;
  height: auto;
}
/* 「▶」アイコン */
.video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ff0000;  /*背景色*/
  color: #fff;  /*文字色*/
  font-size: 12px;  /*アイコンのサイズ*/
  width: 28px;  /*アイコンの幅*/
  line-height: 28px;  /*高さ*/
  text-align: center;
  border-radius: 100px;  /*円形にする*/
  pointer-events: none;
}

/*Table********************************************/
/*テーブル１行目に入った見出し部分（※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: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}
/*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%;		/*幅*/
		}
	}/*追加指定ここまで*/
/* END Table *******************************************/

