@charset "utf-8";

/***------------------------------------------
*
*　リセット
*
------------------------------------------***/
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;
    font-weight: normal;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
    line-height: 1
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
    display: block;
}
ul, ol {
    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;
}
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;
}
*, *: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;
}


/***------------------------------------------
*
*　基本設定
*
------------------------------------------***/
html {
	font-size: 62.5%; /* 10px */
}
body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.03em;
	text-align: center;
}
@media screen and (max-width: 750px) {
	body {
		font-size: 1.4rem;
		line-height: 1.6;
	}
}
img {
    max-width: 100%;
    width /***/: auto;
    height: auto;
    vertical-align: bottom;
}
.txtL { text-align: left; }
.txtC { text-align: center; }
.txtR { text-align: right; }
.marker { background: linear-gradient(transparent 50%, #f9eb21 90%); }
a {
    color: #503d32;
	text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
a:hover {
	text-decoration: none;
}
a.u-line {
	text-decoration: underline;
}
@media screen and (max-width: 1280px) {
	.wrap {
		padding-left: 1.4rem;
		padding-right: 1.4rem;
	}
}
@media screen and (max-width: 750px) {
	.pc-item {
        display: none !important;
	}
	.sp-item {
		display: block !important; 
	}
}
@media screen and (min-width: 751px) {
	.sp-item {
		display: none; !important; 
	}
	.pc-item {
		display: block !important; 
	}
	
}