@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------------------------
* reset
-------------------------------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video ,button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}
body {
	line-height: 1;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

img[usemap], area {
    outline: none;
    border: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------
* 基本設定（viewport: width=device-width 想定）
-------------------------------------------------------------------------------------------------------------------------------*/
html {
	font-size: 10px;
}
@media (max-width: 768px) {
	html { font-size: max(10px, 1.3333vw); }
}
body{
	font-size: 1.6rem;
	color: #000000;
	line-height: 1.3;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust:100%;
}
@media screen and (max-width:767px) {
	body{
		font-size: 1.2rem;
	}
}

a{
	opacity: 1;
	transition: all 0.2s;
}
a:hover{
	opacity: 0.6;
}

/*-------------------------------------------------------------------------------------------------------------------------------
* index
-------------------------------------------------------------------------------------------------------------------------------*/
#container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

/*-------------------------------------------------------------------------------------------------------------------------------
* main
-------------------------------------------------------------------------------------------------------------------------------*/

/* mv-slider（Swiper・フェード／横幅100%・高さは画像比率・PC/SP 出し分け） */
.mv-slider {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.mv-slider__swiper--sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.mv-slider__swiper--pc {
		display: none;
	}

	.mv-slider__swiper--sp {
		display: block;
	}
}

.mv-slider__swiper {
	width: 100%;
	height: auto;
	/* Swiper のページネーション色変数（.swiper-pagination-bullet が var() 参照するため） */
	--swiper-pagination-color: #fff;
	--swiper-pagination-bullet-inactive-color: transparent;
	--swiper-pagination-bullet-inactive-opacity: 1;
}

.mv-slider__swiper .swiper-wrapper {
	height: auto;
}

.mv-slider__list {
	margin: 0;
	padding: 0;
	height: auto;
}

.mv-slider__slide {
	height: auto;
}

.mv-slider__slide img {
	display: block;
	width: 100%;
	height: auto;
}

.mv-slider__pagination.swiper-pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5rem;
	margin: 0;
	z-index: 10;
	text-align: center;
	pointer-events: auto;
}

@media screen and (max-width: 767px) {
	.mv-slider__pagination.swiper-pagination {
		bottom: 2rem;
		z-index: 20;
	}
}

.mv-slider__swiper .mv-slider__pagination.swiper-pagination .swiper-pagination-bullet {
	width: 1.8rem;
	height: 1.8rem;
	padding: 0;
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 1rem);
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	background: none;
	background-color: transparent;
	border: 0.2rem solid #fff;
	border-radius: 50%;
	opacity: 1;
}

.mv-slider__swiper .mv-slider__pagination.swiper-pagination .swiper-pagination-bullet-active {
	background: none;
	background-color: #fff;
	border: 0.2rem solid #fff;
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.mv-slider__swiper .mv-slider__pagination.swiper-pagination .swiper-pagination-bullet {
		width: 1rem;
		height: 1rem;
		margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0.3rem);
	}
}

.coming-soon{
	font-family: "Noto Serif JP", serif;
	font-size: 2.4rem;
	text-align: center;
	padding: 15rem 0;
}
@media screen and (max-width: 767px) {
	.coming-soon {
		font-size: 2rem;
		text-align: center;
		padding: 7rem 0;
		}
}
