@charset "utf-8";



/*全端末共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/


@import url("keyframes.css");

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #545454;	
	font-family: "メイリオ", "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;
	line-height: 2.5;
	background: #c3e4e5;
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
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%;}

/*リンク設定
---------------------------------------------------------------------------*/
a {
	color: #545454;	
	transition: 0.5s;
}
a:hover {
	color: #ffbbbb;
	text-decoration: none;
}


#container {
	max-width: 1400px;
	margin: 0 auto;
}

header {
	text-align: center;
	padding: 20px;
}

.home header {
	padding: 0;
	position: relative;
}

header #logo img {
	width: 15%;
}


/*メニュー
---------------------------------------------------------------------------*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 12px;
}
#menubar li {
	display: inline-block;
	margin: 0px 5px;
}
#menubar li a {
	text-decoration: none;display: block;
	padding: 0px 20px;
}

#menubar li.current a, #menubar li a:hover {
	background: #ffbbbb;
	color: #fff;
	border-radius: 100px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 50px 3%;
}
#contents h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 21px;
	text-align: center;
	letter-spacing: 0.1em;
}
#contents h2 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	
	padding: 0px 30px;
}
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 18px;
	text-align: center;
}

#contents p {
	padding: 0px 20px 30px;	

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




/*option1
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;
	position: absolute;
	right: 0px;
	top: 0px;
	transform: rotate(45deg) translate(93px,-45px);
	background: #f38080;
	color: #fff;
	letter-spacing: 0.1em;
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #545454;}
footer .pr {display: block;}


/*box1
---------------------------------------------------------------------------*/
.box1 {
	overflow: hidden;position: relative;
	padding: 20px 40px;
	border-radius: 30px;
	margin-bottom: 30px;
	background: #fff;
}
.bg1 {
	background: #ede9e2;
}
.bg2 {
	background: transparent;
	border: 2px dashed #545454;
}



/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #f38080;
	background: #f38080;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #f38080;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;
	line-height: 80px;
	bottom: 50px;
	right: 3%;
	background: rgba(255,255,255,0.5);
	border: 1px dashed #ccc;
	border-radius: 50%;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;
	border: 1px dashed #ffbbbb;
}




ul.disc {
	list-style: disc;
	padding: 0 20px 30px 42px;
}
ol {
	padding: 0 20px 30px 42px;
}


.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #f38080;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}



/*600px以下設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 3vw;
}

/*ヘッダー
---------------------------------------------------------------------------*/
header #logo img {
	width: 200px;
}

/*メニュー
---------------------------------------------------------------------------*/
#menubar {
	font-size: 100%;
}
#menubar li a {
	padding: 0px 5px;
}

/*list
---------------------------------------------------------------------------*/

.list.thumb img {
	width: 90%;
}

/*box1指定
---------------------------------------------------------------------------*/
.box1 {
	padding: 10px 20px;
	border-radius: 20px;
}

/*テーブル
---------------------------------------------------------------------------*/
.ta1 th {
	width: 100px;
}

}



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

/*ヘッダー
---------------------------------------------------------------------------*/
.home header #logo img {
	width: 30%;
	left: 10%;
	top: 3px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 30px 3%;
}

#contents h2 {
	font-size: 16px;
}
#contents h3 {
	font-size: 14px;
}

#contents p {
	padding: 0px 10px 30px;	
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;
	line-height: 50px;
}


ul.disc {
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

}
