@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.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;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

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

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

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


body {
	font-size: 2rem;		/*文字サイズ。2倍。*/
	margin: 0;padding:0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #222;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

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

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

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

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

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

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

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


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


/*マウスオン時*/
a:hover {
	(70%);	/*少しだけ明るくする*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#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;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 1rem var(--content-space);		/*ヘッダー内の余白。上下に１文字分、左右にcss冒頭のcontent-spaceのサイズを読み込みます。*/
	background: #eee;	/*背景色*/
	color: #222;		/*文字色*/
	text-align: center;
}
header a {color: inherit;}

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

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

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


/*ロゴ（※画像の場合）*/
#logo img {
	display: block;
	margin: 0 auto;
	width: 220px;	/*ロゴの幅*/
}

/*ロゴ（※テキストの場合）*/
#logo a {text-decoration: none;}
#logo {
	width: auto;
	font-size: 1.4rem;	/*文字サイズ。140%*/
}

/*ヘッダーの右側ブロック（電話番号など）*/
#header-box {
	font-size: 0.8rem;	/*文字サイズ80%*/
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

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


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


/*フッター設定
---------------------------------------------------------------------------*/
footer a {color: inherit;text-decoration: none;}
footer small {font-size: 140%;}
footer {
	margin-top: auto;
	font-size: 1.2rem;		/*文字サイズ。80%。*/
	background: #bbb;		/*背景色*/
	color: #222;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem;	/*ボックス内の余白。１文字分。*/
}


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


/*余白調整用
---------------------------------------------------------------------------*/
section.padding0 {
	padding: 0;
}
div.padding0 {
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}


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

	/*大きな画面の場合*/
	 .ws {width: 48%;display: inline;}
	 .sh {display: none;}
	 .pc {display: block;}

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

/*h2タグ
---------------------------------------------------------------------------*/
#contents h2.titleset5-parts {
	font-size: 2rem;		/*文字サイズ。2倍。*/
	text-align: center;
	position: relative;
	letter-spacing: 0.1em;	/*文字間隔を少し広くする*/
	padding-top: 1rem;		/*ここを調整すると、見出しテキストとボーダーの間の余白を調整できます。お好みで。*/
}

/*小文字（kazari title）*/
#contents h2.titleset5-parts span {
	display: block;
	font-weight: normal;
	font-size: 0.5em;		/*文字サイズ。見出しの50%*/
	opacity: 0.5;			/*透明度。色を50%だけ出す。*/
}

/*見出し上のボーダー*/
#contents h2.titleset5-parts::before {
	content: "";
	position: absolute;
	height: 3px;	/*ボーダーの高さ*/
	width: 50px;	/*ボーダーの幅。変更する際は、下のleftの行も変更します。*/
	left: calc(50% - 25px);	/*左からの配置場所。ここの25px部分は、上のwidthの半分。*/
	top: 0px;
	background: #ccc;	/*線の色*/
}


/*h3タグ
---------------------------------------------------------------------------*/
#contents h3.titleset5-parts {
	font-size: 1.6rem;		/*文字サイズ。1.6倍。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする*/
	padding-left: 1rem;		/*左に空ける余白*/
	padding-right: 1rem;	/*右に空ける余白*/
}

/*小文字（kazari title）*/
#contents h3.titleset5-parts span {
	display: block;
	font-weight: normal;
	font-size: 0.5em;		/*文字サイズ。見出しの50%*/
	opacity: 0.5;			/*透明度。色を50%だけ出す。*/
}
  .hscroll {
    	width:100%;
    	height:auto;
    	position:relative;
    	border:1px solid gray;
    }
    .hscroll ul {
    	padding:0;
    	margin:0;
    	width:100%;
    	height:100%;
    	white-space:nowrap;
    	scroll-snap-type:x mandatory;
    	scroll-behavior:smooth;
    	overflow-x:auto;
    }
    .hscroll img {
    	width:100%;
    	height:100%;
    	object-fit:contain;
    }
    .hscroll li {
    	list-style:none;
    	display:inline-block;
    	scroll-snap-align:center;
    	width:100%;
    	height:100%;
    }
  .arrow {
  	top:0;
  	position:absolute;
  	width:8%;
  	height:100%;
  	background:rgba(255,255,255,0);
  	cursor:pointer;
  }
  .arrow:before {
  	content:'';
  	position:absolute;
  	width:10px;
  	height:10px;
  	border-left:4px solid gray;
  	border-bottom:4px solid gray;
  }
  .left {
  	left:0px;
  }
  .left:before {
  	top:calc(50% - 10px);
  	left:calc(50% - 4px);
  	transform:rotate(45deg);
  }
  .right {
  	right:0;
  }
  .right:before {
  	top:calc(50% - 10px);
  	right:calc(50% - 6px);
  	transform:rotate(-135deg);
  }
  @media screen and (max-width:480px) {
  	.hscroll ul {
  		overflow-x:auto;
  	}
  }


dl dd { font-size:120%;
font-weight:700;
}

.footer{
color:#fff;
background:#000;
width:100%;
padding: 16px 0;
text-align:center;
}
