﻿/*----------------------------------------------*/
/* ページ共通CSS
------------------------------------------------*/

@charset "UTF-8";

body{
	font: 14px/1.9 'Noto Serif JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 300;
	-webkit-text-size-adjust:100%;
	overflow-x: hidden;
	color: #000;
	background: #fff;
}

header {
	width: 100%;
	height: 60px;
	padding: 0px 15px;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 10;
	display: flex;
	border-bottom: 1px solid #ccc;
}

footer {
	clear: both;
	padding: 0px 0px 30px 0px;
}

#contents {
	width: 100%;
	padding-top:60px;
}


#headnavi {
	width: 100%;
	word-break: break-all;
	margin-top: 10px;
	margin-bottom: 10px;
}



a{
	color: #0066ff;
	text-decoration: none;
}

a:hover, .active{
	text-decoration: underline;
}

a:active, a:focus,input:active, input:focus{
	outline: 0;
}


h1, h2, h3{
	font-family: 'Noto Serif JP',serif;
}

/*---: h1 Caption :----------*/

.caption {
	width: 90%;
	max-width: 500px;
	text-align: center;
	margin: auto;
	margin-bottom: 30px;
}

h1 {
	display :inline-block;
	font-size: 22px;
	font-weight:normal;
}

h2 {}

h3 {
	font-size: 22px;
	font-weight:bold;
}


img{
	max-width: 100%;
	height: auto;
}



.inner{
	width: 90%;
	margin: 0 auto;
}


/*----------------------------------------------*/
/* ページ共通CSS レスポンシブ800
------------------------------------------------*/
@media only screen and (min-width: 800px){
body{
	font-size:16px;
}

#header .pc{
	font-size:14px;
}}


/*----------------------------------------------*/
/* 共通classツール
------------------------------------------------*/

.borderTop{
	border-top: 1px solid #a0a0a0;
}

.borderBtm{
	border-bottom: 1px solid #a0a0a0;
}

.bdrSq{
	border: 1px solid #a0a0a0;
}

.paddingBtm{
	padding-bottom: 50px;
}

.marginTop{
	margin-top: 50px;
}

.mTop20 {
	margin-top: 20px;
}

.marginBtm{
	margin-bottom: 50px;
}

.mBtm20 {
	margin-bottom:20px;
}

/*---: コンテンツ上下パディング :----------*/
.ctPdg{
	padding-top: 50px;
	padding-bottom: 50px;
}

/*---: ボーダー穿かせるにはインナーに付けないといけなかった。 :----------*/
.pdgIn {
	padding-top: 30px;
	padding-bottom: 30px;
}



/*---: Button :----------*/

a.btn-border {
	display: block;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #000;
	
	border: 1px solid #000;
	border-radius: 0;
	padding: 1em 1em;
	background: rgba(240,248,255,0.8);
}

a.btn-border:hover {
	color: #fff;
	background: #000;
	opacity: 0.5;
	transition: 0.5s;
}

/*---: Button End :----------*/



/*----------------------------------------------*/
/* テスト用
------------------------------------------------*/

.testdiv{
	min-height:200px;
}

.bgpink{
	background: #FF80FF;
}

.bgblue{
	background: #00FFFF;
}

.ofHid{
	overflow: hidden;
}

.wrdBreak{
	word-break: break-all;
}