@charset "utf-8";

/*
		0. RESET
		1. COMMON
			- DISPLAY
		2. HEADER
		3. ENTRIES
		4. BTN
		5. FOOTER
		6. INSTAGRAM
		7. NAV
		8. SEARCH
		9. HERO
		10. DETAIL
		11. BANNER

*/

/* -------------------------------------------
		0. RESET
	------------------------------------------- */

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline
}

html {
	line-height: 1;
	font-size: 62.5%
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

caption, td, th {
	text-align: left;
	font-weight: 400;
	vertical-align: middle
}

blockquote, q {
	quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block
}

/* -------------------------------------------
		1. COMMON
	------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

body,
html {
	width: 100%;
	height: 100%;
	background-color: #fff;
}

body {
	height: auto !important;
	min-height: 100%;
	height: 100%;
}

body.is-open {
	overflow: hidden;
}


/* DISPLAY */

.pc-none {
	display: none!important
}

.sp-none {
	display: block!important
}
@media (max-width: 768px) {
	.pc-none {
		display: block!important
	}
	.sp-none {
		display: none!important
	}
}

/* CLEARFIX */

.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* 選択時 */

::selection {

}

::-moz-selection {

}

/* SETTING */

html,
body {
	/* font-size: 100%; 16px */
	font-size: 62.5%; /* 10px */
}

body {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #272932;
	font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	background-color: #dbe1dd;
}

a {
	color: #272932;
	text-decoration: none;
}

#container {
	margin: 0;
	padding: 0;
}

div#container {
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 0;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	text-align: left;
}

body > #contents {
	height: auto;
	padding: 0;
}

div#contents {
	width: 100%;
	margin: 0 auto;
	height: auto;
	position: relative;
	padding: 0;
}

header {
	width: 100%;
	margin: 0 auto;
}

footer {
	width: 100%;
	margin: 0 auto;
}

.main {
	padding: 60px 0 120px;
}
@media (max-width: 768px) {
	.main {
		padding: 0 0 12vw;
	}
}

/* -------------------------------------------
		2. HEADER
	------------------------------------------- */

.header {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: #fff;
	z-index: 10;
	line-height: 1;
	padding: 0 15px 0 60px;
	position: fixed;
	top: 0;
	left: 0;
}
.header.is-index {
	transform:translateY(-100%);
	transition: all .3s cubic-bezier(.645,.045,.355,1);
	transition-timing-function: cubic-bezier(.645,.045,.355,1);
	opacity: 0;
}
.header.is-index.is-show {
	transform:translateY(0); opacity: 1;
}
.header__logo {
	padding: 10px 0;
}
.header__logo a {
  font-family: "Modak", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
	color: #cffd51;
}
.header__link {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.header__nav {
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.header__nav li {
	margin: 0 5px;
}
.header__nav li a {
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 1.6rem;
	color: #272932;
}
.header__nav li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.header__hamburger {
	width: 24px;
	padding: 18px 0;
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.header__hamburger__icon {
	width: 24px;
	height: 2px;
	border-radius: 0px;
	background-color: #272932;
	position: relative;
}
.header__hamburger:hover .header__hamburger__icon,
.header__hamburger:hover .header__hamburger__icon:after,
.header__hamburger:hover .header__hamburger__icon:before {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
}
.header__hamburger__icon:after,
.header__hamburger__icon:before {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 0px;
	background-color: #272932;
	position: absolute;
}
.header__hamburger__icon:before {
	top: -8px;
}
.header__hamburger__icon:after {
	top: 8px;
}
.header__search {
	position: relative;
	width: 46px;
	height: 40px;
	background: url(../images/icon-search.svg) no-repeat center center;
	background-size: 25px 25px;
	cursor: pointer;
	margin: 0 1vw;
}
.header__search:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.header__search:before,
.header__search:after {
	content: "";
	display: block;
	width: 1px;
	height: 60%;
	background: #eee;
	position: absolute;
	top: 20%;
}
.header__search:before {
	left: 0;
}
.header__search:after {
	right: 0;
}
@media (max-width: 768px) {
	.header {
		padding: 0 10px;
	}
	.header__logo a {
		font-size: 2.2rem;
	}
	.header__nav {
		display: none;
	}
	.header__search:before,
	.header__search:after {
		display: none;
	}
}

/* -------------------------------------------
		3. ENTRIES
	------------------------------------------- */

.newentry {
	padding: 0 60px;
}
.newentry__search {
	padding-top: 60px;
	text-align: center;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-weight: 600;
	font-size: 3.6rem;
	line-height: 1;
}
.newentry__search em {
	font-family: initial;
	font-weight: initial;
	font-size: 1.4rem;
}
.newentry__search em span:before {
	content: ",";
	display: inline-block;
	margin-right: .5em;
}
.newentry__search em span:first-child:before {
	content: "";
	margin-right: 0;
}
.newentry__list {
	list-style-type: none;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.newentry__list:before {
	content: "";
	display: block;
	width: 23%;
	order:1;
}
.newentry__list:after {
	content: "";
	display: block;
	width: 31%;
}
.newentry__list li {
	flex: 0 0 31%;
	background: #fff;
	margin-top: 3%;
	position: relative;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1)
}
.newentry__list li a {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 22vw;
}
.newentry__list li a:hover {
	/*
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.7;
	*/
}
.newentry__list__type {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	z-index: 1;
	text-align: right;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 2.0rem;
	font-weight: 600;
	color: #FF1654;
	line-height: 1;
	padding: 15px 20px 0;
}
.newentry__list__type--live span:first-child:after,
.newentry__list__type--morefun span:first-child:after {
	content: "";
	display: block;
	clear: both;
}
.newentry__list__type--morefun span:first-child {
	color: #fde24f;
}
.newentry__list__type--live span:last-child,
.newentry__list__type--morefun span:last-child {
	font-size: 1.7rem;
	font-weight: 400;
}
.newentry__list__type--live span:last-child {
	color: #fffffe;
}
.newentry__list__type--morefun span:last-child {
	color: #fffffe;
}
.newentry__list__body {
	padding: 20px 20px 25px;
	background: #fffffe;
}
.newentry__list__body__title {
	font-size: 2.0rem;
	font-weight: bold;
	color: #272932;
	line-height: 1.4;
}
.newentry__list__body__subtitle {
	font-size: 1.4rem;
	color: #272932;
	line-height: 1.4;
	margin-top: 6px;
}
.newentry__list__img {
	position: relative;
	padding-bottom: 56.25%;
	/* padding-bottom: 75%; 4:3 */
}
.newentry__list__img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
}
.newentry__list li a:hover .newentry__list__img img {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.newentry__list li.is-notext {
	background-size: cover;
	background-position: center center;
}
.is-notext .newentry__list__body {
	background: transparent;
	z-index: 1;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding: 0 20px 0;
	padding-top: calc(56.25% + 20px);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
}
.is-notext .newentry__list__body__title {
	color: #fffffe;
}
.is-notext .newentry__list__body__subtitle {
	color: #fffffe;
}
.is-notext .newentry__list__img {
	visibility: hidden;
}
@media (max-width: 768px) {
	.newentry {
		padding: 0 6vw;
	}
	.newentry__search {
		padding-top: 20vw;
		font-size: 2.4rem;
	}
	.newentry__search em {
		font-size: 1.4rem;
	}
	.newentry__list {
		display: block;
	}
	.newentry__list:before {
		display: none;
	}
	.newentry__list:after {
		display: none;
	}
	.newentry__list li {
		width: 100%;
		margin-top: 6vw;
	}
	.newentry__list li a {
		min-height: auto;
	}
	.newentry__list__type {
		font-size: 1.6rem;
		padding: 15px 15px 0;
	}
	.newentry__list__type--live span:last-child,
	.newentry__list__type--morefun span:last-child {
		font-size: 1.4rem;
	}
	.newentry__list__body {
		padding: 15px 15px 20px;
	}
	.newentry__list__body__title {
		font-size: 2.0rem;
		line-height: 1.4;
	}
	.newentry__list__body__subtitle {
		font-size: 1.3rem;
		line-height: 1.4;
		margin-top: 4px;
	}
	.newentry__list li.is-notext {
		background-size: cover;
		background-position: center center;
	}
	.is-notext .newentry__list__body {
		padding: 0 15px 20px;
		height: auto;
		background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	}
	.is-notext .newentry__list__img {
		padding-bottom: 100%;
	}
}


/* -------------------------------------------
		4. BTN
	------------------------------------------- */

.btn {
	margin-top: 2.6666666667%;
	padding: 0 6vw;
}
.btn__list {
	list-style-type: none;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin: 0 0 0 -1.3333333334%;
}
.btn__list li {
	flex: 0 0 48.6666666667%;
	margin-left: 2.6666666667%;
}
.btn__list li a {
	position: relative;
	display: block;
	background: #272932;
	padding: 0.2rem 1rem;
	text-align: center;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 3.6rem;
	font-weight: 500;
	color: #fffffe;
}
.btn__list li a:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	width: 24px;
	height: 24px;
}
/*
.btn__list li:first-child a:after {
	left: 3%;
	background: url(../images/icon-prev.svg) no-repeat center center;
	background-size: 24px auto;
}
.btn__list li:last-child a:after {
	left: auto;
	right: 3%;
	background: url(../images/icon-next.svg) no-repeat center center;
	background-size: 24px auto;
}
.btn__list li:first-child a:hover:after {
	background-image: url(../images/icon-prev-wh.svg);
}
.btn__list li:last-child a:hover:after {
	background-image: url(../images/icon-next-wh.svg);
}
*/
.btn__list li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	color: #fff;
	background: #cffd51;
}
@media (max-width: 768px) {
	.btn {
		margin-top: 6vw;
		padding: 0 6vw;
	}
	.btn__list {
		margin: 0 0 0 -1.5%;
	}
	.btn__list li {
		flex: 0 0 48.5%;
		margin-left: 3%;
	}
	.btn__list li a {
		font-size:2.4rem;
		padding: 0.4rem 1rem;
	}
	.btn__list li a:after {
		margin-top: -10px;
		width: 20px;
		height: 20px;
	}
	/*
	.btn__list li:first-child a:after {
		left: 5%;
		background: url(../images/icon-prev.svg) no-repeat center center;
		background-size: 20px auto;
	}
	.btn__list li:last-child a:after {
		left: auto;
		right: 5%;
		background: url(../images/icon-next.svg) no-repeat center center;
		background-size: 20px auto;
	}
	*/
}



/* -------------------------------------------
		5. FOOTER
	------------------------------------------- */

.footer {
	padding: 0 60px 6vw;
}
.footer__nav__wrap {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.footer__nav {
	flex: 0 0 23%;
}
.footer__nav:first-child {
	flex: 0 0 48.6666666667%;
}
.footer__nav__head,
.footer__nav__head a {
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 2.6rem;
	color: #272932;
}
.footer__nav__head a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.7;
}
.footer__nav__list {
	list-style-type: none;
	margin-top: 0px;
}
.footer__nav:first-child .footer__nav__list {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer__nav:first-child .footer__nav__list li {
	flex: 0 0 47.1%;
}
.footer__nav__list li a {
	font-family: 'Saira Extra Condensed', sans-serif;
	font-weight: 600;
	color: #272932;
	font-size: 2.4rem;
}
.footer__nav__list li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.footer__outer {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.footer__logo {
	margin-top: 5%;
}
.footer__logo a {
	text-align: center;
  font-family: "Modak", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 3.0rem;
	color: #272932;
}
.footer__links {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer__links__lang,
.footer__links__social {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	list-style-type: none;
	justify-content: center;
}
.footer__links__lang li,
.footer__links__lang li a {
	font-family: 'Saira Extra Condensed', sans-serif;
	color: #fff;
	font-size: 1.6rem;
}
.footer__links__lang li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	color: #0C7489;
}
.footer__links__lang li:first-child:after {
	content: "/";
	margin: 0 .3rem;
}
.footer__links__social li {
	margin-left: 10%;
}
.footer__links__social li:first-child {
	margin-left: 0;
}
.footer__links__social li a {
	display: block;
	width: 20px;
	height: 20px;
	font-size: 0;
	background: url(../images/icon-ig.svg) no-repeat center center transparent;
	background-size: 16px auto;
	border-radius: 3px;
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
}
.footer__links__social li:nth-child(1) a {
	background-image: url(../images/icon-tw.svg);
}
.footer__links__social li:nth-child(2) a {
	background-image: url(../images/icon-fb.svg);
}
.footer__links__social li:nth-child(3) a {
	background-image: url(../images/icon-ig.svg);
}
.footer__links__social li:nth-child(4) a {
	background-image: url(../images/icon-tiktok.svg);
}
.footer__links__social li:nth-child(5) a {
	background-image: url(../images/icon-mail.svg);
}
.footer__links__social li a:hover {
	opacity: 0.8;
}
.footer__banner {
	list-style-type: none;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin-top: 3%;
	align-items: center;
}
.footer__banner li {
	margin: 0 1%;
}
.footer__copy {
	text-align: center;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 1.6rem;
	margin-top: 3%;
}
.footer__caution {
	text-align: center;
	font-size: 1.3rem;
	margin-top: 3%;
}
.footer__caution a {
	text-decoration: underline;
}
.footer__year {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin-top: 5%;
}
.footer__year li {
	margin: 0 1%;
}
.footer__year li a {
	text-align: center;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
}
.footer__year li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	color: #0C7489;
}

@media (max-width: 768px) {
	.footer {
		padding: 0 6vw 8vw;
	}
	.footer__nav__wrap {
		flex-wrap: wrap;
	}
	.footer__nav {
		flex: 0 0 48.5%;
	}
	.footer__nav:first-child {
		flex: 0 0 100%;
		margin-bottom: 5%;
	}
	.footer__nav__head,
	.footer__nav__head a {
		font-size: 2.2rem;
	}
	.footer__nav:first-child .footer__nav__list li {
		flex: 0 0 48.5%;
	}
	.footer__nav__list li a {
		font-size: 1.8rem;
	}
	.footer__logo {
		margin-top: 10%;
	}
	.footer__logo a {
		font-size: 2.6rem;		
	}
	.footer__banner {
		margin-top: 6%;
		flex-wrap: wrap;
	}
	.footer__copy {
		margin-top: 6%;
		font-size: 1.3rem;
	}
	.footer__caution {
		margin-top: 6%;
		font-size: 1.2rem;
	}
	.footer__caution a {
		text-decoration: underline;
	}
	.footer__year {
		margin-top: 6%;
		flex-wrap: wrap;
	}
	.footer__year li a {
		font-size: 1.3rem;
	}
}


/* -------------------------------------------
		6. INSTAGRAM
	------------------------------------------- */

.instagram {
	position: relative;
	padding: 0 6vw 6vw;
}
.instagram__head,
.instagram__head a {
	text-align: right;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 3.2rem;
	font-weight: 600;
	color: #272932;
}
.instagram__head a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.instagram__head {
	z-index: 1;
	position: relative;
}
.instagram__list {
	list-style-type: none;
	line-height: 1;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-top: -1.5%;
}
.instagram__list li {
	flex: 0 0 19.2%;
	margin-left: 1%;
	margin-bottom: 0.8%;
}
.instagram__list li:nth-child(5n+1) {
	margin-left: 0;
}
.instagram__list li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.7;
}
.instagram__list li a img {
	width: 100%;
	height: auto;
}
@media (max-width: 768px) {
	.instagram {
		padding: 0 3vw 16vw;
	}
	.instagram__head,
	.instagram__head a {
		font-size: 2.4rem;
	}
	.instagram__list {
		margin-top: -3%;
	}
	.instagram__list li {
		flex: 0 0 32%;
		margin-left: 2%;
		margin-bottom: 0.8%;
	}
	.instagram__list li:nth-child(5n+1) {
		margin-left: 2%;
	}
	.instagram__list li:nth-child(3n+1) {
		margin-left: 0;
	}
	.instagram__list li:last-child {
		display: none;
	}
}

/* -------------------------------------------
		7. NAV
	------------------------------------------- */

.nav {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(255,255,255,0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}
.nav.is-show {
	display: block;
}
.nav__inner {
	position: relative;
	padding: 6vw;
}
.nav__header {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	margin-bottom: 5%;
}
.nav__header__head,
.nav__header__head a {
  font-family: "Modak", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 3.6rem;
	color: #272932;
}
.nav__header__head a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.nav__lang {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	list-style-type: none;
	margin: 0 10px;
}
.nav__lang li:first-child:after {
	content: "/";
	margin: 0 .3rem;
}
.nav__lang li,
.nav__lang li a {
	font-family: 'Saira Extra Condensed', sans-serif;
	color: #91F5AD;
	font-size: 1.6rem;
}
.nav__lang li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	color: #0C7489;
}
.nav__social {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	list-style-type: none;
	margin-left: 10px;
}
.nav__social li {
	margin-left: 10%;
}
.nav__social li a {
	display: block;
	width: 20px;
	height: 20px;
	font-size: 0;
	background: url(../images/icon-ig.svg) no-repeat center center #272932;
	background-size: 16px auto;
	border-radius: 3px;
}
.nav__social li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.7;
}
.nav__social li:nth-child(1) a {
	background-image: url(../images/icon-tw-wh.svg);
}
.nav__social li:nth-child(2) a {
	background-image: url(../images/icon-fb-wh.svg);
}
.nav__social li:nth-child(3) a {
	background-image: url(../images/icon-ig-wh.svg);
}
.nav__social li:nth-child(4) a {
	background-image: url(../images/icon-tiktok-wh.svg);
}
.nav__social li:nth-child(5) a {
	background-image: url(../images/icon-mail-wh.svg);
}
.nav__item__wrap {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.nav__item {
	flex: 0 0 23%;
}
.nav__item:first-child {
	flex: 0 0 48.6666666667%;
}
.nav__head,
.nav__head a {
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 2.6rem;
	color: #272932;
}
.nav__head a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.nav__list {
	list-style-type: none;
	margin-top: 5px;
}
.nav__item:first-child .nav__list {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.nav__list li {
	margin: 0 0 0px;
}
.nav__item:first-child .nav__list li {
	flex: 0 0 47.1%;
}
.nav__list li a {
	font-family: 'Saira Extra Condensed', sans-serif;
	font-weight: 600;
	font-size: 2.4rem;
	color: #272932;
}
.nav__list li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
.nav__close,
.search__close {
	width: 24px;
	padding: 18px 0;
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	position: fixed;
	top: 10px;
	right: 15px;
}
.nav__close__icon,
.search__close__icon {
	width: 24px;
	height: 2px;
	border-radius: 0px;
	background-color: transparent;
	position: relative;
}
.nav__close__icon:after,
.nav__close__icon:before,
.search__close__icon:after,
.search__close__icon:before {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 0px;
	background-color: #272932;
	position: absolute;
}
.nav__close__icon:before,
.search__close__icon:before {
	top: 0;
	transform: rotate(-45deg);
}
.nav__close__icon:after,
.search__close__icon:after {
	top: 0;
	transform: rotate(45deg);
}
@media (max-width: 768px) {
	.nav {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.nav__inner {
		padding: 6vw 6vw;
	}
	.nav__header {
		flex-wrap: wrap;
		margin-bottom: 10%;
	}
	.nav__header__head {
		flex: 0 0 100%;
		margin-bottom: 10px;
	}
	.nav__header__head a {
		font-size: 2.6rem;
	}
	.nav__lang {
		margin: 0 10px 0 0;
	}
	.nav__social,
	.nav__social li:first-child {
		margin-left: 0;
	}
	.nav__item__wrap {
		flex-wrap: wrap;
	}
	.nav__item {
		flex: 0 0 48.5%;
	}
	.nav__item:first-child {
		flex: 0 0 100%;
		margin-bottom: 8%;
	}
	.nav__head,
	.nav__head a {
		font-size: 2.2rem;
	}
	.nav__list li a {
		font-size: 1.9rem;
	}
}

/* -------------------------------------------
		8. SEARCH
	------------------------------------------- */

.search {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(255,255,255,0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}
.search.is-show {
	display: block;
}
.search__inner {
	position: relative;
	padding: 6vw;
}
.search__head {
	text-align: center;
	font-family: 'Saira Extra Condensed', sans-serif;
	color: #272932;
	font-size: 2.8rem;
	font-weight: 600;
	margin: 5% auto 1%;
}
.search__input {
	position: relative;
	width: 50%;
	margin: 0 auto;
}
.search__input__text {
	display: block;
	width: 100%;
	outline: none;
	font-size: 2.0rem;
	line-height: 1;
	padding: 12px;
	border: 1px solid #272932;
	border-radius: 8px;
}
.search__input__button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	font-size: 0;
	z-index: 1;
	position: absolute;
	top: 50%;
	right: 12px;
	width: 24px;
	height: 24px;
	margin-top: -13px;
	border: 0;
	outline: none;
	cursor: pointer;
	background: url(../images/icon-search.svg) no-repeat;
	-webkit-background-size: 24px 24px;
	background-size: 24px 24px;
}
.search__tags {
	text-align: center;
	line-height: 2.4;
}
.search__tags a {
	display: inline-block;
	margin: 0 10px;
	color: #272932;
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
}
.search__tags a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	opacity: 0.8;
}
@media (max-width: 768px) {
	.search {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.search__inner {
		padding: 12vw 3vw;
	}
	.search__head {
		font-size: 2.4rem;
		margin: 10% auto 5%;
	}
	.search__input {
		width: 100%;
	}
	.search__input__text {
		font-size: 1.8rem;
		padding: 12px;
		border-radius: 8px;
	}
	.search__tags {
		line-height: 2.0;
	}
	.search__tags a {
		margin: 0 10px;
		font-size: 1.6rem;
	}
}


/* -------------------------------------------
		9. HERO
	------------------------------------------- */

.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/*# sourceMappingURL=slick.min.css.map */

.slick-arrow {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	position: absolute;
	top: 50%;
	margin-top: -18px;
	display: block;
	width: 36px;
	height: 36px;
	font-size: 0;
	z-index: 1;
}
.slick-prev {
	left: -18px;
	background: url(../images/icon-prev-wh.svg) no-repeat;
	-webkit-background-size: 36px auto;
	background-size: 36px auto;
}
.slick-next {
	right: -18px;
	background: #fff;
	background: url(../images/icon-next-wh.svg) no-repeat;
	-webkit-background-size: 36px auto;
	background-size: 36px auto;
}
.slick-dots {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 60px;
	text-align: center;
	font-size: 0;
}
.slick-dots li {
	display: inline-block;
	margin: 0 2px;
}
.slick-dots li button {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	padding: 0;
	font-size: 0;
	text-indent: -9999px;
	width: 3px;
	height: 12px;
	background: #666;
	opacity: 0.8;
}
.slick-dots li.slick-active button {
	background: #f2f4f6;
}

.hero {
	position: relative;
	padding: 0;
}
.hero__head {
	position: absolute;
	top: 3vw;
	left: 60px;
  font-family: "Modak", system-ui;
  font-weight: 400;
  font-style: normal;
	color: #cffd51;
	font-size: 5.0rem;
	line-height: 1;
	z-index: 2;
}
.hero__links {
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: absolute;
	top: 3vw;
	right: 3vw;
}
.hero__links__lang {
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 30px;
}
.hero__links__lang li:first-child:after {
	content: "/";
	margin: 0 .3rem;
}
.hero__links__lang li,
.hero__links__lang li a {
	font-family: 'Saira Extra Condensed', sans-serif;
	color: #fff;
	font-size: 1.3rem;
}
.hero__links__lang li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
	color: #91F5AD;
}
.hero__links__social {
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.hero__links__social li {
	margin-left: 10%;
}
.hero__links__social li a {
	display: block;
	width: 16px;
	height: 16px;
	font-size: 0;
	background: url(../images/icon-ig-wh.svg) no-repeat center center transparent;
	background-size: 12px auto;
}
.hero__links__social li a:hover {
	-webkit-transition: all .22s cubic-bezier(.645,.045,.055,1);
	transition: all .22s cubic-bezier(.645,.045,.055,1);
	-webkit-transition-timing-function: cubic-bezier(.645,.045,.055,1);
	transition-timing-function: cubic-bezier(.645,.045,.055,1);
}
.hero__links__social li:nth-child(1) a {
	background-image: url(../images/icon-tw-wh.svg);
}
.hero__links__social li:nth-child(2) a {
	background-image: url(../images/icon-fb-wh.svg);
}
.hero__links__social li:nth-child(3) a {
	background-image: url(../images/icon-ig-wh.svg);
}
.hero__links__social li:nth-child(4) a {
	background-image: url(../images/icon-tiktok-wh.svg);
}
.hero__links__social li:nth-child(5) a {
	background-image: url(../images/icon-mail-wh.svg);
}
.hero__links__social li a:hover {
	opacity: 0.8;
}
.hero__slider {
	z-index: 1;
	list-style-type: none;
}
.hero__slider li {
	overflow: hidden;
}
.hero__slider li a {
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.hero__slider article {
	position: relative;
	/* padding-bottom: 66.7%; 3:2 */
	/* padding-bottom: 56.3%; 16:9 */
}
.hero__slider__text {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	padding: 60px 60px 80px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.hero__slider__type {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	font-family: 'Saira Extra Condensed', sans-serif;
	color: #fff;
	line-height: 1;
	margin-bottom: 10px;
}
.hero__slider__type span {
	font-size: 2.0rem;
	padding: .5rem;
}
.hero__slider__type span strong {
	font-weight: 500;
}
.hero__slider__type--live span {
	background: #FF1654;
	background: transparent;
	color: #272932;
	color: #CFFD51;
	border: 1px solid #CFFD51;
}
.hero__slider__type--morefun span {
	background: #fde24f;
	background: transparent;
	color: #272932;
	color: #CFFD51;
	border: 1px solid #CFFD51;
}
.hero__slider__title {
	color: #fff;
	font-weight: bold;
	font-size: 5.0rem;
	line-height: 1.3;
}
.hero__slider__subtitle {
	margin-top: 5px;
	color: #fff;
	font-size: 2.2rem;
}
.hero__slider__date {
	margin-top: 15px;
	padding-left: 5px;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 1.6rem;
	color: #fff;
}
.hero__slider__image {
	display: block;
	width: 100%;
	height: auto;
	visibility: hidden;
}
@media (max-width: 768px) {
	.slick-arrow {
		margin-top: -12px;
		width: 24px;
		height: 24px;
	}
	.slick-prev {
		left: -8px;
		-webkit-background-size: 24px auto;
		background-size: 24px auto;
	}
	.slick-next {
		right: -8px;
		-webkit-background-size: 24px auto;
		background-size: 24px auto;
	}
	.slick-dots {
		bottom: 15px;
	}
	.slick-dots li button {

	}

	.hero {
		padding: 0;
	}
	.hero__head {
		position: absolute;
		top: 15px;
		left: 0;
		font-size: 3.2rem;
		text-align: center;
		width: 100%;
	}
	.hero__links {
		display: none;
	}
	.hero__slider li {
	
	}
	.hero__slider li a {
	/*padding-bottom: 50%;*/
		padding-bottom: 30%;
	}
	.hero__slider article {
		/*padding-bottom: 100%;*/
	}
	.hero__slider__text {
		padding: 6vw;
	}
	.hero__slider__type {
		margin-bottom: 10px;
	}
	.hero__slider__type span {
		font-size: 1.4rem;
	}
	.hero__slider__title {
		font-size: 2.4rem;
	}
	.hero__slider__subtitle {
		font-size: 1.4rem;
	}
	.hero__slider__date {
		padding-left: 0;
		font-size: 1.2rem;
	}
	.hero__slider__image {

	}
}

/* -------------------------------------------
		10. DETAIL
	------------------------------------------- */


/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
.pswp,.pswp__bg,.pswp__scroll-wrap{width:100%;height:100%}.pswp,.pswp__item,.pswp__scroll-wrap{overflow:hidden;top:0;position:absolute;left:0}.pswp,.pswp__bg,.pswp__error-msg,.pswp__img,.pswp__item,.pswp__scroll-wrap,.pswp__zoom-wrap{position:absolute}.pswp--touch .pswp__button--arrow--left,.pswp--touch .pswp__button--arrow--right,.pswp__caption--fake{visibility:hidden}.pswp,.pswp__bg,.pswp__container,.pswp__img--placeholder,.pswp__share-modal,.pswp__share-tooltip,.pswp__zoom-wrap{-webkit-backface-visibility:hidden}.pswp{display:none;-ms-touch-action:none;touch-action:none;z-index:9999;-webkit-text-size-adjust:100%;outline:0}.pswp--open,.pswp__button{display:block}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp img{max-width:none}.pswp--animate_opacity{opacity:.001;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--dragging .pswp__img{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp__container,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.pswp__zoom-wrap{width:100%;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;-webkit-transition:-webkit-transform 333ms cubic-bezier(.4,0,.22,1);transition:transform 333ms cubic-bezier(.4,0,.22,1)}.pswp__bg{left:0;top:0;background:#000;opacity:0;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap{-webkit-transition:none;transition:none}.pswp__container,.pswp__zoom-wrap{-ms-touch-action:none;touch-action:none;position:absolute;left:0;right:0;top:0;bottom:0;will-change:transform}.pswp__item{right:0;bottom:0}.pswp__img{width:auto;height:auto;top:0;left:0}.pswp__img--placeholder--blank{background:#222}.pswp--ie .pswp__img{width:100%!important;height:auto!important;left:0;top:0}.pswp__error-msg{left:0;top:50%;width:100%;text-align:center;font-size:14px;line-height:16px;margin-top:-8px;color:#CCC}.pswp__error-msg a{color:#CCC;text-decoration:underline}.pswp__share-tooltip a,.pswp__share-tooltip a:hover{text-decoration:none;color:#000}/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */.pswp__button{position:relative;cursor:pointer;overflow:visible;-webkit-appearance:none;border:0;padding:0;margin:0;float:right;opacity:.75;-webkit-transition:opacity .2s;transition:opacity .2s;-webkit-box-shadow:none;box-shadow:none}.pswp__button:focus,.pswp__button:hover{opacity:1}.pswp__button:active{outline:0;opacity:.9}.pswp__button::-moz-focus-inner{padding:0;border:0}.pswp__ui--over-close .pswp__button--close{opacity:1}.pswp__button,.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{background:url(../images/common/default-skin.png) no-repeat;background-size:264px 88px;width:44px;height:44px}@media (-webkit-min-device-pixel-ratio:1.1),(-webkit-min-device-pixel-ratio:1.09375),(min-resolution:105dpi),(min-resolution:1.1dppx){.pswp--svg .pswp__button,.pswp--svg .pswp__button--arrow--left:before,.pswp--svg .pswp__button--arrow--right:before{background-image:url(../images/common/default-skin.png)}.pswp--svg .pswp__button--arrow--left,.pswp--svg .pswp__button--arrow--right{background:0 0}}.pswp__button--close{background-position:0 -44px}.pswp__button--share{background-position:-44px -44px}.pswp__button--fs{display:none}.pswp--supports-fs .pswp__button--fs{display:block}.pswp--fs .pswp__button--fs{background-position:-44px 0}.pswp__button--zoom{display:none;background-position:-88px 0}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__button--zoom{background-position:-132px 0}.pswp__button--arrow--left,.pswp__button--arrow--right{background:0 0;top:50%;margin-top:-50px;width:70px;height:100px;position:absolute}.pswp__button--arrow--left{left:0}.pswp__button--arrow--right{right:0}.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{content:'';top:35px;background-color:rgba(0,0,0,.3);height:30px;width:32px;position:absolute}.pswp__button--arrow--left:before{left:6px;background-position:-138px -44px}.pswp__button--arrow--right:before{right:6px;background-position:-94px -44px}.pswp__counter,.pswp__share-modal{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pswp__share-modal{display:block;background:rgba(0,0,0,.5);width:100%;height:100%;top:0;left:0;padding:10px;position:absolute;z-index:1600;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;will-change:opacity}.pswp__share-modal--hidden{display:none}.pswp__share-tooltip{z-index:1620;position:absolute;background:#FFF;top:56px;border-radius:2px;display:block;width:auto;right:44px;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.25);box-shadow:0 2px 5px rgba(0,0,0,.25);-webkit-transform:translateY(6px);-ms-transform:translateY(6px);transform:translateY(6px);-webkit-transition:-webkit-transform .25s;transition:transform .25s;will-change:transform}.pswp__share-tooltip a{display:block;padding:8px 12px;font-size:14px;line-height:18px}.pswp__share-tooltip a:first-child{border-radius:2px 2px 0 0}.pswp__share-tooltip a:last-child{border-radius:0 0 2px 2px}.pswp__share-modal--fade-in{opacity:1}.pswp__share-modal--fade-in .pswp__share-tooltip{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.pswp--touch .pswp__share-tooltip a{padding:16px 12px}a.pswp__share--facebook:before{content:'';display:block;width:0;height:0;position:absolute;top:-12px;right:15px;border:6px solid transparent;border-bottom-color:#FFF;-webkit-pointer-events:none;-moz-pointer-events:none;pointer-events:none}.pswp__caption--empty,.pswp__ui--one-slide .pswp__button--arrow--left,.pswp__ui--one-slide .pswp__button--arrow--right,.pswp__ui--one-slide .pswp__counter{display:none}.pswp__counter,.pswp__preloader{height:44px;top:0;position:absolute}a.pswp__share--facebook:hover{background:#3E5C9A;color:#FFF}a.pswp__share--facebook:hover:before{border-bottom-color:#3E5C9A}a.pswp__share--twitter:hover{background:#55ACEE;color:#FFF}a.pswp__share--pinterest:hover{background:#CCC;color:#CE272D}a.pswp__share--download:hover{background:#DDD}.pswp__counter{left:0;font-size:13px;line-height:44px;color:#FFF;opacity:.75;padding:0 10px}.pswp__caption{position:absolute;left:0;bottom:0;width:100%;min-height:44px}.pswp__caption small{font-size:11px;color:#BBB}.pswp__caption__center{text-align:center;max-width:420px;max-width:80%;margin:0 auto;font-size:13px;padding:10px;line-height:20px;color:#CCC}.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right,.pswp__ui{visibility:visible}.pswp__preloader{width:44px;left:50%;margin-left:-22px;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;will-change:opacity;direction:ltr}.pswp--css_animation .pswp__preloader--active,.pswp__preloader--active{opacity:1}.pswp__preloader__icn{width:20px;height:20px;margin:12px}.pswp__preloader--active .pswp__preloader__icn{background:url(../images/common/preloader.gif) no-repeat}.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn{-webkit-animation:clockwise .5s linear infinite;animation:clockwise .5s linear infinite}.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut{-webkit-animation:donut-rotate 1s cubic-bezier(.4,0,.22,1) infinite;animation:donut-rotate 1s cubic-bezier(.4,0,.22,1) infinite}.pswp--css_animation .pswp__preloader__icn{background:0 0;opacity:.75;width:14px;height:14px;position:absolute;left:15px;top:15px;margin:0}.pswp--css_animation .pswp__preloader__cut{position:relative;width:7px;height:14px;overflow:hidden}.pswp--css_animation .pswp__preloader__donut{-webkit-box-sizing:border-box;box-sizing:border-box;width:14px;height:14px;border:2px solid #FFF;border-radius:50%;border-left-color:transparent;border-bottom-color:transparent;position:absolute;top:0;left:0;background:0 0;margin:0}@media screen and (max-width:1024px){.pswp__preloader{position:relative;left:auto;top:auto;margin:0;float:right}}@-webkit-keyframes clockwise{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes clockwise{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes donut-rotate{0%,100%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}}@keyframes donut-rotate{0%,100%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}}.pswp__ui{-webkit-font-smoothing:auto;opacity:1;z-index:1550}.pswp__top-bar{position:absolute;left:0;top:0;height:44px;width:100%}.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right,.pswp__caption,.pswp__top-bar{-webkit-backface-visibility:hidden;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp__caption,.pswp__top-bar{background-color:rgba(0,0,0,.5)}.pswp__ui--fit .pswp__caption,.pswp__ui--fit .pswp__top-bar{background-color:rgba(0,0,0,.3)}.pswp__ui--idle .pswp__button--arrow--left,.pswp__ui--idle .pswp__button--arrow--right,.pswp__ui--idle .pswp__top-bar{opacity:0}.pswp__ui--hidden .pswp__button--arrow--left,.pswp__ui--hidden .pswp__button--arrow--right,.pswp__ui--hidden .pswp__caption,.pswp__ui--hidden .pswp__top-bar{opacity:.001}.pswp__element--disabled{display:none!important}.pswp--minimal--dark .pswp__top-bar{background:0 0}

.detail {
	position: relative;
	padding: 0;
	margin: 0 60px 6vw;
	/*background: #fff;*/
}
.detail__content {
	background: #fffffe;
	padding: 0 0 6vw;
}
.detail__type {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2vw 0 0;
}
.detail__type__tag {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.detail__type__tag span {
	font-family: 'Saira Extra Condensed', sans-serif;
	line-height: 1;
	color: #272932;
}
.detail__type__tag span:nth-child(1) {
	font-size: 2.0rem;
	padding: .5rem;
}
.detail__type__tag span:nth-child(1) strong {
	font-weight: 600;
}
.detail__type__tag span:nth-child(2) {
	font-size: 2.0rem;
	margin-left: 10px;
}
.detail__type--live p span:nth-child(1) {
	background: #FF1654;
}
.detail__type--morefun p span:nth-child(1) {
	background: #fde24f;
}
.detail__title {
	font-size: 4.0rem;
	font-weight: bold;
	line-height: 1.3;
	padding: 5vw 19vw 1vw 0;
	color: #272932;
}
.detail__sns {
	line-height: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
.detail__sns span:last-child {
	margin-left: 5px;
}
.detail__sns--top {
	position: absolute;
	top: 4vw;
	right: 2vw;
}
.detail__sns--bottom {
	padding: 0 16vw;
	margin: 0 auto;
}

.detail__slider {
	list-style-type: none;
	width: 100%;
}
.detail__slider li {
	cursor: pointer;
	outline: none;
}
.detail__slider li img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	cursor: pointer;
}
.detail__thumb {
	list-style-type: none;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 2% 2% 0;
}
.detail__thumb li {
	margin-left: 1%;
	line-height: 1;
	flex: 0 0 9.1%;
	padding-bottom: 9.1%;
	position: relative;
}
.detail__thumb li:first-child {
	margin-left: 0;
}
.detail__thumb li span {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.detail__thumb li img {
	width: 100%;
	height: auto;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}
.detail__copy {
	padding: 2% 20vw 0;
	margin: 0 auto 5vw;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.detail__copy__name {
	display: flex;
	align-items: center;
	line-height: 1;
}
.detail__copy__name strong {
	font-size: 1.8rem;
	font-family: 'Saira Extra Condensed', sans-serif;
	font-weight: 500;
	margin-right: 5px;
}
.detail__copy__name a {
	text-decoration: underline;
	font-size: 1.6rem;
}
.detail__copy__name span a {
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	font-size: 0;
	background: url(../images/icon-ig.svg) no-repeat center center transparent;
	background-size: 14px auto;
}
.detail__copy__name span.is-ig a {
	background-image: url(../images/icon-ig.svg);
}
.detail__copy__name span.is-tw a {
	background-image: url(../images/icon-tw.svg);
}
.detail__copy__name div + div {
	margin-left: 1em;
}
.detail__copy__date {
	text-align: right;
	color: #bfc8d3;
	font-size: 1.8rem;
	font-family: 'Saira Extra Condensed', sans-serif;
}
.detail__subtitle {
	padding: 0 20vw;
	margin: 0 auto;
	font-weight: bold;
	font-size: 2.8rem;
}
.detail__body {
	padding: 0 20vw;
	margin: 3vw auto;
}
.detail__body p {
	font-size: 1.8rem;
	line-height: 2;
	margin-top: 1em;
}
.detail__body p strong {
	font-weight: bold;
	font-size: inherit;
}
.detail__body p a {
	text-decoration: underline;
}
.detail__body img {
	max-width: 100%;
	height: auto;
}
.detail__photo {
	padding: 0 20vw;
	margin: 3vw auto 0;
	cursor: pointer;
	text-decoration: underline;
	font-size: 1.6rem;
}
.detail__tags {
	padding: 0 20vw;
	margin: 0 auto;
	font-family: 'Saira Extra Condensed', sans-serif;
	color: #bfc8d3;
	font-size: 2.4rem;
	font-weight: 500;
	margin-top: 6vw;
}
.detail__tags a {
	font-family: initial;
	color: #bfc8d3;
	font-size: 1.4rem;
	text-decoration: underline;
	font-weight: 400;
}
.detail__tags a:hover {

}
.detail__comment {
	border-top: 1px solid #D6D6D6;
	padding: 3vw 3vw 0;
	margin-top: 6vw;
}
.video-container {
	display: block;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.video-container iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.detail__body .twitter-tweet,
.detail__body .instagram-media,
.detail__body iframe,
.detail__body blockquote {
	max-width: 100% !important;
	min-width: auto !important;
}
@media (max-width: 768px) {
	.detail {
		margin: 2vw 3vw 6vw;
		padding: 12vw 0 0;
	}
	.detail__type {
		padding: 16vw 0vw 0;

	}
	.detail__type__tag span:nth-child(1) {
		font-size: 1.4rem;
	}
	.detail__type__tag span:nth-child(2) {
		font-size: 1.4rem;
		margin-left: 5px;
	}
	.detail__title {
		font-size: 3.0rem;
		padding: 12vw 0vw 2vw;
	}
	.detail__sns--top {
		display: none;
	}
	.detail__sns--bottom {
		padding: 5vw 5vw 0;
	}
	.detail__thumb {
		padding: 3vw 5vw 0;
	}
	.detail__copy {
		padding: 0 5vw;
		display: block;
		margin: 5vw 0 7vw;
	}
	.detail__copy__name {
		display: block;
	}
	.detail__copy__name div + div {
		margin: 1vw 0 0;
	}
	.detail__copy__name strong {
		font-size: 1.8rem;
	}
	.detail__copy__name a {
		font-size: 1.6rem;
	}
	.detail__copy__name span {
		
	}
	.detail__copy__date {
		margin-top: 3vw;
		font-size: 1.4rem;
	}
	.detail__subtitle {
		padding: 0 5vw;
		font-size: 2.6rem;
	}
	.detail__body {
		padding: 0 5vw;
		margin: 3vw auto;
	}
	.detail__body p {
		font-size: 1.8rem;
	}
	.detail__photo {
		padding: 0 5vw;
	}
	.detail__tags {
		margin-top: 3vw;
		padding: 0 5vw;
	}
}

.detail__body__video {
	display: block;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
	position: relative;
	margin: 1.5em auto;
}

.detail__body__video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;			
}

#infscr-loading {
	display: none !important;
}

.wp-caption {
	margin-top: 1em;
	max-width: 100%;
}

.detail__body p.wp-caption-text {
	font-size: 14px;
	margin-top: .5em;
}

/* -------------------------------------------
		11. BANNER
	------------------------------------------- */

.banner {
	margin: 30px 0 0;
}
.banner.banner__ispage {
	margin: 0;
	padding: 80px 0 0;
}
.banner + .main {
	padding-top: 0;
}
.banner.banner__ispage + .main {
	margin-top: -30px;
}
.banner img {
	display: block;
	margin: 0 auto;
	width: 500px;
}
@media (max-width: 768px) {
	.banner {
		margin: 3vw 0 0;
	}
	.banner.banner__ispage {
		padding: 42px 0 0;
	}
	.banner + .main {
		
	}
	.banner.banner__ispage + .main {
		margin-top: -14vw;
	}
	.banner img {
		width: 100%;
	}
}