@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;
	}
}


/***------------------------------------------
*
*　header
*
------------------------------------------***/
header {}
.header_container {
	position: sticky;
	top: 0;
	padding: 0.75rem 1rem;
	background-color: #fff;
    border-top: 10px solid #018a01;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}
.header_inner {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
	width: 100%;
	max-width: 128rem;
}
.header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 180px;
}
@media screen and (max-width: 750px) {
    .header_container {
        padding: 0.5rem 0.75rem;
    }
	.header_logo img {
		width: 80%;
	}
}

/***------------------------------------------
*
*　footer
*
------------------------------------------***/
footer {}
.footer_container {
	position: relative;
	background-color: #018a01;
	width: 100%;
}
.footer_inner {
	 margin: 0 auto;
	 max-width: 128rem;
	 text-align: center;
}
.footer_nav ul {
	display: flex;
	justify-content: center;
	gap: 8rem;
	padding: 24px;
	font-size: 100%;
}
.footer_nav ul li a {
	color: #fff;
}
.footer_container p.footer_copy {
	padding-bottom: 12px;
	font-size: 85%;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.footer_nav ul {
		flex-direction: column;
		gap: .5rem;
		padding: 12px;
	}
	.footer_container p.footer_copy {
		/*margin-bottom: 6rem;*/
	}
}


/* --------------------------------------- *

	contents

 * --------------------------------------- */
#contents {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contents_inner {
	margin: 24px auto;
	width: 100%;
}
@media screen and (max-width: 750px) {
	.contents_inner {
		margin: 12px auto;
	}
}


/* --------------------------------------- *

	各エリア共通

 * --------------------------------------- */
section {
	position: relative;
	margin: 0 auto;
}
section .sec {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	text-align: left;
}

/* ----------------------------------------
 *   運営者情報
 * ---------------------------------------- */
.corporate_content {
	position: relative;
	margin: 24px auto;
	width: 100%;
	max-width: 750px;
	text-align: left;
}
.corporate_title {
	margin: 0;
	margin-bottom: 24px;
	padding: 12px 18px 12px 50px;
    border: 1px solid #018a01;
	border-radius: 16px;
	font-size: 150%;
	text-align: left;
	font-weight: bold;
}
.corporate_title::before {
	position: absolute;
	content: "";
	top: -40px;
	left: -40px;
	width: 100px;
	height: 100px;
	background-image: url(../../../images/icon_logo.svg);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 50px 50px;

}
.corporate_table {
	margin-bottom: 60px;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
.corporate_table th {
	padding: 6px 12px;
	background-color: #eee;
	border: 3px solid #fff;
}
.corporate_table td {
	padding: 6px 12px;
}
.corporate_table td > ul li {
	margin-left: 24px;
	padding-left: 6px;
	list-style-type: disc;
}
@media screen and (max-width: 750px) {
	.corporate_title {
		margin-left: 12px;
	}
	.corporate_title::before {
		left: -28px;
	}
	.corporate_table th,
	.corporate_table td {
		display: block;
		text-align: left;
	}
}
.corporate_content p {}
.corporate_content > ul {
	margin: 24px 0 0 12px;

}
.corporate_content > ul li {
	margin-left: 12px;
	padding-left: 12px;
	list-style-type: disc;
}

/* ----------------------------------------
 *   プライバシーポリシー
 * ---------------------------------------- */
.privacy_content {
	position: relative;
	margin: 24px auto;
	width: 100%;
	max-width: 760px;
	text-align: left;
}
.privacy_title {
	margin: 0;
	margin-bottom: 24px;
	padding: 12px 18px 12px 50px;
    border: 1px solid #018a01;
	border-radius: 16px;
	font-size: 150%;
	text-align: left;
	font-weight: bold;
}
.privacy_title::before {
	position: absolute;
	content: "";
	top: -40px;
	left: -40px;
	width: 100px;
	height: 100px;
	background-image: url(../../../images/icon_logo.svg);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 50px 50px;
}
@media screen and (max-width: 750px) {
	.privacy_title {
		margin-left: 12px;
	}
	.privacy_title::before {
		left: -28px;
	}
}
.privacy_content p {
	margin-bottom: 24px;
}
.privacy_content .privacy_heading {
	margin-bottom: 12px;
	padding-top: 3px;
	padding-bottom: 3px;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	font-size: 125%;
	font-weight: bold;
}
.privacy_content .privacy_subheading {
	margin-bottom: 12px;
	padding-top: 3px;
	padding-bottom: 3px;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	font-size: 115%;
	font-weight: bold;
}
.privacy_content ol {
	margin: 24px 0 24px 12px;
	list-style-type: none;
    counter-reset: privacynum;
}
.privacy_content ol li {
	position: relative;
	padding-left: 32px;
	list-style-position: outside;
}
.privacy_content ol li::before {
	position: absolute;
	left: 0;
	content: "(" counter(privacynum) ") ";
	counter-increment: privacynum;
}
.privacy_content .privacy_note {
	padding: 12px;
	border: 1px dotted #ccc;
	font-size: 90%;
	font-style: italic;
}
.privacy_content .privacy_enactment {
	text-align: right;
}
