@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=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');


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


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

	--primary-color: #5BB646;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/
	--us-mid-color:#E7F7E1;		/*表内の薄緑カラー*/
	--us-ak-color:#FDDEC5;		/*薄赤カラー*/
	--us-gr-color:#EDEBFE;		/*背景グレーカラー*/
	--us-pi-color:#F9D7E6;		/*薄ピンクカラー*/
	--us-ch-color:#EEDEB2;		/*薄茶色カラー*/
	--us-miz-color:#C6EAEC;		/*表内の薄水色カラー*/
	--us-or-color:#FFFBC6;		/*表内の薄オレンジカラー*/
	--wh-color:#FFFFFF;		/*白*/
	--or-color:#FA9306;		/*オレンジカラー*/
	--ko_mi-color:#2E8904;		/*濃い緑カラー*/
	--whp-color:#F8F8F8;		/*白ッぽカラー*/
	--sky-color:#02B5EE;		/*水色カラー*/
	--kimi-color:#5BB646;		/*黄緑カラー*/
	--blg-color:#878fb5;		/*黄緑カラー*/
	
	--global-space: 10vw;			/*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vwです。*/
	--tab-space: 2vw;
}


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


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


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 14px;	/*基準となるフォントサイズ。*/
		}

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

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

		html, body {
			font-size: 1.2vw;	/*基準となるフォントサイズ。*/
		}

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

.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-bold {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.m-plus-rounded-1c-thin {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.m-plus-rounded-1c-light {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-plus-rounded-1c-extrabold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.m-plus-rounded-1c-black {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
}

body {
	margin: 0;padding:0;
	font-family: "BIZ UDPGothic", "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	/*font-weight: 300;*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	line-height: 2;		/*行間*/
}
h1,h2,h3,h4,h5,h6 {
	font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
}
h5 {
  font-size: 1.5em;
}
h5.sss {
    font-size: 1.2em;
}
/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
section li {margin-left: 1rem;}

/*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;margin-left: 2em;}
label{margin-right: 2em;}
section + section {
	margin-top: 3rem;
}
label.tab_item {margin-right: 0;}
.sky{
	color:var(--sky-color);		/*水色カラー*/
}
.bg1 a.sky{
	color:var(--sky-color);		/*水色カラー*/
}

.mid{
	color:var(--primary-color);		/*緑*/
}
.org{
	color:var(--or-color);		/*オレンジ*/
}
.kim {
    color: var(--kimi-color);
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	word-break: break-all;
}
a.mid {
    color: var(--primary-color);
    text-decoration-line: none;
}
/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;	/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	padding-top: 0;
}


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 70px var(--tab-space);	/*コンテンツ内の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
}
	/*画面幅1140px以上の追加指定*/
	@media screen and (min-width:1140px) {

		#contents {
			flex: 1;
			padding: 7vw var(--global-space);	/*コンテンツ内の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
		}

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


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

	#contents {
		padding-top: 80px;	/*コンテンツ内の上の余白だけ上書き*/
	}

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


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 70px;					/*ヘッダーの高さ*/
	padding: 1vw var(--tab-space);				/*ヘッダー内の余白。上下、左右への順番。*/
	font-family: "M PLUS Rounded 1c", "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
    position: absolute;
    z-index: 1;
    width: 100%;
	background: #fff;		/*背景色*/

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

		header {
			display: flex;					/*flexボックスを使う指定*/
			align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
			justify-content: space-between;
			height: 7vw;					/*ヘッダーの高さ*/
			padding: 1vw var(--global-space);				/*ヘッダー内の余白。上下、左右への順番。*/
			font-family: "M PLUS Rounded 1c", "Reddit Sans", "Noto Sans JP", sans-serif;
			font-optical-sizing: auto;
			font-weight: 500;
			font-style: normal;
		    position: absolute;
		    z-index: 1;
		    width: 100%;
			background: #fff;		/*背景色*/

		}

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


	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*ヘッダーブロック*/
	header {
		position: fixed;	/*スクロールしても動かないようにする指定。*/
	}
	
	}

/*ロゴ（※画像にする場合）*/
#logo img {
	display: block;
	width: 160px;	/*ロゴ画像の幅*/
}

/*ロゴ（テキストにする場合）*/
#logo a {
	display: block;text-decoration: none;
	font-size: 1.2rem;	/*文字サイズを120%に*/
	font-weight: 800;	/*文字の太さ*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

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

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

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

/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {cursor: default;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}
nav img {
    width: 1.5em;
    vertical-align: text-top;
}

/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;		/*横並びにする*/
	font-size: 1.2rem;	/*文字サイズ。85%。*/
	gap: 0.5rem;		/*メニュー同士の間に空けるマージン的な要素*/
}
.large-screen #menubar > nav > ul span {
	font-size: 1rem;	/*文字サイズ。85%。*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	border-radius: 100px;	/*角を丸くする指定。適当に大きければOKです。*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
.large-screen #menubar li a:hover {
	background: #fff;		/*背景色*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.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: 100;
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;	/*上に空けるスペース。メニュー同士の隙間です。*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: #fff;		/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar a {
	padding: 1rem;	/*メニュー内の余白*/
}

/*文字色*/
.small-screen #menubar, .small-screen #menubar a {
	color: #000;
}

/*900px以下でのみ表示させるブロック*/
#menubar .sh {
	font-weight: normal;		/*文字の太さを標準にする*/
	padding: 1rem 2rem 2rem;	/*上、左右、下へのブロック内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 3vw;			/*右からの配置場所指定*/
	top: 1vw;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #333;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: #ff0000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
	border-color: #fff;					/*線の色だけ上書き*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*main
---------------------------------------------------------------------------*/
/*h2(見出し)要素*/
main h2 {
	font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
	font-size: 3rem;		/*文字サイズ。基準の3倍の大きさに。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	margin-block-start: 0;
    line-height: 1.2;
}
/*h2内の小文字部分*/
main h2 .hosoku {
	display: block;font-weight: normal;
	font-size: 0.3em;	/*親要素の40%のサイズに*/
}

/*h3(見出し)要素*/
main h3 {
	display: inline-block;
	color: var(--primary-color);
}
main h3.main {
    display: block;
    color: var(--text-color);
    font-size: 2em;
    margin-block-start: 0;
}
main h3.main.mast {
    margin-block-start: 1em;
}

.w100px{width: 100px !important;height: auto !important;}
.w80px{width: 80px;}

/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 5rem;	/*ボックスの下に空けるスペース。subとの間の余白です。5文字分。*/
}

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

	/*カラムで使う為の指定*/
	main.column {
		display: flex;					/*横並びにする*/
		justify-content: space-between;	/*並びかたの種類の指定*/
		gap: 2rem;						/*main-contentsとsub-contentsの間のマージン的な隙間*/
	}
	
	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		order: 2;		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}
	
	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 230px;	/*幅*/
	}
	
	/*1つ目のsub-contents*/
	.sub-contents:nth-child(2) {
		order: 1;	/*並び順。数字の小さい順番に表示されます。*/
	}
	
	/*2つ目のsub-contents*/
	.sub-contents:nth-child(3) {
		order: 3;	/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}
	
	}/*追加指定ここまで*/


/*サブコンテンツ設定
---------------------------------------------------------------------------*/
/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	display: block;
	margin: 0;
	text-align: center;	/*テキストをセンタリング*/
	border-radius: 5px 5px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	border: 1px solid #ccc;			/*下線の幅、線種、色*/
	background: linear-gradient(transparent, rgba(0,0,0,0.03));/*背景グラデーション。transparentは透明の事。0,0,0は黒の事で0.03は色が3%出た状態。*/
	padding: 0.5rem 0;	/*上下、左右への見出し内の余白*/
}


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

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

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

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

/*h3見出しの下にサブメニューが続く場合にメニューの上の線をなくす*/
.sub-contents h3 + nav .submenu {
	border-top: none;
}


/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	margin: 0 !important;
	padding: 20px;		/*ブロック内の余白*/
	text-align: left;	/*テキストを中央に*/
	font-size: 0.8rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*簡易的に横並びにする*/
	padding: 0 10px;		/*上下、左右への余白*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer .small {	font-size: 0.9rem;}
footer {
	text-align: left;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	border-top: 3px solid var(--ko_mi-color);
		position: relative;
	background: #F8F8F8;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--text-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-top: 0;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 0;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	margin-top: 0;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
	margin-bottom: 0;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/
	padding-left: var(--global-space);
	padding-right: var(--global-space);
}
footer h5,footer p{margin-block-start: 0;margin-block-end: 0;}
.b-se-no{margin-block-start: 0;margin-block-end: 0;}

footer .cop{text-align: right;margin-top: -5em;font-size: 0.75rem;padding-bottom: 1em;}
/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

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


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

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


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

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

/*icon-bg1*/
.new .icon-bg1 {
	background: #333;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
}

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

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

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


/*list-grid1
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid1 {
	display: grid;
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1 .list * {
	margin: 0;padding: 0;
}
/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 1rem;	/*文字サイズを85%に*/
	text-align: left;
}
.list-grid1 .list.flexx,.list-grid1 .list .flexx,.list-grid5-parts .list.flexx {
    display: inline-flex;
    padding-right: 0;
}
.list-grid1 .list.flexx figure,.list-grid1 .list .flexx figure {
    width: 30vw;
    margin-top: -1.1rem;
    margin-bottom: -2px;
}
.list-grid1.cici .list .flexxx figure {
    width: 30vw;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.list-grid5-parts .list.flexx figure {
    width: 30vw;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.list-grid1 .list .flexxx figure {
    width: 13vw;
    margin-top: 0;
    margin-bottom: 0;
}
.list-grid1 .list.flexx figure.m9,.list-grid1 .list .flexx figure.m9 {
    width: 30vw;
    margin-top: -0.6rem;
    margin-bottom: -5px;
}
.list-grid1 .list.flexx .text,.list-grid1 .list .flexx .text {
    width: 60vw;
    text-align: center;
}
.list-grid1 .list.flexx .text h4,.list-grid1 .list .flexx .text h4 {
    font-size: 1.6em;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 500;
    text-decoration-line: none;
}
.list-grid1 .list .flexxx .text h4 {
    font-size: 1.5vw;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.5;
}
.list-grid1 .list.flexx .text img,,.list-grid5-parts .text img {
    width: 10vw;
}
span.keiko {
    background:linear-gradient(transparent 60%, #fbfb09 60%);
}

	/*listブロック全体を囲むブロック*/
	.list-grid1, .list-grid2 {
		grid-template-columns: repeat(1, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
.list-grid1 .list .flexxx {
    display: inline-flex;
    padding-right: 0;
    gap: 1em;
}
.list-grid1 .list .flexxx span.gr {
    display: inline-block;
    background: var(--primary-color);
    padding: 0;
    width: 8em;
    line-height: 1.5;
    color: var(--primary-inverse-color);
    font-family: "M PLUS Rounded 1c";
    letter-spacing: 0.5vw;
    text-align: center;
    justify-items: center;
}

.list-grid1 .list .flexxx span.og {
    display: inline-block;
    background: var(--or-color);
    padding: 0;
    width: 8em;
    line-height: 1.5;
    color: var(--primary-inverse-color);
    font-family: "M PLUS Rounded 1c";
    letter-spacing: 0.5vw;
    text-align: center;
    justify-items: center;
}
.list-grid2 .flexxx + .btn a,.btn a.blll {
    color: #5BB646 !important;
    margin-top: 0 !important;
    margin-bottom: 1em;
}
.list-grid1.menuu a{
    text-decoration-line: none;
    font-size: .8em;
}
h4{
    font-size: 1.7em;
}
.list-grid1.menuu a img{
	width: 10vw;
}
h5.haba{
    font-weight: 400;
    letter-spacing: 0.5em;
    text-indent: 1em;
}
h5.haba.nnn {
    font-weight: 400;
    letter-spacing: 0.5em;
    text-indent: 0;
}
.list-grid1.cici .flexxx {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.list-grid1.cici .flexxx +.flexxx {
    margin-top: 1rem;
}
.list-grid5-parts .flexx{
    border-radius: 20px;
    padding: 0 0.5em;
}
.list-grid1 .list.flexx a {
        text-decoration-line: none;
}
	/*画面幅660px以上の追加指定*/
	@media screen and (min-width:660px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	.list-grid2 {
		grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	.list-grid1 .list.flexx figure {
	    width: 12vw;
	    margin-top: -1.1rem;
	    margin-bottom: -2px;
	}
	.list-grid1 .list .flexx figure {
	    width: 11.5vw;
	    margin-top: -1.1rem;
	    margin-bottom: -2px;
	}
	.list-grid1 .list .flexxx figure {
        width: 13vw;
        margin-top: 0;
        margin-bottom: 1em;
    }
	.list-grid1.cici .list .flexxx figure {
        width: 9vw;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
	.list-grid5-parts .list.flexx figure {
	    width: 5vw;
	    margin-top: 0.5em;
	    margin-bottom: 0.5em;
	}
	.list-grid5-parts .list.flexx figure + .text {
        margin-left: 1em;
	}
	.list-grid5-parts .list.flexx .text {
	    width: 19vw;
	}
	.list-grid1 .list.flexx figure.m9 {
	    width: 12vw;
	    margin-top: -0.6rem;
	    margin-bottom: -5px;
	}
	.list-grid1 .list.flexx .text {
	    width: 25vw;
	    text-align: center;
	}
	.list-grid1 .list .flexx .text {
	    width: 22.5vw;
	    text-align: center;
	}
	.list-grid1 .list .flexxx .text {
        width: 28.5vw;
        text-align: center;
    }
	.list-grid1.cici .list .flexxx .text {
        width: 13.2vw;
        text-align: left;
    }
	.list-grid1 .list.flexx .text h4 {
	    font-size: 1.9vw;
	    text-align: left;
	    margin-bottom: 1rem;
	    line-height: 1.5;
	    text-decoration-line: none;
	}
	.list-grid1 .list .flexx .text h4 {
	    font-size: 1.9vw;
	    text-align: left;
	    margin-bottom: 1rem;
	    line-height: 1.5;
	    font-weight: 500;
	}
	.list-grid1 .list .flexxx .text h4 {
        font-size: 1.3em;
        text-align: left;
        margin-bottom: 0;
        line-height: 1.5;
    }
	.list-grid1 .list .arr {
		transform: rotate(-90deg);
	}

	.list-grid1 .list.flexx .text img,.list-grid1.menuu a img {
	    width: 3vw;
	}
	.list-grid5-parts .text img {
        width: 2.5vw;
    }
	.float-l{float: left;}
	img.w200px{width: 200px;}
	.i-flex img.w200px {width: 200px;height: initial;}

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

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

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	.list-grid2 {
		grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
	.list-grid1.magap00 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
	.list-grid1.gap00,.list-grid2.gap00 {
        gap: 0;
    }

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

	@media screen and (min-width: 1600px) {
	    .list-grid1 .list .flexx figure {
	        width: 10vw;
	    }
	
	    .list-grid1.magap00 {
	        width: 77vw;
	    }
	}/*追加指定ここまで*/
	
	
.i-flex .list-parts{
	border-radius: 20px;
    border: 3px solid var(--primary-color);
    padding: 1em 2em 0;
	background: var(--primary-inverse-color);
}
.i-flex .list-parts + .list-parts{width: 38vw;}
.pa1-2{padding: 1em 2em;}

.list-grid5-parts .flexx.skyb,.i-flex .list-parts.skyb,.list-grid1 .list.skyb {
    border: 3px solid var(--sky-color);
}
.bbb{
    border: 1px solid;
    border-radius: 50px;
    padding: .1em 1em;
    text-decoration-line: none;
}
img.ttl {
    width: 1.5em;
    vertical-align: text-top;
}
/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白*/
	background: var(--primary-inverse-color);
    grid-template-rows: auto 1fr;
    box-shadow: none;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding-bottom:1em;
}
.list-grid2 .list {
    padding-bottom: 0;
}
.list-grid1 .list.bno {
    padding: 1rem;
    background: var(--primary-inverse-color);
    grid-template-rows: auto 1fr;
    box-shadow: none;
    border: none;
    border-radius: 20px;
    padding-bottom: 0;
}
.list-grid1 .list.bno.plr {
    padding: 6.5rem 0;
}
.list-grid1 .list.bno img.matma {
    margin-top: 0;
    width: 225px;
    margin-right: auto;
    margin-left: auto;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.list-grid1 .list.bno img.matma {
		    margin-top: 0;
		    width: auto;
		}

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

.list-grid1 .list.ns {
    padding: 1rem;
    background: transparent;
    grid-template-rows: auto 1fr;
    box-shadow: none;
    border: none;
}
.list-grid2-parts .list.ns {
    padding: 0;
    background: transparent;
    grid-template-rows: auto 1fr;
    box-shadow: none;
    border: none;
    color: white;
   line-height:1.5;
}
/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
	margin-bottom: 0;	/*画像の下に空けるスペース*/
}

.list-grid1 .list h3 {margin-bottom:1.5em;}
/*ボタン（btnと、btn-border-radius）
---------------------------------------------------------------------------*/
/*ボタン共通*/
.btn a,
.btn-border-radius a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color) !important;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: #5BB646 !important;
    background: var(--primary-inverse-color) !important;
    padding: 0.5rem !important;
    margin-top: 1rem !important;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    width: 20em;
    width: auto;
    margin-right: auto !important;
    margin-left: auto !important;
}
.list-grid2 .btn a{
    width: 20em;
}
.list-grid2 .btn a.nra {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    background: var(--primary-color) !important;
    color: #5BB646 !important;
    background: var(--primary-inverse-color) !important;
    padding: 0.5rem !important;
    margin-top: 1rem !important;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    width: 14.8em;
    margin-right: auto !important;
    margin-left: auto !important;
}
.circle{
   width: 225px;
    height: 225px;
    border-radius: 50%;
    background: var(--sky-color);
    margin: 0 auto 1em !important;
}
.circle h4{
   text-align:center;
   line-height:1.5;
   color: var(--wh-color);
   font-size:1.8em;
   margin-top: 3em !important;
}
.circle h4.sema {
    text-align: center;
    line-height: 1.5;
    color: var(--wh-color);
    font-size: 1.8em;
    margin-top: 2.5em !important;
}


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

		.circle h4{
		   text-align:center;
		   line-height:1.5;
		   color: var(--wh-color);
		   font-size:1.8em;
		   margin-top: 6.5vw !important;
		}
		.circle h4.sema {
		    text-align: center;
		    line-height: 1.5;
		    color: var(--wh-color);
		    font-size: 1.8em;
		    margin-top: 4.5vw !important;
		}
		.circle{
		   width: 270px;
		    height: 270px;
		    border-radius: 50%;
		    background: var(--sky-color);
		    margin: 0 auto 1em !important;
		}

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

		img.w3w{width: max(50%, 250px);}

/*list-grid5
---------------------------------------------------------------------------*/

/*ボックス１個あたり*/
.list-grid5-parts .list-parts {
	display: grid;
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を目一杯使う*/
	text-align: center;		/*テキストをセンタリング*/
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース。2文字分。*/
}
.list-grid5-parts .list-parts p {
    margin-block-start: 0;
    margin-block-end: 0;
}
	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	/*ブロック全体を囲むブロック*/
	.list-grid5-parts {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定。３文字分。*/
	}

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


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

	/*ブロック全体を囲むブロック*/
	.list-grid5-parts {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1em;
	}
	.list-grid2-parts {
		grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1em;
		margin-top: 1em;
	}
	.list-grid5-parts.gap0 {
		gap: 0;
	}
	.list-grid5-parts .w35vw {
	    width: 35vw;
	}
	.list-grid5-parts .w30vw {
	    width: 25vw;
	}
	.list-grid5-parts .w35vw h3 {
	    font-size: 5.8vw;
	    line-height: 1.2;
	    margin-block-start: 0;
	}

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


/*ボタン共通（マウスオン時に少し明るくする）*/
.btn a:hover,
.btn-border-radius a:hover {
	filter: brightness(1.2);
}

/*btn-border-radiusの上書き*/
.btn-border-radius a {
	display: inline-block;
	padding: 0.5rem 2rem !important;	/*ボタン内の余白*/
	border-radius: 100px;	/*角丸の指定。適当に大きければOK。*/
}

.btn a img {height: 2em;}


/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background: #F8F8F8;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--text-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-top: 1vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	margin-top: 0;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
	margin-bottom: 1vw;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/
	
	/*以下は変更不要*/
	margin-left: calc(-1 * var(--tab-space));
	margin-right: calc(-1 * var(--tab-space));
	padding-left: var(--tab-space);
	padding-right: var(--tab-space);
	text-align:center;
}
.bg1 a {
	color: inherit;
}
.bg11 {
	padding-bottom: 1vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
}
.bg11 h2.s1-5em {
    font-size: 1.5em;
    margin-block-end: 0;
}
.les2{
    letter-spacing: 0.5em;
}
.les3{
    letter-spacing: 0.5em;
    font-size:1.2em;
}
.bg11 img{
    position: absolute;
    top: 0;
    height: 65px;
    left: auto;
	right:2vw
}
	/*画面幅840px以上の追加指定*/
	@media screen and (min-width:840px) {

		.bg11 img{
		    position: absolute;
		    top: 0;
		    height: 81px;
		    left: 45vw;
			right:auto
		}

	}

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

		.bg1 {
			position: relative;
			background: #F8F8F8;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
			color: var(--text-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
			padding-top: 1vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
			padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
			margin-top: 0;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
			margin-bottom: 1vw;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/
			
			/*以下は変更不要*/
			margin-left: calc(-1 * var(--global-space));
			margin-right: calc(-1 * var(--global-space));
			padding-left: var(--global-space);
			padding-right: var(--global-space);
			text-align:center;
		}
		.bg11 {
			padding-bottom: 1vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
		}
		.bg11 img{
		    position: absolute;
		    top: 0;
		    height: 92px;
		    left: 50vw;
			right:auto
		}
	    .list-grid1 .list .flexxx .text {
	        width: 22.5vw;
	        text-align: center;
	    }

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

/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.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%だけ色を出す。つまり薄くなります。*/
}


/*テーブル（table）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
caption {
	font-weight: bold;		/*太字に*/
	color: var(--kimi-color);			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
table {
	table-layout: auto;
	border-top: 1px solid #707070;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	background: #ffffff;
}

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

/*th（左側）、td（右側）の共通設定*/
table th, table td {
	padding: 0.5rem !important;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	  font-family: "BIZ UDPGothic", sans-serif;
	  font-weight: 400;
	  line-height: 1.5;
	  font-size: 0.9em;
}
table td {
  text-align: left;
}
table.c td {
    text-align: center;
}
/*th（左側）のみの設定*/
table th {
    font-weight: 700;
}
.cot{color: #eb6448;}
table th.mido {background: var(--kimi-color);color: var(--wh-color);}
table th.org {background: var(--or-color);color: var(--wh-color);}
table th.us-gr {background: var(--us-gr-color);}
table th.us-miz {background: var(--us-miz-color)}
table th.us-ch {background: var(--us-ch-color);}
table th.us-pi {background: var(--us-pi-color);}
.b-mido {background: var(--kimi-color);}
.b-org {background: var(--or-color);}
.b-whi {background: var(--wh-color);}
.b-us-gr {background: var(--us-gr-color);}
.b-us-miz {background: var(--us-miz-color)}
.b-us-ch {background: var(--us-ch-color);}
.b-us-pi {background: var(--us-pi-color);}
.b-us-or {background: var(--us-or-color);}
.b-us-ak {background: var(--us-ak-color);}
.b-us-mid {background: var(--us-mid-color);}

.bora{	border-radius: 20px;}
.w60vw{width: 60vw;}
.w40vw{width: 40vw;}
.w20vw{width: 20vw;}
.w19vw{width: 19vw;}
.w29vw{width: 29vw;}
.w59vw{width: 59vw;}
.w27vw{width: 27vw;}
.w13vw{width: 13vw;}
.w2-5em{width: 2.5em;}
.w2-2em{width: 2.2em;}
.w1-7em{width: 1.7em;}
.w5em{width: 5em;}
.w7em{width: 7em;}
.w8em{width: 8em;}
.w45p{width: 45%;}
.w60px{width:61px;}
.w200px{width:200px;}
.w350px{width: 350px;}
.wi100p{width: 100%;}
.wi70p{width: 70%;}
.mabo1{margin-bottom: 1rem;}
.mabo0{margin-bottom: 0rem !important;}
.paall1{padding: 1rem;}
.pabo1{padding-bottom: 1rem;}
.mato0{margin-top: 0rem !important;}
.mato1{margin-top: 1rem !important;}
.mato2{margin-top: 2rem !important;}
.mabo2{margin-bottom: 2rem !important;}
.male1{margin-left: 1rem !important;}
.mari1{margin-right: 1rem !important;}
.maauto {margin-left: auto !important;margin-right: auto !important;}
.mabb{margin-block-end: 0;}
.mass{margin-block-start: 0;}
.i-flex{display: flex;align-items: flex-end;}
.a-at{width: auto!important;}
.male3em{margin-left: 3em;}
.jisage{text-indent: -1.5em;padding-left: 2em;}
.f9{font-size: 0.9em;}
.f8{font-size: 0.8em;}
.f-1{font-size: 1.5vw;}
 .kekka .list-grid1 .list p.f-1{font-size: 1.5vw;}
 .kekka .list-grid1 .list .mabo1{margin-bottom: 1rem;}
.malee{margin-left: auto !important;}
.bggg{background-color: #F8F8F8;}
.nowrap{white-space: nowrap;}
a.boderr{border: 3px solid var(--primary-color);border-radius: 20px;}
a.boderr.skyb{border: 3px solid var(--sky-color);border-radius: 20px;}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: #333;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

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

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

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: var();	/*背景色*/
    font-weight: 700;
}

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

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

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

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

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

.consumer .jigyo a {bottom: 250px;}
.consumer .syohi a {display: none;}

.business .jigyo a {display: none;}
.business .syohi a {bottom: 250px;}

span.grr {
    display: inline-block;
    background: var(--primary-color);
    padding: 0;
    width: 5em;
    line-height: 1.5;
    color: var(--primary-inverse-color);
    font-family: "M PLUS Rounded 1c";
    letter-spacing: 0.5vw;
    text-align: center;
    justify-items: center;
}
span.ogg {
    display: inline-block;
    background: var(--or-color);
    padding: 0;
    width: 8em;
    line-height: 1.5;
    color: var(--primary-inverse-color);
    font-family: "M PLUS Rounded 1c";
    letter-spacing: 0.5vw;
    text-align: center;
    justify-items: center;
}
span.blg {
    display: inline-block;
    background: #53bac5;
    padding: 0;
    width: 5em;
    line-height: 1.5;
    color: var(--primary-inverse-color);
    font-family: "M PLUS Rounded 1c";
    letter-spacing: 0.5vw;
    text-align: center;
    justify-items: center;
}
.bbton{
    width: 20em;
    margin-left: auto;
    margin-right: auto;
}
/*その他
---------------------------------------------------------------------------*/
.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;}
.ml1 {margin-left: 1em !important;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.wee {font-weight:700;}
.linee{line-height: 1.5;}
.larg {font-size: 1.2em; font-weight:500;line-height: 1.5;}
.largg {font-size: 1.5em}
.large {font-size: 2em; letter-spacing: 0.1em;}
.blod {font-weight:700;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.alcen{align-items: center;}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/
.hena{
  position: relative;
  color: white;
  background: var(--sky-color);
  line-height: 1.4;
  padding: 0.25em 0.5em;
  margin: 2em 0 0.5em;
  border-radius: 5px 5px 0 0;
}
/*====================================================================
.s_05 .accordion_one
====================================================================*/
.s_05 .accordion_one {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
}
.s_05 .accordion_one .accordion_header {
	background-color: #db0f2f;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	padding: 20px 11%;
	text-align: center;
	position: relative;
	cursor: pointer;
	transition-duration: 0.2s;
	font-size: 1rem;
    text-align: center;
    background: var(--primary-color) !important;
    color: #5BB646 !important;
    background: var(--primary-inverse-color) !important;
    padding: 0.5rem !important;
    margin-top: 1rem !important;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 2em;
}
.s_05 .accordion_one .accordion_header.open {
	opacity: 0;
}
.s_05 .accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.box_one{padding: 1rem;}
.s_05 .accordion_one .accordion_inner .closeArea {
	width: 180px;
	margin: 0 auto;
}
.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #db0f2f;
	padding: 15px 15px 15px 20px;
	text-decoration: none;
	line-height: 1.3;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	transition-duration: 0.2s;
	text-decoration: none;
    font-size: 1rem;
    text-align: center;
    background: var(--primary-color) !important;
    color: #5BB646 !important;
    background: var(--primary-inverse-color) !important;
    padding: 0.5rem !important;
    margin-top: 1rem !important;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    width: 20em;
    width: auto;
    margin-right: auto !important;
    margin-left: auto !important;
        margin-bottom: 1em;

}
.accordion_inner{display: none;}
.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn:hover {
	opacity: .8;
}
@media screen and (max-width: 1024px) {
	.s_05 .accordion_one .accordion_header {
		font-size: 18px;
	}
	.s_05 .accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
	.s_05 .accordion_one .accordion_inner .closeArea .close_box a.close_btn {
		font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.s_05 .accordion_one .accordion_header {
		font-size: 16px;
		text-align: center;
		padding: 15px 60px 15px 15px;
	}
}

.btn a.kuro {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    color: #ffffff !important;
    background: #000000 !important;
    padding: 0.5rem !important;
    margin-top: 1rem !important;
    border: none;
    border-radius: 25px;
    width: 20em;
    width: auto;
    margin-right: auto !important;
    margin-left: auto !important;
}

.visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.checkbox-text,
.radio-text {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 2.5em;
  position: relative;
}

input[type=checkbox]:checked+.checkbox-text::after,
input[type=radio]:checked+.radio-text::after {
  opacity: 1;
}


/* チェックボックス */
.checkbox-text::before {
  content: '';
  display: block;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #777;
  background: #ffffff;
  border-radius: 5px;
}

.checkbox-text::after {
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: 5px solid #2e8904;
  border-bottom: 5px solid #2e8904;
  opacity: 0;
}
select{
    padding: 5px 3em 5px 1em;
    border-radius: 5px;
    appearance: none;
    font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 250px;
    margin-left: 2em;
}
.selectt,.selecttt {
    margin-left: 2em;
  position: relative;
  display: inline-block;
}
.selectt::after {
    content: '';
    position: absolute;
    border: 4px solid #333;
    border-bottom: 0;
    border-left-color: transparent;
    border-right-color: transparent;
    top: calc(50% - 7px);
    right: 10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 15px solid #555;

}
/* ラジオボタン */
.radio-text::before {
  content: '';
  display: block;
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #777;
  border-radius: 50%;
  background: #ffffff;
}

.radio-text::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #2e8904;
  position: absolute;
  top: 50%;
  left: 0.65em;
  transform: translateY(-50%);
  opacity: 0;
}
/* テキストボックス */
.textbox {
  width: 200px;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #777;
}
.textbox:focus {
  outline: 0;
  border: 2px solid #2196f3;
}
label.checkbox {
    margin-left: 2em;
    width: 30vw;
    display: inline-grid;
}

.jisage2 {
    text-indent: -2.5em;
    padding-left: 2em;
}

/*アコーディオン*/
details {
  border: 1px solid #555;
  margin-bottom: 10px;
  border-radius: 10px;
  background:#ffffff;
  text-align:center;
}
details details {
  border: none;
}

summary {
  padding: 1em;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
}
details details summary {
    border-bottom: 1px dotted;
    margin: 0 1em;
    text-align: left;
    padding-right: 2.5em;
}
/* Safari対応　デフォルトの三角形アイコン非表示 */
details summary::-webkit-details-marker {
  display: none;
}

details div {
  padding: 1em;
  text-align: left;
}

details .icon {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.5s;
}
/* アイコンの三角矢印 */
details .icon::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -10px;
    border: 10px solid transparent;
    border-top: 15px solid #555;
}
/* アコーディオン表示の際に回転する */
details[open] > summary > .icon {
  transform: rotate(90deg);
}
details table {
    table-layout: inherit;
}
details td input {
    font-size: 1rem;
    margin-left: 0;
    width: 3em;
}
details td input.em10 {
    width: 7em;
}
.kekka {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(4 173 92 / 90%); /* 背景を透過 */
    color: white;
    text-align: center;
    padding: 10px 10vw;
    height: 13vw;
    min-height:185px;
    z-index: 10;
    font-weight: 600;
}
.shimyu {
background: #f1fcff;
}
/*
details table tr:nth-child(1) {
	border-bottom: 3px solid #fff;
}
details table tr:nth-child(1) th {
	border-bottom: 1px solid #333;
}
details table tr:nth-child(2) td {
	border-top: 1px solid #333;
}
*/
details table th:nth-child(1) {
    width: 340px;
}
details table th {
    text-align: center;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  width: 100%;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(99%/4);
  height: 5em;
  border: 3px solid var(--sky-color);
    border-radius: 10px 10px 0 0;
    display: inline-flex;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
    margin-left: 0;
  gap:12px;
  margin-bottom: -2px;
  border-bottom: 1px;
  margin-left: 1px;
  padding: 10px 0 0 10px;
}
.uuue p{
    margin-top: 5px;
}
.tab_item:hover {
  opacity: 0.75;
}
.tab_item p {
    line-height: 1.2;
}

.tabs label img{
    width: 3em;
    height: 3em;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 3vw var(--global-space) 0;
    clear: both;
    overflow: hidden;
    margin-left: -10vw;
    width: 98.9vw;
    margin-right: -10vw;
}

@media screen and (max-width: 1139px) {
	.tab_content {
	    display: none;
	    padding: 3vw;
	    clear: both;
	    overflow: hidden;
	    margin-left: -3vw;
	    width: 101vw;
	    margin-right: -3vw;
	}
	.i-flex .w60vw {
	    width: 75vw;
	}
}

	.list-grid2 .btn a.nra br {
		display: none;
	}

	.s-block{ display: none;}

@media screen and (max-width: 799px) {
    main h2 {
	    font-size: 2.2rem;
    }
    .sp-none{display: none;}
    .b-us-or.bora.w60vw.pa1-2{
	    width: 100vw;
    }
    .i-flex .list-parts + .list-parts {
	    width: auto;
	}
    .f-1 {
	    font-size: 1.5em;
	}
    .sp-m,.list-grid5-parts .list-parts img.sp-m,.list-grid1.menuu a img.sp-m{width:3em;}
    .list-grid5-parts .list.flexx figure {
	    width: 20vw;
    }
    .list-grid5-parts .list.flexx .text{
	    width: 65vw;
	}
    .list-grid1 .list.bno.plr {
	    padding: 0;
	    margin: 0 auto;
	}
    .list-grid5-parts {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
	.list-grid5-parts .list-parts img {
	        width: 70%;
	}
	.list-grid1 .list.flexx .text, .list-grid1 .list .flexx .text {
	    width: 55vw;
	    text-align: center;
	}
	.list-grid1 .list.flexx .text h4, .list-grid1 .list .flexx .text h4 {
	    font-size: 1.4em;
    }
	img.w13vw.r {
	    text-align: center !important;
	    width: 60%;
	}
    .list-grid5-parts .w35vw h3 {
        font-size: 5.8vw;
        line-height: 1.2;
        margin-block-start: 0;
    }
    .pagetop-show img {
        width: 70px;
    }
	.pagetop a {
	    bottom: 100px;
	}
	.consumer .jigyo a {
	    bottom: 180px;
	}
	.business .syohi a {
	    bottom: 180px;
	}
	.syohi a {
	    bottom: 260px;
	}
	.jigyo a {
	    bottom: 180px;
	}
    .home .jigyo a {
	    bottom: 100px;
	}
	.home .syohi a {
	    bottom: 180px;
	}
	.list-grid2 .btn a.nra br {
		display: block;
	}
	.list-grid2 .btn a.nra {
		width: 18em;
	}
	.list-grid1 .list .flexxx figure {
	    width: 23vw;
	}
	.list-grid5-parts.sp-b-c .list-parts{
	    display: block;
	    text-align: center !important;
	}
	.list-grid5-parts.sp-b-c .list-parts .r{
	    text-align: center !important;
	}
	.tab_item {
	    height: 8em;
	    display: block;
	    width: calc(99% / 2);
    }
    .w60vw {
	    width: 90vw;
	}
	.s-block{ display: block;}
}

/*選択されているタブのコンテンツのみを表示*/
#step01:checked ~ #step01_content,
#step02:checked ~ #step02_content,
#step03:checked ~ #step03_content,
#step04:checked ~ #step04_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  color: var(--sky-color);
  border-bottom: #FFF 2px solid;
}
hr{
    width: 100vw;
    margin: 0 calc(49% - 50vw);
    border: 1px solid var(--sky-color);

}
.img-p{
    display: inline-flex;
    align-items: flex-end;
    text-align: left;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .horizontal-scroll {
        overflow-x: auto; /* 横スクロールを有効化 */
        white-space: nowrap; /* 子要素を折り返さず一列に */
        width: 100%; /* 要素が親要素の幅に収まるように */
        max-width: 1200px; /* 必要に応じて最大幅を制限 */
    }

    .horizontal-scroll img {
        display: inline-block; /* 横並びを維持 */
        height: auto; /* 画像の縦横比を維持 */
        max-height: 100%; /* 高さを制限（任意） */
        max-width: 800px;
        width: 800px;
    }
    .horizontal-scroll table {
        height: auto; /* 画像の縦横比を維持 */
        max-height: 100%; /* 高さを制限（任意） */
        max-width: 800px;
        width: 800px;
    }
}
    .spp-block {
	    display: none;
    }
	.pipopa{
		display: inline-flex;
		width: 100%;
		border: 1px;
	}
@media screen and (max-width: 650px) {
	.pipopa{
		display: block;
		width: 100%;
		border: 1px;
	}
	.w7em {
	    width: 5em;
	    float: left;
	}
    main h3.main {
	    font-size: 1.5em;
	}
	.w80px {
	    width: 60px;
	}
	.simulation2 .w80px {
	    width: 47px;
	}
	.w100px {
	    width: 60px !important;
	    height: auto !important;
	}

	.pagetop a {
        bottom: 20px;
        right: 20px;
    }
    .syohi a {
        bottom: 20px;
        right: 260px;
        display: none;
    }
    .jigyo a {
        bottom: 20px;
        right: 180px;
        display: none;
    }
    .business .syohi a {
        bottom: 20px;
        right: 180px;
        display: none;
    }
    .consumer .jigyo a {
        bottom: 20px;
        display: none;
    }
    .home .syohi a {
        bottom: 20px;
        right: 180px;
        display: none;
    }
    .home .jigyo a {
        bottom: 20px;
        right: 100px;
        display: none;
    }
    .home .pagetop a {
        bottom: 20px;
        right: 20px;
    }
    .backhome a{
        display: none;
    }
    .simulation2 .pagetop a,.simulation2 .syohi a,.simulation2 .jigyo a {
	    display: none;
    }
    .spp-none {
	    display: none;
    }
    .spp-left {
	    text-align: left;
    }
    .spp-block {
	    display: block;
    }
    main h2 {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    .circle {
	    width: auto;
	    height: auto;
	    border-radius: 10px;
	    background: none;
	    margin: 0 auto 1em !important;
	}
    .list-grid1 .list.bno img.matma {
	    width: auto;
	    height: auto;
	    object-fit: cover;
	}
	.jisage2 {
	    border-top: 1px solid;
	    padding-top: 0.5em;
	}
	.jisage2.bnnon {
	    border-top: 0px solid;
	    padding-top: 0em;
	}
	details .icon {
	    right: 0;
	}
	.shimyu details .icon {
	    right: 20px;
	}
	summary#co5 {
	    padding-right: 3em;
	}
	.i-flex .spp-none + .w60vw {
        width: 90vw;
    }
    .list-grid1 .list.flexx .text h4, .list-grid1 .list .flexx .text h4 {
        font-size: 1.2em
    }
    .boderr .wee.f-1 {
        font-size: 1.2em;
        line-height: 1.5;
    }
    .spmatop8{
	    margin-top: 0.8em;
    }
    .selecttt + .selecttt {
	    margin-top: 1em;
	}
	.w200px {
	    width: 160px;
	}
	.w200px.wsmall {
	    width: 120px;
	}
	.img-p {
	    display: grid;
	    align-items: flex-end;
	    text-align: left;
	    width: 100%;
	}
	.img-p .w19vw {
	    width: 50vw;
	}
	img.w3w {
	    width: max(100%, 550px);
	}
    .construction .list-grid2 .btn a.nra {
        width: 100%;
        line-height: 1.5;
    }
    .kekka .list-grid1 .list p.f-1 {
	    font-size: 1.2em;
	}

}

.paragraph {
    text-indent: -1.5em;
    padding-left: 1.5em;
    font-size: 0.9em;
}
 
    .r.dositemohidari{
	    text-align: left !important;
	    display: block;
	    margin-left: auto;
	    margin-right: 0;
	    width: auto;
	}

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

.r {
	    text-align: center !important;
	}
	    p.r {
        text-align: right !important;
    }
    .r.dositemohidari{
	    text-align: left !important;
	    display: block;
	    margin-left: auto;
	    margin-right: 0;
	    width: 54em;
	}

}
fieldset.bnooo{
    border: none;
    margin-left: 2em;
}
fieldset.bnooo label,fieldset.bnooo input {
    margin-left: 0;
}
fieldset.bnooo .checkbox-text,fieldset.bnooo .radio-text {
    padding: 5px 0.5em 5px 2.5em;
}
@media screen and (max-width: 800px) {

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

summary#co1 {background-color: #F4D2CA;border-radius: 8px;}
summary#co2 {background-color: #ECE1C2;border-radius: 8px;}
summary#co3 {background-color: #D1EAEC;border-radius: 8px;}
summary#co4 {background-color: #DAD9EA;border-radius: 8px;}
summary#co5 {background-color: #CAD4E8;border-radius: 8px;}
summary#co6 {background-color: #F5D9E6;border-radius: 8px;}
details#co1 {border: 1px solid #F4D2CA;}
details#co2 {border: 1px solid #ECE1C2;}
details#co3 {border: 1px solid #D1EAEC;}
details#co4 {border: 1px solid #DAD9EA;}
details#co5 {border: 1px solid #CAD4E8;}
details#co6 {border: 1px solid #F5D9E6;}

details:open > summary#co1,details:open > summary#co2,details:open > summary#co3,
details:open > summary#co4,details:open > summary#co5,details:open > summary#co6 {border-radius: 8px 8px 0 0;}

details:open .icon {
    top: 37%;
}
details:open details .icon {
    top: 50%;
}
  li.note-item {
    list-style-type: none;
    position: relative;
    padding-left: 0;
  }

  li.note-item::before {
    content: '（注）';
    position: absolute;
    left: -2em;
  }


@media screen and (min-width: 1140px) {
    summary#co1, summary#co2,summary#co3,summary#co4,summary#co5,summary#co6,summary#co7 {
        font-size: 1.5vw;
    }
}
@media screen and (min-width: 970px) {
    table.smyu{
	    width: 50%;
	    min-width: 485px;
	    margin-left: auto;
	    margin-right: 0;
	    display: block;
	}
}

    table.smyu{
	    width: 100%;
	    max-width: 485px;
	    margin-left: auto;
	    margin-right: 0;
	    display: block;
	}
	table.smyu {
	    border-top: 0px solid #707070;
	    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
	}
