@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');

/*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: #000320;
	/*テンプレートのメインまたはアクセントとなる色*/
	--primary-inverse-color: #fff;
	/*primary-colorの対として使う色*/

	--primary-color-rgb: 5, 9, 48;
	/*primary-colorをrgb数値にしたもの。個別に透明度を調整して使い回す為のものです。*/

	--global-space: 3vw;
	/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/

	--kirara-color: #f8be77;
	--hinata-color: #56a3f4;
	--sabo-color: #68846e;
	--ruki-color: #a065d7;
}


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

	100% {
		left: 0px;
	}
}


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

	100% {
		opacity: 1;
	}
}


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

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


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

html,
body {
	font-size: clamp(12px, 1.2vw, 30px);
}


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


body {
	margin: 0;
	padding: 0;
	font-family: "M PLUS 1", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: #221762 url('../images/bg.png') repeat center top / 150px;
	/*背景色、背景壁紙の読み込み。壁紙の幅を150pxに指定してリピート。*/
	color: #ffffff;
	/*文字色*/
	line-height: 2;
	/*行間*/
	animation: opa1 0.2s 0.5s both;
	/*0.5秒待機後、0.2秒かけてフェードイン表示*/
}

/*リセット*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

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

nav ul {
	list-style: none;
}

input {
	font-size: 1rem;
}

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

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

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

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

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

/*sectionが続く場合*/
section+section {
	margin-top: 8vw;
	/*sectionの上に空けるスペース*/
}


/*bg1背景
---------------------------------------------------------------------------*/
/* .bg1 {
	background: url('../images/bg1.png') no-repeat center top / 100%;	画像の読み込み、リピートせず、左右中央に配置、上部に配置で幅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);
	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*h1テキスト。このテンプレートでは、画面最上部の帯の左側に小文字で入れているテキストです。*/
header h1 {
	font-weight: normal;
	margin: 0;
	padding: 0;
	font-size: 0.8rem;
	/*文字サイズを80%*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広く*/
}

/*画面幅700px以下の追加指定*/
@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;
	/*flexを解除する*/
}


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

#logo {
	margin: 0;
	padding: 0;
	width: 200px;
	/*ロゴ画像の幅*/
}

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

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

	/*ロゴサイズの上書き*/
	.home #logo {
		min-width: 80px;
		/*最小幅を設定しておきます。これ以上は小さくなりません。*/
		width: 15vw;
		/*幅。画面幅100%＝100vwです。*/
	}

}

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


/*header-top（headerの最上部の帯ブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#header-top {
	padding: 5px var(--global-space);
	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	display: flex;
	/*直接の子要素を横並びにする。この場合はh1テキストと、言語ボックスが対象。*/
	justify-content: space-between;
	/*それぞれ両サイドに配置*/
	font-size: 0.8rem;
	/*文字サイズを80%に*/
}

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

	/*ブロック全体*/
	#header-top {
		justify-content: flex-end;
		/*h1テキストが非表示になり、言語ボックスが左によるので、右側にとどまるように指定を変更*/
	}

}

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

/*リンクテキスト*/
#header-top a {
	color: inherit;
}

/*言語ボックス全体の設定*/
#header-top .lang {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: -5px;
	/*上にずらす。#header-topの上下paddingの数字と合わせる。*/
	display: flex;
	/*各言語を横に並べる*/
	gap: 1rem;
	/*各言語同士に空けるスペース。１文字分。*/
}

/*言語ボックス１個あたり*/
#header-top .lang a {
	display: block;
	text-decoration: none;
	border-radius: 0px 0px 3px 3px;
	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	padding: 0 1rem;
	/*ボックス内の余白。上下、左右。*/
	background: rgba(255, 255, 255, 0.2);
	/*背景色。255,255,255は白の事で0.2は色が20%出た状態。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#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 {
	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-right: 150px;
	/*右側に空けるスペース。ロゴに重ならないようにする為。*/
}

/*トップページの4個目のメニューへの指定　※html側で順番をカウントして下さい。*/
.home.large-screen #menubar>nav>ul>li:nth-of-type(4) {
	margin-left: 150px;
	/*左側に空けるスペース。ロゴに重ならないようにする為。*/
}

/*リンク（a要素）の設定*/
.large-screen #menubar li a {
	padding: 0.8rem 0;
	/*上下、左右の余白*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.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);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定している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;
	/*上に空ける余白。ハンバーガーアイコンと重ならない為の指定ですのでお好みで変更OK。*/
	background: var(--primary-color);
	/*背景色、背景画像の読み込み。画像は画面幅に合わせる*/
	animation: animation1 0.2s both;
	/*animation1を実行する。0.2sは0.2秒の事。*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定している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);
	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	top: 4vw;
	/*上からの配置場所*/
	right: 2vw;
	/*右からの配置場所*/
	width: 50px;
	/*幅*/
	height: 50px;
	/*高さ*/
	padding: 15px;
	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: var(--primary-color);

	border-radius: 50%;
	/*背景色*/
}

/*ここは変更不要*/
#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: 0 0 2rem;
	/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: 2rem;
	/*文字サイズ*/
	font-weight: 700;
	/*文字の太さ。100から900まで指定可能。*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
}

h2.l {
	font-size: 3rem;
}

@media screen and (max-width:480px) {
	h2.l {
		font-size: 2.4rem;
	}
}

/*装飾用の小文字*/
main h2 .small {
	display: block;
	font-size: 0.5em;
	/*文字サイズを親要素の50%に*/
	opacity: 0.7;
	/*透明度。色が70%出た状態。*/
	font-weight: 200;
	/*文字の太さ。100から900まで指定可能。*/
}

/*h3見出し*/
main h3 {
	font-size: 1.4rem;
	/*文字サイズ*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
	font-weight: normal;
	/*デフォルトの太字を標準に*/
}


@media screen and (max-width:768px) {
	main h2 {
		font-size: 1.6rem;
	}
}

/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents,
#footermenu {
	padding: 2rem var(--global-space);
	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: rgba(var(--primary-color-rgb), 0.8) url('../images/bg_footer.svg') repeat-x left bottom / 1000px;
	/*背景色はcss冒頭のvar(primary-color-rgb)を読み込み、0.8で透明度も指定。残りは背景画像の読み込み、横軸にリピート、左下から配置。幅1000px。*/
	color: var(--primary-inverse-color);
	/*文字色*/
}

#footer-contents a {
	color: inherit;
}

#footer-contents h3 {
	font-size: 2rem;
	margin: 2rem 0;
}

/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 50px;
	/*下に空けるスペース*/
}

/*ブロック内で使うbtnの設定*/
#footer-contents .btn a {
	border: 2px solid var(--primary-inverse-color);
	/*枠線の幅、線種、色。色についてはcss冒頭の（primary-inverse-color）を読み込みます。*/
}

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

	#footer-contents {
		display: flex;
		/*直接の子要素を横並びにします*/
		gap: var(--global-space);
		/*左右のボックスの間のマージン的な設定。css冒頭で指定しているglobal-spaceを読み込みます。*/
	}

	/*左側のブロック*/
	#footer-contents .left {
		margin-bottom: 0;
		/*下のマージン（外側への余白）をリセット*/
		width: 50%;
		/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

	/*右側のブロック*/
	#footer-contents .right {
		width: 50%;
		/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

}

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


/*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: #ffbfbf;
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	font-size: 0.8rem;
	/*文字サイズ。*/
	display: flex;
	/*直接の子要素を横並びにします*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	align-items: flex-start;
	/*垂直揃えの指定。上に配置されるように。*/
	border: #fff solid 3px;
}

/*ボックス内のリンクテキスト設定*/
#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: #02011d;
	/*背景色*/
	color: #fff;
	/*文字色*/
	text-align: center;
	/*内容をセンタリング*/
	padding: 1rem;
	/*ボックス内の余白*/
}

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

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


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;
	/*アイコン同士のマージン的な要素。１文字分。*/
}

.icons i {
	font-size: 40px;
	/*アイコンサイズ*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	border-radius: 8px;
	/*枠を角丸にする指定*/
	margin: 1rem 0;
	/*下に空けるスペース*/
	background: #fff;
	/*背景色*/
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
	padding: 0.5rem 1em 0.5rem 1em;
	/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	color: var(--primary-color);
	font-weight: 700;
}

.faq-question {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
}


/*回答*/
.faq dd {
	padding: 1rem;
	/*ボックス内の余白。上、右、下、左への順番。*/
	background: #ebbe09;
	color: var(--primary-color);
	border-radius: 8px;
	font-weight: 700;
}

.faq-answer {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
}

.faq-icon-img {
	width: 1.8rem;
	height: 1.8rem;
	background-image: url("../images/icon-question.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	margin-top: 0.2rem;
	display: inline-block;
}

.faq-icon-img--a {
	background-image: url("../images/icon-answer.png");
}

.faq-icon-img {
	display: inline-block;
}

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


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

/* ボックス全体 */
.list-normal .list {
	display: flex;
	gap: 2vw;
	margin-bottom: 3vw;
	justify-content: center;
	/* align-items: center; */
}

/* 左右入れ替え */
.list-normal .list.reverse {
	flex-direction: row-reverse;
}

/* テキストエリア */
.list-normal .text {
	flex: 1;
}

/* 画像エリア */
.list-normal .image {
	width: 20%;
	max-width: 500px;
	height: auto;
}

.list-normal .image:hover {
	filter: brightness(none);
}

/* h4見出し */
.list-normal h4 {
	font-weight: 500;
	font-size: 2.2rem;
	color: var(--primary-inverse-color);
	margin-bottom: 0.5em;
	position: relative;
	width: 100%;
}

.list-normal h4 a {
	background: linear-gradient(transparent 60%, #ffe066 60%);
	font-size: 2.2rem;
	color: var(--primary-inverse-color);
	text-decoration: none;
	font-weight: 700;
	text-shadow:
		0 0 5px rgba(0, 0, 64, 0.4),
		0 0 10px rgba(0, 0, 64, 0.4),
		0 0 15px rgba(0, 0, 64, 0.4),
		0 0 20px rgba(0, 0, 64, 0.4);
	padding: 0 0.2rem;
}

.list-normal h4 a.bgcl-kirara {
	background: linear-gradient(transparent 60%, var(--kirara-color) 60%);
}

.list-normal h4 a.bgcl-hinata {
	background: linear-gradient(transparent 60%, var(--hinata-color) 60%);
}

.list-normal h4 a.bgcl-sabo {
	background: linear-gradient(transparent 60%, var(--sabo-color) 60%);
}

.list-normal h4 a.bgcl-ruki {
	background: linear-gradient(transparent 60%, var(--ruki-color) 60%);
}

.list-normal h4 a:hover {
	text-shadow:
		0 0 5px rgba(64, 52, 0, 0.4),
		0 0 10px rgba(64, 52, 0, 0.4),
		0 0 15px rgba(64, 52, 0, 0.4),
		0 0 20px rgba(64, 52, 0, 0.4);
}

/* h5見出し */
.list-normal h5 {
	font-weight: 500;
	font-size: 1.2rem;
	margin-top: 0.4rem;
	background: linear-gradient(transparent 90%, #ffe066 90%);
}

.list-normal p {
	padding: 1rem 0 0 0.2rem;
	font-size: 1.25rem;
}

/* ---------- レスポンシブ（画面が狭い時） ---------- */
@media screen and (max-width: 768px) {
	.list-normal .list {
		flex-direction: column;
		text-align: center;
		margin-bottom: 15vw;
	}

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

	.list-normal .image {
		width: 100%;
		max-width: 100%;
	}

	.list-normal .text {
		margin: 1.5rem;
	}

	.list-normal h4 a {
		margin: 0 auto;
		width: 75%;
		font-size: 2.6rem;
	}

	.list-normal h5 {
		margin: 1.5rem 0 0 0;
	}

	.list-normal p {
		margin: 0.8rem 0 0 0;
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 480px) {
	.list-normal p {
		font-size: 0.85rem;
	}
}

/*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: bold;
	margin: 0;
	font-size: 1.5rem;
	/*文字サイズを1.5倍に*/
	color: #fff;
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	/*下の飾り画像の基点*/
}

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

/*左右のラインの装飾*/
.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 1rem;
	/*上下、左右へのブロック内の余白*/
	margin-bottom: 30px;
	/*下に空けるスペース*/
	border-radius: 1vw;
	/*角を丸くする指定。px指定でもOKです。*/
}

.list-half .text-hinata {
	background: #2c88ed;
}

.list-half .text-kirara {
	background: #f7ad54;
}

.list-half .text-ruki {
	background: #894cc4;
}

.list-half .text-sabo {
	background: #4a6750;
}


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

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

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

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

}

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


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

	/*ボックス全体*/
	.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: 6vw;
		/*上寄せですが、この分だけ下に下げます。写真とテキストがななめに配置されるイメージで設定しました。*/
		position: relative;
		z-index: 1;
		margin-right: -15vw;
		/*この分だけ画像にテキストブロックが重なります。画面幅100%＝100vwです。*/
		box-shadow: 2vw 2vw rgba(var(--primary-color-rgb), 0.1);
		/*ボックスの影。右へ、下へ。色はcss冒頭のvar(primary-color-rgb)を読み込み、0.1で透明度も指定。*/
	}

	/*テキストブロック（※reverse用）*/
	.list-half.reverse .text {
		margin-right: 0;
		margin-left: -15vw;
		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-free（destinations.htmlで使用しているレイアウトフリー用）
---------------------------------------------------------------------------*/
.list-free * {
	margin: 0;
	padding: 0;
}

/*list-freeボックス*/
.list-free {
	display: flex;
	/*直接の子要素を横並びに*/
	flex-direction: column;
	/*一旦縦並びにしておく*/
	align-items: flex-start;
	/*子要素を上に揃える*/
	margin-bottom: 10vw;
	/*ボックスの下（外側）に空けるスペース*/
	gap: 5vw;
	/*子要素同士に空けるマージン的な要素。画面幅100%＝100vwです。*/
}

/*bg3内のlist-freeの下マージンをなくす。そのままだと広く取りすぎるので。*/
.bg3 .list-free {
	margin-bottom: 0;
}

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

/*h3見出し*/
.list-free h3 {
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
	font-size: 1.5rem;
	/*文字サイズを150%に*/
	font-weight: 500;
	/*文字の太さ。100から900まで指定可能。*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	/*カギカッコを絶対配置する為に必要な指定*/
	padding: 0 1rem;
	/*上下、左右へのh3内の余白*/
	margin: 0 auto;
	/*左右の中央に配置*/
}

/*h3見出しのカギカッコ装飾（共通設定）*/
.list-free h3::before,
.list-free h3::after {
	content: "";
	position: absolute;
	width: 20px;
	/*カギカッコの幅。お好みで。*/
	height: 50px;
	/*カギカッコの高さ。お好みで。*/
	border: 1px solid var(--primary-color);
	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/

}

/*h3見出しの最初のカギカッコの設定*/
.list-free h3::before {
	top: -15px;
	/*テキストからの距離。お好みで。*/
	left: -15px;
	/*テキストからの距離。お好みで。*/
	border-right: none;
	/*右の線は消す*/
	border-bottom: none;
	/*下の線は消す*/
}

/*h3見出しの最後のカギカッコの設定*/
.list-free h3::after {
	bottom: -15px;
	/*テキストからの距離。お好みで。*/
	right: -15px;
	/*テキストからの距離。お好みで。*/
	border-left: none;
	/*左の線は消す*/
	border-top: none;
	/*上の線は消す*/
}

/*h4見出し*/
.list-free h4 {
	font-weight: 500;
	/*文字の太さ。100から900まで指定可能。*/
	font-size: 1.3rem;
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	margin-bottom: 0.5em;
}

/*画像ブロック*/
.list-free .image {
	box-shadow: 0px 0px 30px rgba(var(--primary-color-rgb), 0.3);
	/*ボックスの影。右へ、下へ、ぼかす量。rgba以降は色で、css冒頭のvar(primary-color-rgba)を読み込み、0.3で透明度を指定。*/
}

/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image>div {
	background: #fff;
	/*背景色*/
	font-size: 0.7rem;
	/*文字サイズを70%*/
	padding: 1rem 2rem;
	/*上下、左右への余白*/
}

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

	/*list-freeボックス*/
	.list-free {
		flex-direction: row;
		/*縦並びから横並びにする*/
	}

	/*h3見出し*/
	.list-free h3 {
		writing-mode: vertical-rl;
		/*縦書きの指定。*/
		text-orientation: upright;
		/*文字の向き*/
		padding: 1rem 0.5rem;
		/*上下、左右へのh3内の余白*/
	}

	/*その他（汎用向け）お好みでもっと追加して使ってもOK*/
	.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;
	}

}

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


/*ボタン（btn）
---------------------------------------------------------------------------*/
.btn a {
	display: block;
	text-decoration: none;
	font-size: 1rem;
	text-align: center;
	/*テキストをセンタリング*/
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding: 0.5rem;
	/*ボタン内の余白*/
	margin-top: 1rem;
	/*ボタンの外（上）に空けるスペース*/
}


/*bg3（トップページの「お知らせ」などで使っている背景）
---------------------------------------------------------------------------*/
/*背景画像の指定。上側だけ作っておけばOKです。*/
.bg3,
.bg3::before {
	background: url('../images/bg3.svg') repeat-x center top / auto 50px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/
}

/*背景ブロック全体*/
.bg3 {
	position: relative;
	padding-top: 49px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/
	padding-bottom: 49px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/

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

/*下の背景画像への追加指定*/
.bg3::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 50px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/
	left: 0px;
	bottom: 1px;
	transform: scaleY(-1);
	/*上下反転*/
}

/*backgroundには、上で読み込む背景画像のカラーを抜き出して指定して下さい。*/
.bg3>div {
	padding: 1px;
	background: #fff49a;
	/*背景色。背景画像と同じ色を指定して下さい。*/
	padding-left: var(--global-space);
	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);
	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-top: 5vw;
	/*ボックス内の上への余白。お好みで。*/
	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: 100px;
	height: 100px;
	background-image: url('../images/kazari3.svg');
	background-repeat: no-repeat;
	background-size: cover;
}

左の装飾への追加指定
.kazari3-wrap::before {
	left: -150px;
}

右の装飾への追加指定
.kazari3-wrap::after {
	right: -150px;
	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;
	/*下からの配置場所指定*/
	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: 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;
}

@media screen and (max-width:768px) {
	.c {
		padding: 6vw 4vw;
	}
}

.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;
	}

}

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

/* ライバー紹介
---------------------------------------------------------------------------*/

/* --- ライバー紹介セクション全体 --- */
.liver {
	padding: 4rem 2rem;
	/* 上下左右の余白 */
	text-align: center;
	/* セクション内の中央揃え */
	background-color: #f9f9f9;
	/* 背景色を薄グレーに */
	border-radius: 24px;
}

/* --- トップページ用識別クラス（見た目には影響しない） --- */
/* .liver--top {
} */

/* --- セクション見出し（ライバー紹介） --- */
.liver h4 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* --- ライバーカードを横並びに並べるコンテナ --- */
.liver-list {
	display: flex;

	flex-wrap: wrap;
	
	justify-content: center;
	/* 中央寄せ */
	gap: 2rem;
	/* カード間のすき間 */
}

/* --- 各ライバーカードの見た目 --- */
.liver-card {
	width: 25%;
	/* カードの横幅 */
	padding: 1rem 2rem;
	/* 内側の余白 */
	background-color: #fff;
	/* 白背景 */
	border-radius: 12px;
	/* 角丸 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	/* 影をつけて立体感 */
	transition: transform 0.3s;
	/* ホバー時のアニメーション */
	border: 3px solid #20226e;
	/* 枠線の色 */
}

/* --- ホバー時にカードを少し浮かせる演出 --- */
.liver-card:hover {
	transform: translateY(-5px);
}

/* --- ライバー画像（丸く表示） --- */
.liver-card img {
	width: 100%;
	/* カード幅に合わせる */
	aspect-ratio: 1 / 1;
	/* 正方形にする（モダンブラウザ対応） */
	object-fit: cover;
	/* 中央トリミング */
	border-radius: 50%;
	/* 丸くする */
	border: 3px solid #20226e;
	/* 枠線の色 */
}

/* --- ライバーの名前 --- */
.liver-card h5 {
	font-size: 1rem;
	margin: 0;

	font-weight: bold;
	color: var(--primary-color);
}

/* --- ライバーの紹介文 --- */
.liver-card p {
	font-size: 0.8rem;
	color: #555555;
	margin-bottom: 0.8rem;
}

.liver-card--hinata {
	border: 3px solid #56a3f4;
}

.liver-card--kirara {
	border: 3px solid #f8be77;
}

.liver-card--ruki {
	border: 3px solid #a065d7;
}

.liver-card--sabo {
	border: 3px solid #68846e;
}

.liver-card--hinata img {
	border: 3px solid #56a3f4;
}

.liver-card--kirara img {
	border: 3px solid #f8be77;
}

.liver-card--ruki img {
	border: 3px solid #a065d7;
}

.liver-card--sabo img {
	border: 3px solid #68846e;
}

.liver-card--hinata h5 {
	color: #56a3f4;
}

.liver-card--kirara h5 {
	color: #f8be77;
}

.liver-card--ruki h5 {
	color: #a065d7;
}

.liver-card--sabo h5 {
	color: #68846e;
}

/* 所属ライバーカード内のリンク装飾を消す */
.liver-card .liver-card-link,
.liver-card .liver-card-link * {
	text-decoration: none !important;
}

/* ホバー時も下線を出さない */
.liver-card .liver-card-link:hover,
.liver-card .liver-card-link:hover * {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* 念のため h5 を明示 */
.liver-card h5 {
	text-decoration: none;
	border: 0;
}

@media screen and (max-width:480px) {
	.liver-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: center;
		/* 中央寄せ */
		gap: 2rem;
		/* カード間のすき間 */
	}
}


.liver-list-title {
	color: var(--primary-color);
}

.liver-list-title--kirara {
	color: var(--kirara-color);
}

.liver-list-title--hinata {
	color: var(--hinata-color);
}

.liver-list-title--sabo {
	color: var(--sabo-color);
}

.liver-list-title--ruki {
	color: var(--ruki-color);
}

/* --- セクション下の「全ライバー一覧へ」リンク --- */
.more-link {
	margin: 1rem 0 0 0;
}

/* --- 一覧リンクの装飾 --- */
.more-link a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
}

.news-link a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
}

/* --- 一覧リンクホバー時に下線追加 --- */
.more-link a:hover {
	text-decoration: underline;
}

.all-liver-link a {
	color: #fff;
}

.all-liver-link {
	text-align: center;
	margin-top: 4rem;
}

/* ニュース
---------------------------------------------------------------------------*/
/* --- ニュースリンク --*/
.news-link {
	text-align: center;
}

.news-title {
	color: var(--primary-color);
	font-size: 3rem;
}

.news-text {
	color: var(--primary-color);
	min-height: max-content;
}

.news-text h4 {
	margin: 1rem 0 0 1rem;
}

.news-text p {
	margin: 0 0 0 1rem;
}

/* サムネイルスライド
---------------------------------------------------------------------------*/

/* スライダー全体の枠 */
.liver-swiper {
	width: 100%;
	overflow: hidden;
	padding: 1rem 0;
}

/* 各スライド（1枚ごとのカード） */
.liver-swiper .swiper-slide {
	width: 10rem !important;
	/* 横幅を固定（JSのslidesPerView: 'auto' と連携） */
	height: 20rem;
	/* 高さも固定 */
	flex-shrink: 0;
	position: relative;
	/* 名前ラベル配置のため */
	/* border-radius: 0.5rem; */
	overflow: hidden;
	background-color: #f0f0f0;
	/* 背景が見やすいように仮設定 */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 中の画像（縦長全身） */
.liver-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.liver-swiper .liver-info {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	padding: 0.4rem 0.6rem;

	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.4;
	text-align: left;

	/* border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem; */
	box-sizing: border-box;

	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.liver-swiper .swiper-wrapper {
	display: flex;
	transition-timing-function: linear !important;
	/* ←滑らかな等速に */
}

/* ---------------------------
   ▼ タブレット（幅768px以下）
---------------------------- */
@media screen and (max-width: 768px) {
	.liver-card {
		width: 45%;
		/* 2列表示 */
		padding: 1rem;
	}

	.liver-card h5,
	.liver-card p {
		font-size: 1.1rem;
	}

	.liver h4 {
		font-size: 1.6rem;
	}

	.more-link a,
	.news-link a {
		font-size: 1.6rem;
	}

	.liver-swiper .swiper-slide {
		width: 8rem !important;
		height: 16rem;
	}

	.liver-swiper .liver-info {
		font-size: 0.65rem;
		padding: 0.3rem 0.5rem;
	}
}

/* ---------------------------
   ▼ スマホ（幅480px以下）
---------------------------- */
@media screen and (max-width: 480px) {
	.liver-card {
		width: 100%;
		/* 1列表示 */
		padding: 0.5rem;
	}

	.liver {
		padding: 2rem 1rem;
	}

	.liver-card h5,
	.liver-card p {
		font-size: 0.9rem;
	}

	.liver h4 {
		font-size: 1.4rem;
	}

	.more-link a,
	.news-link a {
		font-size: 1.2rem;
	}

	.liver-swiper .swiper-slide {
		width: 7rem !important;
		height: 14rem;
	}

	.liver-swiper .liver-info {
		font-size: 0.6rem;
	}
}

/*about共通
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.about {
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びにする*/
	gap: 3rem;

	padding-top: 4rem;

	font-weight: bold;
	color: #fff;
	text-shadow:
		0 0 5px rgba(0, 0, 64, 0.4),
		0 0 10px rgba(0, 0, 64, 0.4),
		0 0 15px rgba(0, 0, 64, 0.4),
		0 0 20px rgba(0, 0, 64, 0.4),
		0 0 25px rgba(0, 0, 64, 0.4),
		0 0 30px rgba(0, 0, 64, 0.4),
		0 0 35px rgba(0, 0, 64, 0.4),
		0 0 40px rgba(0, 0, 64, 0.4);
}

.about-title {
	margin: 0;
	font-size: 1.5rem;

	font-weight: bold;
	color: #fff;
	text-shadow:
		0 0 5px rgba(0, 0, 64, 0.4),
		0 0 10px rgba(0, 0, 64, 0.4),
		0 0 15px rgba(0, 0, 64, 0.4),
		0 0 20px rgba(0, 0, 64, 0.4),
		0 0 25px rgba(0, 0, 64, 0.4),
		0 0 30px rgba(0, 0, 64, 0.4),
		0 0 35px rgba(0, 0, 64, 0.4),
		0 0 40px rgba(0, 0, 64, 0.4);
}

.about-title--under {
	font-size: 1.8rem;
}

/*画像を囲むブロックの設定*/
.about-image {
	justify-content: top;
	/*並びかたの種類の指定*/
}

/*画像の設定*/
.about-image img {
	width: 40%;
	/*幅*/
}

/*テキストブロックの設定*/
.about-text {
	flex: 3;
	/*幅*/
	display: flex;
	/*flexボックスを使う指定*/
	flex-direction: column;
	/*子要素を縦並びにする*/
	padding-top: 0;

	margin-bottom: 1rem;
}

.about-text p {
	font-size: 1rem;
}

@media screen and (min-width:480px) {
	.about-text {
		padding-top: 2rem;
		margin-bottom: 0;
	}

	.about-text p {
		font-size: 1.4rem;
	}

	.about-title {
		margin: 0;
		font-size: 2.8rem;
	}
}

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

	/*ブロック全体の設定*/
	.about {
		flex-direction: row;
		/*子要素を縦並びから縦並びに変更*/
		justify-content: space-around;
		/*並びかたの種類の指定*/
		padding-top: 0;
	}

	/*画像を囲むブロックの設定*/
	.about-image {
		display: flex;
		/*flexボックスを使う指定*/
		flex-direction: column;
		/*子要素を縦並びにする*/
		flex: 1;
		/*幅*/
	}

	/*画像の設定*/
	.about-image img {
		width: 100%;
		/*幅*/
	}

	/*テキストブロックの設定*/
	.about-text {
		flex: 2;
		/*幅*/
		display: flex;
		/*flexボックスを使う指定*/
		flex-direction: column;
		/*子要素を縦並びにする*/

	}

	.about-text p {
		font-size: 1.2rem;
	}

	.about-link a {
		color: #fff;
	}

	.about-link {
		text-align: center;
		margin-top: 2rem;
	}

}

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

/*aboutの追加設定
---------------------------------------------------------------------------*/
/*photo1の追加設定*/
.about .photo1 {
	transform: rotate(12deg);
	/*回転*/
}

/*photo2の追加設定*/
.about .photo2 {
	transition-delay: 1s;
	/*1秒遅れてスタート*/
	transform: rotate(-2deg);
	/*回転*/
}

/*photo3の追加設定*/
.about .photo3 {
	transition-delay: 1.5s;
	/*1.5秒遅れてスタート*/
	transform: rotate(-8deg);
	/*回転*/
}

/*photo4の追加設定*/
.about .photo4 {
	transition-delay: 2s;
	/*2秒遅れてスタート*/
	transform: rotate(4deg);
	/*回転*/
}


/*photo（写真風スタイル）
---------------------------------------------------------------------------*/
.photo {
	padding: 0.7vw;
	/*写真の縁にあたる部分*/
	background: #fff;
	/*縁の部分の色*/
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
	/*写真につける影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.2は色が20%出た状態。*/
}


/*photo-circle（不規則な円形にくり抜くスタイル）
---------------------------------------------------------------------------
以下のurl（※海外の外部サイト）で簡単にborder-radiusの値を取得できます。
https://9elements.github.io/fancy-border-radius/
---------------------------------------------------------------------------*/
.photo-circle {
	border-radius: 57% 43% 62% 38% / 44% 56% 44% 56%;
}

.hosoku {
	display: block;
	font-size: 0.4em;
	/*親要素の40%のサイズに*/
	opacity: 0.5;
	/*透明度。色が50%出る。*/
}

/* class-item */

/* ベーススタイル（あなたの元コード） */
/* 全体レイアウト */
/* ヘッダー */
.class-item-head {
	position: relative;
	padding: 0;
}

/* 画像を上に浮かせる */
.class-item-img-wrapper {
	position: relative;
	width: 50rem;
	height: auto;
	margin: 0 auto;
}

.class-item-img {
	width: 100%;
	height: auto;
	display: block;
}

/* テキスト部分 */
/* テキスト部分 */
.class-item-head-content {
	background-color: #f8f7f0;
	padding: 1.2rem 1rem;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
	position: relative;
	width: 80vw;
	margin: 0 auto;
	line-height: 1;
}

.class-item-head-content h4 {
	font-size: 2.2rem;
	color: var(--primary-color);
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0;
}

.class-item-head-content p {
	font-size: 1.1rem;
	color: var(--primary-color);
	margin: 1.2rem 0 0;
	font-weight: 500;
}

/* 本文エリア */
.class-item-text {
	margin-top: 1.5rem;
	line-height: normal;
}

.class-item-text-list {
	background-color: #f8f7f0;
	padding: 1.2rem 1rem;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
	position: relative;
	width: 80vw;
	margin: 0 auto 1.5rem;
}

/* 各見出し */
.class-item-text-heading {
	font-size: 1.6rem;
	color: var(--primary-color);
	font-weight: 700;
	text-align: center;
	margin: 0;
}

/* 本文 */
.class-item-text-body {
	font-size: 0.95rem;
	line-height: normal;
	color: #444;
	text-align: center;
	margin: 1.2rem 0 0;
	font-weight: 500;
}


p.more-link.class-item-link {
	margin: 2rem 0 0;
	background: none;
	text-align: center;
}

.class-item-link a {
	font-size: 1.6rem;
	color: var(--primary-color);
	text-decoration: none;
}

.class-item-link a:hover {
	text-decoration: underline;
}

.classlist-br {
	display: none;
}

.classitem-fslarge {
	font-size: 1.2rem;
}

/* ---------------------------
   ▼ レスポンシブ対応（768px以下）
---------------------------- */
@media screen and (max-width: 768px) {
	.classlist-item {
		padding: 0 2rem;
	}

	.class-item-text {
		padding: 0 2rem;
	}

	.class-item-text h5 {
		font-size: 1.6rem;
	}

	.class-item-text p {
		font-size: 1rem;
	}

	.class-item-link a {
		font-size: 1.4rem;
	}

	.class-item-text-heading {
		top: 8%;
		font-size: 1.1rem;
	}

	.class-item-img-wrapper {
		width: 30rem;
	}

	.class-item-head {
		position: relative;
		padding: 0;
	}

	.classlist-br {
		display: block;
	}

	.classitem-fslarge {
		font-size: 1.2rem;
	}
}

/* ---------------------------
   ▼ スマホサイズ（480px以下）
---------------------------- */
@media screen and (max-width: 480px) {
	.classlist-item {
		padding: 0 1rem;
	}

	.class-item-text {
		padding: 0 1rem;
	}

	.class-item-text h5 {
		font-size: 1.5rem;
	}

	.class-item-text p {
		font-size: 0.75rem;
	}

	.class-item-link a {
		font-size: 1.2rem;
	}

	.class-item-head-content h4 {
		font-size: 1.75rem;
	}

	.class-item-text-heading {
		top: 5%;
		font-size: 1rem;
	}

	.class-item-img-wrapper {
		width: 20rem;
	}

	.class-item-head {
		position: relative;
		padding: 0;
	}

	.classitem-fslarge {
		font-size: 0.95rem;
	}
}

/* companyinfo-page
---------------------------------------------------------------------------*/

/* ---------- セクション全体 ---------- */
.ci-section {
	padding: 4rem 1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.ci-section {
		padding: 4rem 2rem;
	}
}

.ci-section h2 {
	font-size: 2.8rem;
	/* 少し大きめ */
	font-weight: 800;
	/* より太くしてタイトル感アップ */
	margin-bottom: 4.5rem;
	position: relative;
	color: var(--primary-inverse-color);
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.05em;
	/* 少し広げて高級感 */
}

/* 下線をつける */
/* .ci-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
} */

.ci-section h2 span {
	display: block;
	font-size: 1rem;
	color: #888;
}

/* ---------- 背景カラー帯 ---------- */
.ci-bg-primary-color {
	background-color: #efde55;
	color: #fff;
	position: relative;
	left: -6vw;
	width: calc(100% + 12vw);
}

.ci-bg-primary-color h2 {
	color: var(--primary-color);
}

/* ---------- グリッド構造（最大3列） ---------- */
.ci-list-grid1 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}

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

/* ---------- 各カードボックス ---------- */
.ci-list {
	background-color: var(--primary-inverse-color);
	color: var(--primary-color);
	padding: 2rem 1.5rem;
	border-radius: 12px;
	position: relative;
	transition: transform 0.3s ease;
	text-align: left;
}

.ci-list-bg--black {
	background-color: #121451;
	color: var(--primary-inverse-color);
}

.ci-list:hover {
	transform: translateY(-5px);
}

.ci-list figure.icon img {
	width: 50px;
	height: auto;
	margin-bottom: 1.5rem;
}

.ci-list h4 {
	font-size: 1.1rem;
	line-height: 1.5;
}

.ci-list-bg--black h4 {
	color: var(--primary-inverse-color);
}

.ci-list p {
	font-size: 0.95rem;
	color: var(--primary-color);
	line-height: 1.6;
}

.ci-list-bg--black p {
	color: var(--primary-inverse-color);
}

.ci-num {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 1.4rem;
	color: var(--primary-color);
	opacity: 0.5;
}

.ci-list-bg--black .ci-num {
	color: var(--primary-inverse-color);
}

/* ---------- 装飾 ---------- */
.ci-color-check {
	color: #ffe066;
	font-weight: bold;
}

.ci-kazari {
	font-weight: bold;
	font-size: 1.1rem;
}

.ci-marker {
	background: linear-gradient(transparent 60%, #ffe066 60%);
	display: inline;
}

.ci-icon {
	margin: -4rem auto 0;
	width: 60%;
	height: auto;
	background-color: #fff;
	border-radius: 50%;
}

/* ---------- アニメーション ---------- */
.ci-up {
	animation: ci-fade-up 0.8s ease forwards;
	opacity: 0;
}

@keyframes ci-fade-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ---------- インラインユーティリティ ---------- */
.ci-inline-block {
	display: inline-block;
}

.ci-relative {
	position: relative;
}

/* ---------- レスポンシブ最適化（縦並び時） ---------- */
@media screen and (max-width: 768px) {

	.ci-section h2 {
		font-size: 1.8rem;
	}

	.ci-list {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 1rem 1rem;
	}

	.ci-list figure.icon img {
		width: 70px;
		margin-bottom: 1.2rem;
	}

	.ci-list h4 {
		font-size: 1rem;
		margin: 1rem 0;
	}

	.ci-list p {
		font-size: 0.9rem;
	}

	.ci-icon {
		width: 50%;
		margin: 0 auto 1rem;
	}

	.ci-marker {
		background: linear-gradient(transparent 60%, #ffe06688 60%);
	}

	.ci-list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
		max-width: 80rem;
		margin: 0 auto;
		padding: 0;

	}

	.ci-num {
		font-size: 1.8rem;
	}
}

/* ---------------------------
   ▼ スマホサイズ（480px以下）
---------------------------- */
@media screen and (max-width: 480px) {

	.ci-section h2 {
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}

	.ci-list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
		max-width: 80rem;
		margin: 0 auto;
		padding: 0;
	}

	.ci-list h4 {
		font-size: 0.5rem;
		margin: 0;
	}

	.ci-list p {
		font-size: 0.4rem;
	}

	.ci-num {
		font-size: 1.4rem;
		top: 0.2rem;
		left: 0.8rem;

	}
}

.ci-list-grid2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0;

}

@media screen and (max-width: 768px) {
	.ci-list-grid2 {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 480px) {
	.ci-list-grid2 {
		grid-template-columns: 1fr;
	}
}

/* ---------- 三角形ボックス下部装飾 .arrow ---------- */
.arrow {
	background: #24148b url(../images/bg_pattern.png) repeat center top / 10px;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	padding-bottom: 200px;
	/* 通常より大きめ */
	position: relative;
	z-index: 1;
	margin-left: 6vw var(--global-space);
	margin-right: 6vw var(--global-space);
	left: -6vw;
	width: calc(100% + 12vw);
}

/* 継ぎ目を調整 */
.arrow+section {
	margin-top: -200px;
	padding-top: 250px;
}

@media screen and (max-width: 1023px) {
	.arrow {
		clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
		padding-bottom: 120px;
		/* 通常より大きめ */
		position: relative;
		z-index: 1;
		margin-left: 6vw var(--global-space);
		margin-right: 6vw var(--global-space);
		left: -6vw;
		width: calc(100% + 12vw);
	}

	/* 継ぎ目を調整 */
	.arrow+section {
		margin-top: -200px;
		padding-top: 250px;
	}
}

@media screen and (max-width: 768px) {
	.arrow {
		padding: 2rem 4rem 8rem;
	}
}

@media screen and (max-width: 480px) {
	.arrow {
		padding: 2rem 2rem 4rem;
	}
}

/* flow-section
---------------------------------------------------------------------------*/

/*list-normal1（「お客様の声」「制作の流れ」ブロックで使用）*/
.list-normal1 * {
	margin: 0;
	padding: 0;
}

/*ブロック１個あたり*/
.list-normal1 .list {
	background: #fff;
	/* background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px; */
	color: var(--primary-color);
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	border-radius: 24px;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:768px) {
	.list-normal1 .list {
		display: flex;
		gap: 2rem;
	}

	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}

	.list-normal1 figure {
		margin-bottom: 0;
	}

	.list-normal1 h4 {
		font-size: 2rem;
		line-height: 1.8;
	}
}

/*画像ブロック*/
.list-normal1 figure {
	width: 30%;
	margin-bottom: 1rem;
}

/*h4見出し*/
.list-normal1 h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

/*h4内にアイコンを配置した場合*/
.list-normal1.flow h4 i {
	margin-right: 1rem;
}

/*名前*/
.list-normal1 .name {
	text-align: right;
	margin-top: 1rem;
}

/*矢印の装飾（制作の流れ）*/
.list-normal1.flow .list::after {
	content: "▼";
	position: absolute;
	left: 50%;
	bottom: -2rem;
	transform: scaleX(1.5);
	opacity: 0.5;
	color: #87b9ef;
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}

/* 説明会参加申込リンクボタン 
------------------------------------------------------------------------ */

.btn-animate {
	display: inline-block;
	position: relative;
	width: 20rem;
	/* ← ここで横幅を固定 */
	text-align: center;
	padding: 1em 2.5em;
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	background: #221762;
	/* 紺 */
	border-radius: 50px;
	text-decoration: none;
	overflow: hidden;
	z-index: 0;
	box-shadow: 0 4px 15px rgba(34, 23, 98, 0.4);
	animation: pulse 2.5s infinite ease-in-out;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	margin: 4em auto 0;
}

/* 光が常に流れるアニメーション */
.btn-animate::before {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 150%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 80%);
	transform: skewX(-20deg);
	animation: shine 3s linear infinite;
	z-index: 1;
}

/* テキストを前面に出す */
.btn-animate::after {
	content: attr(data-text);
	position: relative;
	z-index: 2;
}

/* ホバー時の追加効果 */
.btn-animate:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(34, 23, 98, 0.6);
	color: rgb(255, 255, 85);
}

/* 光の流れアニメーション */
@keyframes shine {
	0% {
		left: -150%;
	}

	100% {
		left: 150%;
	}
}

/* 脈動（バウンス風）アニメーション */
@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}



.btn-line-fixed {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 9999;

	display: inline-flex;
	align-items: center;
	background-color: #06C755;
	/* LINEカラー */
	color: white;
	font-weight: bold;
	font-size: 1.1rem;
	padding: 0.8em 1.5em;
	border-radius: 100px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, background-color 0.3s ease;
	animation: pulse-line 2s infinite;
}

.btn-line-fixed i {
	margin-right: 0.5em;
	font-size: 1.3rem;
}

.btn-line-fixed:hover {
	background-color: #04a24f;
	transform: scale(1.05);
}

/* アニメーション効果（鼓動） */
@keyframes pulse-line {
	0% {
		box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.6);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(6, 199, 85, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(6, 199, 85, 0);
	}
}


.line-cute-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.8em;
	padding: 1em 1.8em;
	background: linear-gradient(135deg, #c4f4e1, #fce4ec);
	border-radius: 2em;
	box-shadow: 0 6px 12px rgba(200, 150, 200, 0.3);
	color: #333;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
	animation: gentleFloat 3s ease-in-out infinite;
	width: 80vw;
	margin: 4rem auto 0;
}

.line-cute-btn:hover {
	transform: scale(1.05);
}

.line-icon {
	font-size: 1.6rem;
	position: relative;
}

.sparkle {
	position: absolute;
	top: -0.6em;
	right: -0.6em;
	font-size: 0.9rem;
	animation: sparkleFloat 2s infinite ease-in-out;
}

.line-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.line-sub {
	font-size: 0.8rem;
	color: #666;
	font-weight: normal;
	margin-top: 0.2em;
}

/* ふわふわ浮かぶアニメーション */
@keyframes gentleFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-0.6rem);
	}
}

/* キラキラ装飾アニメーション */
@keyframes sparkleFloat {

	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(-5px);
		opacity: 0.7;
	}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;
	/*リンクテキストの色*/
	transition: 0.3s;
	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}

a:hover {
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	filter: brightness(1.2);
	/*マウスオン時に少し明るくする*/
}

.list-normal img:hover {
	filter: brightness(1);
	transform: scale(1.05);
}

@keyframes dots {
	0% {
		content: "";
	}

	25% {
		content: ".";
	}

	50% {
		content: "..";
	}

	75% {
		content: "...";
	}

	100% {
		content: "";
	}
}

.dots::after {
	content: "Loading";
	animation: dots 1.5s infinite steps(4, end);
}

.mainimg {
	background: #fff;
}

.list-news .list {
	background: #fff;
	height: 100%;
	/* 親が高さを与えると効きます */
	border-radius: 12px;
	background: #fff;
	display: flex;
	flex-direction: column;
	/* 高さをそろえたい場合は親のグリッド/横並び側で stretch させる */
}

.list-news .list figure {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	aspect-ratio: 2/1;
}

.list-news .list figure img {
	border-radius: 12px 12px 0 0;
	aspect-ratio: 9/5;
	width: 100%;
	height: auto;
}

.list-news .news-list-body {
	padding: 0 1rem;
}

/* ----- single news (news_item) ----- */
.single-news {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem 1.5rem 3rem;
}

.single-news-header {
	text-align: left;
	margin-bottom: 1.5rem;
}

.single-news-title {
	font-size: 1.8rem;
	line-height: 1.4;
	margin: 0 0 .4rem;
}

.single-news-date {
	display: inline-block;
	font-size: .95rem;
	opacity: .8;
}

.single-news-figure {
	margin: 1.2rem 0 1.6rem;
}

.single-news-figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.single-news-content {
	line-height: 1.9;
	font-size: 1.05rem;
}

.single-news-content img {
	max-width: 100%;
	height: auto;
}

.single-news-content strong {
	font-size: 1.4rem;
	background: linear-gradient(transparent 60%, #160b66 60%);
}

/* タグ（任意） */
.single-news-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem .75rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.single-news-tags li a {
	display: inline-block;
	padding: .35rem .6rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, .06);
}

/* 前後ナビ＋一覧に戻る */
.single-news-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .6rem;
	align-items: center;
	margin-top: 2rem;
}

.single-news-nav .btn a {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(0, 0, 0, .12);
}

.single-news-nav .prev {
	justify-self: start;
}

.single-news-nav .next {
	justify-self: end;
}

.single-news-nav .back {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: .4rem;
}

/* 小さめ画面 */
@media (max-width: 768px) {
	.single-news {
		padding: 1.25rem 1rem 2rem;
	}

	.single-news-title {
		font-size: 1.5rem;
	}
}

.news-btn {
	margin: auto 1rem 1rem;
	/* ← これで常に一番下へ */
	display: block;
	text-align: center;
	border-radius: 8px;
	color: #fff;
}



.news-btn a:hover {
	color: #fff49a;
	transform: scale(1.02);

}

.news-btn a {
	margin-top: 0;
}

@media screen and (max-width: 768px) {
	.news-btn {
		margin: 1rem;
	}
}


/* ====== single liver ====== */
.single-liver-header {
	margin-bottom: 2rem;
}

.single-liver-name {
	font-size: 2rem;
	line-height: 1.3;
	margin: 0 0 0.8rem;
}

.single-liver-badges {
	display: flex;
	gap: .5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.badge {
	display: inline-block;
	padding: .25rem .6rem;
	border-radius: 999px;
	font-size: .85rem;
	background: rgba(0, 0, 0, .06);
}

.badge-gen {
	background: rgba(255, 180, 0, .18);
}

.badge-class {
	background: rgba(0, 140, 255, .15);
}

.single-liver-hero {
	display: grid;
	grid-template-columns: 1fr;
	/* モバイル: 縦積み */
	gap: 1.25rem;
	align-items: start;
	margin-top: .5rem;
}

.single-liver-figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.single-liver-meta dl {
	margin: 0;
}

.single-liver-meta .row {
	color: #fff;
	display: flex;
	gap: 1rem;
	padding: .5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.single-liver-meta dt {
	color: #fff;
	width: 6.5em;
}

.single-liver-meta dd {
	color: #fff;
	margin: 0;
}

/* 実績 */
.single-liver-works {
	margin-top: 1rem;
}

.single-liver-works h3 {
	font-size: 1.1rem;
	margin: .5rem 0;
}

.single-liver-works ul {
	list-style: disc;
	margin: .25rem 0 0 1.2rem;
	padding: 0;
}

.single-liver-works li {
	margin: .25rem 0;
}

/* 本文 */
.single-liver-content {
	margin-top: 2rem;
	line-height: 1.9;
	font-size: 1.05rem;
}

.single-liver-content img {
	max-width: 100%;
	height: auto;
}

/* 戻るボタン */
.single-liver-nav {
	margin-top: 2rem;
	text-align: center;
}

.single-liver-nav .btn a {
	display: inline-block;
	padding: .6rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, .12);
}

/* ソーシャルアイコン */
.social-icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, .12);
	text-decoration: none;
	transition: transform .12s ease, background .12s ease, border-color .12s ease;
	margin-right: .4rem;
}

.social-icon i,
.social-icon svg {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.social-icon:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 0, 0, .2);
	background: rgba(0, 0, 0, .04);
}

.social-icon.x i {
	color: #111;
}

.social-icon.iriam i,
.social-icon .iriam-svg {
	color: #1e90ff;
	fill: #1e90ff;
}

/* PC: 2カラム（左: 画像 / 右: 情報） */
@media (min-width: 900px) {
	.single-liver-hero {
		grid-template-columns: 420px 1fr;
		gap: 1.5rem 2rem;
	}

	.single-liver-name {
		font-size: 2.2rem;
	}
}


/* ========== Company Info – Corporate Minimal ========== */
:root {
	--ci-ink: #0b1220;
	/* 本文 */
	--ci-sub: #fffcc4;
	/* 補助 */
	--ci-line: #e5e7eb;
	/* 罫線 */
	--ci-bg: transparent;
	/* 背景 */
	--ci-accent: #ffffff;
	/* リンク色（控えめ） */
}

.companyinfo .inner {
	margin: 0 auto;
	color: var(--ci-ink);
	font-feature-settings: "palt";
	width: 90%;
}

/* ページ見出し（左寄せ／英小見出しは大文字） */
.companyinfo .page-header {
	padding: 56px 0 28px;
	border-bottom: 1px solid var(--ci-line);
}

.companyinfo .page-header h2 {
	margin: 0;
	font-size: clamp(28px, 2.3vw, 36px);
	line-height: 1.15;
	letter-spacing: .01em;
	font-weight: 700;
}

.companyinfo .page-header .small {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	color: var(--ci-sub);
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* About（段落間ゆったり） */
.companyinfo .company-about {
	padding: 32px 0 12px;
}

.companyinfo .company-about h3 {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ci-ink);
}

.companyinfo .company-about .entry-content>p {
	margin: 0 0 1em;
	line-height: 1.9;
	color: var(--ci-ink);
}

.companyinfo .company-about .entry-content a {
	color: var(--ci-accent);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	text-underline-offset: 2px;
}

.companyinfo .company-about .entry-content a:hover {
	opacity: .85;
}

/* Company Profile（表組みは視認性を最優先） */
.companyinfo .company-profile {
	padding: 20px 0 64px;
}

.companyinfo .company-profile h3 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ci-ink);
}

/* --- ラッパー（小画面時は横スクロール許可） --- */
.companyinfo .table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* 基本テーブル */
.companyinfo .profile-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--ci-bg);
	border-top: 1px solid var(--ci-line);
	border-bottom: 1px solid var(--ci-line);
	font-size: 1rem;
	table-layout: auto;
}

.companyinfo .profile-table th,
.companyinfo .profile-table td {
	padding: 16px 14px;
	vertical-align: top;
	border-top: 1px solid var(--ci-line);
}

.companyinfo .profile-table th {
	width: 15vw;
	color: var(--ci-sub);
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}

/* うっすらゼブラで可読性UP（企業寄りの控えめトーン） */
.companyinfo .profile-table tbody tr:nth-child(even) td {
	background: transparent;
}

/* 連絡先リンク：下線のみでフラット */
.companyinfo .profile-table td a {
	color: var(--ci-accent);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
}

.companyinfo .profile-table td a:hover {
	opacity: .85;
}

/* 事業内容など複数行 */
.companyinfo .profile-table td p {
	margin: 0 0 .6em;
}

.companyinfo .profile-table td p:last-child {
	margin-bottom: 0;
}

/* セクションのリズム */
.companyinfo section+section {
	margin-top: 1.5rem;
}

/* ちょい装飾：h3下にうっすらライン */
.companyinfo h3 {
	position: relative;
	padding-bottom: .4rem;
}

.companyinfo h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 2px;
	background: currentColor;
	opacity: .15;
}

/* ダーク背景のセクションに置いた時のコントラスト（使っていれば） */
.bg1 .companyinfo .profile-table,
.bg1 .companyinfo .profile-table th,
.bg1 .companyinfo .profile-table td {
	background: transparent;
	color: #ffffff;
}

/* --- 小画面でも“縦積み化しない”上書き --- */
@media (max-width: 720px) {

	/* 表のまま維持 */
	.companyinfo .profile-table,
	.companyinfo .profile-table tbody {
		display: table;
		width: 100%;
	}

	.companyinfo .profile-table tr {
		display: table-row;
	}

	.companyinfo .profile-table th,
	.companyinfo .profile-table td {
		display: table-cell;
	}

	/* 少し圧縮して見やすく */
	.companyinfo .profile-table {
		font-size: 0.8rem;
	}

	.companyinfo .profile-table th,
	.companyinfo .profile-table td {
		padding: 12px 10px;
	}
}

/* 印刷（社内配布想定の簡易プリント） */
@media print {
	.companyinfo .page-header {
		border: 0;
		padding-bottom: 12px;
	}

	.companyinfo .profile-table {
		border-color: #ccc;
	}

	.companyinfo .profile-table th,
	.companyinfo .profile-table td {
		border-color: transparent;
	}

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 11px;
		color: #666;
	}
}



/* span系統 
----------------------------------- */

.font-size--large1 {
	font-size: 1.5rem;
}

.margin-top--4rem {
	margin-top: 2.5rem;
}


.kirara-page {
	background: var(--kirara-color) url('../images/bg.png') repeat center top / 150px;
}

.kirara-page p,
.kirara-page h2,
.kirara-page h3,
.kirara-page h4,
.kirara-page h5,
.kirara-page a {
	color: #662f0e;
}

.hinata-page {
	background: var(--hinata-color) url('../images/bg.png') repeat center top / 150px;
}

.hinata-page p,
.hinata-page h2,
.hinata-page h3,
.hinata-page h4,
.hinata-page h5,
.hinata-page a {
	color: #0e1466;
}

.sabo-page {
	background: var(--sabo-color) url('../images/bg.png') repeat center top / 150px;
}

.sabo-page p,
.sabo-page h2,
.sabo-page h3,
.sabo-page h4,
.sabo-page h5,
.sabo-page a {
	color: #124308;
}

.ruki-page {
	background: var(--ruki-color) url('../images/bg.png') repeat center top / 150px;
}

.ruki-page p,
.ruki-page h2,
.ruki-page h3,
.ruki-page h4,
.ruki-page h5,
.ruki-page a {
	color: #4c0e66;
}

/* --- liverカードのホバー持ち上げを無効化 --- */


/* 念のため、影の変化も固定（必要に応じて） */
.liver-card,
.liver-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* カード内の画像はホバーで変化させない（既に入れていれば不要） */
.liver-card .liver-card-link img,
.liver-card .liver-card-link:hover img,
.liver-card .liver-card-link:focus img,
.liver-card .liver-card-link:active img {
	transform: none !important;
	filter: none !important;
	opacity: 1 !important;
	transition: none !important;
}

/* list-normal ブロック内の画像ホバー拡大を止める（該当する場合のみ） */
.list-normal img:hover {
	transform: none !important;
	filter: none !important;
}