@charset "UTF-8";
html{scroll-behavior: smooth;}
html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
  font-family:
    "Noto Serif TC",
    "Noto Serif SC",
    "Noto Sans TC",
    "Noto Sans SC",
    serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
}

.noto-serif-sc-<uniquifier> {
  font-family: "Noto Serif SC", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto-sans-sc-<uniquifier> {
  font-family: "Noto Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* アニメーション用の基本スタイル */
.animation {
	opacity: 0;
	transition: all 0.8s ease;
}

/* 左からフェードイン */
.animation.fade-left {
	transform: translateX(-100px);
}

.animation.fade-left.active {
	opacity: 1;
	transform: translateX(0);
}

/* 右からフェードイン */
.animation.fade-right {
	transform: translateX(100px);
}

.animation.fade-right.active {
	opacity: 1;
	transform: translateX(0);
}


/* default */

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font:99% arial,helvetica,clean,sans-serif;}
pre,code,kbd,samp{font-family:monospace;*font-size:108%;line-height:100%;}
.aligncenter{text-align:center;}
figure{padding:0;margin:0;}
img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

a{text-decoration: none;color:#000;transition: all .25s ease;}
a:hover{}

*{box-sizing:border-box;}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.flex{
	display:flex;
	justify-content:space-between;
}

@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .foo { color: red } /* IE11 */
}

@media all and (-ms-high-contrast:none){
  .foo { color: green } /* IE10〜Edge */
}


/* layout ---------------------------------------*/

.content{
	max-width:480px;
	margin:0 auto;
	overflow-x: hidden; /* 追加 */
}

.pc-bg{display: none;}

.wrapper{}

.pc-read-txt{
	position: absolute;
	top: 60px;
	right: -80px;
	z-index: 200;
}

/* header ---------------------------------------*/

header{position: relative;}

.header-inner{
	background-color: #185640;
	padding: 23px 0 22px;
}
.header-inner img{
	display: block;
	margin: 0 auto;
	width: 100px;
}

/* kv ---------------------------------------*/

.kv-wrapper{
	position: relative;
	/*height: 100vh;*/
}

.kv-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ふすま全体 */
.fusuma-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 10;
}

/* 左右共通 */
.fusuma-left,
.fusuma-right {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* ふすま初期状態 */
.fusuma-left {
  background-image: url("../img/fusuma_left.png");
  transform-origin: left center;
  transform: translateX(0);
}
.fusuma-right {
  background-image: url("../img/fusuma_right.png");
  transform-origin: right center;
  transform: translateX(0);
}

/* クラス付与時にアニメーション開始 */
.fusuma-left.is-active {
  animation: fusumaLeft 2s ease-in-out forwards;
}
.fusuma-right.is-active {
  animation: fusumaRight 2s ease-in-out forwards;
}

/* 開いて止まる */
@keyframes fusumaLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes fusumaRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* 背景（ふすまの奥） */
.kv {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* message */
.message{
	background-color: #185640;
	position: relative;
	z-index: 3;
}
.message-title{
	font-size: 23px;
	color: #fff;
	padding: 45px 0 49px 105px;
	line-height: 1.2em;
}
.message-title small{
	display: block;
	font-size: 7px;
	line-height: 1em;
	margin: 7px 0 0 0;
	letter-spacing: -0.04em;
}
span.quote-start {
  margin-left: -0.2em; 
}
span.quote-end {
  margin-right: -0.2em;
}

.message-img-left{
	position: absolute;
	top: 33px;
	left: 0;
	width: 95px;
}
.message-img-right{
	position: absolute;
	top: 33px;
	right: 18px;
	width: 75px;
}

/* coupon */
.coupon{
	background-color: #fff;
	position: relative;
}
.coupon-inner{
	padding: 76px 0 69px;
}
.coupon-title{
	padding-bottom: 25px;
}
.coupon-title h3{
	font-size: 33px;
	font-weight: bold;
	color: #185640;
	text-align: center;
	letter-spacing: 0.07em;
	margin-bottom: 12px;
}
.coupon-title p{
	font-size: 15px;
	text-align: center;
}
.coupon-item{
	background-color: #185640;
	padding: 30px 0;
}
.coupon-item img{}

.coupon-txt{}
.coupon-txt p{
	font-size: 10px;
	padding: 12px 0 20px 25px;
	line-height: 1.56em;
}

/* movie */
.movie{
	position: relative;
}
.movie-inner{
	background-color: #000;
	padding: 22px 0 50px;
}
.movie-title{
	padding: 0px 0 20px;
}
.movie-title h3{
	color: #917a33;
	font-size: 23px;
	font-weight: 900;
	text-align: center;
}
.movie-img-left{
	position: absolute;
	bottom: -83px;
	left: 0;
	width: 200px;
}
.movie-img-right{
	position: absolute;
	top: -133px;
	right: 0;
	width: 193px;
}
.movie-video{position: relative;}
.movie-video video{
	display: block;
	width: 95%;
	margin: 0 auto;
}

/* features */
.features{
	background:url(../img/bg_features.jpg) repeat-y top center;
	background-size: 100%;
}
.features-inner{
	padding: 87px 0 19px;
}
.features-store-btn{
	width: 204px;
	border: 2px solid #185741;
	border-radius: 50px;
	background: #fff;
	text-align: center;
	display: block;
	margin: 0 auto;
	transition: all .25s ease;
}
.features-store-btn:hover{opacity: 0.7;}
.features-store-btn a{
	font-size: 20px;
	font-weight: 600;
	line-height: 50px;
	color: #185741;
	width: 100%;
	display: block;
}
.features-store-btn a:after{
	content: "";
	display: inline-block;
	width: 16px;
	height: 13px;
	margin-left: 13px;
	background: url(../img/icon_store_btn.png) no-repeat top center;
	background-size: contain;
	pointer-events: none;
}
.features-main{
	padding: 47px 0 0;
}
.features-main h3{
	color: #185741;
	font-size: 31px;
	font-weight: 900;
	text-align: center;
}
.features-main-item{
	padding: 22px 0 0;
}
.features-main-item-list{
}
.features-main-item-list li{
	width: 92%;
	box-sizing: border-box;
	padding: 10px 20px 26px;
	display: block;
	margin: 0 auto 31px;
	position: relative;
	background-color: #fff;
	border-top: 2px solid #185741;
}
.features-main-item-list li img{
	width: 100%;
}
.features-main-item-list li h4{
	font-size: 25px;
	text-align: left;
	color: #185741;
	font-weight: bold;
	padding: 2px 0 19px 70px;
	letter-spacing: -0.01em;
}
/* .features-main-item-list li:nth-child(4) h4{padding: 14px 0 28px 70px;}
.features-main-item-list li:nth-child(5) h4{padding: 28px 0 44px 70px;} */
.features-main-item-list li p{
	font-size: 13px;
	line-height: 1.5em;
	font-family: "Noto Sans SC", sans-serif;
}
.features-main-item-list li img{
	padding-bottom: 17px;
}
.features-main-item-list li .features-main-item-list-icon{
	position: absolute;
	top: -12px;
	left: 20px;
	width: 50px;
}
.features-main-item-list li .features-main-item-list-icon img{width: 100%;}

/* store */
#store{
	margin-top: -50px;
	padding-top: 50px;
}
.store{margin-bottom: 80px;}
.store-inner{}
.store-title{
	position: relative;
	padding: 94px 0 62px;
}
.store-title h3{
	font-size: 31px;
	font-weight: bold;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #185741;
	padding-left: 124px;
	line-height: 1.2em;
}
.store-title img{}
.store-title .store-img-left{
	position: absolute;
	top: -35px;
	left: 0;
	width: 104px;
}
.store-title .store-img-right{
	position: absolute;
	bottom: -15px;
	right: 18px;
	width: 186px;
}
.store-area{margin-bottom: 70px;}
.store-area-item{
	padding: 23px 15px 23px;
	border-bottom: 1px solid #185640;
}
.store-area-item.last{
	border-bottom: none;
	margin-bottom: 51px;
}
.store-area-item-title{
	text-align: center;
	border-bottom: 3px solid #185640;
	margin: 30px 0 10px;
}
.store-area-item-title span{
	color: #fff;
	display: inline-block;
	background-color: #185640;
	padding: 4px 47px;
	font-size: 15px;
	font-weight: bold;
}
.store-area-item-title span.other{
	padding: 4px 64px;
}
.store-area-item-flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 5px;
}
.store-area-item-flex-img{
	width: 150px;
}
.store-area-item-flex-txt{
	width: calc(100% - 160px);
}
.store-area-item-flex-txt strong{
	font-size: 10px;
	color: #185640;
	border: 1px solid #185640;
	padding: 1px 4px;
	line-height: 1em;
	position: relative;
	top: -4px;
}
.store-area-item-flex-txt h5{
	font-size: 18px;
	color: #185640;
	font-weight: bold;
	margin-bottom: 6px;
}
.store-area-item-flex-txt p{
	font-size: 13px;
}
.store-area-item a{
	font-size: 13px;
}

.store-duty-free-btn {
	width: 286px;
	border: 2px solid #185741;
	border-radius: 50px;
	background: #fff;
	text-align: center;
	display: block;
	margin: 0 auto;
	transition: all .25s ease;
}
.store-duty-free-btn a {
	font-size: 17px;
	font-weight: 500;
	line-height: 50px;
	color: #185741;
	width: 100%;
	display: block;
}
.store-duty-free-btn a:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 13px;
	margin-left: 13px;
	background: url(../img/icon_duty-free_btn.png) no-repeat top center;
	background-size: contain;
	transition: all .25s ease;
}
.store-duty-free-btn:hover{opacity: 0.7;}
.store-area-map-link{
  margin: 7px 0 0;
}
.store-area-map-link a{}


/* footer ---------------------------------------*/

footer{
	background: #00ab82;
	color: #fff;
	padding: 14.5vw 0vw 6vw;
}

.footer-inner{
	position:relative;
	text-align: center;
}

.footer-sns{
	padding: 0vw 11vw 1vw;
}

.footer-sns-title{
	font-size: 15px;
	font-weight: bold;
	text-align: left;
	width: 50%;
}


/* pc */
@media screen and (min-width: 494px){

	.sp{display: none !important;}
	.spbr{display: none;}

	.pc{display: block !important;}
	.pcbr{display: block;}

	/* bg ---------------------------------------*/

	.pc-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 0; /* 一時的に0にして見えるか確認 */
	display: block;
	}


	/* header ---------------------------------------*/

	.wrapper{
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	.content{
		width: 45vw;
		height: 100vh;
		margin: 0 auto;
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 10;
		min-width: 675px;
		background: #fff;
		position: relative;
		max-width: fit-content;
	}

	header{
	}

	.header-inner{
		position: relative;
		z-index: 11;
		padding: 35px 0 35px;
	}
	.header-inner img{
		width: 180px;
	}
	.message-title {
		font-size: 40px;
		color: #fff;
		padding: 70px 0 80px 13.5vw;
		line-height: 1.4em;
		letter-spacing: 0;
	}
	.message-title small {
		display: block;
		font-size: 14px;
		line-height: 1em;
		margin: 7px 0 0 0;
		letter-spacing: -0.04em;
	}
	.message-img-right {
		position: absolute;
		top: 45px;
		right: 8px;
		width: 128px;
	}
	.coupon-title h3 {
		font-size: 48px;
	}
	.coupon-title p {
		font-size: 20px;
	}
	.coupon-txt p {
		font-size: 15px;
		padding: 23px 0 30px 30px;
		line-height: 1.56em;
		letter-spacing: 0;
	}
	.movie-img-right {
    position: absolute;
    top: -173px;
    right: 0;
    width: 270px;
	}
	.message-img-left {
    position: absolute;
    top: 43px;
    left: 0;
    width: 160px;
	}
	.movie-inner {
    background-color: #000;
    padding: 42px 0 70px;
	}
	.movie-title h3 {
    color: #917a33;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
	}
	.movie-img-left {
    position: absolute;
    bottom: -133px;
    left: 0;
    width: 300px;
	}
  .movie-img-right {
		position: absolute;
		top: -213px;
		right: 0;
		width: 320px;
  }
	.features-inner {
    padding: 140px 0 62px;
	}
	.features-store-btn {
    width: 324px;
    border: 2px solid #185741;
    border-radius: 60px;
    background: #fff;
    text-align: center;
    display: block;
    margin: 0 auto;
    transition: all .25s ease;
	}
	.features-store-btn a {
    font-size: 24px;
    font-weight: 600;
    line-height: 56px;
    color: #185741;
    width: 100%;
    display: block;
	}
	.features-store-btn a:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 13px;
    margin-left: 16px;
    background: url(../img/icon_store_btn.png) no-repeat top center;
    background-size: contain;
    pointer-events: none;
	}
	.features-main {
    padding: 80px 0 0;
	}
	.features-main h3 {
    color: #185741;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
	}
	.features-main-item-list li .features-main-item-list-icon {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 75px;
	}
	.features-main-item-list li h4 {
    font-size: 29px;
    text-align: left;
    color: #185741;
    font-weight: bold;
    padding: 4px 0 22px 95px;
    letter-spacing: 0;
    line-height: 1.44em;
	}
	.features-main-item-list li img {
    padding-bottom: 23px;
	}
	.features-main-item-list li p {
    font-size: 17px;
    line-height: 1.6em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
	}
	.features-main-item-list li {
    width: 92%;
    box-sizing: border-box;
    padding: 20px 20px 30px;
    display: block;
    margin: 0 auto 60px;
    position: relative;
    background-color: #fff;
    border-top: 2px solid #185741;
	}
	.store-title .store-img-left {
    position: absolute;
    top: -65px;
    left: 0;
    width: 160px;
	}
	.store-title h3 {
    font-size: 46px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #185741;
    padding-left: 0;
    line-height: 1.2em;
	}
	.store-title .store-img-right {
    position: absolute;
    bottom: -13px;
    right: 10px;
    width: 244px;
	}
	.store-area-item-title span {
    color: #fff;
    display: inline-block;
    background-color: #185640;
    padding: 6px 50px;
    font-size: 22px;
    font-weight: bold;
	}
	.store-area-item-flex-img {
    width: 230px;
	}
	.store-area-item-flex-txt {
    width: calc(100% - 260px);
	}
	.store-area-item-flex-txt strong {
    font-size: 12px;
    color: #185640;
    border: 1px solid #185640;
    padding: 3px 3px 3px;
    line-height: 1em;
    position: relative;
    top: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    display: block;
    width: 150px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 5px;
	}
	.store-area-item-flex-txt h5 {
    font-size: 26px;
    color: #185640;
    font-weight: bold;
    margin-bottom: 12px;
	}
	.store-area-item-flex-txt-strong {
    margin-bottom: 15px;
	}
	.store-area-item-flex-txt p {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.3em;
	}
	.store-area-map-link {
    margin: 15px 0 0;
	}
	.store-area-item a {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
	}
	.store-duty-free-btn a {
    font-size: 26px;
    font-weight: 400;
    line-height: 66px;
    color: #185741;
	}
	.store-duty-free-btn {width: 384px;}
	.store-duty-free-btn a:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 16px;
    margin-left: 13px;
    background: url(../img/icon_duty-free_btn.png) no-repeat top center;
    background-size: contain;
    transition: all .25s ease;
	}
	#store{
    margin-top: -100px;
    padding-top: 100px;
	}
	.movie-title {
    padding: 0px 0 35px;
	}

}
