@charset "utf-8";

/******************************************
各ページ共通のスタイルを定義
*******************************************/

/* ----------------------------------------

再定義

---------------------------------------- */
html {
	overflow-y: scroll;

}
body {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.88;
	background-color: #fff;
	font-family: "Noto Serif JP" ,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;
	color: #453B36;
	word-break: break-word;
	overflow-x: hidden;
}
body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
	color: #453B36;
	text-decoration: none;
	outline: none;
}
a:hover,
a:visited:hover {
	text-decoration: none;
	opacity: .5;
	transition: opacity .5s ease-in-out;
}
img,
svg {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {/* for win7 ie11 */
	max-width: 100%;
	height: auto;
}
table {
	table-layout: fixed;
}
input,select,textarea {
	max-width: 100%;
}
input[type="button"],select{cursor: pointer;outline: none;}
:focus::-webkit-input-placeholder {color: transparent;}/* Webkit */
:focus:-moz-placeholder {color: transparent;}/* Firefox 18 以前 */
:focus::-moz-placeholder {color: transparent;}/* Firefox 19 以降 */
::-webkit-input-placeholder {color: #888; opacity: 1;}
:-moz-placeholder {color: #888; opacity: 1;}
::-moz-placeholder {color: #888; opacity: 1;}
input[type="submit"],
input[type="button"] {
	-webkit-appearance: button;
	appearance: button;
}
input[type="text"],input[type="email"],input[type="password"],input[type="tel"],textarea {
	-webkit-appearance: none; 
	border-radius: 0;
	outline: none;
}
select {
	outline: none;
}
body ::-webkit-scrollbar { width: 12px;}
body ::-webkit-scrollbar-track { background: #f1f1f1;}
body ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb:window-inactive { background: #bcbcbc;}
@media screen and (max-width:767px){
	body ::-webkit-scrollbar { width: 8px;}
}


a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	pointer-events: none;
	display: inline-block;/*for ie11*/
	color: inherit; /* Inherit text color of parent element. */
	text-decoration: none; /* Remove underline. */
}

@media screen and (max-width:767px){
	body {
		font-size: 14px;
	}
	input,select,textarea {
		font-size: 16px;
	}
}


/* ----------------------------------------

container

---------------------------------------- */
#container {
	margin: 0 auto;
	/*font-size: 100%;  fontsize 13px */
	/*min-width: xxxxpx;*/
}
@media screen and (max-width:767px){
	#container {
		min-width: inherit;
	}
}

/*
**
子要素のフォントサイズ指定は以下を参照
http://bueltge.de/test/emchart.html
例)
基準フォントサイズが13pxで、
特定の要素を12pxにしたい時は92.4%と指定
**
*/

/* ----------------------------------------

header

---------------------------------------- */
#header {
}

/* noscript
------------------------------- */
#noscript {
	margin-bottom: 15px;
	padding: 0.5em 1em;
	border: 2px solid #ccc;
	color: #333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* ----------------------------------------

content

---------------------------------------- */
#content {
}


/* topicPath
------------------------------- */
#topicPath {
}
#topicPath li {
	display: inline;
	padding-right: 4px;
}
#topicPath li:before {
	content: '＞';
	margin-right: 5px;
	font-size: 69.2%;
	vertical-align: middle;
}
#topicPath li#topPage {
	padding-left: 0;
	background: none;
}
#topicPath li#topPage:before {
	content: none;
}
@media screen and (max-width:767px){
	#topicPath ol {
		padding-right: 10px;
		padding-left: 10px;
	}
}


/* ----------------------------------------

content - main

---------------------------------------- */
#main {
}


/* ----------------------------------------

content - sub

---------------------------------------- */
#sub {
}


/* ----------------------------------------

footer

---------------------------------------- */
#footer {
	position: relative;
}

/* pagetop
------------------------------- */
#pagetop {
	z-index: 100;
	position: absolute;
	right: 10px;
}
#pagetop a {
	display: block;
	position: relative;
	width: 50px; 
	height: 50px;
	background-color: #333;
	color: #fff;
	text-decoration: none;
	border-radius: 100%;
}
#pagetop span { display: none; }
#pagetop .fa {
	position: absolute;
	font-size: 110%;
	left: 50%;
	top: 50%;
	margin-top: -.5em;
	margin-left: -.5em;
}
@media screen and (max-width:767px){
	#pagetop a {
		width: 40px; 
		height: 40px;
	}
	#pagetop .fa {
		font-size: 85.7%;
	}
}


/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.xxx:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
.xxx {
	*zoom: 1;
}