@charset "utf-8";



/* st-Header
-----------------------------------*/
.st-Header {
	height: 0;
	position: fixed;
	z-index: 9999;
}

.st-Header_Logo {
	display: none;
}

@media only screen and (min-width: 768px) {
	.st-Header {
		height: 0;
	}

	.st-Header_PcNav {
		display: none;
		margin: 0;
	}
}

@media only screen and (min-width: 1024px) {
	.st-Header_PcNav {
		text-align: left;
		display: block;
		position: absolute;
		/* top: 7px; */
		left: 75px;
		z-index: 1001;
	}
}



/* sw-PageIntro
-----------------------------------*/
.sw-PageIntro {
	height: calc(100vh - 75px);
	min-height: 540px;
	margin-bottom: 0px;
}

.sw-PageIntro .logo,
.sw-PageIntro .convNav,
.sw-PageIntro .message {
	position: absolute;
	z-index: 1001;
}

.sw-PageIntro .logo {
	text-align: center;
	width: 100%;
	top: 39%;
}

.sw-PageIntro .logo img {
	width: 152px;
	margin-right: 23px;
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
	background-color: rgba(255, 255, 255, 0.7);
}

.sw-PageIntro .message {
	color: #fff;
	font-size: 93%;
	letter-spacing: .4em;
	/* text-shadow: 0 0 5px #34494A; */
	text-shadow: 1px 1px 0 #000000, -1px -1px 0 #647778, -1px 1px 0 #647778, 1px -1px 0 #5f8586, 0px 1px 0 #34494A, 0 -1px 0 #735325, -1px 0 0 #735325, 1px 0 0 #735325;
	text-align: center;
	width: 100%;
	top: 52%;
}

.sw-PageIntro .message span {
	display: block;
}

.sw-PageIntro .convNav {
	display: block;
	top: 10px;
	right: 5px;
}

.sw-PageIntro .convNav li a {
	font-size: 85%;
}

.sw-PageIntro .slick-list,
.sw-PageIntro .slick-track {
	height: 100%;
}

.sw-PageIntro .slick-slide {
	height: 100% !important;
}

.sw-PageIntro .slides {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all ease 3s;
	transition: all ease 3s;
}

.sw-PageIntro .slides.slick-initialized {
	opacity: 1;
}

.sw-PageIntro .slides:before {
	content: "";
	width: 100%;
	height: 40px;
	background-image: url("../img/bg_home_01.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: 0 0;
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 1001;
}

/* ▼　20220908_2本線削除 */
/* .sw-PageIntro .slides:after{
	content: "";
	width: 8px;
	height: 70px;
	border: 1px solid #fff;
	border-bottom: none;
	border-top: none;
	display: inline-block;
	margin: 0 auto;
	position: absolute;
	top: 65%;
	right: 0;
	left: 0;
	z-index: 1001;
	opacity: .7;
} */
.sw-PageIntro .slides .item {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.sw-PageIntro .slides .item div {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.sw-PageIntro .slides .item.slick-current {
	outline: none;
}

.sw-PageIntro .slides .item-transform div {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	background-position: center;
}

.sw-PageIntro .slides .item-transform.slick-current div {
	-webkit-animation: anime 6s ease;
	animation: anime 6s ease;
}

.sw-PageIntro .slides .item-scroll div {
	background-position: 100% center;
}

.sw-PageIntro .slides .item-scroll.slick-current div {
	-webkit-animation: animescroll 9s ease;
	animation: animescroll 9s ease;
}

.sw-PageIntro .slides .item-scroll_2 div {
	background-position: 25% center;
}

.sw-PageIntro .slides .item-scroll_2.slick-current div {
	-webkit-animation: animescroll_2 9s ease-out;
	animation: animescroll_2 9s ease;
}
/* spのtopのslide一枚目画像のため追加20240118 */
.sw-PageIntro .slides .item-scroll_3 div {
	background-position:25% center;
}

.sw-PageIntro .slides .item-scroll_3.slick-current div {
	-webkit-animation: animescroll_2 9s ease-out;
	animation: animescroll_2 9s ease-out;
	animation-direction: reverse;/* 逆方向に動く */
}
/* spのtopのslide一枚目画像のため追加20240118 */

.sw-PageIntro .logo {
	text-align: center;
	width: 100%;
	top: 44%;
}

@-webkit-keyframes anime {
	0% {
		-webkit-transform: scale(1.5);
		transform: scale(1.3);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes anime {
	0% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes animescroll {
	0% {
		background-position: 5% center;
	}

	100% {
		background-position: 100% center;
	}
}

@keyframes animescroll {
	0% {
		background-position: 5% center;
	}

	100% {
		background-position: 100% center;
	}
}

@-webkit-keyframes animescroll_2 {
	0% {
		background-position: 100% center;
	}

	100% {
		background-position: 25% center;
	}
}

@keyframes animescroll_2 {
	0% {
		background-position: 100% center;
	}

	100% {
		background-position: 25% center;
	}
}

.animescroll_2 {
	animation-direction: reverse;
	animation-fill-mode: forwards;
}

.sw-PageIntro .slides .item-01 div {
	background-image: url("../img/bg_slider_sp_01.jpg?20250107");
}

.sw-PageIntro .slides .item-02 div {
	background-image: url("../img/bg_slider_sp_02.jpg?20250107");
}

.sw-PageIntro .slides .item-03 div {
	background-image: url("../img/bg_slider_sp_03.jpg?20250107");
}

.sw-PageIntro .slides .item-04 div {
	background-image: url("../img/bg_slider_sp_04.jpg?20250107");
}

.sw-PageIntro .slides .item-05 div {
	background-image: url("../img/bg_slider_sp_05.jpg?20250107");
}

.sw-PageIntro .slides .item-06 div {
	background-image: url("../img/bg_slider_sp_06.jpg?20250107");
}

.sw-PageIntro .slides .item-07 div {
	background-image: url("../img/bg_slider_sp_07.jpg?20250107");
}

.sw-PageIntro .slick-dots {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 83%;
}

.sw-PageIntro .slick-dots li {
	display: inline-block;
}

.sw-PageIntro .slick-dots li+li {
	margin-left: 20px;
}

.sw-PageIntro .slick-dots li button {
	text-indent: -9999px;
	width: 12px;
	height: 12px;
	background: none;
	border: 1px solid #434853;
	border: 1px solid #efdf99;
	background-color:#efdf99;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 100%;
	padding: 0;
	cursor: pointer;
	outline: none;
	opacity: .6;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.sw-PageIntro .slick-dots li.slick-active button {
	opacity: 1;
}

/* 動画バナー20251015 */

/* 動画コンテナの基本設定 */
.video-section {
	background-color: #F0F8F8;
}
.video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto; 
    background-color: #F0F8F8;
    
    /* 共通設定: 子要素をコンテナの全領域に配置 */
    display: block; /* video-pc/video-sp が block 要素であることを保証 */
}

/* 動画要素自体のスタイル（共通） */
.target-video {
    width: 100%;
    height: 100%;
    /* object-fit: contain; を維持 */
    object-fit: contain; 
}

/* ============================== */
/* PC版スタイル (1024px以上) */
/* ============================== */
@media (min-width: 1024px) {
    .video-section {
        /* PC版の余白設定 */
        padding: 50px 0; /* 上下50px、左右0 */
        margin: 0;
    }
		.video-container {
        max-width: 600px;
        aspect-ratio: 16 / 9; /* PC: 16:9 の縦横比 */
    }
    
    /* PCではSP動画を非表示 */
    .video-sp {
        display: none;
    }
    /* PC動画を表示 */
    .video-pc {
        display: block;
    }
}

/* ============================== */
/* SP版スタイル (1023px以下) */
/* ============================== */
@media (max-width: 1023px) {
    .video-section {
        /* ★修正箇所: SP版の余白設定（上下20px、左右15px） */
        padding: 30px 20px; 
        margin: 0;
    }
		.video-container {
        max-width: 100%; 
        aspect-ratio: 9 / 16; /* SP: 9:16 の縦横比 */
    }
    
    /* SPではPC動画を非表示 */
    .video-pc {
        display: none;
    }
    /* SP動画を表示 */
    .video-sp {
        display: block;
    }
}

@media only screen and (min-width: 768px) {
	.sw-PageIntro {
		height: 100vh;
		min-height: 780px;
	}

	.sw-PageIntro .logo {
		top: 40%;
	}

	.sw-PageIntro .logo img {
		width: 288px;
		-webkit-transform: translateX(15px);
		transform: translateX(15px);
	}

	.sw-PageIntro .message {
		font-size: 138.5%;
		top: 50%;
	}

	.sw-PageIntro .convNav {
		top: 15px;
		right: 15px;
	}

	.sw-PageIntro .slides .item-01 div {
		background-image: url("../img/bg_slider_pc_01.jpg?20250107");
	}

	.sw-PageIntro .slides .item-02 div {
		background-image: url("../img/bg_slider_pc_02.jpg?20250107");
	}

	.sw-PageIntro .slides .item-03 div {
		background-image: url("../img/bg_slider_pc_03.jpg?20250107");
	}

	.sw-PageIntro .slides .item-04 div {
		background-image: url("../img/bg_slider_pc_04.jpg?20250107");
	}

	.sw-PageIntro .slides .item-05 div {
		background-image: url("../img/bg_slider_pc_05.jpg?20250107");
	}

	.sw-PageIntro .slides .item-06 div {
		background-image: url("../img/bg_slider_pc_06.jpg?20250107");
	}

	.sw-PageIntro .slides .item-07 div {
		background-image: url("../img/bg_slider_pc_07.jpg?20250107");
	}

	.sw-PageIntro .slides:before {
		height: 90px;
	}

	/* ▼　20220908_2本線削除 */
	/* .sw-PageIntro .slides:after{
		height: 13%;
		top: 62%;
	} */
	.sw-PageIntro .slick-dots li button:hover {
		opacity: 1;
	}
}

@media only screen and (min-width: 1024px) {
	.sw-PageIntro .slides:before {
		height: 120px;
	}
}



/* home-NewYear
-----------------------------------*/
.home-NewYear {
	max-width: 860px;
	margin: 60px auto 0;
}

.home-NewYear .box {
	border: 1px solid #434853;
	padding: 30px 15px 45px;
	margin: 0 25px;
}

.home-NewYear h2 {
	color: #34494A;
	text-align: center;
}

.home-NewYear h2 .en {
	font-size: 184%;
}

.home-NewYear h2 .ja {
	font-size: 123.1%;
}

.home-NewYear h3 {
	font-size: 123.1%;
	text-align: center;
	margin-top: 10px;
}

.home-NewYear p {
	margin-top: 10px;
}

@media only screen and (min-width: 768px) {
	.home-NewYear {
		margin: 75px auto 0;
	}

	.home-NewYear .box {
		padding: 30px 30px 45px;
	}
}

@media only screen and (min-width: 1024px) {
	.home-NewYear {
		margin: 90px auto 0;
	}

	.home-NewYear .box {
		padding: 30px 60px 60px;
	}

	.home-NewYear h2 .en {
		font-size: 276.9%;
	}

	.home-NewYear h2 .ja {
		font-size: 156.8%;
	}

	.home-NewYear h3 {
		font-size: 153.8%;
	}
}

/* home-bestprice
-----------------------------------*/
.home-bestprice{
	margin: 0 auto;
	background:#F0F8F8;
	padding: 20px 20px 0;
}
.home-bestprice img{
	/* width:30%; */
	display: block;
	margin: 0 auto; /* ← 中央揃えのポイント */
}
@media only screen and (min-width: 1024px) {
	.home-bestprice{
		margin: 0 auto;
		background:#F0F8F8;
		padding: 50px 20px 0;
	}
	.home-bestprice img{
		width:30%;
	}
	.home-plan .view_all_btn,.home-Movie .view_all_btn{
		margin-top: 60px;
	}
	.subtitle {
		margin-top: -15px;
	}
	.st-Footer_Map .subtitle{
	margin-top: 0;
}
}
.subtitle{
    text-align: center;
    font-size: 14px;
    font-family: 'Crimson Text', serif;
	margin-top: -10px;
}
.access-area .subtitle{
	margin-top: 0px;
}
/* home-Media
-----------------------------------*/
.home-Media {
	max-width: 800px;
	padding: 0 15px 15px;
	margin: 60px auto 0;
}

.home-Media h2 {
	color: #34494A;
	font-size: 123.1%;
	line-height: 1.8;
	text-align: center;
}

.home-Media .bnr a img {
	width: 100%;
	height: auto;
}

.home-Media .bnr {
	margin-top: 15px;
}

.home-Media .bnr .pc {
	display: none;
}

.home-Media .bnr .sp {
	display: block;
}

.home-Media .btn {
	margin-top: 15px;
}

.home-Media .btn a {
	color: #34494A;
	font-size: 108%;
	text-align: center;
	line-height: 40px;
	width: 100%;
	border: 1px solid #34494A;
	display: block;
	margin: 0 auto;
	cursor: pointer;
}

.home-Media .btn a+a {
	margin-top: 10px;
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1024px) {
	.home-Media {
		margin: 166px auto 0;
	}

	.home-Media h2 {
		font-size: 216%;
	}

	.home-Media .bnr .pc {
		display: block;
	}

	.home-Media .bnr .sp {
		display: none;
	}

	.home-Media .btn {
		margin-top: 30px;
	}

	.home-Media .btn a {
		font-size: 123.1%;
		line-height: 45px;
		-webkit-transition: all .6s ease;
		transition: all .6s ease;
	}

	.home-Media .btn a:hover {
		color: #fff;
		background: #34494A;
	}
}



/* home-BnrSlider
-----------------------------------*/
.home-BnrSlider {
	margin: 45px auto 0;
}

.home-BnrSlider h2 {
	color: #34494A;
	font-size: 184%;
	text-align: center;
}

.home-BnrSlider .slides {
	margin-top: 15px;
}

.home-BnrSlider .slides .item {
	list-style: none;
	margin: 0 8px;
	opacity: 0;
}

.home-BnrSlider .slides .item img {
	width: 100%;
	height: auto;
}

.home-BnrSlider .slides .item .movie {
	width: 100%;
	padding-top: 68.38%;
	height: 0px;
	position: relative;
}

.home-BnrSlider .slides .item .movie iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
}

.home-BnrSlider .slides.slick-initialized li {
	opacity: 1;
}

.home-BnrSlider .slides .item.slick-current {
	outline: none;
}

.home-BnrSlider .slick-dots {
	text-align: center;
	margin-top: 20px;
}

.home-BnrSlider .slick-dots li {
	display: inline-block;
}

.home-BnrSlider .slick-dots li+li {
	margin-left: 10px;
}

.home-BnrSlider .slick-dots li button {
	text-indent: -9999px;
	width: 4px;
	height: 4px;
	border: none;
	background: #434853;
	border-radius: 100%;
	padding: 0;
	cursor: pointer;
	outline: none;
	opacity: .3;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.home-BnrSlider .slick-dots li.slick-active button {
	opacity: 1;
}

.home-BnrSlider .slick-arrow {
	text-indent: -9999px;
	cursor: pointer;
	outline: none;
	width: 40px;
	height: 40px;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0 center;
	padding: 0;
	position: absolute;
	bottom: 0;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.home-BnrSlider .slick-prev {
	background-image: url("../../asset/img/prev_nav.png");
	left: 35px;
}

.home-BnrSlider .slick-next {
	background-image: url("../../asset/img/next_nav.png");
	right: 35px;
}

@media only screen and (min-width: 768px) {
	.home-BnrSlider {
		max-width: 1400px;
		padding: 0;
		margin: 120px auto 0;
	}

	.home-BnrSlider h2 {
		font-size: 307%;
	}

	.home-BnrSlider .slides {
		margin-top: 25px;
	}

	.home-BnrSlider .slides .item {
		margin: 0 20px;
	}

	.home-BnrSlider .slides .item a {
		display: inline-block;
	}

	.home-BnrSlider .slides .item a:hover {
		opacity: .7;
	}

	.home-BnrSlider .slides .slick-current img {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.home-BnrSlider .slick-dots {
		margin-top: 40px;
	}

	.home-BnrSlider .slick-dots li+li {
		margin-left: 20px;
	}

	.home-BnrSlider .slick-dots li button {
		width: 6px;
		height: 6px;
		cursor: pointer;
		-webkit-transition: all ease .4s;
		transition: all ease .4s;
	}

	.home-BnrSlider .slick-dots li button:hover {
		opacity: .15;
	}

	.home-BnrSlider .slick-dots .slick-active button:hover {
		opacity: .5;
	}

	.home-BnrSlider .slick-prev {
		left: 20px;
	}

	.home-BnrSlider .slick-next {
		right: 20px;
	}

	.home-BnrSlider .slick-prev,
	.home-BnrSlider .slick-next {
		-webkit-transition: all ease .4s;
		transition: all ease .4s;
	}

	.home-BnrSlider .slick-prev:hover,
	.home-BnrSlider .slick-next:hover {
		opacity: .5;
	}
}

@media only screen and (min-width: 1024px) {
	.home-BnrSlider .slick-arrow {
		width: 60px;
	}

	.home-BnrSlider .slick-prev {
		left: 50%;
		margin-left: -300px;
	}

	.home-BnrSlider .slick-next {
		right: auto;
		left: 50%;
		margin-left: 240px;
	}
}



/* home-Intro
-----------------------------------*/
.home-Intro {
	margin: 95px auto 0;
}

.home-Intro h2 {
	color: #34494A;
	font-size: 138.5%;
	line-height: 1.8;
	letter-spacing: .1em;
	text-align: center;
	position: relative;
}

.home-Intro h2:before {
	content: "";
	width: 90px;
	height: 29px;
	background-image: url("../img/ico_home_01.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0 0;
	margin-left: -45px;
	position: absolute;
	top: -50px;
	left: 50%;
}

.home-Intro p {
	color: #777;
	font-size: 93%;
	line-height: 2;
	text-align: center;
	margin-top: 15px;
}

.home-Intro .sw-Btn {
	margin-top: 15px;
}

@media only screen and (min-width: 768px) {
	.home-Intro {
		margin: 250px auto 0;
	}

	.home-Intro h2 {
		font-size: 160%;
	}

	.home-Intro h2:before {
		width: 140px;
		height: 46px;
		margin-left: -31px;
		top: -90px;
	}

	.home-Intro p {
		font-size: 110%;
		margin: 50px auto;
	}

	.home-Intro .sw-Btn {
		margin-top: 50px;
	}
}

@media only screen and (min-width: 1024px) {}



/* home-Location
-----------------------------------*/
.home-Location {
	background-image: url("../../asset/img/bg_common_01.png");
	background-position: 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 80px;
	margin: 60px auto 0;
	position: relative;
}

.home-Location:before {
	content: "";
	width: 100%;
	height: 250px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 150px, rgba(255, 255, 255, 0) 100%);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.home-Location .image {
	text-align: center;
	width: 74.6%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.home-Location .image img {
	max-width: 600px;
	width: 75%;
	height: auto;
}

.home-Location .inner {
	position: relative;
	z-index: 2;
}

.home-Location .comment {
	margin-top: 55px;
}

.home-Location h2 {
	color: #34494A;
	font-size: 138.5%;
	line-height: 1.8;
	letter-spacing: .1em;
	text-align: center;
}

.home-Location p {
	color: #777;
	font-size: 93%;
	line-height: 2.2;
	text-align: center;
	margin-top: 15px;
}

.home-Location p+p {
	margin-top: 25px;
}

.home-Location .link {
	margin-top: 15px;
}

.home-Location .link .sw-Btn+.sw-Btn {
	margin-top: 20px;
}

@media only screen and (min-width: 768px) {
	.home-Location {
		margin: 140px auto 0;
	}

	.home-Location h2 {
		font-size: 160%;
	}

	.home-Location p {
		font-size: 110%;
		margin-top: 50px;
	}
}

@media only screen and (min-width: 1024px) {
	.home-Location {
		padding-bottom: 160px;
	}

	.home-Location .inner {
		max-width: 1280px;
		padding: 0 15px;
		margin: 0 auto;
	}

	.home-Location .image,
	.home-Location .comment {
		width: 50%;
		float: left;
	}

	.home-Location .comment {
		xmargin-top: 270px;
	}

	.home-Location .link {
		margin-top: 50px;
	}
}



/* home-Fair
-----------------------------------*/
.home-Fair {
	margin: 60px auto 0;
}

.home-Fair>h2 {
	color: #34494A;
	font-size: 153.9%;
	text-align: center;
}

.home-Fair .slides .item {
	list-style: none;
	padding-top: 15px;
	margin: 0 8px;
	position: relative;
}

.home-Fair .slides .item:before {
	color: #fff;
	font-size: 93%;
	line-height: 30px;
	content: "PICKUP FAIR";
	background-color: #34494A;
	padding: 0 1.5em;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.home-Fair .slides .item a {
	display: block;
}

.home-Fair .slides .item .thumb {
	width: 100%;
	height: 0;
	border-bottom: 3px solid #34494A;
	padding-top: 60%;
	overflow: hidden;
	position: relative;
}

.home-Fair .slides .item .thumb img {
	width: 100%;
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.home-Fair .slides .item .comment {
	margin-top: 15px;
}

.home-Fair .slides .item .title {
	font-size: 123.1%;
	line-height: 1.6;
}

.home-Fair .slides .item .category {
	margin-top: 5px;
}

.home-Fair .slides .item .category span {
	color: #333;
	text-align: center;
	background-color: #f0f0f0;
	padding: 2px 1.5em;
	margin: 5px 5px 0 0;
	display: inline-block;
}

.home-Fair .slick-dots {
	text-align: center;
	margin-top: 30px;
}

.home-Fair .slick-dots li {
	display: inline-block;
}

.home-Fair .slick-dots li+li {
	margin-left: 10px;
}

.home-Fair .slick-dots li button {
	text-indent: -9999px;
	width: 4px;
	height: 4px;
	border: none;
	background: #434853;
	border-radius: 100%;
	padding: 0;
	cursor: pointer;
	outline: none;
	opacity: .3;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.home-Fair .slick-dots li.slick-active button {
	opacity: 1;
}

.home-Fair .slides .item.slick-current {
	outline: none;
}

.home-Fair .slick-arrow {
	text-indent: -9999px;
	cursor: pointer;
	outline: none;
	width: 40px;
	height: 40px;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0 center;
	padding: 0;
	position: absolute;
	bottom: 0;
	z-index: 999;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.home-Fair .slick-prev {
	background-image: url("../../asset/img/prev_nav.png");
	left: 36px;
}

.home-Fair .slick-next {
	background-image: url("../../asset/img/next_nav.png");
	right: 36px;
}

.home-Fair .sw-Btn {
	margin-top: 15px;
}

@media only screen and (min-width: 374px) {
	.home-Fair>h2 {
		font-size: 184%;
	}
}

@media only screen and (min-width: 768px) {
	.home-Fair {
		max-width: 1400px;
		margin: 160px auto 0;
	}

	.home-Fair>h2 {
		font-size: 307%;
	}

	.home-Fair .slides {
		margin-top: 25px;
	}

	.home-Fair .slides .item {
		margin: 0 20px;
	}

	.home-Fair .slides .item a:hover {
		opacity: .7;
	}

	.home-Fair .slides .slick-current img {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.home-Fair .slick-prev {
		left: 20px;
	}

	.home-Fair .slick-next {
		right: 20px;
	}

	.home-Fair .slick-prev,
	.home-Fair .slick-next {
		-webkit-transition: all ease .4s;
		transition: all ease .4s;
	}

	.home-Fair .slick-prev:hover,
	.home-Fair .slick-next:hover {
		opacity: .5;
	}
}

@media only screen and (min-width: 1024px) {
	.home-Fair .slides .item .title {
		font-size: 138.5%;
	}

	.home-Fair .slides .item .category span {
		background-color: #f9f9f9;
	}

	.home-Fair .slick-arrow {
		width: 60px;
	}

	.home-Fair .slick-prev {
		left: 50%;
		margin-left: -300px;
	}

	.home-Fair .slick-next {
		right: auto;
		left: 50%;
		margin-left: 240px;
	}

	.home-Fair .sw-Btn {
		margin-top: 60px;
	}
}


/* home-MainContents
-----------------------------------*/
.home-MainContents {
	background-position: 0 0;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 0;
}

.home-MainContents h2 {
	font-size: 153.9%;
	text-align: center;
}

.home-MainContents h3 {
	font-size: 116%;
	letter-spacing: .1em;
	text-align: center;
	margin-top: 3px;
}

.home-MainContents .box {
	margin: 35px 13.3% 0;
}

.home-MainContents .box+.box {
	margin-top: 40px;
}

.home-MainContents .box a {
	color: #fff;
	text-align: center;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	display: table;
}

.home-MainContents .box a:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #34494A;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all ease .4s;
	transition: all ease .4s;
	opacity: .25;
}

.home-MainContents .box a:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	min-height: 260px;
}

.home-MainContents .box a .comment {
	padding: 35px 0;
	display: table-cell;
	vertical-align: middle;
}

.home-MainContents .box a h4,
.home-MainContents .box a p,
.home-MainContents .box a .btn {
	position: relative;
	z-index: 2;
}

.home-MainContents .box a h4 {
	font-size: 153.9%;
	text-align: center;
}

.home-MainContents .box a p {
	font-size: 108%;
	margin-top: 5px;
}

.home-MainContents .box a .sw-Btn {
	margin-top: 15px;
}

.home-MainContents-dramatic {
	background-color: #34494A;
	background-image: url("../../asset/img/bg_common_01.png");
	margin: 80px auto 0;
}

.home-MainContents-dramatic h2,
.home-MainContents-dramatic h3 {
	color: #fff;
}

.home-MainContents-dramatic .chapel a {
	background-image: url("../img/img_home_02.jpg");
}

.home-MainContents-dramatic .banquet a {
	background-image: url("../img/img_home_03.jpg");
}

.home-MainContents-best {
	background-image: url("../../asset/img/bg_common_01.png");
	margin: 0 auto;
}

.home-MainContents-best h2,
.home-MainContents-best h3 {
	color: #34494A;
}

.home-MainContents-best .cuisine a {
	background-image: url("../img/img_home_04.jpg");
}

.home-MainContents-best .dress a {
	background-image: url("../img/img_home_05.jpg");
}

@media only screen and (min-width: 374px) {
	.home-MainContents h2 {
		font-size: 184%;
	}

	.home-MainContents h3 {
		font-size: 131%;
	}
}

@media only screen and (max-width: 768px) {
	.home-MainContents .box a:before {
		opacity: .6;
	}
}

@media only screen and (min-width: 768px) {
	.home-MainContents {
		padding: 180px 0;
		margin-top: 160px;
	}

	.home-MainContents h2 {
		font-size: 307%;
	}

	.home-MainContents h3 {
		font-size: 215%;
	}

	.home-MainContents .inner {
		max-width: 1280px;
		margin: 70px auto 0;
	}

	.home-MainContents .box {
		width: 50%;
		margin: 0;
		float: left;
	}

	.home-MainContents .box a:after {
		min-height: 600px;
	}

	.home-MainContents .box a:hover:before {
		opacity: .7;
	}

	.home-MainContents .box a h4 {
		font-size: 246%;
	}

	.home-MainContents .box a p {
		font-size: 138.5%;
		margin-top: 20px;
	}

	.home-MainContents .box a .sw-Btn {
		margin-top: 55px;
	}

	.home-MainContents .box:nth-child(even) {
		margin-top: 100px;
	}

	.home-MainContents-best {
		margin-top: 0;
	}
}

@media only screen and (min-width: 1024px) {
	.home-MainContents .box a:after {
		min-height: 800px;
	}

	.home-MainContents .box a .comment {
		padding: 90px 0;
	}
}



/* home-Contents
-----------------------------------*/
.home-Contents {
	margin: 70px auto -15px;
}

.home-Contents h2 {
	color: #34494A;
	font-size: 153.9%;
	text-align: center;
}

.home-Contents ul {
	padding: 0;
	padding: 0 30px;
	margin: 25px auto 0;
}

.home-Contents ul li {
	list-style: none;
	width: 46%;
	border-radius: 100%;
	overflow: hidden;
	margin-bottom: 15px;
	float: left;
}

.home-Contents ul li:nth-child(even) {
	float: right;
}

.home-Contents ul li a {
	color: #fff;
	font-size: 93%;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 0;
	padding-top: 100%;
	position: relative;
	display: block;
}

.home-Contents ul .report a {
	background-image: url("../img/bg_home_02.jpg");
}

.home-Contents ul .plan a {
	background-image: url("../img/bg_home_03.jpg");
}

.home-Contents ul .ceremony a {
	background-image: url("../img/bg_home_04.jpg");
}

.home-Contents ul .recruit a {
	background-image: url("../img/bg_home_05.jpg");
}

.home-Contents ul .guests a {
	background-image: url("../img/bg_home_06.jpg");
}

.home-Contents ul .line a {
	background-image: url("../img/bg_home_07.jpg");
}

.home-Contents ul .party a {
	background-image: url("../img/bg_home_08.jpg");
}
.home-Contents ul .column a {
	background-image: url("../img/bg_home_09.jpg");
}

.home-Contents ul li a:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #34494A;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .25;
	-webkit-transition: all ease .4s;
	transition: all ease .4s;
}

.home-Contents ul li a .layout {
	line-height: 1.8;
	margin: auto;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.home-Contents ul li a .en {
	font-size: 123.1%;
}

@media only screen and (min-width: 374px) {
	.home-Contents h2 {
		font-size: 184%;
	}
}

@media only screen and (min-width: 768px) {
	.home-Contents {
		max-width: 860px;
		margin: 160px auto -50px;
	}

	.home-Contents h2 {
		font-size: 307%;
	}

	.home-Contents ul {
		margin: 45px auto 0;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.home-Contents ul li {
		max-width: 180px;
		width: 22.5%;
		margin: 4px 4.416% 50px;
		float: left !important;
	}

	.home-Contents ul li a {
		font-size: 123.1%;
	}

	.home-Contents ul li a:hover:before {
		opacity: .7;
	}
}

@media only screen and (min-width: 1024px) {}



/* home-Movie
-----------------------------------*/
.home-Movie {
	margin: 60px auto 0;
}

.home-Movie>h2 {
	color: #34494A;
	font-size: 153.9%;
	text-align: center;
}

.home-Movie .movie {
	width: 100%;
	padding-top: 56.25%;
	height: 0px;
	position: relative;
}

.home-Movie .movie iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
}

.home-Movie .slides .item {
	list-style: none;
	padding-top: 15px;
	margin: 0 8px;
	position: relative;
}

.home-Movie .slides .item a {
	display: block;
}

.home-Movie .slides .item .thumb {
	width: 100%;
	height: 0;
	border-bottom: 3px solid #34494A;
	padding-top: 60%;
	overflow: hidden;
	position: relative;
}

.home-Movie .slides .item .thumb img {
	width: 100%;
	height: auto;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.home-Movie .slides .item .comment {
	margin-top: 15px;
}

.home-Movie .slides .item .title {
	font-size: 123.1%;
	line-height: 1.6;
}

.home-Movie .slides .item .category {
	margin-top: 5px;
}

.home-Movie .slides .item .category span {
	color: #34494A;
	text-align: center;
	background-color: #D2E8E7;
	padding: 2px 1.5em;
	margin: 5px 5px 0 0;
	display: inline-block;
}

.home-Movie .slick-dots {
	text-align: center;
	margin-top: 30px;
}

.home-Movie .slick-dots li {
	display: inline-block;
}

.home-Movie .slick-dots li+li {
	margin-left: 10px;
}

.home-Movie .slick-dots li button {
	text-indent: -9999px;
	width: 4px;
	height: 4px;
	border: none;
	background: #434853;
	border-radius: 100%;
	padding: 0;
	cursor: pointer;
	outline: none;
	opacity: .3;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.home-Movie .slick-dots li.slick-active button {
	opacity: 1;
}

.home-Movie .slides .item.slick-current {
	outline: none;
}

.home-Movie .slick-arrow {
	text-indent: -9999px;
	cursor: pointer;
	outline: none;
	width: 40px;
	height: 40px;
	border: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0 center;
	padding: 0;
	position: absolute;
	bottom: 0;
	z-index: 999;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

.home-Movie .slick-prev {
	background-image: url("../../asset/img/prev_nav.png");
	left: 36px;
}

.home-Movie .slick-next {
	background-image: url("../../asset/img/next_nav.png");
	right: 36px;
}

.home-Movie .sw-Btn {
	margin-top: 15px;
}

video.top_movie {
	width: 100%;
}

@media only screen and (min-width: 374px) {
	.home-Movie>h2 {
		font-size: 184%;
	}
}

@media only screen and (min-width: 768px) {
	.home-Movie {
		max-width: 1400px;
		margin: 160px auto 0;
	}

	.home-Movie>h2 {
		font-size: 307%;
	}

	.home-Movie .slides {
		margin-top: 25px;
	}

	.home-Movie .slides .item {
		margin: 0 20px;
	}

	.home-Movie .slides .item a:hover {
		opacity: .7;
	}

	.home-Movie .slides .slick-current img {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.home-Movie .slick-prev {
		left: 20px;
	}

	.home-Movie .slick-next {
		right: 20px;
	}

	.home-Movie .slick-prev,
	.home-Movie .slick-next {
		-webkit-transition: all ease .4s;
		transition: all ease .4s;
	}

	.home-Movie .slick-prev:hover,
	.home-Movie .slick-next:hover {
		opacity: .5;
	}
}

@media only screen and (min-width: 1024px) {
	.home-Movie .slides .item .title {
		font-size: 138.5%;
	}

	.home-Movie .slides .item .category span {
		background-color: #D2E8E7;
	}

	.home-Movie .slick-arrow {
		width: 60px;
	}

	.home-Movie .slick-prev {
		left: 50%;
		margin-left: -300px;
	}

	.home-Movie .slick-next {
		right: auto;
		left: 50%;
		margin-left: 240px;
	}

	.home-Movie .sw-Btn {
		margin-top: 60px;
	}

	video.top_movie {
		width: 100%;
	}
}

/* sw-Insta
-----------------------------------*/
.sw-Insta {
	margin-top: 80px;
}

@media only screen and (min-width: 768px) {
	.sw-Insta {
		margin-top: 120px;
	}
}

@media only screen and (min-width: 1024px) {
	.sw-Insta {
		margin-top: 160px;
	}
}

/* 20230510追加 */
.imgWrap_with_filter {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

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

/* 20230816追加 */
.attention {
	text-align: center;
	margin: 80px;
}

/* ------------年末年始のおしらせ----------- */
.aka_back{
    background: #366c89;
    color: #FFF;
    margin-bottom: 10px;
    border-radius: 2px;
    
}

.aka_wall{
    max-width: 800px;
    border: 1px dashed #063a56;
    padding: 15px;
    margin: 0px auto;
    font-size:90%;
    line-height: 1.8;
    color: #333;
}

/* ------------20241205 よくある質問------------ */
.faq-Contents {
    padding: 0 20px;
    margin: 80px auto 0;
}

.faq-Contents .inner+.inner {
    margin-top: 40px;
}

.faq-Contents .inner h3 {
    color: #34494A;
    font-size: 138.5%;
    padding-left: 10px;
}

.faq-inner {
    margin-bottom: 50px;
}

.faq-Contents .box {
    margin-top: 5px;
}

.faq-Contents .box+.box {
    margin-top: 25px;
}

.faq-Contents .box h4 {
    color: #777;
    font-size: 108%;
    text-indent: -1.25em;
    border-bottom: 1px solid #d3d5dd;
    padding: 0 10px 2px 2em;
    margin-bottom: 10px;
}

.faq-Contents .box h4 span {
    font-size: 90%;
}

.faq-Contents .box p {
    margin: 0 10px;
}

.st-Content-few_people .sw-Gnav {
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .faq-Contents {
        max-width: 1280px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 45px auto 100px;
    }

    .faq-Contents .inner+.inner {
        margin-top: 60px;
    }

    .faq-Contents .inner h3 {
        font-size: 184%;
    }

    .faq-Contents .box {
        margin-top: 10px;
    }

    .faq-Contents .box+.box {
        margin-top: 30px;
    }

    .faq-Contents .box h4 {
        font-size: 123.1%;
    }
}

@media only screen and (min-width: 1024px) {
    .faq-Contents .inner+.inner {
        margin-top: 80px;
    }

    .faq-Contents .inner h3 {
        font-size: 215%;
    }

    .faq-Contents .box {
        margin-top: 15px;
    }

    .faq-Contents .box+.box {
        margin-top: 35px;
    }

    .faq-Contents .box h4 {
        font-size: 153.8%;
    }
}

/* 20250116 しきたりについて */
.tradition-inner {
	margin-top: 10px;
}
.tradition-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.tradition-list_item {
	margin-top: 20px;
	width: 100%;
}
.tradition-list_item_inner{
	display: flex;
	flex-direction: column;
	border: 1px solid #9CBBB9;
	padding: 20px 20px 10px;
	height: 100%;
}
.tradition-inner .tradition_number {
	text-align: center;
	color: #9CBBB9;
	font-size: 215%;
	line-height: 1.2;
}
.tradition-inner .tradition_title {
	text-align: center;
	color: #34494A;
	margin-bottom: 20px;
	font-size: 215%;
}
.tradition_text {
	text-align: center;
	color: #777777;
	flex-grow: 1;
}
@media only screen and (min-width: 768px) {
	.tradition-inner {
		margin-top: 80px;
	}
	.tradition-list_item {
		width: calc((100% - 90px) / 4);
	}
}

/* 20250220 スムーススクロールの提案 */
@media screen and (max-width: 768px) {
    .sp-scroll-btn a{
        bottom: 110px;
    }
}

/* 20250220 「プラン」コンテンツ設置 */
.home-plan{
	margin: 60px auto 0;
}
.home-plan>h2 {
	color: #34494A;
	font-size: 153.9%;
	text-align: center;
}
.plan-item-list{
	/* display: flex; */
	max-width: 1100px;
	margin: 20px auto 0;
}
/* .plan-item-list > li{
	width: calc(96%/3);
	margin-right: 2%;
} */

/* 20260513 「プラン」スライダー設置 */
.home-plan .slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.home-plan .slick-list {
    margin: 0 -10px;
}

/* 20260513 「プラン」スライダー、Prev、Nextボタン */
.home-plan {
    position: relative;
}

.home-plan .slick-prev,
.home-plan .slick-next {
	background-color: rgb(52, 73, 74) !important;
	opacity: .9;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	z-index: 9999;
	text-indent: 0 !important;
	position: absolute;
	top: 25%;
	transform: translateY(-25%);
	font-weight: bold;
}

.home-plan .slick-prev:hover,
.home-plan .slick-next:hover {
	opacity: 1;
}

.plan-item-list > li:last-child{
	margin-right: 0;
}
.plan-item-list .plan-ttl{
	font-size: 16px;
	padding-bottom: 7px;
}
.plan-item-list .plan-comment {
	font-size: 15px;
}
.plan-item-list .paln-tag{
	display: inline-block;
	background-color: #9CBBBA;
	color: #fff;
	margin: 1em 0;
	padding: 0 5px;
	margin-bottom: 5px;
}
.plan-item-list .plan-np{
	display: block;
	font-size: 14px;
}
.plan-item-list .price-np {
	font-size: 16px;
	display: block;
}
.plan-item-list .price-np::before {
	content: url(https://baliterrace-coco.com/plan/img/huma_icon.png);
	vertical-align: middle;
	display: inline-block;
	transform: scale(0.5);
}
.plan-item-list .price-usual {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
}
.plan-item-list .plan-price {
	display: flex;
	font-size: 18px;
	align-items: baseline;
}
.plan-item-list .pp-num {
	font-size: 37px;
	padding-right: 5px;
	line-height: 0;
}
.plan-item-list .present-mark {
	background-color: #577574;
	color: #fff;
	padding: 14px 29px;
	text-align: center;
	outline: 1px solid #fff;
	outline-offset: -4px;
	margin-top: 15px;
	width: 50%;
}
.sw-Btn-top{
	margin-top: 60px;
}
@media only screen and (min-width: 768px) {
.home-plan {
	max-width: 1400px;
	margin: 160px auto 0;
}
.home-plan>h2 {
	font-size: 307%;
}
}
@media only screen and (max-width: 768px) {
.home-plan {
	margin: 30px auto 0;
	padding: 0 10px;
	font-size: 16px;
}
.plan-item-list{
	display: block;
}
.plan-item-list > li{
	width: 100%;
	margin-bottom: 30px;
}
.plan-item-list .plan-comment {
	font-size: 16px;
}
.plan-item-list .pp-num {
	font-size: 26px;
}
.plan-item-list .price-np {
	font-size: 15px;
	display: inline-block;
	line-height: 0;
	padding-top: 13px;
}
.sw-Btn-top {
	margin-top: 20px;
}
}