@charset "utf-8";


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


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


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



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


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

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


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

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

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

/*大きな端末で見た際の背景画像*/
body::before {
	content: "";
	background: url("../images/bg.jpg") no-repeat center center / cover;
	position: fixed;
	width: 100%;
	height: 100%;
}

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

	body {
		overflow-x: auto;
	}

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


/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
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*/
input {font-size: 1rem;}

/*section*/
section {
	margin: 30px 0;
}


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

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	background: #25282c;    /*背景色*/
	overflow-x: hidden;
	position: relative;
}

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

	#container {
		overflow-x: visible;
		width: 600px;    /*コンテナーの幅*/
		margin: 0 auto;
	}

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


/*ヘッダー
---------------------------------------------------------------------------*/
header {
    padding: 20px 20px 0;    /*上、左右、下へのヘッダー内の余白*/
}

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

	header {
		padding: 20px 50px 0;    /*上、左右、下へのヘッダー内の余白*/
	}

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


/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0 auto 20px;    /*最後の「20px」はロゴとスライドショー画像との間の余白設定箇所です*/
	width: 200px;    /*画像の幅*/
}


/*スライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
.mainimg {
    position: relative;
	margin-bottom: 50px;	/*ボックスの下に空けるスペース。*/
}

/*３枚の画像の共通設定*/
.mainimg .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s;	/*ここの1s（＝1秒）を変更すると、フェードのスピードを変更できます。１枚が表示される時間はjsで指定できます。*/
}

/*１枚目画像（変更不要）*/
.mainimg .slide:first-child {
	position: relative;width: 100%;height: auto;
}

/*画像全般（変更不要）*/
.mainimg .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナのサイズに合わせてクリップ */
    object-position: center; /* 画像の中心を基準に調整 */
	border-radius: 30px;    /*角を丸くする指定*/
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.mainimg .slide {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.mainimg .slide.active {
    pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}

/*現在表示中のボタン
---------------------------------------------------------------------------*/
/*全体*/
.mainimg .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: -40px;	/*ボタンの配置場所。0以上の数値にすれば画像の上に重なります。*/
	left: 0px;
}
/*１個あたり*/
.mainimg .indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;	/*非アクティブ時のボタン色*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.mainimg .indicator.active {
    background: #a16e2c;	/*アクティブ時のボタン色*/
}

/*main
---------------------------------------------------------------------------*/
main {
    padding: 20px 10px;
}

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

	main {
		padding: 20px 50px;
	}

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


main h2 {
	margin: 0;padding: 0;
}

/*目次
---------------------------------------------------------------------------*/
#mokuji {
    background: #a16e2c;
    padding: 30px;	/*ボックス内の余白*/
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 30px;    /*角を丸くする指定*/
}

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

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


#mokuji h2 {
	margin-bottom: 1rem;
}



/*section1
---------------------------------------------------------------------------*/
#section1 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
	padding: 30px;	/*ボックス内の余白*/
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 30px;    /*角を丸くする指定*/
}

/*section1内のh2見出し*/
#section1 h2 {
	text-align: center;
}

/*section1内の.text*/
#section1 p.text {
	text-align: center;
}

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

	#section1 {
		padding: 50px;	/*ボックス内の余白*/
	}
	
	/*section1内の.text*/
	#section1 p.text {
		margin-left: 80px;	/*左に空けるスペース*/
	}
		
	}/*追加指定ここまで*/


/*section2
---------------------------------------------------------------------------*/
#section2 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
    padding: 30px;	/*ボックス内の余白*/
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 30px;    /*角を丸くする指定*/
}

/*section1内のh2見出し*/
#section1 h2 {
	margin-left: 30px;	/*左に空けるスペース*/
}

/*section1内の.text*/
#section1 p.text {
	margin-left: 40px;	/*左に空けるスペース*/
}

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

	#section1 {
		padding: 50px;	/*ボックス内の余白*/
	}
	
	/*section1内の.text*/
	#section1 p.text {
		margin-left: 80px;	/*左に空けるスペース*/
	}
		
	}/*追加指定ここまで*/


/*section3
---------------------------------------------------------------------------*/
#section3 {
    padding: 50px 0;	/*ボックス内の余白。上下、左右への順番。*/
}

/*section3内のh2見出し*/

#section3 {
    margin-right: 20px;
}

#section3 h2 {
    margin-bottom: 2rem;	/*下に２文字分のスペースをあける*/
}


/*section4
---------------------------------------------------------------------------*/
#section4 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
    padding: 30px;	/*ボックス内の余白*/
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 30px;    /*角を丸くする指定*/
}

/*GoogleMapの埋め込み*/
#section5 iframe {
	width: 100%;
	height: 500px;	/*マップの高さ*/
}

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

	#section4 {
		padding: 20px 50px;	/*ボックス内の余白。上下、左右へ。*/
	}

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

/*section5
---------------------------------------------------------------------------*/
#section5 {
    background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒のことで0.4は色が40%出た状態。*/
    padding: 30px;	/*ボックス内の余白*/
	margin-left: 10px;
	margin-right: 10px;
	border-radius: 30px;    /*角を丸くする指定*/
}


/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {
    font-size: 100%;
    padding: 20px;
    display: block;
}
footer {
	text-align: center;		/*内容をセンタリング*/
}

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


/*その他
---------------------------------------------------------------------------*/
.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 {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);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;}
.bg1 {background: #f0f0f0;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

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

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

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