@charset "UTF-8";

#area_selector
{
	margin-bottom: max(5rem, 5vw);
}

.slide_linear_wrapper
{
	width: 100%;
	overflow: hidden;
	margin-bottom: max(3rem, 3vw);
}

.bannerLinear .bannerChildren .photoWrapper > a:before
{
	content:"";
	display:block;
	position:absolute;
	background-color: rgb(0, 0, 0);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

body:not(.touch) .bannerLinear .bannerChildren .photoWrapper > a img
{
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
body:not(.touch) .bannerLinear .bannerChildren .photoWrapper > a:hover img
{
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}

.area_selector
{
	padding: 0 2rem;
}

.area_selector h2
{
	font-size: 1rem;
	margin-bottom: .5em;
}

.acc
{
	padding: 1rem 0;
	border-style:solid;
	border-width: 0 0 1px;
	border-color: rgb(150, 150, 150);
}

.acc._s
{
	margin: 1.5em 0 1em;
	border-top: 1px solid;
	border-color: rgb(0, 0, 0);
}

.acc._s > h3
{
	font-size: clamp(1.3rem, 6vw, 1.7rem);
}

.acc > h3
{
	font-size: clamp(1.2rem, 6vw, 1.5rem);
	cursor: pointer;
	display:flex;
	justify-content: space-between;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body:not(.touch) .acc > h3:hover
{
	color: rgb(100, 100, 100);
}

.acc > h3:after
{
	content:"";
	display:block;
	width: 1em;
	height: 1em;
	transform-origin: center center;
	border-style: solid;
	border-width:4px 4px 0 0;
	transform: rotate(45deg) scale(.25);
}

.acc > h3.op:after
{
	transform: rotate(135deg) scale(.25);
}

.acc .contents
{
	height: 0;
	overflow: hidden;
}

.acc .contents > div
{
	padding: 1rem 0;
	display: flex;
	flex-wrap: wrap;
}

.acc .contents a._a
{
	margin: .5em .5em;
	padding-left: 1em;
}

body:not(.touch) .acc .contents a._a:before
{
	content:"";
	display:block;
	border-radius: 50%;
	position: absolute;
	top: .4em;
	left: 0;
	width: .5em;
	aspect-ratio: 1 / 1;
	border: 1px solid rgb(150, 150, 150);
}

body:not(.touch) .acc .contents a._a:after
{
	content:"";
	display:block;
	position:absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: rgba(0, 0, 0, .5);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body:not(.touch) .acc .contents a._a:hover:after
{
	width:100%;
}

.acc .contents a._a span:nth-of-type(2)
{
	font-size: .8em;
	color: rgb(100, 100, 100);
	margin-left: .5em;
}
/*.acc .contents a._a span:nth-of-type(2):before
{
	content: "［";
}
.acc .contents a._a span:nth-of-type(2):after
{
	content: "］";
}*/