@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

/* --------- common --------- */
:root {
	--red: #E01819;
	--black: #16161A;
}
.contents {
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
}
.common-bg {
	background: url(/attending/t/vivant/images/bg_common01.svg) repeat-y left top/44.231% auto,
				var(--black);
	padding-block: 60px 24px;
}
.sec-box {
	padding: 47px 79px;
	background: url(/attending/t/vivant/images/bg_common02.svg) no-repeat right bottom/200px,
				rgb(22 22 26/.5);
	border: 1px solid rgb(255 255 255/.4);
	&+& {
		margin-top: 56px;
	}
}
.sec-ttl {
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: .1em;
	text-align: center;
	padding-top: 51px;
	background: url(/attending/t/vivant/images/LH26-023358.svg) no-repeat center top/35px;
}
.swiper-pagination {
	font-size: 10px;
	line-height: 1;
	position: static;
	margin-top: 10px;
}
.swiper-pagination-bullet {
	background: #fff;
	opacity: .4;
}
.swiper-pagination-bullet-active {
	background: #fff;
	opacity: 1;
}

/* --------- mv --------- */
.mv {
	background: url(/attending/t/vivant/images/bg_mv01.svg) no-repeat center bottom/cover,
				linear-gradient(to bottom,#0B0B0D 0%,#0B0B0D 80%,#611E1F 100%);
	padding-block: 72px 39px;
	border-bottom: 1px solid var(--red);
	position: relative;
	overflow: hidden;
}
.mv--broadcasting {
	& .mv__broadcasting-txt {
		display: block;
	}
	& .mv__txt {
		display: none;
	}
}
.mv__gallery {
	position: absolute;
	top: 0;
	top: 50%;
	translate: 0 -50%;
	height: 100%;
	max-height: 554px;
}
.mv__gallery--left {
	left: calc(50% - 1192px);
}
.mv__gallery--right {
	left: calc(50% + 454px);
	& .mv__gallery__img:nth-child(1) {
		animation-delay: 1s;
	}
	& .mv__gallery__img:nth-child(2) {
		animation-delay: 5s;
	}
	& .mv__gallery__img:nth-child(3) {
		animation-delay: 9s;
	}
	& .mv__gallery__img:nth-child(4) {
		animation-delay: 13s;
	}
}
.mv__gallery__img {
	width: auto;
	max-width: none;
	height: 100%;
	position: absolute;
	opacity: 0;
	animation: mv-gallery-fade 16s infinite;
}
.mv__gallery__img:nth-child(1) {
	animation-delay: 0s;
}
.mv__gallery__img:nth-child(2) {
	animation-delay: 4s;
}
.mv__gallery__img:nth-child(3) {
	animation-delay: 8s;
}
.mv__gallery__img:nth-child(4) {
	animation-delay: 12s;
}
@keyframes mv-gallery-fade {
	0%{
	  opacity: 0;
	}
	8%{
	  opacity: 1;
	}
	34%{
	  opacity: 1;
	}
	42%{
	  opacity: 0;
	}
	100%{
	  opacity: 0;
	}
}
.mv__inner {
	max-width: 816px;
	margin-inline: auto;
}
.mv__ttl {
	width: 600px;
	margin-inline: auto;
}
.mv__broadcasting-txt {
	display: none;
	font-size: 72px;
	font-weight: 900;
	font-feature-settings: "palt";
	line-height: 1;
	text-align: center;
	margin-top: 54px;
}
.mv__subttl {
	color: var(--red);
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: .05em;
	text-align: center;
	margin-top: 48px;
}
.mv__txt {
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
}
.mv--broadcasting .mv__subttl {
	margin-top: 20px;
}
.mv__support {
	display: flex;
	width: calc(100% - 20px);
	justify-content: end;
	align-items: center;
	gap: 4px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin-top: 16px;
}
.mv__support__logo {
	display: block;
	line-height: 1;
	padding: 13px 18px 12px 15px;
	background: #fff;
}

/* --------- sec--lead --------- */
.sec--lead__ttl {
	display: flex;
	align-items: center;
	width: fit-content;
	margin-inline: auto;
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: .1em;
	&::before,
	&::after {
		content: '';
		display: inline-block;
		width: 50px;
		height: 1px;
		background: #fff;
		margin-inline: 16px;
	}
}
.sec--lead__txt {
	font-weight: 700;
	text-align: center;
	margin-top: 32px;
}

/* --------- tab-outer --------- */
.tab-outer {
	margin-top: 56px;
}
.tab-btn-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.tab-btn {
    display: grid;
    place-items: center;
    width: 100%;
    padding: 20px;
	font-size: 2rem;
	font-weight: 900;
    text-align: center;
    border: 1px solid rgb(255 255 255/.4);
    background: rgb(22 22 26/.5);
    color: #fff;
    cursor: pointer;
	&.active {
		background: var(--red);
	}
}
.tab-content {
    display: none;
	&.active {
		display: block;
	}
}

/* --------- sec--about --------- */
.sec--about {
	display: grid;
	grid-template-columns: 42.8241% 1fr;
	align-items: center;
	gap: 48px;
	margin-top: 20px;
}
.sec--about__content {
	padding-inline: 8px;
}
.sec--about__ttl {
	background: var(--red);
	clip-path: polygon(12px 0,100% 0,calc(100% - 12px) 100%,0 100%);
	padding: 6px;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .05em;
	text-align: center;
	margin-inline: -8px;
}
.sec--about__txt {
	font-weight: 700;
	margin-top: 20px;
}
.sec--about__table {
	padding: 7px 13px;
	border: 1px solid #fff;
	margin-top: 20px;
}
.sec--about__table__items {
	display: grid;
	grid-template-columns: 85px 1fr;
	gap: 12px;
	padding-block: 6px 5px;
	border-bottom: 1px solid #555;
	&:last-child {
		border: none;
	}
}
.sec--about__table__ttl {
	display: grid;
	height: 100%;
	align-items: center;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .05em;
	border-right: 1px solid #fff;
}
.sec--about__table__txt {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .05em;
	& span {
		font-size: 1.2rem;
		letter-spacing: .05em;
	}
}

/* --------- sec--tour --------- */
.sec--tour {
	border-top: 2px solid var(--red);
	padding-top: 46px;
}
.sec--tour__comingsoon {
	color: var(--red);
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: .45em;
	text-align: center;
	padding-block: 2px;
	border-block: 2px solid var(--red);
	margin-top: 32px;
}
.sec--tour__list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-top: 32px;
}
.sec--tour__list__items__link {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	padding: 13px;
	border: 1px solid rgb(255 255 255/.7);
	border-radius: 8px;
	background: linear-gradient(to bottom,rgb(255 255 255/.3) 0%,rgb(255 255 255/.3) 20%, transparent 100%);
	transition: border-color 0.3s;
	&:hover {
		border-color: var(--red);
		& .sec--tour__list__items__content {
			opacity: 0.7;
		}
	}
}
.sec--tour__list__items__content {
	display: grid;
	grid-template-rows: auto auto 1fr;
	margin-top: 14px;
	transition: opacity 0.3s;
}
.sec--tour__list__items__ttl {
	font-weight: 700;
	line-height: 1.5;
}
.sec--tour__list__items__txt {
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: .05em;
	margin-top: 6px;
}
.sec--tour__list__items__price {
	align-self: end;
	color: var(--red);
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: .05em;
	text-align: right;
	margin-top: 20px;
}

/* --------- sec--sight --------- */
.sec--sight__place {
	margin-top: 56px;
}
.sec--sight__place__ttl {
	font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
	text-align: center;
    letter-spacing: .1em;
	&::before,
	&::after {
		content: "";
		display: inline-block;
		width: 50px;
		height: 1px;
		background: #fff;
		margin-inline: 16px;
		translate: 0 -9px;
	}
}
.sec--sight__items-badge {
	display: grid;
	place-content: center;
	width: 88px;
	height: 88px;
	background: #ffe920;
	border-radius: 50%;
	color: var(--black);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.05em;
	position: absolute;
}
.sec--sight__items:nth-of-type(-n+3) {
	padding-bottom: 39px;
	border-bottom: 1px solid rgb(255 255 255/.4);
}
.sec--sight__items:nth-of-type(n+2) {
	padding-top: 39px;
}
.sec--sight__items--highlight {
	margin-top: 32px;
}
.sec--sight__items__swiper-outer {
	position: relative;
	& .sec--sight__items-badge {
		top: 16px;
		right: -44px;
		z-index: 2;
	}
	& .sec--sight__items__img-deco {
		width: 95px;
		position: absolute;
		bottom: 0;
		right: -44px;
		z-index: 2;
	}
}
.sec--sight__items__img-col {
	display: grid;
	grid-template-columns: 57.871% 40.973%;
	gap: 10px;
}
.sec--sight__items__img-wrapper {
	position: relative;
}
.sec--sight__items__img-caption {
	color: #ffe920;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .05em;
	display: block;
	width: fit-content;
	margin: 0 auto 6px;
	&::before,&::after {
		content: '';
		display: inline-block;
		width: 16px;
		height: 1px;
		background: #ffe920;
		margin-inline: 8px;
		translate: 0 -5px;
	}
	&::before {
		rotate: 70deg;
	}
	&::after {
		rotate: -70deg;
	}
}
.sec--sight__items__img-label {
	color: var(--black);
	font-size: 1.4rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .05em;
	background: #fff;
	padding: 3px 8px;
	position: absolute;
	bottom: 23px;
	right: 0;
	z-index: 2;
}
.sec--sight__items__content {
	margin-top: 12px;
	padding-inline: 8px;
}
.sec--sight__items__content--col {
	display: grid;
	grid-template-columns: 54.482% 1fr;
	align-items: center;
	gap: 16px;
}
.sec--sight__items__ttl-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	& .sec--sight__items-badge {
		width: 64px;
        height: 64px;
        top: 0;
        left: calc(100% - 75px);
        font-size: 18px;
	}
}
.sec--sight__items__ttl-num {
	display: block;
	width: 70px;
	height: 70px;
	text-align: center;
	color: var(--red);
	background: #fff;
	border: 5px solid var(--red);
	border-radius: 50%;
	padding-top: 10px;
}
.sec--sight__items__ttl-num__ruby {
	display: block;
	font-size: 1.2rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: .05em;
}
.sec--sight__items__ttl-num__num {
	font-size: 3.2rem;
	font-weight: 800;
	font-family: 'Montserrat', sans-serif;
	font-style: italic;
	line-height: 1;
	letter-spacing: 0;
}
.sec--sight__items__ttl {
	color: var(--red);
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .05em;
}
.sec--sight__items__ttl__subttl {
	display: block;
	margin-bottom: 4px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .05em;
}
.sec--sight__items__ttl__subttl--badge {
	width: fit-content;
	background: var(--red);
	padding: 2px 16px;
	clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
}
.sec--sight__items__ttl__badge {
	display: inline-block;
	width: 91px;
	margin-left: 12px;
	translate: 0 -2px;
}
.sec--sight__items__txt {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .05em;
	margin-top: 8px;
}
.sec--sight__items__content--col__box {
	border: 1px solid #fff;
	padding: 13px 15px;
}
.sec--sight__items__content--col__box__ttl {
	color: var(--red);
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .05em;
	border-left: 3px solid var(--red);
	padding-left: 9px;
}
.sec--sight__items__content--col__box__txt {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .05em;
	margin-top: 6px;
}
.sec--sight__items-col {
	display: grid;
	grid-template-columns: repeat(2,calc(50% - 20px));
	gap: 40px;
	padding-top: 39px;
	& .sec--sight__items {
		padding: 0;
		border: 0;
		& .sec--sight__items__ttl__subttl {
			display: inline-block;
		}
		& .sec--sight__items__ttl__subttl--badge {
			margin-right: 4px;
		}
		&:first-child {
			.sec--sight__items__content:first-child {
				margin-top: 0;
			}
			.sec--sight__items__swiper {
				margin-top: 12px;
			}
		}
	}
	& .sec--sight__items__ttl__badge {
		display: block;
		margin: 0 auto 4px 0;
	}
	& + .sec--sight__items--highlight {
		margin-top: 40px;
		border-top: 1px solid rgb(255 255 255/.4);
	}
}
.tab-content--thailand .sec--sight__items-col + .sec--sight__items-col {
	margin-top: 39px;
	border-top: 1px solid rgb(255 255 255/.4);
}

/* --------- sec--gourmet --------- */
.sec--gourmet__list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 32px;
	margin-top: 32px;
}
.sec--gourmet__img-col {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 12px;
}
.sec--gourmet__items__ttl-wrapper {
	position: relative;
}
.sec--gourmet__items__ttl {
	width: fit-content;
	padding: 3px 28px 5px;
	background: var(--red);
	clip-path: polygon(12px 0,100% 0,calc(100% - 12px) 100%,0 100%);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .05em;
	position: absolute;
	bottom: 9px;
	left: -16px;
}
.sec--gourmet__items__txt {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .05em;
	margin-top: 20px;
}
.tab-content--thailand {
	& .sec--gourmet__list {
		grid-template-columns: repeat(2,1fr);
		gap: 40px;
	}
	& .sec--gourmet__items__ttl {
		position: static;
		margin-top: 20px;
	}
}

/* --------- sec--present --------- */
.sec--present__img-wrapper {
	margin-top: 32px;
}
.sec--present__img {
	display: block;
	width: 200px;
	margin-inline: auto;
}
.sec--present__img-note {
	font-size: 1.2rem;
	text-align: right;
	margin-top: 6px;
}
.sec--present__txt {
	font-size: 1.5rem;
	letter-spacing: .05em;
	margin-top: 32px;
	padding-inline: 8px;
}

/* --------- sec--check --------- */
.sec--check {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 50px;
	padding-inline: 54px;
	position: relative;
	&::after {
		content: '';
		display: block;
		width: 95px;
		height: 92px;
		background: url(/attending/t/vivant/images/img_check01.png) no-repeat center/cover;
		position: absolute;
		bottom: 0;
		right: 31px;
	}
}
.sec--check-movie__ttl span {
	display: block;
	font-size: 18px;
	margin-top: 6px;
	text-align: center;
}
.sec--check-movie__video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	margin-top: 24px;
}
.sec--check-blog__ttl__small-txt {
	font-size: 24px;
}
.sec--check-blog__item__link {
	display: grid;
	grid-template-columns: 47.223% 1fr;
	gap: 18px;
	background: #fff;
	padding: 20px 18px;
	border-radius: 12px;
	margin-top: 28px;
	align-items: center;
	position: relative;
	transition: opacity 0.3s;
	&:hover {
		opacity: 0.5;
	}
}
.sec--check-blog__item__img {
	aspect-ratio: 187/140;
	object-fit: cover;
	border-radius: 10px;
}
.sec--check-blog__item__ttl {
	color: var(--red);
	font-size: 1.7rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .05em;
	border-left: 4px solid var(--red);
	padding-left: 8px;
}
.sec--check-blog__item__txt {
	color: #333;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .05em;
	margin-top: 8px;
}
.sec--check-blog__item__ico {
	display: block;
	width: 18px;
	height: 18px;
	background: var(--black);
	border-radius: 50%;
	position: absolute;
	bottom: 10px;
	right: 10px;
	&::before {
		content: '';
		display: block;
		width: 6px;
		height: 7px;
		background: #fff;
		clip-path: polygon(0 0,100% 50%,0 100%);
		position: absolute;
		inset: 0;
		margin: auto;
		translate: 1px;
	}
}
.sec--check-blog__note {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .05em;
	margin-top: 8px;
}

/* --------- bottom-txt --------- */
.bottom-txt {
	font-size: 5rem;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: .32em;
	text-align: center;
	margin-top: 100px;
}

/* --------- btn-to-tour --------- */
.btn-to-tour {
	display: none;
	opacity: 0;
	width: 100px;
	height: 100px;
	background: var(--red);
	border: 3px solid var(--red);
	border-radius: 50%;
	color: var(--black);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .08em;
	text-align: center;
	padding-top: 28px;
	position: fixed;
	right: 15px;
	bottom: 108px;
	z-index: 10;
	transition: opacity 0.3s,
				display 0.3s allow-discrete,
				background-color 0.3s,
				color 0.3s;
	&:hover {
		background: var(--black);
		color: var(--red);
		& .btn-to-tour__ico {
			background: var(--red);
		}
	}
	&.active {
		display: block;
		opacity: 1;
	}
}
@starting-style {
	.btn-to-tour.active {
		opacity: 0;
	}
}
.btn-to-tour__ico {
	display: block;
	width: 10px;
	height: 9px;
	background: var(--black);
	clip-path: polygon(0 0,100% 0,50% 100%);
	margin: 11px auto 0;
	transition: background-color 0.3s;
}
