/* 260212 */
@charset "utf-8";

:root {
	--pcv: / 1440 * 100vw;
	--pcp: / 1440 * 100%;
	
	--spv: / 375 * 100vw;
	--spp: / 375 * 100%;
}

/* -------------------------------------------------
	adobe fonts
------------------------------------------------- */

/*
DNP ShueiGoGinStd L
font-family: "dnp-shuei-gothic-gin-std", sans-serif;
font-weight: 400;
font-style: normal;

DNP ShueiGoGinStd M
font-family: "dnp-shuei-gothic-gin-std", sans-serif;
font-weight: 500;
font-style: normal;

Futura PT Book
font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: normal;

Futura PT Demi
font-family: "futura-pt", sans-serif;
font-weight: 600;
font-style: normal;
*/

/* -------------------------------------------------
	reset
------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	vertical-align: top;
	box-sizing: border-box;
}

html {
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	position: relative;
	font-family: "dnp-shuei-gothic-gin-std", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
}
body.modal {
	overflow: hidden;
}

p, h1, h2, h3, h4, th, td, li, dt, dd, figcaption, input, select, textarea {
	font-weight: 400;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

iframe {
	border: none;
}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	
}

ul, ol {
	list-style-type: none;
}

main {
	display: block;
}
main img {
	width: 100%;
}

@media print, screen and (min-width:768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* -------------------------------------------------
	#fv
------------------------------------------------- */

/*
.top-group {
	position: sticky;
	top: -100vh;
}
*/

#fv {
	width: 100%;
	height: 100vh;
	position: relative;
}

#fv h1 span {
	display: inline-block;
	position: absolute;
	z-index: 4;
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.8s cubic-bezier(.58,.01,.38,.95) 0.8s,
		transform 0.8s cubic-bezier(.58,.01,.38,.95) 0.8s;
}
#fv h1 img {
	width: 100%;
}
#fv h1 .logo1 {
	width: calc(268 var(--pcv));
	left: calc(224 var(--pcv));
	top: calc(50% - 6.80vw);
}
#fv h1 .logo2 {
	width: calc(239 var(--pcv));
	left: calc(211 var(--pcv));
	top: calc(50% - 3.05vw);
}

#fv .pic {
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	filter: blur(6px);
	transition:
		opacity 1.6s cubic-bezier(.58,.01,.38,.95) 0.4s,
		filter 1.6s cubic-bezier(.58,.01,.38,.95) 0.4s;
	z-index: 2;
}

#fv.on h1 span,
#fv.on .pic {
	opacity: 1;
	transform: translateY(0%);
	filter: blur(0);
}

#fv h1 .logo1 .port,
#fv h1 .logo2 .port {
	display: none;
}

@media print, screen and (min-width:768px) {
	#fv .pic {
		background: url("../img/main.webp") no-repeat center center / cover;
	}
}

@media screen and (max-width:767px) and (orientation: landscape) {
	#fv .pic {
		background: url("../img/main.webp") no-repeat center center / cover;
	}
}

@media screen and (max-width:767px) and (orientation: portrait) {
	#fv .pic {
		background: url("../img/main_sp.webp") no-repeat center center / cover;
	}
	#fv h1 .logo1 {
		width: calc(268 var(--spv));
		left: calc(53 var(--spv));
		top: calc(322 / 632 * 100%);
	}
	#fv h1 .logo2 {
		width: calc(118 var(--spv));
		left: calc(128 var(--spv));
		bottom: calc(64 var(--spv));
		top: calc(448 / 634 * 100%);
	}

	#fv h1 .logo1 .port,
	#fv h1 .logo2 .port {
		display: inline-block;
	}
	#fv h1 .logo1 .land,
	#fv h1 .logo2 .land {
		display: none;
	}
}

/* -------------------------------------------------
	#lead
------------------------------------------------- */

#lead {
	padding: 140px 0 110px;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
}
#lead .group {
}
#lead p {
	font-size: 13px;
	line-height: calc(27 / 13);
}
#lead img {
	width: 73px;
	margin-top: 63px;
}

@media screen and (max-width:767px) and (orientation: portrait) {
	#lead {
		padding: calc(160 var(--spv)) 0;
		text-align: center;
	}
	#lead p {
		font-size: calc(13 var(--spv));
		white-space: nowrap;
	}
	#lead img {
		width: calc(73 var(--spv));
		margin-top: calc(55 var(--spv));
	}
}

@media screen and (max-width:767px) and (orientation: landscape) {
	#lead {
		padding: 40px 0;
	}
}

/* -------------------------------------------------
	.scroll
------------------------------------------------- */

.scroll {
	width: 2px;
	height: 60px;
	position: absolute;
	left: calc(50% - 1px);
	bottom: 30px;
	overflow: hidden;
	z-index: 10;
	mix-blend-mode: difference;
	transition: opacity 0.2s ease-out;
}
.scroll.hidden {
	opacity: 0;
}
.scroll .bar {
	width: 100%;
	height: 100%;
	background: #fff;
	transform: translateY(-100%);
	animation: scroll 2.2s ease-out 0s infinite;
}

@keyframes scroll {
	0% { transform: translateY(-100%); opacity: 1; }
	20% { opacity: 1; }
	100% { transform: translateY(200%); opacity: 0; }
}

@media screen and (max-width:767px) {
	.scroll {
		width: 1px;
		height: 30px;
		bottom: 30px;
	}
}

/* -------------------------------------------------
	#under
------------------------------------------------- */

#under {
	position: relative;
	z-index: 20;
	background: #fff;
}
#under .side-logo {
	width: 46px;
	position: fixed;
	left: 22px;
	top: 28px;
	z-index: 50;
	opacity: 0;
	transition: opacity 0.2s ease-out;
}
#under .side-logo.on {
	opacity: 1;
}
#under .side-logo img {
	width: 100%;
}

@media screen and (max-width:767px) {
	#under {
		width: 100%;
	}
	#under .side-logo {
		width: calc(37 var(--spp));
		right: calc(10 var(--spp));
		top: calc(17 var(--spv));
		left: auto;
	}
}

/* -------------------------------------------------
	#looks
------------------------------------------------- */

#looks {
	display: flex;
	flex-wrap: wrap;
	gap: 0 0 !important;
	position: relative;
	overflow: hidden;
}
#looks .look {
	border: none;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	background: transparent;
}
#looks .look img {
	width: 100%;
	object-fit: cover;
	transform: scale(1.006);
}
#looks .look img:nth-child(2) {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
}
#looks .look.fade img:nth-child(2) {
	animation: fade1 8s ease-out 0s infinite;
	will-change: opacity;
}

@keyframes fade1 {
	0% { opacity: 0; }
	37.5% { opacity: 0; }
	50% { opacity: 1; }
	87.5% { opacity: 1; }
	100% { opacity: 0; }
}

@media print, screen and (min-width:768px) {
	#looks {
		background: #c8d6dd;
	}
	#looks .look {
		width: 33.33%;
	}
	
	/* PCでは LOOK08 と LOOK10 の位置を入れ替える 
	#looks button {
		transform-origin: center bottom;
	}
	
	#looks button[data-id="08"] { transform: translate(-100%,100%) scale(1.0007); }
	#looks button[data-id="10"] { transform: translate(100%,-100%) scale(1.0007); }
	
	/* 入れ替えた後、隙間が発生することがあるので隠す 
	#looks button[data-id="8"],
	#looks button[data-id="11"],
	#looks button[data-id="12"] {
		position: relative;
		top: -1px;
	}*/
	
	/* 最下部のボトムラインが合わないことがあるで、隠す */
	#looks::after {
		width: 100%;
		height: 2px;
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		z-index: 10;
		bottom: 0;
	}
}

@media screen and (max-width:767px) {
	#looks {
		width: 100%;
		overflow: hidden;
	}
	#looks .look {
		width: 50%;
		overflow: visible;
	}
	
	#looks .look:nth-child(2) ~ .look {
		margin-top: -1px;
	}
	
	#looks .look:nth-child(1),
	#looks .look:nth-child(2) { z-index: 2; }
	
	#looks .look:nth-child(3),
	#looks .look:nth-child(4) { z-index: 4; }
	
	#looks .look:nth-child(5),
	#looks .look:nth-child(6) { z-index: 6; }
	
	#looks .look:nth-child(7),
	#looks .look:nth-child(11) { z-index: 8; }
	
	#looks .look:nth-child(12),
	#looks .look:nth-child(13) { z-index: 10; }
	
	#looks .look:nth-child(14),
	#looks .look:nth-child(15) { z-index: 12; }
	
	#looks .look img {
		max-width: none;
		width: calc(100% + 2px);
		object-fit: cover;
	}
}

/* -------------------------------------------------
	#bottom-links
------------------------------------------------- */

#bottom-links {
	height: 85px;
	padding: 23px 43px 0 0;
	display: flex;
	justify-content: flex-end;
	gap: 0 30px;
}
#bottom-links li {
	font-size: 14px;
	letter-spacing: 0.02em;
	font-family: "Century Gothic", Avenir, Roboto, sans-serif; /* Century(Win), Avenir(Mac,iOS), Roboto(Android) */
	font-weight: 400;
}
#bottom-links li a {
	text-decoration: underline;
}

@media print, screen and (min-width:768px) {
	#bottom-links li a:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width:767px) {
	#bottom-links {
		height: calc(100 var(--spv));
		padding: calc(18 var(--spv)) calc(19 var(--spv)) 0 0;
		gap: 0 calc(18 var(--spv));
	}
	#bottom-links li {
		font-size: calc(14 var(--spv));
	}
}

/* -------------------------------------------------
	#modal
------------------------------------------------- */

#modal-base {
	width: 100%;
	height: 0;
	position: absolute;
	z-index: 100;
	left: 0;
	top: -200vh;
	background: #fff;
	opacity: 0;
}

#modal-cont {
	width: 94%;
	height: 0;
	max-width: 960px;
	position: absolute;
	left: 50%;
	top: -100vh;
	transform: translate(-50%,-50%);
	z-index: 110;
}

#modal-base,
#modal-cont {
	opacity: 0;
	margin-left: -100vw;
	transition: opacity 0.4s ease-out;
}
#modal-base.ml0 {
	margin-left: 0;
	height: calc(100vh + 200px);
}
#modal-cont.ml0 {
	margin-left: 0;
	height: auto;
}
#modal-base.op {
	opacity: 0.7;
}
#modal-cont.op {
	opacity: 1;
}

#modal-cont .col2 {
	background: #fff;
}
#modal-cont .col2.hidden {
	position: absolute;
	left: -200vw;
}

#modal-cont .slick-arrow {
	width: 40px;
	height: 60px;
	background: url("../img/arrow_01.svg") no-repeat center center / 10px auto;
	border: none;
	color: transparent;
	overflow: hidden;
	font-size: 1px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	z-index: 10;
}
#modal-cont .slick-arrow.slick-prev {
	transform: rotateY(180deg) translateY(-50%);
	left: 0;
}
#modal-cont .slick-arrow.slick-next {
	transform: translateY(-50%);
	right: 0;
}

#modal-cont .group {
	margin-left: 50px;
}
#modal-cont .title {
	width: 70px;
	height: 9px;
}
#modal-cont .title img {
	width: 100%;
}
#modal-cont .comment {
	margin-top: 20px;
	max-width: 250px;
	font-size: 12px;
	line-height: calc(22 / 12);
	text-align: justify;
}
#modal-cont .credit {
	margin-top: 27px;
}
#modal-cont .credit p {
	margin-right: 0.9em;
	font-size: 10.5px;
	line-height: calc(22 / 10);
	letter-spacing: 0.04em;
	display: inline-block;
	white-space: nowrap;
	font-family: "Century Gothic", Avenir, Roboto, sans-serif; /* Century(Win), Avenir(Mac,iOS), Roboto(Android) */
	font-weight: 400;
}
#modal-cont .credit p a {
	margin-right: 0.5em;
	text-decoration: underline;
	display: inline-block;
}

#modal-close {
	width: 17px;
	position: absolute;
	right: 20px;
	top: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
}
#modal-close img {
	width: 100%;
}

@media print, screen and (min-width:768px) {
	#modal-cont .col2 {
		display: flex;
		align-items: flex-end;
	}
	#modal-cont .col2 > div {
		width: 50%;
	}
	#modal-cont .col2 .right {
		padding-bottom: 35px;
	}
	
	#modal-cont .slick-arrow:hover,
	#modal-cont .credit p a:hover,
	#modal-close:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width:767px) {
	#modal-cont {
		width: calc(300 var(--spv));
		max-width: none;
		max-height: 90vh;
		left: calc(37.5 var(--spp));
		transform: translate(0,-50%);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	#modal-cont .slick-arrow {
		width: calc(25 var(--spv));
		height: calc(25 * 1.5 var(--spv));
		background-size: 1.86vw auto;
	}

	#modal-cont .pic {
		width: calc(300 var(--spv));
		height: calc(380 var(--spv));
		position: relative;
		overflow: hidden;
	}
	#modal-cont .pic img {
		width: 100%;
		max-width: none;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	#modal-cont .group {
		width: calc(240 var(--spv));
		margin: 0 auto;
		padding: calc(27 var(--spv)) 0 calc(20 var(--spv));
	}
	#modal-cont .title {
		width: calc(70 var(--spv));
		height: calc(9 var(--spv));
		margin: 0 auto;
	}
	#modal-cont .comment {
		margin-top: calc(15 var(--spv));
		max-width: none;
		font-size: calc(11 var(--spv));
		line-height: calc(20 / 11);
	}
	#modal-cont .credit {
		margin-top: calc(11 var(--spv));
		margin-left: 0.6vw;
	}
	#modal-cont .credit p {
		margin-right: 0.7em;
		font-size: calc(10.5 var(--spv));
		line-height: 2;
	}
	#modal-cont .credit p a {
		margin-right: 0.3em;
	}

	#modal-close {
		width: calc(17 var(--spv));
		right: calc(10 var(--spv));
		top: calc(10 var(--spv));
	}
}

/* -------------------------------------------------
	responsive
------------------------------------------------- */

@media print, screen and (min-width:768px) {
	.pc-none {
		display: none !important;
	}
}

@media screen and (max-width:767px) {
	.sp-none {
		display: none !important;
	}
}

/* -------------------------------------------------
	print
------------------------------------------------- */

@media print {
	body {
		width: 980px !important;
	}
}
