@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=Noto+Sans+JP:wght@100..900&display=swap');


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
  --color-main1: #00782E;
  --color-sub1: #FDFDE6;
  --color-blk1: #333333;
  --color-blk2: #828282;
  --color-blk3: #666666;
  --color-blk4: #E8E8E8;
  --color-wht: #FFFFFF;
  --text-color: #00782E;				/*テキストカラー*/
  --primary-color: #00782E;		/*テンプレートのメインまたはアクセントカラー*/
  --primary-inverse-color: #eee;		/*上のprimary-colorの対となる色*/
  --global-space: 5vw;			/*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vwです。*/
  --margin-big: 100px;
  --margin-middle: 60px;
  --margin-small: 30px;
}
@media screen and (max-width: 768px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 30px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --margin-big: 40px;
    --margin-middle: 20px;
  }
}

/*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: 16px;	/*基準となるフォントサイズ。*/
		}

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


body {
	margin: 0;padding:0;
	font-family: "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: var(#fff);	/*背景色*/
	color: var(--color-blk1);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	line-height: 2;		/*行間*/
}

/*リセット*/
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;}
section + section {
	margin-top: 3rem;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
main a[href$=".pdf"]:not([class]) {
	position: relative;
}
main a[href$=".pdf"]:not([class])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/images/common/ico_link_pdf.svg) center center / auto 100% no-repeat;
  margin-top: -0.4em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main a[href$=".doc"]:not([class])::after,
main a[href$=".docx"]:not([class])::after{
	content: "";
	background: url(/images/common/ico_link_word.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[href$=".xls"]:not([class])::after,
main a[href$=".xlsx"]:not([class])::after{
	content: "";
	background: url(/images/common/ico_link_excel.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[target="_blank"]:not([class]):not(a[href$=".pdf"]):not(a[href$=".doc"]):not(a[href$=".docx"]):not(a[href$=".xls"]):not(a[href$=".xlsx"]) {
	position: relative;
}
main a[target="_blank"]:not([class]):not(a[href$=".pdf"]):not(a[href$=".doc"]):not(a[href$=".docx"]):not(a[href$=".xls"]):not(a[href$=".xlsx"])::after {
	content:" ";
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background: url(/images/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.4em;
	margin-left: 0.3em;
	vertical-align: middle;
}
main .iconnone a[href$=".pdf"]::after,
main .iconnone a[href$=".doc"]::after,
main .iconnone a[href$=".docx"]::after,
main .iconnone a[href$=".xls"]::after,
main .iconnone a[href$=".xlsx"]::after,
main .iconnone a[target="__blank"]::after{
  display: none;
}

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


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 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 3vw;				/*ヘッダー内の余白。上下、左右への順番。*/
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
    position: absolute;
    z-index: 1;
    width: 100%;
	background: #ffffffab;
}

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

/*ロゴ（※画像にする場合）*/
#logo img {
	display: block;
	width: 240px;
	height: 40px;
	max-width: 100%;
}

	/*画面幅900px以下での追加指定*/
	@media screen and (max-width:900px) {
	#logo img {
		width: 180px;
		height: 30px;
		max-width: 70vw;
	}
	}

/*ロゴ（テキストにする場合）*/
#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;}
.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;	/*アイコンとテキストとの間に空けるスペース*/
}


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

/*メニュー１個あたりの設定*/
.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 var(--color-main1);	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	padding: 1rem 2rem;	/*メニュー内の余白*/
}

/*文字色*/
.small-screen #menubar, .small-screen #menubar a {
	color: var(--color-main1);
}

/*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: 10px;			/*右からの配置場所指定*/
	top: 10px;				/*上からの配置場所指定*/
	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: 2px solid var(--color-main1);	/*線の幅、線種、色*/
}

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

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#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: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-size: 3rem;		/*文字サイズ。基準の3倍の大きさに。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*bg1背景の上でのh2*/
.bg1 h2 {
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*h2内の小文字部分*/
main h2 .hosoku {
	display: block;font-weight: normal;
	font-size: 0.3em;	/*親要素の40%のサイズに*/
}

/*h3(見出し)要素*/
main h3 {
    margin: var(--margin-middle) 0 1em;
    font-size: 1.4em;
    font-weight: 700;
	color: var(--color-blk1);
    padding-left: .5em;
    position: relative;
    border-left: 6px solid var(--color-main1);
}
main h4 {
	font-size: 1.2em;
    font-weight: 700;
	color: var(--color-blk1);
    padding-bottom: .5em;
    margin: var(--margin-middle) 0 1em;
    position: relative;
}
main h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--color-blk4);
}
main h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30%;
    background: var(--color-main1);
}
main h5 {
	font-size: 1.2em;
    font-weight: 700;
	color: var(--color-blk1);
    margin: var(--margin-middle) 0 1em;
    position: relative;
}
main h6 {
	position: relative;
	display: inline-block;
    font-size: 1.1rem;
    border-bottom: 3px solid var(--color-main1);
    margin: 1em 0 !important;
}

@media screen and (max-width:768px) {
	main h3 {
		line-height: 2;
	}
	main h4 {
		font-size: 1.4rem;
		line-height: 1.6;
    	padding-bottom: 5px !important;
	}
	main h5 {
		font-size: 1.3rem;
		line-height: 1.5;
	}
	main h6 {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

/*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: 40px 0 0 !important;
	padding: 20px;		/*ブロック内の余白*/
	text-align: center;	/*テキストを中央に*/
	font-size: 0.9rem;
}

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


/*フッター設定
---------------------------------------------------------------------------*/
/*フッターロゴ画像*/
#footermenu img {
	display: block;
	width: 240px;
	height: 40px;
	max-width: 100%;
	margin: 0 auto 20px;
}

	/*画面幅900px以下での追加指定*/
	@media screen and (max-width:900px) {
	#footermenu img {
		width: 180px;
		height: 30px;
	}
	}

footer small {font-size: 100%;}
footer {
	font-size: 0.9rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
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_box {
	max-width: 1200px;
    margin: 0 auto;
}

/*記事の下に空ける余白*/
.new dt {
	padding-right: 2rem;
	color: var(--color-blk1);
	font-weight: 700;
}
.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;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

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

/* pager
---------------------------------------------------------------------------*/
.p-pager ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 50px;
}

.p-pager ul li {
	display: flex;
    justify-content: center;
    align-items: center;
	padding: 0;
	margin: 0;
	background: none;
}

.p-pager ul li a {
	width: 35px;
    display: flex;
    justify-content: center;
    margin: 2px;
    text-decoration: none;
    color: var(--color-main1);
    padding: 5px 8px;
    border: 1px solid var(--color-main1);
}

.p-pager ul li.arrow a {
    padding: 0;
    border: none;
	width: 20px;
    margin: 0 10px;
}

.p-pager ul li.active a,
.p-pager ul li:not(.arrow):hover a {
	background-color: var(--color-main1);
    color: #fff;
}

@media screen and (max-width:768px) {
	.p-pager ul li a {
		width: 25px;
	}
}

/*list-grid1
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid1 {
	display: grid;
	color: #555;	/*文字色*/
}

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

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1 .list * {
	margin: 0;padding: 0;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
}

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

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

}


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

/*listブロック全体を囲むブロック*/
.list-grid1 {
	grid-template-columns: repeat(2, 1fr);	
	gap: 40px;	/*ブロックの間に空けるマージン的な指定*/
	max-width: 1200px;		
	margin: 0 auto;	
}

}

@media screen and (max-width:500px) {
	.list-grid1 .list:not(:first-child) {
		margin-top: 20px;
	}
}


/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

/*ボタン（btnと、btn-border-radius）
---------------------------------------------------------------------------*/
/*ボタン共通*/
.btn a,
.btn-border-radius a {
	display: block;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--color-main1) !important;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: #fff !important;	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding: 0.5rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;
	border-radius: 30px;
	position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn02 {
	display: flex;
	justify-content: center;
}
.btn02 a {
	width: 30%;
	text-decoration: none;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	color: #fff!important;
	background: var(--color-main1) !important;
	padding: 0.5rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;
	border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}
@media screen and (max-width:768px) {
	.btn02 a {
		width: 80%;
	}
}

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

/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background: var(--color-blk3);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--color-main1);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-top: 5vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	margin-top: 10vw;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
	margin-bottom: 10vw;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/
	
	/*以下は変更不要*/
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
	padding-left: var(--global-space);
	padding-right: var(--global-space);
}
.bg1 a {
	color: inherit;
}

/*以下のheightの行が傾斜の角度です。vwという単位は画面幅に対してで、画面幅100%＝100vwになります。
つまり、画面幅に対して常に同じ傾斜具合になります。1pxの数字は時々隙間が発生するのでそれを防ぐ為の措置です。
傾斜（height）を変更したい場合は、下にある「.bg1::before」のtopと「.bg1::after」のbottomの数字も変更。*/
.bg1::before, .bg1::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: calc(5vw + 1px);
	background: var(--color-blk3);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

.bg1::before {
	top: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 100%, 100% 0, 100% 100%);	/*三角形の形を作っています*/
}

.bg1::after {
	bottom: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 0, 100% 0, 0 100%);	/*三角形の形を作っています*/
}

.bg2 {
	background: var(--color-sub1);
}
.bg2::before, .bg2::after {
	background: var(--color-sub1);
}


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


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

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

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

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

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

.ta1 .p-location td {
	width: 50%;
}

.ta1 .p-location td img {
	max-width: 340px;
}

@media screen and (min-width:900px) {
	.ta1 th {
		width: 20%;
	}
}
@media screen and (max-width:1080px) {
	.ta1.ta-spblock th, .ta1.ta-spblock td {
		display: block;
	}
	.ta1.ta-spblock th {
		width: 100%;
	}
	.ta1.ta-spblock td {
		padding: 10px 0;
	}
	.ta1 .p-location td {
		width: 100%;
	}
	.ta1 .p-location td:first-child {
		padding-bottom: 0;
	}
	.ta1 .p-location td:last-child {
		padding-top: 0;
	}
}

.ta2 tr {
	border-right: 1px solid #ccc;
}
.ta2 th, .ta2 td {
	border-left: 1px solid #ccc;
}

.ta_bg01 th {
	background: var(--color-blk4);
}

.ta-flexible {
    table-layout: auto !important; 
}

table .gray {
	background: var(--color-blk4);
}
table .lightgray {
	background: #f5f5f5;
}

.c-scrolltag {
	display: none;
}
@media screen and (max-width: 768px) {
	.c-scrolltag {
		display: inline-block;
		margin: 0;
		color: #fff;
		font-size: .875rem;
		padding: 2px 10px;
		background: #8b8b8b
	}
	.c-scrolltbl {
		overflow-x: auto;
		white-space: nowrap;
		word-wrap: normal;
	}
	.c-scrolltbl::-webkit-scrollbar {
		height: 5px;
	}
	.c-scrolltbl::-webkit-scrollbar-track {
		background: #d5d5d5;
	}
	.c-scrolltbl::-webkit-scrollbar-thumb {
		background: #d5d5d5;
	}
	.c-scrolltbl table {
		margin-bottom: 15px!important;
		table-layout: auto;
	}
}

/*-------------------------------------------*/
.c-page__anchor{
	display: flex;
	justify-content: center;
	text-decoration: underline;
	color: var(--color-main1);
    background: var(--color-sub1);
    padding: 10px;
}
.c-page__anchor > ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.c-page__anchor > ul > li {
	line-height: 2.5;
}
.c-page__anchor > ul > li a {
  position: relative;
  padding: 0 1em 0 calc(20px + .5em);
  margin: .5em 1em .5em 0;
}
.c-page__anchor > ul > li a:before {
  content: "";
  background: var(--color-main1);
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 30px;
}
.c-page__anchor > ul > li a::after {
  content: "";
  border: 1px solid var(--color-wht);
  border-top: none;
  border-left: none;
  width: 10px;
height: 10.5px;
  transform: rotate(45deg);
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: -6px;
  bottom: 0;
  margin: auto;
}

/*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%;	/*円形にする*/
}

/* top-box */
.top-box {
	display: flex;
	justify-content: space-between;
}
.top-box__img {
	width: 45%;
}
.top-box__text {
	width: 50%;
}
.top-box .btn02 a {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.top-box {
		flex-wrap: wrap;
		justify-content: center;
	}
	.top-box-reverse {
		flex-direction: column-reverse;
	}
	.top-box__img {
		width: 100%;
	}
	.top-box__text {
		width: 100%;
		margin-top: 20px;
	}
	.top-box .btn02 a {
		width: 80%;
	}
}

/*====================================================================
.article__area…記事部分の装飾まとめ
====================================================================*/
.article__area a:not([class]):link{
  color: var(--color-main1);
}
.article__area a:not([class]):visited{
  color: var(--color-main1);
}
.article__area img:not([class]){
  height: initial !important;
}
img.ccc{
  border: 1px solid #000;
}
.c-title100{
  font-size: 2em;
  font-weight: 700;
  text-align: left;
  margin: 140px 0 1.5em 0;
  position: relative;
  border-bottom: 1px solid var(--color-blk3);
  padding: .5em .5em .6em;
  line-height: 1;
  color: #FFF;
  background: var(--color-blk1);
  border-radius: 10px 0 0 0;
}
.l-section01 .c-title100:first-child{
  margin: 0 0 1.5em 0;
}
.article__title h1 {
	font-size: 2em;
	font-weight: 700;
	letter-spacing: 0;
	position: relative;
	color: var(--color-blk1);
	border-bottom: 1px solid var(--color-blk4);
	padding-bottom: 10px;
	margin-top: 0;
}
.article__title > span {
	font-size: 1.2em;
    font-weight: 700;
    color: var(--color-main1);
}
.article__area a:not([class]):link{
  color: var(--color-main1);
}
.article__area a:not([class]):visited{
  color: var(--color-main1);
}
.article__area h2:not([class]){
	margin: var(--margin-middle) 0 1em;
	font-size: 1.75em;
	font-weight: 700;
	letter-spacing: 0;
	position: relative;
	color: var(--color-main1);
	border-bottom: none;
}
.article__area h3:not([class]){
  margin: var(--margin-middle) 0 1em;
  font-size: 1.4em;
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-main1);
}
.article__area h4:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h4:not([class])::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-blk4);
}
.article__area h4:not([class])::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}
.article__area h5:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h5:not([class]) > span{
  display: inline-block;
  border: 1px solid var(--color-main1);
  padding: 0.5em 1em;
}
.article__area h6:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-sub2);
}
.article__area h1:first-child,
.article__area h2:first-child{
  margin-top: 0;
}
.article__area h1:not([class]) + h1:not([class]),
.article__area h1:not([class]) + h2:not([class]),
.article__area h1:not([class]) + h3:not([class]),
.article__area h1:not([class]) + h4:not([class]),
.article__area h1:not([class]) + h5:not([class]),
.article__area h1:not([class]) + h6:not([class]),
.article__area h2:not([class]) + h2:not([class]),
.article__area h2:not([class]) + h3:not([class]),
.article__area h2:not([class]) + h4:not([class]),
.article__area h2:not([class]) + h5:not([class]),
.article__area h2:not([class]) + h6:not([class])
{margin-top: 40px;}
.article__area h3:not([class]) + h3:not([class]),
.article__area h3:not([class]) + h4:not([class]),
.article__area h3:not([class]) + h5:not([class]),
.article__area h3:not([class]) + h6:not([class]),
.article__area h4:not([class]) + h4:not([class]),
.article__area h4:not([class]) + h5:not([class]),
.article__area h4:not([class]) + h6:not([class]),
.article__area h5:not([class]) + h5:not([class]),
.article__area h5:not([class]) + h6:not([class])
{margin-top: 40px;}
@media screen and (max-width: 768px) {
  .article__area h1:first-child,
  .article__area h2:first-child{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .article__area h1:not([class]) br,
  .article__area h2:not([class]) br,
  .article__area h3:not([class]) br,
  .article__area h4:not([class]) br,
  .article__area h5:not([class]) br,
  .article__area h6:not([class]) br{
    display: none;
  }
  .article__area h1:not([class]),
  .article__area h2:not([class]){
    font-size: 2rem;
    line-height: 1.5;
  }
  .article__area h3:not([class]){
    line-height: 2;
  }
  .article__area h3:not([class]) > span{
    font-size: 1.5rem;
  }
  .article__area h4:not([class]){
    font-size: 1.4rem;
	line-height: 1.6;
    padding-bottom: 5px !important;
  }
  .article__area h5:not([class]){
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .article__area h6:not([class]){
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.article__area ul:not([class]){
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul:not([class]) > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul:not([class]) > li:before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  background: var(--color-main1);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.article__area ul.checklist{
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul.checklist > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul.checklist > li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--color-main1);
  border-bottom: 2px solid var(--color-main1);
  transform: rotate(315deg);
}
.article__area ol:not([class]) {
  list-style: decimal;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
  padding-left: 1em;
}
.article__area ol:not([class]) > li {
  margin-bottom: 0.5em;
}
.article__area ol:not([class]) > li::marker {
  font-weight: 700;
  color: var(--color-main1);
}
.article__area ol:not([class]) > li::before {
  color: var(--color-blk1);
}
.article__area table:not([class]) {
  width: 100%;
}
.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border: 1px solid var(--color-blk3);
  padding: .5em;
}
.article__area table:not([class]) th{
  background: var(--color-blk4);
  width: 0;
  white-space: nowrap;
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-blk4);
  width: auto;
  white-space:initial;
}

/* p-product */
.p-product__title {
	display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;  
}
.p-product__title a {
    flex-shrink: 0;      /* リンクテキストが縮まないようにする */
}
.p-product__title img {
    max-height: 60px;    /* 画像の最大高さを制限（お好みで調整） */
    width: auto;         /* 縦横比を保持 */
}
@media screen and (max-width: 900px) {
	.p-product__title img {
		width: 15%;
	}
	.p-product__title.mitsubishi img {
		width: 25%;
	}
}
@media screen and (max-width: 580px) {
	.p-product__title img {
		width: 25%;
	}
	.p-product__title.mitsubishi img {
		width: 30%;
	}
}

.p-product__cbox {
	min-width: 400px;
	display: inline-block;
    padding: 16px 40px;
    background: var(--color-sub1);
}
@media screen and (max-width: 768px) {
	.p-product__cbox {
		min-width: auto;
		width: 100%;
	}
}

/* p-interview */
section + .p-interview {
	margin-top: 80px;
}
.p-interview .p-interview__box {
	display: flex;
}
.p-interview__box .p-interview__box__img {
	width: 45%;
}
.p-interview__box .p-interview__box__img > div:first-child {
	width: 100%;
}
.p-interview__box .p-interview__box__img > div:nth-child(2) {
	display: flex;
    margin-top: 40px;
    justify-content: space-between;
}
.p-interview__box .p-interview__box__img > div:nth-child(2) > div {
	width: calc(50% - 20px);
}
.p-interview__box .p-interview__box__text {
	width: 55%;
	padding-left: 40px;
}
.p-interview__box .p-interview__box__text h3{
	margin-top: 0;
	font-size: 1.2rem;
}

@media screen and (max-width: 1080px) {
	section + .p-interview {
		margin-top: 40px;
	}
	.p-interview__box .p-interview__box__img {
		width: 50%;
	}
	.p-interview__box .p-interview__box__img > div:nth-child(2) {
		margin-top: 20px;
	}
	.p-interview__box .p-interview__box__img > div:nth-child(2) > div {
		width: calc(50% - 10px);
	}
	.p-interview__box .p-interview__box__text {
		width: 50%;
	}
}
@media screen and (max-width: 768px) {
	.p-interview .p-interview__box {
		flex-wrap: wrap;
	}
	.p-interview__box .p-interview__box__img,
	.p-interview__box .p-interview__box__text {
		width: 100%;
	}
	.p-interview__box .p-interview__box__text {
		padding: 20px 0 0;
	}
}

/* p-delivery */
.p-delivery  .p-delivery__item {
	margin-top: 40px;
}
.p-delivery h4 {
	margin-top: 0;
}
.p-delivery__box {
	display: flex;
}
.p-delivery__box .p-delivery__box__text {
	padding-left: 40px;
}
.p-delivery__box .p-delivery__box__text h5 {
	margin-top: 0;
}
.p-delivery__box .p-delivery__box__text ul li {
	margin-left: 1em;
}

@media screen and (max-width: 900px) {
	.p-delivery__box .p-delivery__box__text {
		padding-left: 20px;
	}
}
@media screen and (max-width: 768px) {
	.p-delivery__box {
		flex-wrap: wrap;
	}
	.p-delivery__box .p-delivery__box__text {
		padding-left: 0;
		margin-top: 20px;
	}
}

/* p-company */
.p-company__box {
	display: flex;
}
.p-company__table  {
	width: 60%;
}
.p-company__img {
	width: 40%;
	margin-left: 20px;
}
.p-company__img img:nth-child(2) {
	margin-top: 20px;
}
@media screen and (max-width: 1080px) {
	.p-company__box {
		flex-direction: column;
	}
	.p-company__table,
	.p-company__img {
		width: 100%;
	}
	.p-company__img {
		display: flex;
		margin: -40px 0 40px;
	}
	.p-company__img img {
		width: calc(50% - 10px);
	}
	.p-company__img img:nth-child(2) {
		margin: 0 0 0 20px;
	}
}
@media screen and (max-width: 480px) {
	.p-company__img {
		flex-direction: column;
	}
	.p-company__img img {
		width: 100%;
	}
	.p-company__img img:nth-child(2) {
		margin: 20px 0 0;
	}
}

.p-company-president img {
	margin-bottom: 20px;
}
@media screen and (max-width: 1080px) {
	.p-company-president img {
		width: 35%;
		margin-top: -15px;
	}
}
@media screen and (max-width: 480px) {
	.p-company-president img {
		width: 60%;
	}
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.u-fntcolor--main1 {color: var(--color-main1) !important;}
.u-fntcolor--sub1 {color: var(--color-sub1) !important;}
.u-fntcolor--red {color: #e41010 !important;}
.u-fntcolor--orange {color: #e48510 !important;}
.u-fntcolor--yellow {color: #e4cf10 !important;}
.u-fntcolor--green {color: #0f9a00 !important;}
.u-fntcolor--blue {color: #1041e4 !important;}
.u-fntcolor--purple {color: #840bc0 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.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;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

.u-center--pc {  text-align: center;}
@media screen and (max-width: 768px) {
	.u-center--pc {  text-align: left;}
	.u-center--sp {  text-align: center;}
}
.u-tabbr { display: none; }
.u-spbr { display: none; }
@media screen and (max-width: 768px) {
  .u-pcbr {
    display: none;
  }
  .u-tabbr {
    display: block;
  }
}
@media screen and (max-width: 568px) {
  .u-spbr{
    display: block;
  }
}

.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--bold{font-weight: bold !important;}
.u-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-m--layout01  {margin-top: var(--margin-big) !important;}
.u-m--layout02  {margin-top: var(--margin-middle) !important;}
.u-m--layout03  {margin-top: var(--margin-small) !important;}
.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt30 {margin-top: 30px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb30 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml30 {margin-left: 30px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr30 {margin-right: 30px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w100p {  width: 100% !important;}
.u-wauto {  width: auto !important;}
.u-wmx320 {  width: 100% !important;max-width: 320px !important;}
.u-wmx560 {  width: 100% !important;max-width: 560px !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-main1)}
.u-border02{border:2px solid var(--color-main1)}
.u-bordertop01{border-top:1px solid var(--color-main1)}
.u-borderbottom01{border-bottom:1px solid var(--color-main1)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}

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

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

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