@charset "UTF-8";

/* アコーディオン　汎用 */
.accordion {
	border-bottom: 1px solid #ddd;
}
.accordion .accordion-head {
    cursor: pointer;
}
.accordion .accordion-head .text {
    position: relative;
    padding: 24px 48px 24px 0;
	color: #00833e;
	font-size: 1.6vw;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.accordion .accordion-head .text {
		font-size: 6vw;
	}
}
.accordion .toggle {
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}
.accordion .toggle::before,
.accordion .toggle::after {
    content: "";
    position: absolute;
    background: #00833e;
}
.accordion .toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}
.accordion .toggle::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}
.accordion.-open .toggle::after {
    opacity: 0;
}
.accordion .accordion-body {
	display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 1s ease;
	font-size: .9375vw;
}
.accordion-body-inner {
    overflow: hidden;
}
.accordion-body .inner {
    min-height: 0;
	padding-bottom: 3vw;
}
@media screen and (max-width: 767px) {
	.accordion-body .inner {
		padding-bottom: 7vw;
	}
}
.accordion.-open .accordion-body {
    grid-template-rows: 1fr;
}
@media screen and (max-width: 767px) {
    .accordion .accordion-head, 
	.accordion .accordion-body {
        font-size: 4.2666666667vw;
    }
}

.accordion a {
    color: #00833e;
}

/* Cookieについて */
.section-cookie{
	padding-bottom: 7.0833333333vw;
}
.cookie-about .title{
	text-align: center;
	border-bottom: 1px solid #00833e;
	font-size: 1.4vw;
	padding-bottom: 10px;
	margin-bottom: 30px;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.cookie-about .title{
		font-size: 5.33334vw;
	}
}
.cookie-about .lead{
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.cookie-about .lead{
		line-height: 1.6;
	}
}
.cookie-about .box{
	border: 1px solid #00833e;
	margin-top: 20px;
}
.cookie-about .box .ttl{
	background: #00833e;
	color: #fff;
	text-align: center;
	padding: 0.6vw;
	font-weight: bold;
}
.cookie-about .box .in{
	padding: 20px 25px;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.cookie-about .box .in{
		line-height: 1.6;
	}
}
.cookie-about .anno{
	text-indent: -1em;
	padding-left: 1em;
	padding-top: 1em;
}
.cookie-about .list-square{
	list-style: none;
	padding-left: 1em;
    padding-top: 8px;
}
.cookie-about .list-square li{
	text-indent: -1em;
	padding-left: 1em;
}
@media screen and (max-width: 767px) {
	.cookie-about .list-square li{
		padding-left: 0;
	}
}



