@charset "UTF-8";
/*-------------------- hr --------------------*/

/* ==========================================================================
 * Root
 * ========================================================================== */
@font-face{ 
	font-family: Shuei;
	/*src: url("../font/A-OTF-ShueiMGoStd-B.woff") format('woff');*/
	src: url("/font/A-OTF-ShueiMGoStd-B.woff") format('woff');
}
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: inherit;
}
html {
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	font-family: Shuei, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4em;/*フォールバック用*/
	font-size: 1.4rem;
	color: #47210d;
	line-height: 2.4rem;
	background-color: transparent;
}

/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a {
	transition: all .2s;
}
a:link,
a:visited {
	background-color: transparent;
	color: #47210d;
	text-decoration: underline;
}
a:active,
a:hover {
	outline: 0;
	color: #a39086;
	text-decoration: none;
}
@media (max-width: 768px) {
a:active,
a:hover {
	text-decoration: none;
}
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
img[src$=".svg"],
img[src$=".svgz"] {
  width: 100%;
}
svg:not(:root) {
	overflow: hidden;
}
.youtube {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 1em 40px;
}
hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}
pre {
	overflow: auto;
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* ==========================================================================
 * Float
 * ========================================================================== */
.pull-left {
	float: left;
}
.pull-right {
	float: right;
}
.clear {
	clear: both;
}
.clearfix:before,
.clearfix:after {/*IE8以降のみ対応*/
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}

/* ==========================================================================
 * Responsive
 * ========================================================================== */
/*全て非表示*/
.hidden-all {
	display: none;
}
/*PCのみ表示(1017px以下非表示)*/
@media screen and (max-width: 1017px) {
.visible-pc {display: none !important;}
}
/*Tabのみ表示(1018px以上、479px以下非表示)*/
@media screen and (min-width: 1018px), screen and (max-width: 479px) {
.visible-tab {display: none !important;}
}
/*SPのみ表示(480px以上非表示)*/
@media screen and (min-width: 480px) {
.visible-sp {display: none !important;}
}
/*PCのみ非表示(1018px以上非表示)*/
@media screen and (min-width: 1018px) {
.hidden-pc {display: none !important;}
}
/*Tabのみ非表示(480px以上、1017px以下非表示)*/
@media screen and (min-width: 480px) and (max-width: 1017px) {
.hidden-tab {display: none !important;}
}
/*SPのみ非表示(479px以下非表示)*/
@media screen and (max-width: 479px) {
.hidden-sp {display: none !important;}
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
}
ul {
	margin: 0;
	list-style: none;
}
ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}
ul.list-square {
	margin-left: 1.55em;
	list-style: square;
}
ul.list-annotation {
	margin-left: 1.3em;
}
ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}
ol {
	margin-left: 1.3em;
}
ol li:nth-child(n+10) {/*10項目以上*/
	margin-left: .7em
}
ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
}
ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※"counter(number)"\0020";
}
ol.list-annotation li:nth-child(n+10) {/*10項目以上*/
	margin-left: .6em;
}
ol.list-annotation li:nth-child(n+10)::before {/*10項目以上*/
	margin-left: -2.65em;
}
ul.list-disc li,
ul.list-square li,
ul.list-annotation li,
ol li {
	margin-bottom: 8px;
}

/* ==========================================================================
 * Text
 * ========================================================================== */
abbr[title] {
	border-bottom: 1px dotted;
}
b,
strong {
	font-weight: bold;
}
dfn {
	font-style: italic;
}
mark {
	background: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
address {
	font-style: normal;
}
h1 {
	margin: 40px 0 30px;
	font-size: 3rem;
	line-height: 3rem
}
h2 {
	margin: 30px 0;
	font-size: 2.5rem;
}
h3 {
	margin: 1em 0;
	font-size: 1.8rem;
}
h4 {
	margin: 1.33em 0;
	font-size: 1.6rem;
}
h5 {
	margin: 1.67em 0;
	font-size: 1.67rem;
}
h6 {
	margin: 2.33em 0;
	font-size: 1rem;
}
p {
	margin-top: 0;
	margin-bottom: 10px;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-left {
	text-align: left;
}
.txt-bold {
	font-weight: bold;
}
.txt-emphasis {
	color: #e74c3c;
}
.txt-notes {
	color: #7f8c8d;
}
.txt-hidden {
	font: 0/0 a !important;
	color: transparent !important;
	text-shadow: none !important;
	background-color: transparent !important;
	border: 0 !important;
}
.txt-ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}
@media screen and (max-width: 479px) {
h1 {
	margin: 30px 0;
	font-size: 2rem;
}
}

/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

/* ==========================================================================
 * Form
 * ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
}
optgroup {
	font-weight: bold;
}

/* ==========================================================================
 * Spacing
 * ========================================================================== */
.margin-none  {margin:           0px !important;}
.padding-none {padding:          0px !important;}

.margin-T0    {margin-top:       0px !important;}
.margin-T5    {margin-top:       5px !important;}
.margin-T10   {margin-top:      10px !important;}
.margin-T15   {margin-top:      15px !important;}
.margin-T20   {margin-top:      20px !important;}
.margin-R0    {margin-right:     0px !important;}
.margin-R5    {margin-right:     5px !important;}
.margin-R10   {margin-right:    10px !important;}
.margin-R15   {margin-right:    15px !important;}
.margin-R20   {margin-right:    20px !important;}
.margin-R25   {margin-right:    25px !important;}
.margin-R30   {margin-right:    30px !important;}
.margin-B0    {margin-bottom:    0px !important;}
.margin-B5    {margin-bottom:    5px !important;}
.margin-B10   {margin-bottom:   10px !important;}
.margin-B15   {margin-bottom:   15px !important;}
.margin-B20   {margin-bottom:   20px !important;}
.margin-B25   {margin-bottom:   25px !important;}
.margin-B30   {margin-bottom:   30px !important;}
.margin-B35   {margin-bottom:   35px !important;}
.margin-B40   {margin-bottom:   40px !important;}
.margin-B45   {margin-bottom:   45px !important;}
.margin-B50   {margin-bottom:   50px !important;}
.margin-B60   {margin-bottom:   60px !important;}
.margin-B70   {margin-bottom:   70px !important;}
.margin-B80   {margin-bottom:   80px !important;}
.margin-B90   {margin-bottom:   90px !important;}
.margin-B100  {margin-bottom:  100px !important;}
.margin-L0    {margin-left:      0px !important;}
.margin-L5    {margin-left:      5px !important;}
.margin-L10   {margin-left:     10px !important;}
.margin-L15   {margin-left:     15px !important;}
.margin-L20   {margin-left:     20px !important;}
.margin-L25   {margin-left:     25px !important;}
.margin-L30   {margin-left:     30px !important;}
.padding-T0   {padding-top:      0px !important;}
.padding-T5   {padding-top:      5px !important;}
.padding-T10  {padding-top:     10px !important;}
.padding-T15  {padding-top:     15px !important;}
.padding-T20  {padding-top:     20px !important;}
.padding-R0   {padding-right:    0px !important;}
.padding-R5   {padding-right:    5px !important;}
.padding-R10  {padding-right:   10px !important;}
.padding-R15  {padding-right:   15px !important;}
.padding-R20  {padding-right:   20px !important;}
.padding-B0   {padding-bottom:   0px !important;}
.padding-B5   {padding-bottom:   5px !important;}
.padding-B10  {padding-bottom:  10px !important;}
.padding-B15  {padding-bottom:  15px !important;}
.padding-B20  {padding-bottom:  20px !important;}
.padding-B25  {padding-bottom:  25px !important;}
.padding-B30  {padding-bottom:  30px !important;}
.padding-B35  {padding-bottom:  35px !important;}
.padding-B40  {padding-bottom:  40px !important;}
.padding-B45  {padding-bottom:  45px !important;}
.padding-B50  {padding-bottom:  50px !important;}
.padding-B60  {padding-bottom:  60px !important;}
.padding-B70  {padding-bottom:  70px !important;}
.padding-B80  {padding-bottom:  80px !important;}
.padding-B90  {padding-bottom:  90px !important;}
.padding-B100 {padding-bottom: 100px !important;}
.padding-L0   {padding-left:     0px !important;}
.padding-L5   {padding-left:     5px !important;}
.padding-L10  {padding-left:    10px !important;}
.padding-L15  {padding-left:    15px !important;}
.padding-L20  {padding-left:    20px !important;}
