@charset "UTF-8";

html {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 62.5%;
	letter-spacing: 0.025em;
	color: #4d4d4d;
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}


/* -------------------------------------------- common -------------------------------------------- */
* { outline: none; backface-visibility: hidden; }
body { font-size: 14px; position: relative; background: #f6f7f8; overflow-x: hidden; z-index: 0; }
main { display: block; }
button { display: block; background-color: transparent; border: none; cursor: pointer; outline: none; border-radius: 0; padding: 0; margin: 0; font-family: inherit; font-weight: inherit; font-size: inherit; transition: .3s; }
img { object-fit: cover; object-position: 50% 50%; width: 100%; height: 100%; overflow: hidden; vertical-align: top; }
svg { object-fit: cover; object-position: 50% 50%; width: 100%; height: 100%; overflow: hidden; vertical-align: top; }
h1,h2,h3,h4 { font-weight: inherit; }
a { text-decoration: none; color: inherit; font-size: inherit; font-style: inherit; font-weight: inherit; transition: .4s; }
p { font-size: 1.4rem; line-height: 2.14; margin: -0.57em 0; }
input,select,textarea { display: block; border: none; border-radius: 0; -webkit-appearance: none; cursor: pointer; }
table { width: 100%; }

.wrapper { width: 78.4%; margin: 0 auto; }
.-en { font-family: 'Oswald', sans-serif; font-weight: 300; letter-spacing: 0.15em; }
.underline-link { text-decoration: underline; }
.underline-link:hover { opacity: 0.5; }

.-sp1 { display: none!important; }
.-sp2 { display: none!important; }

.inview { opacity: 0; transform: translateY(3px); transition: .7s; }
.inview.-action { transform: translateY(0); opacity: 1; }

.inview-img { opacity: 0; overflow: hidden; backface-visibility: hidden; transition: .7s; }
.inview-img img { backface-visibility: hidden; transform: scale(1.02); transform-origin: center center; transition: 1.5s; }
.inview-img.-action { opacity: 1; }
.inview-img.-action img { transform: scale(1); }

.inview-lineup { opacity: 0; transform: scale(0.99); transform-origin: center bottom; transition: .7s; }
.inview-lineup.-action { opacity: 1; transform: scale(1); }


/* -------------------------------------------- top -------------------------------------------- */
/* ------------------------ header ------------------------ */
.header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5000;
	width: 260px;
	height: 100vh;
	min-height: 700px;
	background: #fff;
}

.header::before {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5000;
	width: 100%;
	height: 30px;
	background: linear-gradient(to bottom, rgba(150, 163, 169, 0.03) 0%, rgba(150, 163, 169, 0) 100%);
	pointer-events: none;
	opacity: 0;
	transition: .3s;
}

.header__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header__logo {
	width: 192px;
	padding-bottom: 75px;
}

.header__gnav-list-item {
	font-size: 1.7rem;
	text-align: center;
}

.header__gnav-list-item:not(:last-child) {
	padding-bottom: 30px;
}

.header__gnav-link:hover {
	opacity: 0.6;
}

.header__partition {
	margin: 55px 0;
	width: 30px;
	height: 1px;
	background: #bcbcbc;
}

.header__storelink {
	display: flex;
	align-items: center;
}

.header__storelink:hover {
	opacity: 0.6;
}

.header__storelink-img {
	width: 20px;
	padding-right: 14px;
}

.header__storelink-txt {
	font-size: 1.6rem;
}


/* ------------------------ top kv ------------------------ */
.main-cnt {
	padding-left: 260px;
}

.top-kv {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.top-loading {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: #f6f7f8;
	transition: all 0.5s ease 0.2s;
	pointer-events: none;
}

.top-loading.-end {
	opacity: 0;
	visibility: hidden;
}

.top-loading__circle {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 15;
	width: 35px;
	height: 35px;
	border: 3px solid #aaa; 
	border-top-color: #ddd;
	border-radius: 50%; 
	margin: auto;
	animation: animation_spin 1.0s linear infinite;
	transition: .4s;
	transform-origin: center;
}

@keyframes animation_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kv-slide {
	display: flex;
	position: relative;
	z-index: 1;
	height: 100%;
}

.kv-slide__parent {
	position: relative;
	width: calc(100% - 60px);
	height: 100%;
}

.kv-slide__child {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 1.4s cubic-bezier(0.83, 0, 0.17, 1) ;
	overflow: hidden;
}

.kv-slide__child.-show {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.kv-slide__child.-hidden {
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition-delay: 0.1s;
}

.kv-slide__img {
	width: calc(100vw - 60px - 260px);
	min-width: 100%;
	min-height: 100vh;
	transform: scale(1.05);
	transform-origin: center;
	transition: transform 1.7s ease;
}

.kv-slide__child.-show .kv-slide__img {
	transform: scale(1.0);
}

.kv-slide__child.-hidden .kv-slide__img {
	transform: scale(1.0);
}

.kv-slide__nav-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width: 60px;
	padding: 20px 0;
}

.kv-slide__nav-sns {

}

.kv-slide__sns-link {
	display: block;
	width: 28px;
	margin: 0 0 15px;
}

.kv-slide__sns-link:hover {
	opacity: 0.5;
}

.kv-slide__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 5px;
}

.kv-slide__dots {
	padding-bottom: 8px;
}

.kv-slide__dots-item {
	box-sizing: border-box;
	width: 5.5px;
	height: 5.5px;
	border: 1px solid #bbb;
	transform: rotate(45deg);
	transition: .3s;
	margin-bottom: 8px;
	cursor: pointer;
}

.kv-slide__dots-item.-current {
	border-color: #4d4d4d;
	background: #4d4d4d;
}

.kv-slide__num {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}


/* ------------------------ top concept ------------------------ */
.top-concept {
	/*padding: 100px 0 110px 0;*/
	padding: 100px 0 90px 0;
}

.center-heading {
	padding-bottom: 60px;
	font-size: 3.2rem;
	font-weight: 200;
	letter-spacing: 0.2em;
	text-align: center;
}

.top-concept__center-heading {
	line-height: 1.75;
}

.top-concept__txt {
	margin: -0.93em 0;
	line-height: 2.86;
	text-align: center;
}


/* ------------------------ top news ------------------------ */
.top-news {
	padding-bottom: 80px;
}

.top-news__wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.top-news__cnt {
	width: 48%;
	padding: 60px 0 0 10.78%;
}

.line-heading {
	position: relative;
	padding: 0 0 45px 40px;
	font-size: 2.6rem;
	letter-spacing: 0.2em;
	font-weight: 200;
}

.line-heading::before {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left:  0;
	width: 23px;
	height: 1px;
	background: #4d4d4d;
}

.news-list__item {
	padding-bottom: 25px;
	border-bottom: 1px solid #dcdde1;
}

.news-list__item:not(:last-child) {
	margin-bottom: 30px;
}

.news-list__link {
	display: block;
}

.news-list__link:hover {
	opacity: 0.5;
}

.news-list__date {
	display: block;
	padding-bottom: 10px;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	color: #999;
}

.news-list__title {
	line-height: 2;
}

.square-link {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 130px;
	padding: 10px 0;
	background: #fff;
}

.square-link:hover {
	opacity: 0.7;
}

.top-news__square-link {
	margin-top: 50px;
}

.square-link__img {
	width: 10px;
	height: 10px;
	padding-right: 9px;
}

.square-link__txt {
	font-size: 1.4rem;
}

.top-news__img {
	width: 30%;
	padding-right: 60px;
}


/* ------------------------ top lineup ------------------------ */
.top-lineup {
	padding-bottom: 120px;
}

.slick-lineup__parent {
	position: relative;
	width: 100%;
	padding-top: 5px;
	overflow: hidden;
	opacity: 0;
	transition: .4s;
}

.slick-lineup__parent.slick-initialized {
	opacity: 1;
}

.slick-lineup__child {
	float: left;
	position: relative;
	box-sizing: border-box;
	width: 44vw;
	max-width: 600px;
	margin-right: 30px;
}

.slick-lineup__cnt {
	padding-top: 25px;
}

.slick-lineup__link {
	padding-bottom: 3px;
}

.img-link {
	display: block;
}

.img-link__img-frame {
	position: relative;
	overflow: hidden;
	backface-visibility: hidden;
}

.img-link__img-frame::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(107, 126, 134, 0.25);
	opacity: 0;
	transition: .4s;
	pointer-events: none;
}

.img-link:hover .img-link__img-frame::before {
	opacity: 1;
}

.img-link__img-frame img {
	backface-visibility: hidden;
	transition: .8s;
}

.img-link:hover .img-link__img-frame img {
	transform: scale(1.02);
	transform-origin: center center;
}

.slick-lineup__title {
	padding-bottom: 15px;
	font-size: 2.0rem;
	font-weight: 200;
	line-height: 1.5;
}

.slick-lineup__txt {
	font-size: 1.3rem;
	line-height: 1.9;
}

.slick-lineup__nav-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 80px;
}

.slick-lineup__nav {
	display: flex;
}

.slick-lineup__nav-arrow {
	display: block;
	width: 24px;
	height: 7px;
}

.slick-lineup__nav-arrow:hover {
	opacity: 0.5;
}

.slick-lineup__nav-arrow.-prev {
	transform: scale(-1, 1);
	margin-right: 22px;
}

.slick-lineup .slick-list {
    padding: 0!important;
    overflow: visible;
}


/* ------------------------ top official store ------------------------ */
.top-official {
	padding-top: 90px;
}

.top-official__intro {
	padding-bottom: 55px;
}

.top-official__map {
	width: 100%;
	height: 360px;
	filter: grayscale(100%);
}

.top-official__map iframe {
	width: 100%;
	height: 100%;
}

.top-official__txt {
	padding-top: 50px;
}

.coming-soon {
	display: block;
	font-size: 1.6rem;
	color: #999;
}


/* ------------------------ top stockist ------------------------ */
.top-stockist {
	padding: 75px 0 135px 0;
}

.top-stockist__list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -45px;
}

.top-stockist__list-item {
	width: calc((100% - 50px) / 3);
	padding-bottom: 45px;
}

.top-stockist__list-item:not(:nth-child(3n)) {
	padding-right: 25px;
}

.top-stockist__heading {
	position: relative;
	padding: 0 0 20px 22px;
	font-size: 1.7rem;
	line-height: 1.5;
}

.top-stockist__heading::before {
	content: '';
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
	box-sizing: border-box;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
	background: #4d4d4d;
}


/* ------------------------ contact ------------------------ */
.common-contact {
	position: relative;
	padding: 160px 0 180px 0;
	background: url(/img/common/contact-bg.jpg) no-repeat;
	background-size: cover;
	background-position: right center;
	color: #fff;
}

.common-contact::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(107, 126, 134, 0.8) 0%, rgba(107, 126, 134, 0.3) 100%);
	mix-blend-mode: multiply;
	pointer-events: none;
}

.common-contact__wrap {
	position: relative;
	z-index: 5;
	width: 80%;
	margin: 0 auto;
	text-align: center;
}

.common-contact__heading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.common-contact__heading-img {
	width: 47px;
	padding-right: 25px;
}

.common-contact__heading-txt {
	font-size: 3.2rem;
	letter-spacing: 0.2em;
	font-weight: 200;
}

.common-contact__txt {
	padding: 55px 0 35px 0;
	line-height: 2.4;
}

.common-contact__link {
	font-size: 1.8rem;
	text-decoration: underline;
}

.common-contact__link:hover {
	opacity: 0.6;
}


/* ------------------------ footer ------------------------ */
.footer {
	padding: 60px 0 50px;
}

.footer__wrap {
	width: 92%;
	margin: 0 auto;
}

.footer__top-cnt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 70px;
}

.supporter__wrap {
	width: calc(100% - 75px);
}

.supporter__heading {
	padding-bottom: 35px;
	font-size: 2.0rem;
	letter-spacing: 0.2em;
}

.supporter__list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -15px;
}

.supporter__list-item {
	width: 165px;
	margin: 0 15px 15px 0;
	background: #fff;
}

.supporter__link {
	display: block;
}

.supporter__link:hover {
	opacity: 0.5;
}

.footer__sns-wrap {
	display: flex;
    justify-content: space-between;
    width: 75px;
}

.footer__sns-link {
	display: block;
	width: 28px;
}

.footer__sns-link:hover {
	opacity: 0.5;
}

.footer__bottom-cnt {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	width: 60%;
}

.footer-links__item {
	font-size: 1.2rem;
}

.footer-links__item + .footer-links__item {
	padding-left: 20px;
	border-left: 1px solid #4d4d4d;
	margin-left: 20px;
}

.footer__copyright {
	font-size: 1.05rem;
}


/* -------------------------------------------- news -------------------------------------------- */
.news, .lineup {
	padding: 170px 0 120px 0;
}

.line-heading.-h1 {
	padding: 0 0 70px 40px;
	font-size: 3.2rem;
}

.line-heading.-h1::before {
	top: 16px;
}

.pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -15px -20px 0;
	padding-top: 60px;
}

.pagination .page-numbers {
	display: block;
	box-sizing: border-box;
	width: 35px;
	margin: 0 15px 20px 0;
	line-height: 40px;
	font-size: 1.6rem;
	color: #aaa;
	text-align: center;
}

.pagination .page-numbers.current {
	color: #4d4d4d;
	background: #fff;
	pointer-events: none;
}

.pagination .page-numbers:hover {
	color: #4d4d4d;
	background: #fff;
}


/* ------------------------ news single ------------------------ */
.news-single {
	padding: 150px 0 120px 0;
}

.news-single__title {
	padding-bottom: 55px;
	border-bottom: 1px solid #dcdde1;
	margin-bottom: 65px;
}

.news-single__heading {
	padding-bottom: 20px;
	font-size: 2.4rem;
	line-height: 1.75;
}

.news-single__date {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: #999;
}

.cms-input p {
	margin-bottom: 60px;
}

.cms-input a {
	text-decoration: underline;
}

.cms-input a:hover {
	opacity: 0.5;
}

.cms-input img {
	display: block;
	max-width: 80%;
	margin: 0 auto;
}

/*.cms-input img {
	display: block;
	max-width: 80%;
	margin: 0 auto 60px auto;
}*/

.cms-input h2 {
	margin: 60px 0 30px 0;
	font-size: 2.1rem;
	line-height: 1.5;
}

.cms-input ul, .cms-input ol {
	margin-bottom: 30px;
}

.cms-input ul li,
.cms-input ol li {
	line-height: 2;
}

.cms-input ul li {
	position: relative;
	padding-left: 12px;
}

.cms-input ul li::before {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
	width: 3px;
	height: 3px;
	box-sizing: border-box;
	border-color: 1px solid #4d4d4d;
	border-radius: 50%;
	background: #4d4d4d;
}

.cms-input ol {
	counter-reset: item;
}

.cms-input ol li {
	text-indent: -1.4em;
	padding-left: 1.4em;
}

.cms-input ol li::before {
	counter-increment: item;
	content: counter(item)'. ';
	font-size: 1.3rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	letter-spacing: 0.15em;
	line-height: 1;
	color: #4d4d4d;
}

.square-link.-large {
	width: 150px;
	padding: 13px 0; 
	margin: 50px auto 0 auto;
}


/* -------------------------------------------- lineup -------------------------------------------- */
.lineup-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: -60px;
}

.lineup-list__item {
	width: 47.75%;
	padding-bottom: 60px;
}

.lineup-list__cnt {
	padding-top: 21px;
}

.lineup-list__heading {
	display: block;
	padding-bottom: 15px;
	font-size: 2.0rem;
	font-weight: 200;
	line-height: 1.5;
}

.lineup-list__txt {
	font-size: 1.3rem;
	line-height: 1.8;
}


/* ------------------------ lineup single ------------------------ */
.lineup-single {
	padding: 150px 0 150px 0;
}

.lineup-single__title {
	padding-bottom: 90px;
	line-height: 1.5;
}

.lineup-single__heading-en {
	display: block;
	padding-bottom: 10px;
	font-size: 3.2rem;
	font-weight: 200;
	letter-spacing: 0.2em;
}

.lineup-single__heading-jp {
	font-size: 1.5rem;
	color: #999;
}

.buy-link {
	display: inline-flex;
	align-items: center;
	padding: 0 0 12px 3px;
	border-bottom: 1px solid #4d4d4d;
	margin-bottom: 1px;
}

.lineup-single__buy-link {
	margin-top: 55px;
}

.buy-link__img {
	width: 20px;
	padding-right: 13px;
}

.buy-link__txt {
	font-size: 1.7rem;
}

.lineup-single__cms-input img {
	max-width: 100%;
}

.cms-input__buy-link {
	margin-top: 20px;
}

.other-lineup {
	padding-top: 90px;
}

.other-lineup__line-heading {
	padding-bottom: 40px;
	font-size: 2.2rem;
}

.other-lineup__list {
	display: flex;
	margin-right: -25px;
}

.other-lineup__list-item {
	width: calc((100% - 50px) / 3);
	padding-right: 25px;
}

.other-lineup__heading {
	padding-top: 15px;
	font-size: 1.6rem;
	font-weight: 200;
	line-height: 1.5;
}

.other-lineup__square-link {
	margin-top: 40px;
}



/* ----------------------------------------------- responsive ---------------------------------------------- */
/* ----------------------------------- 1150 ---------------------------------- */
@media screen and (max-width: 1150px) {
	.header { width: 220px; }
	.header__logo { width: 170px; }
	.main-cnt { padding-left: 220px; }
}


/* ----------------------------------- 1000 ---------------------------------- */
@media screen and (max-width: 1000px) {
	.wrapper { width: 87.5%; }

	.-pc1 { display: none!important; }
	.-sp1 { display: block!important; }

	/* ----------------------- top ----------------------- */
	.header { width: 100%; height: 105px; min-height: 1px; }
	.header.-scroll::before { opacity: 1; }
	.header__inner { box-sizing: border-box; flex-direction: row; justify-content: space-between; position: relative; top: 0; left: 0; transform: none; height: 60px; padding: 0 15px; border-bottom: 1px solid #ecedef; }
	.header__empty-box { width: 50px; }
	.header__logo { width: 170px; padding-bottom: 0; }
	.header__sns-wrap { display: flex!important; justify-content: space-between; width: 60px; }
	.header__sns-link { width: 25px; }
	.header__sns-link:hover { opacity: 0.5; }
	.sp-gnav { width: 100%; height: 45px; }
	.sp-gnav__list { display: flex; align-items: center; justify-content: center; height: 100%; }
	.sp-gnav__list-item:not(:last-child) { padding-right: 30px; }
	.sp-gnav__link { font-size: 1.4rem; }
	.sp-gnav__link:hover { opacity: 0.5; }

	.fixed-links { display: flex!important; position: fixed; left: 0; bottom: 0; z-index: 5000; width: 100%; }
	/* オンラインストア公開時にwidth: 50%;に */
	.fixed-links__link { display: flex; justify-content: center; align-items: center; width: 100%; /*width: 50%;*/ height: 50px; }
	.fixed-links__link.-official { background: #76797c; }
	.fixed-links__link.-online { background: #4d4d4d; }
	.fixed-links__link:hover { opacity: 0.8; }
	.fixed-links__img { width: 28px; padding-right: 5px; }
	.fixed-links__txt { font-size: 1.4rem; letter-spacing: 0.12em; color: #fff; }

	.main-cnt { padding: 105px 0 50px 0; }
	.top-kv { height: auto; }
	.kv-slide { display: block; }
	.kv-slide__parent { width: 100%; height: 112.5vw; max-height: calc(100vh - 205px); }
	.kv-slide__img { width: 100vw; min-height: 1px; height: 100%; }
	.kv-slide__nav-wrap { flex-direction: row; justify-content: center; width: 100%; }
	.kv-slide__nav { flex-direction: row; padding: 0 0 0 20px; }
	.kv-slide__dots { display: flex; padding: 0 12px 0 0; }
	.kv-slide__dots-item { margin: 0 7px 0 0; }
	.kv-slide__num { font-size: 1.3rem; }

	.top-concept { padding: 50px 0 80px 0; }
	.center-heading { padding-bottom: 40px; font-size: 2.7rem; }
	.top-concept__txt { margin: -0.64em 0; line-height: 2.28; }

	.top-news { padding-bottom: 90px; }
	.top-news__wrap { flex-direction: column-reverse; width: 87.5%; margin: 0 auto; }
	.top-news__cnt { width: 100%; padding: 0; }
	.line-heading { padding: 0 0 30px 40px; font-size: 2.3rem; }
	.news-list__item { padding-bottom: 22px; }
	.news-list__item:not(:last-child) { margin-bottom: 25px; }
	.news-list__date { padding-bottom: 7px; }

	.top-lineup { padding-bottom: 100px; }
	.slick-lineup__child { width: 78vw; margin-right: 20px; }

	.top-official { padding-top: 70px; }
	.top-official__txt { padding-top: 30px; }

	.top-stockist { padding: 75px 0 105px 0; }
	.top-stockist__list { display: block; margin-bottom: -30px; }
	.top-stockist__list-item { width: 100%; padding-bottom: 30px; }
	.top-stockist__list-item:not(:nth-child(3n)) { padding-right: 0; }
	.top-stockist__heading { padding: 0 0 18px 20px; }

	.common-contact__wrap { width: 90%; }
	.common-contact__heading-img { width: 40px; padding-right: 18px; }
	.common-contact__heading-txt { font-size: 2.9rem; }
	.common-contact__txt { padding: 55px 0 40px 0; line-height: 2.28; }

	.footer { padding: 50px 0 30px 0; }
	.footer__wrap { width: 87.5%; }
	.footer__copyright { font-size: 1.0rem; }


	/* ----------------------- news ----------------------- */
	.news, .lineup { padding: 120px 0 100px 0; }
	.line-heading.-h1 { padding: 0 0 55px 40px; font-size: 2.8rem; }
	.line-heading.-h1::before { top: 14px; }

	.news-single { padding: 100px 0 120px 0; }
	.news-single__date { font-size: 1.3rem; }
	.cms-input img { max-width: 100%; }


	/* ----------------------- lineup ----------------------- */
	.lineup-list { margin-bottom: -50px; }
	.lineup-list__item { padding-bottom: 50px; }

	.lineup-single { padding: 110px 0 120px 0; }
	.lineup-single__heading-en { font-size: 2.8rem; }
	.lineup-single__buy-link { margin-top: 45px; }
	.other-lineup { padding-top: 80px; }
	.other-lineup__list { margin-right: -15px; }
	.other-lineup__list-item { width: calc((100% - 30px) / 3); padding-right: 15px; }

}


/* ----------------------------------- 700 ---------------------------------- */
@media screen and (max-width: 700px) {
	body { font-size: 13px; }
	p { font-size: 1.3rem; line-height: 2.15; margin: -0.575em 0; }

	.-pc2 { display: none!important; }
	.-sp2 { display: block!important; }

	/* ----------------------- top ----------------------- */
	.header__logo { width: 150px; }
	.sp-gnav__list-item:not(:last-child) { padding-right: 20px; }
	.sp-gnav__link { font-size: 1.3rem; }

	.fixed-links__txt { font-size: 1.3rem; }

	.top-concept { padding: 30px 0 50px 0; }
	.center-heading { padding-bottom: 35px; font-size: 2.3rem; }
	.top-concept__center-heading { line-height: 1.65; letter-spacing: 0.15em; }
	.top-concept__txt { text-align: left; }

	.top-news { padding-bottom: 50px; }
	.top-news__square-link { margin-top: 40px; }

	.top-lineup { padding-bottom: 70px; }
	.slick-lineup__child { margin-right: 12px; }
	.slick-lineup__cnt { padding-top: 20px; }
	.slick-lineup__title { font-size: 1.7rem; padding-bottom: 15px; }
	.slick-lineup__txt { font-size: 1.2rem; }
	.slick-lineup__nav-wrap { padding-top: 40px; }
	.slick-lineup__nav-arrow.-prev { margin-right: 12px; }
	
	.top-official { padding-top: 50px; }
	.top-official__intro { padding-bottom: 50px; }
	.top-official__map { height: 190px; }
	.coming-soon { font-size: 1.4rem; }

	.top-stockist { padding: 60px 0 75px 0; }

	.common-contact { padding: 80px 0 90px 0; background: url(/img/common/contact-bg-sp.jpg) no-repeat; background-size: cover; background-position: right center; }
	.common-contact__wrap { width: 100%; }
	.common-contact__heading-img { width: 35px; height: 19px; }
	.common-contact__heading-txt { font-size: 2.5rem; }
	.common-contact__txt { padding: 40px 0 30px 0; }
	.common-contact__link { font-size: 1.6rem; }

	.footer__top-cnt { display: block; padding-bottom: 25px; }
	.supporter__wrap { width: 100%; padding-bottom: 30px; }
	.supporter__heading { text-align: center; }
	.supporter__list { justify-content: space-between; }
	.supporter__list-item { width: calc((100% - 15px) / 2); margin: 0 0 15px 0; }
	.supporter__coming-soon { text-align: center; }
	.footer__sns-link { margin: 0; }
	.footer__bottom-cnt { display: block; }
	.footer-links { width: 100%; }
	.footer-links__item { width: 100%; text-align: center; }
	.footer-links__item + .footer-links__item { padding: 10px 0 0 0; border-left: none; margin-left: 0; } 
	.footer__copyright { display: block; padding-top: 45px; text-align: center; }


	/* ----------------------- news ----------------------- */
	.news, .lineup { padding: 55px 0 65px 0; }
	.line-heading.-h1 { padding: 0 0 35px 35px; font-size: 2.2rem; }
	.line-heading.-h1::before { top: 12px; }
	.pagination { padding-top: 45px; margin-right: -12px; }
	.pagination .page-numbers { margin-right: 12px; font-size: 1.4rem; }

	.news-single { padding: 45px 0 65px 0; }
	.news-single__title { padding-bottom: 35px; margin-bottom: 55px; }
	.news-single__heading { font-size: 2.0rem; }
	.cms-input p { margin-bottom: 40px; }
	.cms-input img { margin-bottom: 40px; }
	.cms-input h2 { margin: 40px 0 20px 0; font-size: 1.9rem; }
	

	/* ----------------------- lineup ----------------------- */
	.lineup-list { margin-bottom: -42px; }
	.lineup-list__item { width: 100%; padding-bottom: 42px; }
	.lineup-list__cnt { padding-top: 18px; }
	.lineup-list__heading { padding-bottom: 12px; font-size: 1.7rem; }
	.lineup-list__txt { font-size: 1.2rem; }

	.lineup-single { padding: 55px 0 65px 0; }
	.lineup-single__title { padding-bottom: 55px; }
	.lineup-single__heading-en { padding-bottom: 6px; font-size: 2.2rem; }
	.lineup-single__heading-jp { font-size: 1.3rem; }
	.lineup-single__buy-link { margin-top: 35px; }
	.buy-link__img { width: 16px; padding-right: 11px; }
	.buy-link__txt { font-size: 1.4rem; }
	.cms-input__buy-link { margin-top: 5px; }
	.other-lineup { padding-top: 55px; }
	.other-lineup__line-heading { padding-bottom: 35px; font-size: 2.0rem; }
	.other-lineup__list { flex-wrap: wrap; margin: 0 0 -35px 0; }
	.other-lineup__list-item { width: 100%; padding: 0 0 35px 0; }
	.other-lineup__heading { padding-top: 12px; font-size: 1.8rem; }
	.other-lineup__square-link { margin-top: 30px; }

}

/* ----------------------------------- ie ---------------------------------- */
@media screen and (min-width: 0\0) and (min-resolution: +72dpi) {
    .selector {
        property: value;
    }
	/* IE向けのCSS～START */
	/* IE向けのCSS～END */
}