@charset "UTF-8";
/* CSS Document */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

:root {
	--main-color: rgba(0,0,0,1.0);
	--back-color: #ecf6f6;
	--sub-font: "Shippori Mincho", serif;
	--heading-font: "Montserrat", sans-serif;
	--icon-font: 'Material Symbols Outlined';
}

html, body {
}

html {
	font-size: 62.5%; /*ベースを10pxにしています*/
}

html.font_nomal {
	font-size: 62.5%; /*ベースを10pxにしています*/
}

html.font_big {
	font-size: 75%; /*ベースを10pxにしています*/
}

html.font_large {
	font-size: 88%; /*ベースを10pxにしています*/
}

body {
	
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
	font-size: 1.0rem; /*ベースを10pxにしています*/
	background-color: #FFF;
	color: #000;
	line-height:150%;
}
/*
Noto Sans Japanese
Thin		ExtraLight	100 
Light		Light		200 
DemiLight	Normal		300 
Regular		Regular		400 
Medium		Medium		500 
Bold		Bold		700 
Black		Heavy		900 
*/
a:link {
	color: #515c61;
	text-decoration: underline;
}
a:visited {
	color: #515c61;
	text-decoration: underline;
}
a:hover {
	color:#00a8c0;
}
input, textarea, select, optgroup, option {
	font-family: 'Noto Sans JP', sans-serif;
}
.txt16 {
	font-size: 16px;
}
.txt14 {
	font-size: 14px;
}
.txt11 {
	font-size: 11px!important;
}
.txt700 {
	font-weight: 700;
}
.blue {
	color: #005bac;
}
.txw {
	color: #FFFFFF;
}
.bgg {
	background-color: #efefef;
}
.bgb {
	background-color: #0F5BAC;
}
.bglb {
	background-color: #e5eef7;
}
.mt15 {
	margin-top: 15px;
}
.mb15 {
	margin-bottom: 15px;
}

/*------------------------------------------------------------------------------

フロートバグ対策

解除したい要素にクラスclearfixを追加

------------------------------------------------------------------------------*/


/*clearfixハック*/

.clearfix:after {
	content: ".";/* 新しい要素を作る */
	display: block;/* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
	font-size:0;
	margin: -1px 0 0 0;
}
.clearfix {
	font-size:0;
	line-height:0;
	clear: both;
	overflow:hidden;
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*¥*//*/
height: auto;
overflow: hidden;
/**/
}
.clearfix_new:before, .clearfix_new:after {
	content: " ";
	display: table;
}
.clearfix_new:after {
	clear: both;
}
.clearfix_new {
 *zoom: 1;
}

.clear {
	margin: 0px;
	padding: 0px;
	clear: both;
}
br.pc{
	display: block;
}
br.sp{
	display:none;
}

.wrapper{
	width: 1000px;
	margin: 0 auto;
	
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	
	justify-content:space-between;
}

.back_color{
	background-color: var(--back-color);
}


/*------------------------------
SmartPhone---768breakPoint
================================*/
@media screen and (max-width: 768px) {
/*#responsive base*/
html { font-size: 62.5% !important; }
body {
	line-height:1.5;
}
br.pc{
	display: none;
}
br.sp{
	display: block;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	
	justify-content:space-between;
}

.back_color{
	background-color: var(--back-color);
}
}