@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

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

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Kosugi&family=M+PLUS+1p:wght@700&family=M+PLUS+2&family=Noto+Sans+JP:wght@300;600&family=Noto+Serif+JP:wght@500&family=Jost:wght@300;400;500&family=Lexend+Deca:wght@300;400&family=Noto+Sans+JP:wght@300;400;500;600&display=swap');


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




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

	/*余白の一括管理用。主に左右の余白に使っています。2rem＝２文字分。*/
	--content-space: 2rem;

}


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {
		left: -200px;
	}

	100% {
		left: 0px;
	}
}


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

	100% {
		opacity: 1;
	}
}



/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	overflow-x: hidden;
}

body {
	font-family: "Noto Sans JP", "Noto Serif JP", "M PLUS Rounded 1c", sans-serif;

	/*フォント種類*/
	-webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
	background: #fff;
	/*背景色*/
	color: #444;
	/*全体の文字色*/
	line-height: 2;
	/*行間*/
}


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

dd {
	margin: 0;
}

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

ul {
	list-style: none;
}



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

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

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

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

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

/*section*/
section {
	padding: var(--content-space);
	/*section内の余白。冒頭のcontent-spaceを読み込みます。*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	/*文字色*/
	color: inherit;
	transition: 0.3s;
	text-decoration: none;
	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);
	/*少しだけ明るくする*/
	letter-spacing: 0.2em;
	/*文字間隔を少し広くする*/
}



/* ロゴ loading
---------------------------------------------------------------------------*/
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		visibility: hidden;
	}
}

.loading__logo {
	opacity: 0;
	animation: logo_fade 3s 0.5s forwards;
	width: 250px;
}

@keyframes logo_fade {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

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

	100% {
		opacity: 0;
	}
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	overflow-x: hidden;
	position: relative;
	animation: opa1 1s 0.4s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 1800px;
	/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
}



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


/*フッター設定
---------------------------------------------------------------------------*/
footer a {
	color: inherit;
	text-decoration: none;
}

footer small {
	font-size: 100%;
}

footer {
	margin-top: auto;
	font-size: 0.8rem;
	/*文字サイズ。80%。*/
	background: #aaa;
	/*背景色*/
	color: #fff;
	/*文字色*/
	text-align: center;
	/*内容をセンタリング*/
	padding: 1rem;
	/*ボックス内の余白。１文字分。*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;
	display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


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

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

/*その他
---------------------------------------------------------------------------*/
.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;
}

.mt20 {
	margin-top: 20px;
}

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

.mb20 {
	margin-bottom: 20px !important;
}

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

.p10 {
	padding: 10px 10px;
}

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

.small {
	font-size: 0.75em;
}

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

.pc {
	display: none;
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

/*大きな画面の場合*/
.large-screen .ws {
	width: 48%;
	display: inline;
}

.large-screen .sh {
	display: none;
}

.large-screen .pc {
	display: block;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	/*文字色*/
	transition: 0.3s;
}

a:hover {
	color: #444;
}




/*背景設定
---------------------------------------------------------------------------*/
.bg1 {
	background-color: #fff;
}

.bg2 {
	background-color: #fbf4f1;
}

.bg3 {
	background-color: #f2f2f2;
}



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

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


.sub-contents-parts {
	margin-bottom: 30px;
	text-align: center;
}


section {
	padding-left: 30px;
	padding-right: 30px;
}



/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	/*太字に*/
	padding: 10px 5px;
	/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #fafafa;
	/*背景色*/
	margin-bottom: 15px;
	/*下に空けるスペース*/
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
	font-size: 110%;
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;
	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;
	/*最後の「30px」がテーブルの下に空けるスペースです*/
	background: #fafafa;

}

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

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
	padding: 10px 5px;
	/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;
	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

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



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

	/*カラムで使う為の指定*/
	main.column-parts {
		display: flex;
		/*flexボックスを使う指定*/
		justify-content: space-between;
		/*並びかたの種類の指定*/
		gap: 2rem;
		/*main-contents-partsとsub-contents-partsの間のマージン的な隙間*/
		padding: 50px;
	}

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

	/*.sub-contents-parts*/
	.sub-contents-parts {
		width: 300px;
		/*幅*/
		flex-shrink: 0;
		text-align: center;
	}

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

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

	section {
		padding-left: 100px;
		padding-right: 100px;
	}

	/*テーブル
---------------------------------------------------------------------------*/
	/*テーブル１行目に入った見出し部分（※caption）*/
	.ta1 caption {
		padding: 5px 15px;
		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）、td（右側）の共通設定*/
	.ta1 th,
	.ta1 td {
		padding: 20px 15px;
		/*上下、左右へのボックス内の余白*/
	}

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


}

/*mainブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
/*画面幅900px以上の追加指定*/



h2 {
	font-family: 'Cinzel', serif;
	/*GoogleFontsの指定*/
	font-weight: normal;
	/*太さを標準に*/
	font-size: 2em;
	/*文字サイズを２倍に*/
	letter-spacing: 0.2em;
	/*文字間隔を広くとる*/
	text-indent: 1em;
	/*上の行のletter-spacingと同じ値をセットする*/
	text-align: center;
}

/*h2タグ内のspanタグ。小文字部分。*/
h2 span {
	display: block;
	font-size: 0.5em;
	/*文字サイズを親要素の半分に*/
	letter-spacing: 0.8em;
	/*文字間隔の上書き*/
	text-indent: 0.5em;
	/*上の行のletter-spacingと同じ値をセットする*/
}

/*h3タグ*/
h3 {
	font-weight: normal;
	/*太さを標準に*/
	font-size: 1.5em;
	/*文字サイズ*/
	letter-spacing: 0.2em;
	/*文字間隔を少し広くとる*/
}


@media screen and (max-width:899px) {
	h2 {
		font-size: 1.5em;

	}

	h3 {
		font-size: 1.2em;
	}

}


.button01 {
	background-color: #2f4f4f;
	color: #fff;
	padding: 10px 40px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1em;
}

.button01:hover {
	color: #fff;
	opacity: 0.8;
}


.button a {
    background-color: #2f4f4f;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 350px;
    padding: 10px 25px;
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	margin-bottom: 50px;
}
.button a:hover {
    opacity: 0.8;
    color: #FFF;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover:after {
    border-color: #FFF;
}


.image-float {
  float: right;
  margin-left: 15px; /* 画像とテキストの間の余白 */
}


@media screen and (max-width:899px) {
.image-float {
  width: 100%;
}
}