@charset "utf-8";

/* ======================================================
 * base.css
 * ------------------------------------------------------
	* FONT
 * RESET ************************************************
 * Global Reset
 * Costom Reset
 * SETTING **********************************************
 * Base Style
 * Utility Style
 * Reader
 * Clearfix
 * Print
====================================================== */

/* webfont指定 */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap');


/* Global Reset (html5doctor.com)
 * - Author: Richard Clark - http://richclarkdesign.com
------------------------------------------------------ */
/*----- for HTML5 -----*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}

/* Costom Reset
------------------------------------------------------ */
/*----- for HTML5 -----*/
main { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; display: block; }
h1, h2, h3, h4, h5, h6 ,small { font-weight: normal; }
ul, ol { list-style: none; }
strong { font-weight: bold; }
em { font-style: normal; }
address { font-style: normal; }
hr, legend { display: none; }
time { display: block; }
sub, sup{ position: relative; font-size: 10px; font-size: 1rem; line-height: 1; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
img { max-width: 100%; height: auto; vertical-align: top; }


/* Base Style
------------------------------------------------------ */
/*----- for HTML5 -----*/
/* page */
html {
	overflow-y: scroll;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
}
body {
	color: #707070;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.75;
	/* font-feature-settings: "palt"; */
/* 明朝指定 */
	font-family: 'Shippori Mincho', "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝",serif;
	width: 100vw;
	overflow-x: hidden;
}
body * {
	box-sizing: border-box;
}

/* input */
input, select, textarea{
	font-size: 1.8rem;
	font-family: 'Shippori Mincho', "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝",serif;
}

@media only screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	input, select, textarea {
		font-size: 1.2rem;
	}
}

/* link */
a {
	color: #89C2AE;
	text-decoration: underline;
	transition: 0.2s ease-in-out;
}
a:hover {
	text-decoration: none;
	opacity: .85;
}


/*----- align -----*/
/* text-align */
.alL { text-align: left !important; }
.alC { text-align: center !important; }
.alR { text-align: right !important; }
/* vertical-align */
.alT { vertical-align: top !important; }
.alM { vertical-align: middle !important; }
.alB { vertical-align: bottom !important; }

/*----- font -----*/
.bold { font-weight: bold !important; }
.italic {	font-style: italic !important; }
.fwNormal { font-weight: normal !important; }
.fsNormal { font-style: normal !important; }
/* font-size */
.fontXS {
	font-size: 10px !important;
	font-size: 1.0rem !important;
}
.fontS {
	font-size: 12px !important;
	font-size: 1.2rem !important;
}
.fontM {
	font-size: 14px !important;
	font-size: 1.4rem !important;
}
.fontL {
	font-size: 16px !important;
	font-size: 1.6rem !important;
}
.fontXL {
	font-size: 18px !important;
	font-size: 1.8rem !important;
}


/*----- break -----*/
.brWord { word-wrap: break-word !important; }
.brNone { white-space: nowrap !important; }

/*----- form -----*/
input[type="submit"],
input[type="button"] {
	border: none;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	vertical-align: bottom;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
textarea {
	height: 30px;
	border: 1px solid #bbbbbb;
	background-color: #FFF;	
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
	vertical-align:bottom;
}
input::-webkit-input-placeholder {
	padding-top:2px;
}
input:-ms-input-placeholder {
	padding-top:2px;
}
input::-moz-placeholder {
	padding-top:2px;
}
input::placeholder {
	padding-top:2px;
}
textarea {
	height: auto;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance:textfield;
}
select {
	color: #333;
	font-size: 1.4rem;
	background: #FFF;
	line-height: 1.2;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-style: none;
}
select option{
	color: #000;
	background-color: #fff;
}
select::-ms-expand {
	display: none;
}
select:-moz-focusring { 
	color: transparent; 
	text-shadow: 0 0 0 #828c9a;
}
button {
	background-color: #FFF;
	margin: 0px;
	padding: 0px;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
label input[type="checkbox"],
label input[type="radio"] {
	/*display: none*/
	opacity: 0;
	filter: opacity(0%);
}
label input[type="checkbox"] + span,
label input[type="radio"] + span {
	margin-left: -1em;
	position: relative;
}
label input[type="checkbox"] + span:before,
label input[type="radio"] + span:before {
	content: '';
	background-color: #FFF;
	vertical-align: middle;
	display: inline-block;
	margin-right: 5px;
	height: 20px;
	width: 20px;
	border: 1px solid #CCC;
}
label input[type="checkbox"]:checked + span:after {
	content: '';
	display: block;
	width: 7px;
	height: 15px;
	border-right: 3px solid #3366CC;
	border-bottom: 3px solid #3366cc;
	position: absolute;
	left: 7px;
	top: 2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
label input[type="radio"] + span:before,
label input[type="radio"]:checked + span:after {
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
label input[type="radio"]:checked + span:after {
	content: '';
	background-color: #3366CC;
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 6px;
	top: 7px;
}
.safari label input[type="radio"]:checked + span:after {
	top: 5px;
}



/* others
------------------------------------------------------ */
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.clearfix {
	zoom: 1;
}

a[href*="tel:"] {
	webkit-pointer-events: none;
	pointer-events: none;
}

@media only screen and (max-width: 768px) {
	.pc_element {
		display: none;
	}
	img {
		width: 100%;
		max-width:100%;
		height: auto;
	}
	a[href*="tel:"] {
		webkit-pointer-events: auto;
		pointer-events: auto;
	}
}
@media only screen and (min-width: 769px) {
	.sp_element {
		display: none;
	}
	
}
/* Print
------------------------------------------------------ */
@media print {
	body {
		min-width: 1080px;
	}
	
}
