@charset "UTF-8";

:root {
	--color-white: #fff;
	--color-black: #000;
	--color-72762c: #72762c;
	--color-c57a15: #c57a15;
	--color-f0eadb: #f0eadb;
	--color-402300: #402300;
	--color-335719: #335719;
	--color-C6574A: #C6574A;
	--color-f0f0f0: #f0f0f0;
	--color-3F3557: #3F3557;
	--font-Cantata_One: 'Cantata One', serif;
}

* {
	box-sizing: border-box;
}

body {
	font-size: 14px;
	line-height: 1.4;
}

section:nth-child(2n) {
	background: var(--color-f0f0f0);
}

@media (max-width:768px) {
	.inner {
		width: 100%;
	}
}

.fwb{
	font-weight: bold;
}

.bx_ttl {
	margin-bottom: 30px;
}

.bx_ttl > h2 {
    font-size: 22px;
	text-align: center;
}

.gallery_list{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
}

.gallery_list li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1;
}

#gallery .mv {
	position: relative;
	background: var(--color-f0f0f0);
}

#gallery .mv .inner {
	padding-top: 13px;
}

#gallery .mv .bx_ttl {
	position: absolute;
	top: 74%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--color-white);
	z-index: 10;
}

#gallery .mv .bx_ttl h1 {
	font-size: 20px;
}
#gallery .mv .bx_ttl .ttl_sub_en {
	color: var(--color-white);
	font-size: 10px;
}

#gallery .mv img {
	height: 122px;
    width: 100%;
    object-fit: cover;
}

.bali_bx iframe{
	width: 100%;
}

.desc {
    color: var(--color-402300);
}

.gallery_nav_list{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px 15px;
	margin-top: 40px;
}

.gallery_nav_list li{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	color: var(--color-72762c);
	border: 1px solid var(--color-72762c);
	background-color: var(--color-white);
}

.gallery_nav_list li::before{
	position: absolute;
    left: 50%;
	bottom: 10px;
    transform: translateX(-50%) rotate(45deg);
    content: "";
    width: 1em;
    height: 1em;
    border-right: 1px solid var(--color-72762c);
    border-bottom: 1px solid var(--color-72762c);
	z-index: 1;
}

.gallery_nav_list li a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-bottom: 15px;
}

.lightbox {
	padding-top: 30px;
}

@media (min-width:769px) {
	#gallery .mv {
		display: block;
		width: 100%;
		height: 450px;
		background: url(/paselanomori/images/gallery/mv_gallery.webp) no-repeat;
		background-size: 100% 100%;
	}

	#gallery .mv .inner {
		padding: 0;
	}

	#gallery .mv .bx_ttl {
		top: 69%;
	}

	#gallery .mv .bx_ttl h1 {
		font-size: 26px;
	}

	#gallery .mv .bx_ttl .ttl_sub_en {
		font-size: 14px;
	}

	#gallery .mv img {
		display: none;
	}

	.gallery_list{
		grid-template-columns: repeat(4,1fr);
	}

	.gallery_nav_list{
		grid-template-columns: repeat(3,1fr);
	}

	.gallery_nav .desc{
		text-align: center;
	}
}