@charset "UTF-8";

/*************************************************************
 *  fields evaprojects.css
 ************************************************************/

*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}
html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}
body{margin:0}
main{display:block}
p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}
ul,ol{margin:0;padding:0;list-style:none}
dt{font-weight:700}
dd{margin-left:0}
hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}
pre{font-family:monospace,monospace;font-size:inherit}
address{font-style:inherit}
a{background-color:transparent;text-decoration:none;color:inherit}
abbr[title]{text-decoration:underline dotted}
b,strong{font-weight:bolder}
code,kbd,samp{font-family:monospace,monospace;font-size:inherit}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-.25em}
sup{top:-.5em}
svg,img,embed,object,iframe{vertical-align:bottom}
button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}
[type="checkbox"]{-webkit-appearance:checkbox;appearance:checkbox}
[type="radio"]{-webkit-appearance:radio;appearance:radio}
button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}
button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}
:-moz-focusring{outline:auto}
select:disabled{opacity:inherit}
option{padding:0}
fieldset{margin:0;padding:0;min-width:0}
legend{padding:0}
progress{vertical-align:baseline}
textarea{overflow:auto}
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}
[type="search"]{outline-offset:-2px}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
label[for]{cursor:pointer}
details{display:block}
summary{display:list-item}
[contenteditable]:focus{outline:auto}
table{border-color:inherit}
caption{text-align:left}
td,th{vertical-align:top;padding:0}
th{text-align:left;font-weight:700}


/* --------------------------------------------------
	foundation
-------------------------------------------------- */
:root {
	--bar-width: 17px;
	--vh: 100vh;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;
	scroll-behavior: smooth;
}
body {
	position: relative;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #000000;
}
svg {
	height: auto;
}
@media screen and (min-width: 768px) {
	img,
	svg {
		max-width: 100%;
	}
}
@media screen and (max-width: 767px) {
	img,
	svg {
		width: 100%;
	}
}


/* --------------------------------------------------
	layout
-------------------------------------------------- */
.l-main {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}
.l-sec {
	position: relative;
}
.l-sec__inner {
	position: relative;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.l-sec__inner {
		max-width: 1100px;
		padding: 0 38px;
	}
}
@media screen and (max-width: 1117px) {
	.l-sec__inner {
		padding: 0 calc(38 / 1100 * 100%);
	}
}
@media screen and (max-width: 767px) {
	.l-sec__inner {
		padding: 0 calc(20 / 750 * 100%);
	}
}


/* --------------------------------------------------
	layout - header
-------------------------------------------------- */
.l-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
}
.l-header__inner {
	position: relative;
	z-index: 2;
	background: linear-gradient(to right, #D9D9D9, #FFFFFF, #D9D9D9);
	border-bottom: 1px solid #CCCCCC;
	max-width: none;
}
.l-header-cols {
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.l-header__title {
	width: 144px;
	font-size: 0;
}
.l-header-nav__button .button {
	position: relative;
	display: block;
	width: 36px;
	height: 36px;
}
.l-header-nav__button .button span {
	position: absolute;
	top: calc(50% - 1px);
	width: 100%;
	height: 2px;
	background-color: #444444;
	transition: opacity .2s ease;
}
.l-header-nav__button .button:before {
	content: "";
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #444444;
	transition: top .2s ease,
				transform .2s ease;
}
.l-header-nav__button .button:after {
	content: "";
	position: absolute;
	top: calc(50% + 8px);
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #444444;
	transition: top .2s ease,
				transform .2s ease;
}
.l-header-nav__button .button.is-open span {
	opacity: 0;
}
.l-header-nav__button .button.is-open:before {
	top: calc(50% - 1px);
	transform: rotate(-45deg);
}
.l-header-nav__button .button.is-open:after {
	top: calc(50% - 1px);
	transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
	.l-header-nav__button .button {
		transition: opacity .2s ease;
	}
	.l-header-nav__button .button:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 767px) {
	.l-header__inner {
		padding: 0 calc(40 / 750 * 100%);
	}
	.l-header__title {
		width: 118px;
	}
}


/* --------------------------------------------------
	layout - nav
-------------------------------------------------- */
.l-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.l-nav__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}
.l-nav__inner {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	max-height: calc(100vh - 80px);
	overflow-y: auto;
	border-bottom: 1px solid #CCCCCC;
	transform: translateY(-100%);
	background: linear-gradient(to right, #D9D9D9, #FFFFFF, #D9D9D9);
	transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-nav.is-open .l-nav__inner {
	transform: translateY(0);
}
.l-nav__list li + li {
	border-top: 1px solid #CCCCCC;
}
.l-nav__list li a {
	display: block;
	font-size: 2.0rem;
	padding: 19px 0;
}
@media screen and (min-width: 768px) {
	.l-nav__list li a {
		transition: opacity .2s ease;
	}
	.l-nav__list li a:hover {
		opacity: 0.6;
	}
}
@media screen and (max-width: 767px) {
	.l-nav .l-sec__inner {
		padding: 0 calc(40 / 750 * 100%);
	}
	.l-nav__list li a {
		font-size: 1.8rem;
	}
}


/* --------------------------------------------------
	layout - footer
-------------------------------------------------- */
.l-footer {
	position: relative;
	padding: 50px 0 40px;
	background: linear-gradient(to right, #26252A, #100E13, #26252A);
	background-position: center top;
}
.l-pagetop {
	position: absolute;
	display: block;
	top: -21px;
	left: 50%;
	width: 57px;
	transform: translateX(-50%);
	background-image: url(../img/bg11.png);
	background-size: cover;
	background-position: center top;
	font-size: 0;
}
.l-pagetop__button {
	display: block;
	padding: 28px 14px 10px 14px;
}
.l-footer__inner {
	max-width: none;
}
.l-footer-copyright__list {
	display: inline-block;
	letter-spacing: -0.4em;
	vertical-align: middle;
	color: #FFFFFF;
}
.l-footer-copyright__list li {
	display: inline-block;
	letter-spacing: 0;
	font-size: 1.0rem;
	opacity: 0.6;
}
.l-footer-copyright__list li + li {
	margin-left: 10px;
}
.l-footer-logo__list {
	display: inline-block;
	letter-spacing: -0.4em;
	margin-left: 30px;
	font-size: 0;
	vertical-align: middle;
}
.l-footer-logo__list li {
	display: inline-block;
	letter-spacing: 0;
}
.l-footer-logo__list li + li {
	margin-left: 15px;
}
.l-footer-logo__list li.eva03 {
	width: 93px;
}
.l-footer-logo__list li.bisty {
	width: 56px;
}
.l-footer-logo__list li.fields {
	width: 71px;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
	.l-footer {
		text-align: center;
		padding: 50px 50px 40px;
	}
	.l-footer-logo__list {
		margin-left: 20px;
	}
	.l-footer-logo__list li + li {
		margin-left: 10px;
	}
}
@media screen and (max-width: 320px) {
	.l-footer-logo__list {
		margin: 10px 10px 0;
	}
}


/* --------------------------------------------------
	parts
-------------------------------------------------- */
.c-sec {
	position: relative;
	padding: 80px 0;
	background-position: center top;
}
.c-sec:before {
	content: "";
	display: block;
	position: absolute;
	top: -60px;
	left: 0;
	width: 20px;
	height: 60px;
	background-size: cover;
	background-position: left bottom;
}
.c-sec:after {
	content: "";
	display: block;
	position: absolute;
	top: -60px;
	right: 0;
	width: 20px;
	height: 60px;
	background-size: cover;
	background-position: right bottom;
}
.c-h2__title {
	position: relative;
	margin-bottom: 60px;
	text-align: center;
}
.c-h2__title:before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	display: block;
	width: 20px;
	height: 2px;
	background-color: #999999;
}
.c-h2__title:after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	display: block;
	width: 20px;
	height: 2px;
	background-color: #999999;
}
@media screen and (min-width: 768px) {
	.c-button--a {
		transition: opacity .2s ease;
	}
	.c-button--a:hover {
		opacity: 0.8;
	}
}
@media screen and (max-width: 767px) {
	.c-sec {
		padding: 40px 0;
	}
	.c-sec:before {
		top: -30px;
		width: 10px;
		height: 30px;
	}
	.c-sec:after {
		top: -30px;
		width: 10px;
		height: 30px;
	}
	.c-h2__title {
		margin-bottom: 30px;
	}
	.c-h2__title:before {
		width: 10px;
		height: 1px;
	}
	.c-h2__title:after {
		width: 10px;
		height: 1px;
	}
}


/* --------------------------------------------------
	utility
-------------------------------------------------- */

@media screen and (min-width: 768px) {
	.u-sp {
		display: none;
	}
	.u-ancher {
		padding-top: 80px;
		margin-top: -80px;
	}
}
@media screen and (max-width: 767px) {
	.u-pc {
		display: none;
	}
}



/* --------------------------------------------------
	visual
-------------------------------------------------- */
.visual .l-sec {
	background: linear-gradient(to bottom, #787878, #FFFFFF, #787878);
}
.visual .l-sec__inner {
	max-width: none;
	padding: 0 0;
	height: calc(100vh - 80px);
	min-height: 600px;
}
.visual__list {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.visual__list li {
	position: absolute;
	width: 230px;
	bottom: 50%;
	opacity: 0;
}
.visual__title {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 80px;
	width: 410px;
	transform: translateX(-50%);
}
.visual__scroll {
	position: absolute;
	z-index: 2;
	display: block;
	left: calc(50% - 20px);
	bottom: 20px;
	width: 41px;
}
.visual__loader {
	position: absolute;
	z-index: 10;
	top: calc(50% - 50px);
	left: 50%;
}
.visual__loader span {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #999999;
	box-shadow: 32px 0 #999999, -32px 0 #999999;
	position: relative;
	animation: flash 0.5s ease-out infinite alternate;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
	.visual .l-sec__inner {
		height: calc(var(--vh) * 100 - 80px);
		min-height: 0;
	}
	.visual__list li {
		bottom: 56%;
	}
	.visual__title {
		bottom: 80px;
		width: calc(600 / 750 * 100%);
		max-width: 410px;
	}
	.visual__scroll {
		left: calc(50% - 16px);
		bottom: 25px;
		width: 32px;
	}
	@media (orientation: landscape) {
		.visual .l-sec__inner {
			height: calc(100vw / 750 * 600);
		}
	}
}
@keyframes flash {
	0% {
		background-color: rgba(153, 153, 153, 0.5);
		box-shadow: 32px 0 rgba(153, 153, 153, 0.5), -32px 0 #dddddd;
	}
	50% {
		background-color: #dddddd;
		box-shadow: 32px 0 rgba(153, 153, 153, 0.5), -32px 0 rgba(153, 153, 153, 0.5);
	}
	100% {
		background-color: rgba(153, 153, 153, 0.5);
		box-shadow: 32px 0 #dddddd, -32px 0 rgba(153, 153, 153, 0.5);
	}
}


/* --------------------------------------------------
	slider
-------------------------------------------------- */
.slider .l-sec {
	padding-bottom: 80px;
}
.slider .l-sec__inner {
	max-width: 1214px;
	padding: 0 0;
}
.slider__list {
	margin: 0 calc(85 / 1214 * 100%);
}
.slider .slick-list {
	overflow: visible;
}
.slider .slick-list .item {
	position: relative;
	padding: 0 10px;
}
.slider .slick-list .item .button {
	position: relative;
	display: block;
	pointer-events: none;
}
.slider .slick-list .item .button:after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #111111;
	opacity: 0.5;
	transition: opacity .3s ease;
}
.slider .slick-list .item img {
	box-shadow: 0 10px 20px rgba(0,0,0,0.25);
	transition: box-shadow .3s ease;
}
.slider .slick-list .item.slick-active .button {
	pointer-events: auto;
}
.slider .slick-list .item.slick-active .button:after {
	opacity: 0;
}
.slider .slick-list .item .text {
	display: inline-block;
	position: absolute;
	bottom: calc(-35 / 512 * 100%);
	left: -5px;
	max-width: 92%;
	color: #ffffff;
	font-size: 2.4rem;
	line-height: 1.3;
	padding: 12px 20px 8px;
	background-color: #100e12;
	pointer-events: none;
	opacity: 0;
}
.slider .slick-arrow {
	position: absolute;
	z-index: 2;
	top: calc(50% - 35px);
	width: 30px;
	height: 70px;
	font-size: 0;
}
.slider .slick-arrow.slick-prev {
	left: calc(-65 / 1024 * 100%);
	background-image: url(../img/arrow01.png);
}
.slider .slick-arrow.slick-next {
	right: calc(-65 / 1024 * 100%);
	background-image: url(../img/arrow02.png);
}
.slider .slick-dots {
	position: absolute;
	z-index: 2;
	bottom: -30px;
	right: 0;
	font-size: 0;
}
.slider .slick-dots li {
	margin: 0 5px;
	display: inline-block;
}
.slider .slick-dots li button {
	display: block;
	width: 10px;
	height: 18px;
	background-image: url(../img/navi01.png);
	background-size: cover;
}
.slider .slick-dots li.slick-active button {
	background-image: url(../img/navi02.png);
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
	.slider .l-sec {
		padding-bottom: 40px;
	}
	.slider__list {
		margin: 0 -5px;
	}
	.slider__list .item {
		box-shadow: 0 10px 20px rgba(0,0,0,0.25);
	}
	.slider .slick-list .item {
		padding: 0 5px;
	}
	.slider .slick-list .item .button:after {
		content: none;
	}
	.slider .slick-list .item img {
		box-shadow: none !important;
	}
	.slider .slick-list .item .text {
		display: block;
		position: relative;
		bottom: 0;
		left: 0;
		max-width: 100%;
		font-size: 1.2rem;
		line-height: 1.4;
		padding: 10px calc(20 / 750 * 100%);
		height: calc(2.8em + 20px);
		opacity: 1;
	}
	.slider .slick-arrow {
		top: calc(50% - 17px);
		width: 15px;
		height: 35px;
		background-size: cover;
	}
	.slider .slick-arrow.slick-prev {
		left: calc(20 / 750 * 100%);
	}
	.slider .slick-arrow.slick-next {
		right: calc(20 / 750 * 100%);
	}
	.slider .slick-dots {
		bottom: -25px;
		right: calc(35 / 750 * 100%);
	}
}


/* --------------------------------------------------
	news
-------------------------------------------------- */
.news .c-sec {
	background: url(../img/bg03.png), linear-gradient(to right, #211F24, #100E13, #333237, #100E13, #211F24);
	background-size: 421px auto, 100% auto;
	background-position: right top, center top;
	background-repeat: no-repeat, repeat-y;
}
.news .c-sec:before {
	background-image: url(../img/bg01.png);
}
.news .c-sec:after {
	background-image: url(../img/bg02.png);
}
.news__title:before {
	background-color: #bbbbbb;
}
.news__title:after {
	background-color: #bbbbbb;
}
.news__title img {
	width: 370px;
}
.news__list {
	display: flex;
	flex-wrap: wrap;
	margin: -30px calc(-15 / 1024 * 100%) 50px;
}
.news__list li {
	width: 25%;
	padding: 0 calc(15 / 1054 * 100%);
	margin-top: 30px;
}
.news__list li .button {
	position: relative;
	display: block;
	color: #FFFFFF;
	padding: 30px calc(20 / 234 * 100%) 30px;
	background-image: url(../img/icon_line.png);
	background-position: top left;
	background-size: 234px 32px;
	background-repeat: no-repeat;
}
.news__list li .button.is-image {
	min-height: 234px;
	background-position: center center;
	background-size: cover;
}
.news__list li .info {
	margin-bottom: 20px;
}
.news__list li .day {
	font-size: 2.2rem;
	line-height: 1.5;
}
.news__list li .type {
	font-size: 1.4rem;
}
.news__list li .title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 4px;
}
.news__list li .text {
	font-size: 1.6rem;
}
.sns__list {
	display: flex;
	flex-wrap: wrap;
	margin: -20px calc(-20 / 1024 * 100%) 0;
}
.sns__list li {
	width: calc(1 / 4 * 100%);
	margin-top: 20px;
	padding: 0 calc(20 / 1064 * 100%);
}
.sns__list li iframe {
	width: 100% !important;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 917px) {
	.sns__list li {
		width: calc(1 / 2 * 100%);
	}
}
@media screen and (max-width: 767px) {
	.news__title img {
		width: calc(480 / 710 * 100%);
	}
	.news__list {
		display: block;
		margin: 0 calc(20 / 710 * 100%) 40px;
	}
	.news__list li {
		width: 100%;
		padding: 0 0;
	}
	.news__list li:first-of-type {
		margin-top: 0;
	}
	.news__list li .button {
		padding: 15px 0 0 15px;
		background-size: 117px auto;
		display: flex;
		justify-content: space-between;
	}
	.news__list li .button.is-image {
		min-height: 117px;
		background-size: 124px auto;
	}
	.news__list li .info {
		margin-bottom: 0;
		width: 100px;
	}
	.news__list li .day {
		font-size: 1.5rem;
	}
	.news__list li .type {
		font-size: 1.1rem;
	}
	.news__list li .body {
		flex: 1;
		padding-left: 15px;
	}
	.news__list li .title {
		font-size: 1.5rem;
	}
	.news__list li .text {
		font-size: 1.1rem;
	}
	.sns__list {
		display: block;
		margin: 0 calc(40 / 710 * 100%);
	}
	.sns__list li {
		width: 100%;
		padding: 0 0;
	}
	.sns__list li:first-of-type {
		margin-top: 0;
	}
}


/* --------------------------------------------------
	youtube
-------------------------------------------------- */
.youtube .l-sec {
	background: linear-gradient(to right, #D9D9D9, #FFFFFF, #D9D9D9);
}
.youtube .l-sec:before {
	background-image: url(../img/bg04.png);
}
.youtube .l-sec:after {
	background-image: url(../img/bg05.png);
}
.youtube__title img {
	width: 450px;
}
.youtube__unit + .youtube__unit {
	margin-top: 40px;
}
.youtube__unit .subtitle {
	font-size: 2.2rem;
	padding-left: 40px;
	background-image: url(../img/icon_slash.png);
	background-repeat: no-repeat;
	background-position: left center;
	margin-bottom: 10px;
}
.youtube__unit .list {
	margin: 0 -5px;
}
.youtube__unit .list .item {
	padding: 0 5px;
}
.youtube__unit .list .button {
	position: relative;
	text-align: center;
}
.youtube__unit .list .button .image {
	position: relative;
	display: block;
}
.youtube__unit .list .button .image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/icon_modal.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 22px auto;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
}
.youtube__unit .list .button[target="_blank"] .image:after {
	background-image: url(../img/icon_outside.png);
}
.youtube__unit .list .button .date {
	display: block;
	margin-top: 5px;
}
.youtube__unit .slick-track {
	margin: 0 0;
}
.youtube__unit .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 0;
	width: 40px;
	height: calc(100% - 28px);
	font-size: 0;
	background-color: rgba(0, 0, 0, 0.7);
	background-position: center center;
	background-size: 30px auto;
	background-repeat: no-repeat;
	overflow: hidden;
}
.youtube__unit .slick-disabled {
	opacity: 0.3;
}
.youtube__unit .slick-arrow.slick-prev {
	left: 5px;
	background-image: url(../img/arrow01.png);
}
.youtube__unit .slick-arrow.slick-next {
	right: 5px;
	background-image: url(../img/arrow02.png);
}
.youtube__search {
	margin-bottom: 60px;
}
.youtube-search__title {
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.youtube-search__unit + .youtube-search__unit {
	margin-top: 16px;
}
.youtube-search__unit.checkbox-unit {
	display: flex;
	font-size: 1.6rem;
	padding: 16px 32px;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
}
.youtube-search__unit.checkbox-unit .title {
	width: 80px;
}
.youtube-search__unit.checkbox-unit .list {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	margin: -8px -12px 0;
}
.youtube-search__unit.checkbox-unit .list li {
	padding: 8px 12px 0;
}
.youtube-search__unit.checkbox-unit .list li label {
	cursor: pointer;
}
.youtube-search__unit.checkbox-unit .list li input {
	display: none;
}
.youtube-search__unit.checkbox-unit .list li input + span {
	position: relative;
	display: inline-block;
	padding-left: 24px;
}
.youtube-search__unit.checkbox-unit .list li input + span:before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #CCCCCC;
}
.youtube-search__unit.checkbox-unit .list li input + span:after {
	content: "";
	position: absolute;
	top: 1px;
	left: 8px;
	width: 6px;
	height: 14px;
	border-top: 2px solid #49BF97;
	border-left: 2px solid #49BF97;
	transform: rotate(-135deg);
	opacity: 0;
}
.youtube-search__unit.checkbox-unit .list li input:checked + span:after {
	opacity: 1;
}
.youtube-search__unit.select-unit {
	font-size: 1.6rem;
}
.youtube-search__unit.select-unit .list {
	display: flex;
	font-size: 1.6rem;
	margin: 0 -12px;
}
.youtube-search__unit.select-unit .list li {
	position: relative;
	width: calc(1 / 3 * 100%);
	padding: 0 12px;
}
.youtube-search__unit.select-unit .list li select {
	display: block;
	width: 100%;
	padding: 15px 40px 15px 16px;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	outline: none;
}
.youtube-search__unit.select-unit .list li:after {
	content: "";
	position: absolute;
	top: calc(50% - 10px);
	right: 30px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	transform: rotate(-135deg);
	pointer-events: none;
}
.youtube-search-close__button {
	display: none;
}
/* modal */
.youtube-modal .mfp-content {
	margin: 50px auto 30px;
}
.youtube-modal .mfp-iframe-scaler iframe {
	box-shadow: none;
}
.youtube-modal .mfp-iframe-holder .mfp-close {
	width: 150px;
	height: 36px;
	background-image: url(../img/btn_close.png);
	background-size: 100% auto;
	font-size: 0;
	top: -36px;
	right: 0;
	opacity: 1;
	padding-right: 0;
}
@media screen and (min-width: 768px) {
	.youtube__unit .list .button .image:after {
		transition: opacity .2s ease;
	}
	.youtube__unit .list .button:hover .image:after {
		opacity: 1;
	}
}
@media screen and (max-width: 767px) {
	.youtube__title img {
		width: calc(620 / 710 * 100%);
	}
	.youtube__unit + .youtube__unit {
		margin-top: 30px;
	}
	.youtube__unit .subtitle {
		font-size: 1.6rem;
		padding-left: 30px;
		margin-left: calc(20 / 710 * 100%);
		background-size: 24px auto;
	}
	.youtube__unit .list .button .image:after {
		top: calc(50% - 15px);
		left: calc(50% - 15px);
		width: 30px;
		height: 30px;
		background-image: url(../img/icon_modal.png);
		background-size: 11px auto;
		border-radius: 50% 50%;
		opacity: 1;
	}
	.youtube__unit .list .button[target="_blank"] .image:after {
		background-image: url(../img/icon_outside.png);
	}
	.youtube__unit .list .button .date {
		font-size: 1.2rem;
	}
	.youtube__unit .slick-arrow {
		width: 30px;
		height: calc(100% - 25px);
		background-size: 15px auto;
	}
	.youtube__search {
		padding: 0 calc(20 / 710 * 100%);
		margin-bottom: 30px;
	}
	.youtube-search__title {
		position: relative;
		font-size: 1.6rem;
		margin-bottom: 0;
		color: #FFFFFF;
		padding: 8px 18px 6px;
		background-color: #000000;
		cursor: pointer;
	}
	.youtube-search__title:before {
		content: "";
		position: absolute;
		top: calc(50% - 10px);
		right: 16px;
		width: 20px;
		height: 20px;
		border: 1px solid #FFFFFF;
		border-radius: 50% 50%;
	}
	.youtube-search__title span {
		position: relative;
		display: block;
	}
	.youtube-search__title span:before {
		content: "";
		position: absolute;
		top: calc(50% - 1px);
		right: 3px;
		width: 10px;
		height: 1px;
		background-color: #FFFFFF;
	}
	.youtube-search__title span:after {
		content: "";
		position: absolute;
		top: calc(50% - 6px);
		right: 8px;
		width: 1px;
		height: 10px;
		background-color: #FFFFFF;
		opacity: 1;
	}
	.youtube-search__title.is-active span:after {
		opacity: 0;
	}
	.youtube-search__body {
		display: none;
	}
	.youtube-search__inner {
		padding-top: 16px;
	}
	.youtube-search__unit + .youtube-search__unit {
		margin-top: 8px;
	}
	.youtube-search__unit.checkbox-unit {
		padding: 12px 18px;
	}
	.youtube-search__unit.checkbox-unit .title {
		width: 70px;
	}
	.youtube-search__unit.select-unit .list {
		display: block;
		margin: 0 0;
	}
	.youtube-search__unit.select-unit .list li {
		position: relative;
		width: 100%;
		padding: 0 0;
	}
	.youtube-search__unit.select-unit .list li + li {
		margin-top: 8px;
	}
	.youtube-search__unit.select-unit .list li select {
		padding: 12px 40px 12px 18px;
	}
	.youtube-search__unit.select-unit .list li:after {
		top: calc(50% - 10px);
		right: 18px;
	}
	.youtube-search-close__button {
		display: block;
		border: 1px solid #000000;
		text-align: center;
		margin-top: 16px;
		font-size: 1.6rem;
		padding: 8px 0 4px;
	}
	.youtube-search-close__button span {
		position: relative;
		display: inline-block;
		padding-left: 24px;
	}
	.youtube-search-close__button span:before {
		content: "";
		position: absolute;
		top: calc(50% - 2px);
		left: 0;
		width: 16px;
		height: 1px;
		background-color: #000000;
		transform: rotate(45deg);
	}
	.youtube-search-close__button span:after {
		content: "";
		position: absolute;
		top: calc(50% - 2px);
		left: 0;
		width: 16px;
		height: 1px;
		background-color: #000000;
		transform: rotate(-45deg);
	}
	/* modal */
	.youtube-modal .mfp-content {
		margin: 30px auto 10px;
	}
	.youtube-modal .mfp-iframe-holder .mfp-close {
		width: 75px;
		height: 18px;
		top: -18px;
	}
}


/* --------------------------------------------------
	archives
-------------------------------------------------- */
.archives .c-sec {
	background: linear-gradient(to right, #CECCCD, #B3B3B3, #E7E7E7, #B3B3B3, #CECCCD);
}
.archives .c-sec:before {
	background-image: url(../img/bg06.png);
}
.archives .c-sec:after {
	background-image: url(../img/bg07.png);
}
.archives__title img {
	width: 405px;
}
.archives__list {
	display: flex;
	flex-wrap: wrap;
}
.archives__list li {
	width: calc(1 / 8 * 100%);
}
.archives__list li .panel {
	position: relative;
	height: 280px;
	overflow: hidden;
}
.archives__list li .panel.cr {
	background: linear-gradient(to right, #D9D9D9, #FFFFFF);
}
.archives__list li .panel.slot {
	background: linear-gradient(to right, #8A898D, #7D7C80);
}
.archives__list li .panel.button {
	cursor: pointer;
}
.archives__list li .panel .title {
	width: 120px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.archives__list li .panel .image {
	padding: 10px 0 0 20px;
	width: calc(300 / 180 * 100%);
}
.archives__list li .panel .image.small {
	width: calc(200 / 180 * 100%);
}
.archives__list li .panel .body {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 10px 10px;
	font-size: 1.2rem;
	background-color: rgba(0, 0, 0, 0.7);
}
.archives__list li .panel .date {
	line-height: 1;
	margin-bottom: 6px;
}
.archives__list li .panel .date span {
	display: inline-block;
	background-color: #FFFFFF;
	padding: 3px 8px;
}
.archives__list li .panel .text {
	color: #FFFFFF;
	line-height: 1.5;
}
/* modal */
.archives-modal {
	max-width: 860px;
	padding: 50px 0;
	margin: 0 auto;
}
.archives-modal .modal__inner {
	display: flex;
	background-color: #605E67;
}
.archives-modal .modal__image {
	width: calc(360 / 860 * 100%);
	padding: 24px calc(48 / 860 * 100%);
	text-align: center;
	align-self: flex-start;
	background: linear-gradient(to right, #CECCCD, #B3B3B3, #E7E7E7, #B3B3B3, #CECCCD);
}
.archives-modal .modal__body {
	width: calc(500 / 860 * 100%);
	color: #FFFFFF;
	font-size: 1.3rem;
}
.archives-modal .modal__body .title {
	background-color: #49BF97;
	padding: 24px calc(32 / 500 * 100%);
}
.archives-modal .modal__body .title .date {
	font-size: 1.8rem;
}
.archives-modal .modal__body .title .name {
	font-size: 2.0rem;
	line-height: 1.4;
}
.archives-modal .modal__body .body {
	padding: 32px calc(32 / 500 * 100%);
}
.archives-modal .modal__body .text {
	margin-bottom: 30px;
}
.archives-modal .modal__body .spec {
	margin-bottom: 30px;
	border: 1px solid #FFFFFF;
	border-collapse:  collapse;
	width: 100%;
	line-height: 1.4;
}
.archives-modal .modal__body .spec th,
.archives-modal .modal__body .spec td {
	border: 1px solid #FFFFFF;
	text-align: center;
	padding: 4px 5px;
}
.archives-modal .modal__body .image {
	margin-bottom: 30px;
}
.archives-modal .modal__body .link__button {
	display: block;
	max-width: 200px;
	margin: 0 auto 30px;
	padding: 12px 0;
	line-height: 1;
	font-size: 1.6rem;
	text-align: center;
	color: #000000;
	background-color: #FFFFFF;
}
.archives-modal .modal__body .close__button {
	display: block;
	padding: 12px 0;
	line-height: 1;
	font-size: 1.6rem;
	text-align: center;
	border: 1px solid #FFFFFF;
}
.archives-modal .modal__body .close__button span {
	position: relative;
	display: inline-block;
	padding-left: 25px;
}
.archives-modal .modal__body .close__button span:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 1px;
	background-color: #FFFFFF;
	transform: rotate(45deg);
}
.archives-modal .modal__body .close__button span:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 1px;
	background-color: #FFFFFF;
	transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
	.archives__list li .panel .image {
		transition: transform .2s ease;
	}
	.archives__list li .panel .image:hover {
		transform: scale(1.01);
	}
}
@media screen and (max-width: 767px) {
	.archives__title img {
		width: calc(524 / 710 * 100%);
	}
	.archives__list li {
		width: calc(1 / 4 * 100%);
	}
	.archives__list li .panel .image {
		padding-top: 15px;
	}
	/* modal */
	.archives-modal {
		padding: 30px 0;
	}
	.archives-modal .modal__inner {
		display: block;
	}
	.archives-modal .modal__image {
		width: 100%;
		padding: 24px calc(56 / 750 * 100%);
	}
	.archives-modal .modal__body {
		width: 100%;
	}
	.archives-modal .modal__body .title {
		padding: 24px calc(32 / 750 * 100%);
	}
	.archives-modal .modal__body .title .date {
		font-size: 1.6rem;
	}
	.archives-modal .modal__body .title .name {
		font-size: 1.8rem;
	}
	.archives-modal .modal__body .body {
		padding: 32px calc(32 / 750 * 100%);
	}
}


/* --------------------------------------------------
	shops
-------------------------------------------------- */
.shops .c-sec {
	background-image: url(../img/bg08.jpg);
	background-size: cover;
	background-position: center center;
}
.shops .c-sec:before {
	background-image: url(../img/bg09.png);
}
.shops .c-sec:after {
	background-image: url(../img/bg10.png);
}
.shops__title {
	margin-bottom: 30px;
}
.shops__title img {
	width: 446px;
}
.shops__note {
	text-align: center;
	font-size: 1.6rem;
	margin-bottom: 40px;
}
.shops-cols {
	display: flex;
	margin: 0 calc(-20 / 1024 * 100%);
}
.shops-unit {
	width: 50%;
	padding: 0 calc(20 / 1064 * 100%);
}
.shops-unit .title {
	width: 146px;
	margin: 0 auto 35px;
}
.shops-unit .list li + li {
	border-top: 1px solid #CCCCCC;
}
.shops-unit .list li .button {
	display: flex;
	align-items: center;
	color: #111111;
	padding: 20px calc(20 / 492 * 100%);
	background-color: rgba(255, 255, 255, 0.7);
}
.shops-unit .list li .button .image {
	width: calc(96 / 452 * 100%);
}
.shops-unit .list li .button .text {
	flex: 1;
	margin-left: calc(20 / 452 * 100%);
	padding-left: calc(30 / 452 * 100%);
	background-image: url(../img/icon_pin.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px auto;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
	.shops__title {
		margin-bottom: 20px;
	}
	.shops__title img {
		width: calc(592 / 710 * 100%);
	}
	.shops__note {
		font-size: 1.4rem;
		margin-bottom: 30px;
	}
	.shops-cols {
		display: block;
		margin: 0 0;
	}
	.shops-unit {
		width: 100%;
		padding: 0 0;
	}
	.shops-unit.cr {
		margin-bottom: 30px;
	}
	.shops-unit .title {
		width: calc(224 / 670 * 100%);
		margin-bottom: 20px;
	}
	.shops-unit .list li .button {
		padding: 20px calc(20 / 710 * 100%);
	}
	.shops-unit .list li .button .image {
		width: calc(192 / 670 * 100%);
	}
	.shops-unit .list li .button .text {
		margin-left: 10px;
		padding-left: 30px;
	}
}


/* --------------------------------------------------
	magnificPopup
-------------------------------------------------- */
/*
.mfp-container {
	padding: 0 50px;
}
.mfp-fade.mfp-bg {
	opacity: 0.8;
	transition: all 0.25s ease-out;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	transition: all 0.25s ease-out;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
	.mfp-container {
		padding: 0 10px;
	}
}
*/

/* --------------------------------------------------
	モーダル内thumbnail調整
-------------------------------------------------- */
.archives-modal .modal__body .image {
	text-align:center;
  }
  .archives-modal .modal__body .image .three_col {
	display:inline-block;
	width: 28%;
	margin: 5px;
  }
  .archives-modal .modal__body .image .one_col{
	display:inline-block;
	width: 80%;
	margin: 5px;
  }

/* --------------------------------------------------
	※※※※※
-------------------------------------------------- */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}


/* --------------------------------------------------
	※※※※※
-------------------------------------------------- */
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}


.cp {
	margin-bottom:50px;
}