@charset "UTF-8";
/**
 *
 * CSSリセット、再定義
 *
**/
*, ::before, ::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
input.btn, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
}
/* iOS */
input[type="submit"],input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {display: none;}
input[type="submit"]:focus,input[type="button"]:focus {outline-offset: -2px;}

.select select {
	height: 2rem;
	line-height: 1.875rem;
	padding: 0 1.5625rem 0 0.9375rem;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.select select::-ms-expand {display: none;}
.select span {
	display: inline-block;
	position: relative;
}
.select span::after {
	content: '';
	top: 50%;
	right: 0.5rem;
	width: 0.5rem;
	height: 0.5rem;
	display: block;
	position: absolute;
	border-bottom: 1px solid;
	border-right: 1px solid;
	transform: translate(0,-50%) rotate(45deg);
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
/**
 * 再定義
**/
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 400;
	font-size: 0.875rem;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.6;
	color: #000;
	text-align:left;
	background: #efebe3;
}
@media only screen and (max-width: 1024px){
	body {font-size: 0.8125rem;}
}
@media only screen and (max-width: 568px){
	body {font-size: 0.75rem;}
}
table {
	letter-spacing: 0;
	empty-cells: show;
}
tbody {position: unset;}
table tr, table th, table td {
	empty-cells: show;
	transition: all 0.6s;
	position: unset;
}
input, select, textarea {
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	transition: all 0.6s;
}
input[type="checkbox"],
input[type="radio"] {margin: 3px;}
p {line-height: 1.8;}
a {
	color: #003a46;
	text-decoration: none;
	cursor: pointer;
	transition: 0.2s;
}
a.active {color: #f00;}

img {
	border: none;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	transition: all 0.6s;
}
#is-loading {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
    background-image: url(../images/mv_bg.png);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-color: #ebe6db;
    padding: 0;
	top: 0;
	left: 0;
	background: #FFF;
	z-index: 9999;
}
#loading {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 12.5rem;
	height: 12.5rem;
	margin-top: -6.25rem;
	margin-left: -6.25rem;
	text-align: center;
	color: #fff;
	z-index: 9;
}
	