@charset "UTF-8";

/*-----------------------------------------------
(Component)
__Default Clear
__Layout
-----------------------------------------------*/

/*-----------------------------------------------
__Default Clear
-----------------------------------------------*/
html{
	overflow-y: scroll;
}
body,header,main,footer,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,select,label,p,blockquote,th,td,dl,dt,dd,section,article,a,figure{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	background:var(--white);
	font-family: YakuHanJP, "Zen Kaku Gothic Antique", sans-serif;
	font-feature-settings: "palt" 1;
	line-height:1.6;
	color:var(--font);
	position: relative;
	overflow-y: clip;
	font-size: 1.1rem;
	letter-spacing: 0.05rem;
}

address,caption,cite,code,dfn,em,strong,th,var{
	font-style: normal;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th{
	text-align: left;
}
q:before,q:after{
	content: '';
}
object,embed{
	vertical-align: top;
}
legend{
	display: none;
}
hr{
	border:none;
	border-top:1px solid rgba(77,77,77,0.3);
	margin:60px auto;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
}
img,abbr,acronym,fieldset{
	border: 0;
}
img{
	transition: all ease .3s;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

li{
	list-style-type: none;
}
p{
	margin-bottom: 0.5em;
}
a{
	text-decoration:none;
	transition: all ease .3s;
}
em{
	font-weight: bold;
}

::selection {
    background: #F4DE14;/*背景色*/
    color: #000000; /*文字色*/
}
::-moz-selection {
    background: #F4DE14;/*背景色*/
    color: #000000; /*文字色*/
}

.img-ofi {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	font-family: 'object-fit: cover; object-position: center;'
}
.img-btm {
	object-fit: cover;
	object-position: center bottom;
	font-family: 'object-fit: cover; object-position: center bottom;'
}

.red{
	color: var(--red);
}

/*-----------------------------------------------
__variable
-----------------------------------------------*/
:root{
	--bt: #12AABE;
	--bt-rgb: 18, 190, 100;
	--bt-dark: #1882D9;
	--bt-dark-rgb: 24, 130, 217;
	--bt-yl: #E89E00;
	--bt-yl-rgb: 232, 158, 0;
	--bg-bt: #E8FCFF;
	--bg-rgb: 232, 252, 255;

	--fw: #E85D12;
	--fw-rgb: 232,93,18;


	--font : #242424;
	--black : #242424;
	
	--red : #ca1b32;
	--border : #ddd;
	--white : #ffffff;
	--white-rgb : 255,255,255
}

/*-----------------------------------------------
__Layout
-----------------------------------------------*/
#container,
header,
main,
footer{
	width: 100%;
	margin: 0 auto;
}
#container{
	overflow: hidden;
}
.wrap{
	width: 90%;
	max-width: 1100px;
	clear:both;
	margin:0 auto;
}

main a{
	color:var(--font);
	text-decoration:underline;
}
main a:hover{
	text-decoration:none;
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
  justify-content: space-between;
	width:100%;
}
.fl_box.wrap{
  width: 90%;
}

.pc_no{
	display:none;
}
a.tel{
	pointer-events:none;
}


.ta_center{
	text-align:center;
}
.f_right{
	float: right;
}
.f_left{
	float: left;
}
.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}