@charset "UTF-8";

:root {
	--font-sans-serif: "Hiragino Sans", "Hiragino Kaku Gothic ProN", 'メイリオ',  Meiryo, sans-serif;
	--btn-color: #7a722e;
}

*, *::before, *::after{
	box-sizing: border-box;
}

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;
}

html {
	font-size: 62.5%;
	overflow: inherit!important;
}
body {
	font-family: var(--font-sans-serif);
	width: 100%;
	height: auto;
	background-color: white;
	position: relative;
	left: 0;
	top: 0;
	color: var(--color-main-2);
	font-size: 1.6rem;
	font-weight: 400;
	overflow: auto;
}

p {
	margin: 0;
	font-size: 1.5rem;
	line-height: 2.06;
	font-weight: 400;
}

ul, ol, li {
	list-style: none;
}

a {
	outline: none;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
}
a,button {
	text-decoration: none;
	-webkit-transition: opacity .4s ease , color .4s ease , background-color .4s ease;
	transition: opacity .4s ease , color .4s ease , background-color .4s ease;
	color: #333;
}
a:hover, button:hover {
	opacity: 0.56;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

/***************
   common   
****************/
.hs_content {
	position: relative;
    width: 100%;
    height: auto;
    overflow-x: hidden;
	text-align: center;
}

.contents_wrapper {
	max-width: 750px;
	width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.flex_base {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.heading {
	line-height: 1;
	text-align: center;
	margin: 0 auto 5.2rem;
}

.center {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.bold {
	font-weight: 700;
}

.text_gold {
	color: #a67c52;
}

.attention_text {
	letter-spacing: -0.02em;
}

.sp_only {
	display: none;
}


@media screen and (min-width:768px) {
	body {
		min-width: 1200px;
	}
	.sp_only {
		display: none!important;
	}
}

@media screen and (max-width:768px) {
	html {
		font-size: 10px;
		font-size: 1.34vw;
	}

	body {
		padding-bottom: 24.4vw!important;
	}

	p {
		font-size: 2.69rem;
		line-height: 1.54;
		letter-spacing: -0.01em;
	}

	img {
		width: 100%;
	}


	#body_inner {
		width: 100%;
		min-width: 0px;
	}

    .sp_only {
        display: inline-block;
    }
    
    .pc_only {
        display: none!important;
    }

	.contents_wrapper {
		width: 100%;
		padding: 0 5.4vw;
		margin-right: auto;
		margin-left: auto;
	}

	.heading {
		margin: 0 auto 4.6rem;
	}

	.attention_text {
		font-size: 2.4rem;
	}
}

/***************
   animation   
****************/
.fade_anime {
	opacity: 0;
	transform:translateY(40px)
}

.fade_anime.fade_in {
	animation-fill-mode: both;
    animation-duration: 1s;
    animation-name: fade_in;
}

@keyframes fade_in {
	0%{opacity:0;transform:translateY(40px)}
	100%{opacity:1;transform:translateY(0)}
}