@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	/* color: #46405c; */
	color: #322b4a;
	/*全体の文字色*/
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/
	font-size: 16px;
	/*文字サイズ*/
	line-height: 2;
	/*行間*/
	background: #f4f3fa;
	/*背景色*/
	-webkit-text-size-adjust: none;
	/* background-color: #ddd; */
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	font-weight: normal;
}

ul {
	list-style-type: none;
}

ol {
	padding-left: 40px;
	padding-bottom: 15px;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	font-size: 100%;
	border-spacing: 0;
}

iframe {
	width: 100%;
}

@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #414046;
	/*リンクテキストの色*/
	transition: 0.5s;
	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}

a:hover {
	color: #001852;
	/*マウスオン時の文字色*/
	text-decoration: none;
	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	height: 100%;
	overflow: auto;
	position: relative;
	background: #001852;
	/*背景色*/
}

/*ロゴ画像*/
header #logo img {
	display: block;
	width: 20%;
	/*画像の幅*/
	position: absolute;
	top: 40%;
	left: 48%;
	transform: translate(-40%, -48%);
}

@media screen and (max-width:800px) {
	header #logo img {
		width: 50%;
		/*画像の幅*/
		left: 46%;
		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	}

}

@media screen and (max-width:480px) {
	header #logo img {
		width: 50%;
		/*画像の幅*/
		left: 46%;
		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	}

}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	position: absolute;
	bottom: 7%;
	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	left: 0px;
	width: 100%;
	text-align: center;
}

/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;
	margin: 0 1%;
	animation-name: opa1;
	animation-delay: 1S;
	animation-duration: 1S;
	animation-fill-mode: both;
}

#menubar li a {
	text-decoration: none;
	display: block;
	text-align: center;
	font-size: 1.5em;
	font-family: 'Sacramento', cursive;
	width: 100%;
	/*メニューの幅*/
	color: #fff;
	/*文字色*/
	margin-right: 1.5em;
	border-bottom: 2px solid transparent;
	/*下線の幅、線種、色。transparentは透明の事。*/
	padding-bottom: 7px;
	/*下線と文字の間にとる余白*/
}

/*マウスオン時の指定*/
#menubar li a:hover {
	border-bottom: 2px solid #fff;
	/*下線の幅、線種、色*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;
	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 50px 3%;
}

#contents section+section {
	padding-top: 50px;
}

/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	width: 100%;
	margin-bottom: 20px;
	clear: both;
	font-size: 3em;
	font-family: 'Sacramento', cursive;
	font-weight: bold;
	/*文字サイズ*/
	text-align: center;
	/*文字をセンタリング*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする指定*/
}

/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 18px;
	/*文字サイズ*/
	text-align: center;
	/*文字をセンタリング*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #ea96a3;
	/*枠線の幅、線種、色*/
	border-radius: 100px;
	/*角を丸くする指定。大きめであれば適当で構いません。*/
	background: #fff;
	/*背景色*/
}

#contents h4 {
	font-weight: bold;
}

/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	margin: 0px 20px 20px;
	/*上、左右、下への余白*/
}

/*他。微調整。*/
#contents p+p {
	margin-top: -5px;
}

#contents h2+p,
#contents h3+p {
	margin-top: -10px;
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	line-height: 1.5;
	border-bottom: 1px solid #ccc;
	/*下線の幅、線種、色*/
	padding: 20px;
	/*ボックス内の余白*/
}

/*１番目のlistブロックへの追加指定。上に線を入れる。*/
.list:first-of-type {
	border-top: 1px solid #ccc;
}

/*h4見出しの設定*/
.list h4 {
	font-size: 20px;
	/*文字サイズ*/
	margin-bottom: 10px;
}

/*画像の設定*/
.list img {
	width: 20%;
	/*画像幅*/
	float: left;
	/*画像を左に回り込み*/
	margin-right: 3%
		/*画像の右側に空けるスペース*/
}

/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #001852;
	/*背景色*/
	color: #fff;
	/*文字色*/
	font-size: 85%;
	/*文字サイズ*/
}

footer a {
	color: #fff;
	/*リンクテキストの文字色*/
	text-decoration: none;
}

footer a:hover {
	color: #fff;
	/*マウスオン時の文字色*/
}

footer .pr {
	display: block;
	font-size: 80%;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;
	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;
	/*下線だけ消す*/
	text-align: center;
	/*文字をセンタリング*/
	background: #f0f0f0;
	/*背景色*/
	font-weight: bold;
	/*太字に*/
	padding: 10px;
	/*ボックス内の余白*/
}

/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;
	/*文字をセンタリング*/
	background: #f0f0f0;
	/*背景色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;
	/*背景色*/
}

.ta1,
.ta1 td,
.ta1 th {
	word-break: break-all;
	border: 1px solid #999;
	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;
	/*テーブル内の余白*/
}

/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;
	/*センタリング*/
	width: 30%;
	/*幅*/
}

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

.scroll a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 50px;
	/*幅*/
	line-height: 50px;
	/*高さ*/
	position: fixed;
	right: 30px;
	/*右からの配置場所指定*/
	bottom: 30px;
	/*下からの配置場所指定*/
	color: #fff;
	/*文字色*/
	background: rgba(0, 0, 0, 0.4);
	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.scroll a:hover {
	background: rgba(0, 0, 0, 0.8);
	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}

ol {
	padding: 0 20px 20px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #fff;
	border: 1px solid #ccc;
	padding: 5px 10px;
	border-radius: 4px;
}

.mb15,
.mb1em {
	margin-bottom: 15px;
}

.clear {
	clear: both;
}

ul.disc {
	padding: 0em 25px 15px 40px;
	list-style: disc;
}

.color1,
.color1 a {
	color: #ff4765;
}

.pr {
	font-size: 10px;
}

.wl {
	width: 96%;
}

.ws {
	width: 50%;
}

.c {
	text-align: center;
	margin-bottom: 1.5rem;
	line-height: 3;
}

.r {
	text-align: right;
}

.l {
	text-align: left;
}

.big1 {
	font-size: 40px;
	letter-spacing: 0.2em;
}

.mini1 {
	font-size: 11px;
	display: inline-block;
	line-height: 1.5;
}

.sh {
	display: none;
}

.under {
	border-bottom: dotted 2px #001852;
	display: inline;
	padding-bottom: 0.3em;
}

.topimg {
	margin-bottom: 1em;
	width: 60%;
}

.thanksimg {
	margin-bottom: 3em;
	width: 10%;
}

.mainimg {
	margin-bottom: 5em;
	width: 60%;
}

@media screen and (max-width:800px) {
	.topimg {
		width: 70%;
	}

	.thanksimg {
		width: 30%;
	}

	.mainimg {
		width: 90%;
	}
}

@media screen and (max-width:480px) {
	.topimg {
		width: 90%;
	}

	.thanksimg {
		width: 30%;
	}

	.tmainimg {
		width: 90%;
	}
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/





/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

	/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
	#container {
		font-size: 12px;
		font-size: 2.93vw;
	}

	/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
	/*コンテンツ内にあるh2(見出し)タグの指定*/
	#contents h2 {
		font-size: 16px;
		/*文字サイズ*/
	}

	/*コンテンツ内にあるh3(見出し)タグの指定*/
	#contents h3 {
		font-size: 14px;
		/*文字サイズ*/
	}

	/*Serviceページ
---------------------------------------------------------------------------*/
	/*h4見出しの設定*/
	.list h4 {
		font-size: 16px;
		/*文字サイズ*/
	}

	/*ul.disc,olタグ
---------------------------------------------------------------------------*/
	ul.disc {
		padding: 0 0px 20pxS 35px;
	}

	ol {
		padding: 0 0px 20px 35px;
	}

	/*その他
---------------------------------------------------------------------------*/
	.ws {
		width: 96%;
	}

	.big1 {
		font-size: 22px;
		letter-spacing: normal;
	}

}

/*おみくじ
---------------------------------------------------------------------------*/
.kuji_btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 1em 2em;
	width: 200px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	background-color: #001852;
	box-shadow: 0 5px 0 #44424d;
	transition: 0.3s;
	border-radius: 20px;
}

.kuji_btn:after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

.kuji_btn:hover {
	transform: translateY(3px);
	text-decoration: none;
	box-shadow: 0 2px 0 #5a5961;
}

.kuji {
	position: relative;
	background-color: #f7f7f8;
	background-image: url("../img/yama.png"), url("../img/bg_img.png"), url("../img/bg2.jpg");
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: 0 100%, 0 40px, 0 0;
	background-size: auto, 100% auto, auto;
	padding: 100px 0;
	text-align: center
}

.kuji_line {
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	background-image: url("../images/line.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 10px;
}

.kuji_linebottom {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 10px;
	background-image: url("../images/line.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 10px;
}

.kuji_img {
	animation-name: fadeInAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.kuji {
		padding: 60px 0 100px;
		background-size: 100% auto, 100% auto, auto;
	}

	.kuji_btn {
		width: 260px;
		height: 50px;
		line-height: 50px;
	}
}

/*ポップアップ
---------------------------------------------------------------------------*/
#pop-up {
	display: none;
	/* label でコントロールするので input は非表示に */
}

.overlay {
	display: none;
	/* input にチェックが入るまでは非表示に */
}

#pop-up:checked+.overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.window {
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (orientation: landscape) {

	/* 横長の画面 */
	.window {
		width: 25%;
	}
}

@media screen and (orientation: portrait) {

	/* 縦長の画面 */
	.window {
		width: 60%;
	}
}

@media screen and (orientation: landscape) and (min-width: 400px) {
	.window {
		width: 25%;
	}
}

@media screen and (orientation: portrait) and (max-width: 400px) {
	.window {
		width: 80%;
	}
}

.text {
	font-size: 18px;
	margin: 0;
}

.close {
	cursor: pointer;
	position: absolute;
	top: -1em;
	right: -0.5em;
	font-size: 5em;
	color: rgb(0, 0, 0);
	z-index: 1;
}

.info_logo {
	height: 120px;
	width: auto;
	display: block;
	margin: 60px auto 0px auto;
}

.info {
	text-align: center;
}

.title {
	font-size: 24px;
	margin: 40px 0px 10px 0px;
	font-weight: bold;
}

.detail {
	font-size: 18px;

}

.copyright {
	display: block;
	font-size: 12px;
	margin-top: 60px;
}