@charset "UTF-8";

body {
	width: 100vw;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP',"Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 3.75vw;
	font-weight: 400;
	line-height: 2;
	color: #4c4a4c;
	background: #cadeda;
	overflow-x: hidden;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.025em;
}
main, section, footer {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
}
div {
	margin: 0;
	padding: 0;
}
a:hover {
	opacity: 0.85;
}
a,a:link,a:hover,a:visited{
text-decoration:none;
}
ol,
ul {
	list-style: none;
	padding-inline-start: 0;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}
.section_inner, .footer_inner {
	width: 85%;
	padding: 35vw 0 0;
	margin: 0 auto;
	position: relative;
	z-index: 2
}
.footer_inner {
	padding-top: 0;
}
p {
	font-feature-settings: "palt" 1;
	text-align: justify;
	letter-spacing: 0.025em;
}


/*----------------------------------------------- 共通 */
.main {
	overflow: hidden;
}
.flower_bk{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 25vw;
	overflow: hidden;
	pointer-events: none;
	z-index: -1;
}
.flower_bk.bottom {
	top: auto;
	bottom: 0;
}

.flower_bk__row {
	position: absolute;
	top: -20vw;
	left: 0;
	display: flex;
	gap: 0;
	transform: scaleY(-1);
	font-size: 0;
}
.flower_bk.bottom .flower_bk__row {
	transform: scaleY(1);
	bottom: -20vw;
	top: auto;
}
.flower_bk__v{
	display: block;
	height: 45vw;
	width: auto;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	margin-right: -10vw;
	margin-left: -5vw;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: url('../img/bk_texture.png');
	background-size: 200%;
	background-repeat: repeat;
	pointer-events: none;
	z-index: -1;
}


.small {
	font-size: 0.8em;
}

h2 {
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.75em;
	font-size: 1.25em;
	line-height: 1.75;
	position: relative;
	z-index: 1;
	margin: auto auto 25vw;
}
h2::after {
	content: "";
	display: block;
	width: 35vw;
	height: 30vw;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
	left: 0;
	right: 0;
	margin: auto;
	background-image: url('../img/h2_bk_01.svg');
}

.sec_img {
	display: block;
	width: 100%;
	margin: auto;
}
.sec_img img {
	display: block;
	width: 100%;
	border-radius: 5px;
}
.txt_center {
	line-height: 2.5;
	margin: 10vw auto;
}
.txt_center p {
	margin-bottom: 1em;
}
.p_t_w {
	margin-bottom: 25vw;
}

.notice {
	font-size: 0.9em;
}

.button a {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #4c4a4c;
	font-weight: 400;
	outline: 1px solid #4c4a4c;
	display: block;
	position: relative;
	max-width: 300px;
	text-align: center; 
	padding: 16px 64px;
	margin-inline: auto;
	text-decoration: none;
	cursor: pointer;
	z-index: 999;
	transition: all 0.3s;
	margin: 0 auto 7vw;
}
.button a i {
	margin-left: 5px;
}
.button a::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index:-999;
	transition: all 0.3s ease;
}
.button a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	width: 60px;
	height: 1px;
	background: #4c4a4c;
	transition: all 0.3s ease;
}
.button a:hover::after {
	animation: OutIn-Line 700ms;
	transition: all 0.3s;
}
@keyframes OutIn-Line {
	0% {
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1);
		-webkit-transform-origin: 100% 0;
		transform-origin: 100% 0
}
	50% {
		-webkit-transform: scale3d(0,1,1);
		transform: scale3d(0,1,1);
		-webkit-transform-origin: 100% 0;
		transform-origin: 100% 0
	}
	50.1% {
		-webkit-transform: scale3d(0,1,1);
		transform: scale3d(0,1,1);
		-webkit-transform-origin: 0 0;
		transform-origin: 0 0
	}
	100% {
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1);
		-webkit-transform-origin: 0 0;
		transform-origin: 0 0
	}
}
.button_arrow a {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #4c4a4c;
	font-weight: 400;
	display: block;
	position: relative;
	max-width: 180px;
	text-align: center; 
	padding: 4px 16px 4px 0;
	margin-inline: auto;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}
.button_arrow a::before {
	content: "";
	display: block;
	position: absolute;
	width: 180px;
	height: 1px;
	background: #4c4a4c;
	bottom: 0;
	transition: all 0.3s;
}
.button_arrow a::after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 1px;
	background: #333;
	rotate: 40deg;
	right: -3px;
	bottom: 10px;
	transition: all 0.3s;
}
.caption {
	font-size: 11px;
	display: block;
}
h3.h3_dot {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.25em;
	font-size: 0.7em;
	line-height: 1.75;
	position: relative;
	z-index: 1;
	margin: auto auto 10vw;
}
h3.h3_dot span {
	display: block;
	font-size: 4.5vw;
}
h3.h3_dot span.dot::before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	background-image: url('../img/dot.svg');
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 1em;
}

p.note {
	font-size: 11px;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
}

/* 目次 */
.toc{
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: auto;
	margin-bottom: 3em;
	padding: 0 16px;
}
.toc__toggle{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 44px;
	border: 0;
	border-radius: 5px;
	background: rgba(79, 147, 139, 0.35);
	color: #4c4a4c;
	letter-spacing: 0.15em;
	cursor: pointer;
}
.toc__icon{
	transition: transform 200ms ease;
	color: #1f7363;
}
.toc.is-open .toc__icon{
	transform: rotate(180deg);
}
.toc__panel{
	border-radius: 0 0 5px 5px;
	background: rgba(255, 255, 255, 0.6);
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	transition:
		max-height 420ms ease,
		opacity 240ms ease;
}
.toc__inner{
	min-height: 0;
	overflow: hidden;
	padding: 0 16px;
}
.toc.is-open .toc__panel {
	max-height: 1200px;
	opacity: 1;
	pointer-events: auto;
}

.toc.is-open .toc__inner{
	padding: 20px 30px;
}
.toc__list{
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
a.toc__link{
	display: inline-block;
	padding: 5px 0;
	text-decoration: underline;
	color: #1f7363;
	padding-left: 1.5em;
	position: relative;
}
a.toc__link::before {
	content: "●";
	color: #fff;
	position: absolute;
	left: 0;
}


.present {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	background-color: #fff;
	padding: 15vw 5vw;
	position: relative;
	border-radius: 5px;
}
.present h4 {
	font-weight: 600;
	text-align: center;
	font-size: 1.25em;
	color: #c06f99;
	margin-bottom: 7vw;
	line-height: 1.75;
}
.present strong {
	color: #c06f99;
	font-weight: 600;
	padding: 0 0.025em;
}
.pre_img {
	width: 100%;
	margin: auto;
}
.pre_img img {
	width: 100%;
}
.now_base_w {
	width: 100%;
	overflow: hidden;
}
.swiper-wrapper {
	align-items: stretch;
}
.swiper-slide {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
	box-sizing: border-box;
	height: auto !important;
}
.now_base_inner {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.swiper-slide > * {
	flex: 1 1 auto;
}
.now_base_w:hover {
	cursor: grab;
}
.now_base {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.now_base_inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.now_base_info {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.now_base_img,
.now_base_logo,
.now_base_insta {
	flex-shrink: 0;
}
.now_base_txt {
	flex-grow: 1;
}
.now_base_date,
.now_base_place,
.button_arrow {
	flex-shrink: 0;
	margin-top: auto;
}
.now_base_txt {
	margin-bottom: 1em;
}
.now_base_w .swiper-controller {
	display: flex;
	gap: 1.6rem;
	align-items: center;
	justify-content: flex-end;
	margin-top: 3.2rem;
}
.now_base_w .swiper-pagination {
	margin-right: auto;
}
.now_base_w .swiper-pagination,
.now_base_w .swiper-button-next,
.now_base_w .swiper-button-prev {
	position: static;
}
.now_base_w .swiper-pagination-bullets.swiper-pagination-horizontal {
	width: -moz-fit-content;
	width: fit-content;
}
.now_base_w .swiper-button-next,
.now_base_w .swiper-button-prev {
	border: solid 1px #4c4a4c;
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
.now_base_w .swiper-button-next::after,
.now_base_w  .swiper-button-prev::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #4c4a4c;
	font-size: 1.5rem;
}
.now_base_w  .swiper-button-next::after {
	content: '\f054';
}
.now_base_w .swiper-button-prev::after {
	content: '\f053';
}
.now_base_w  .swiper-pagination-bullet {
	width: 1rem;
	height: 3px;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	vertical-align: top;
	background-color: #fff;
	opacity: 1;
	border-radius: 0;
}
.now_base_w .swiper-pagination-bullet-active {
	width: 2.5rem;
	background-color: #4c4a4c;
}
.now_base_w {
	margin-bottom: 30vw;
}
.now_base {
	padding: 10vw 7vw 12vw;
	border: 1px solid #4c4a4c;
	margin-bottom: 10vw;
	height: 100%;
}
.now_base_date,
.now_base_place {
	line-height: 1.75;
	background-color: #a2c6bf;
	display: block;
	padding: 1em 1.5em;
}
.now_base_date {
	padding-bottom: 0.75em;
}
.now_base_place {
	margin-bottom: 7vw;
	padding-top: 0;
}
.now_base_date span::before {
	content:'\f073';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right:5px;
}
.now_base_date span,
.now_base_place span{
	display: block;
	font-weight: 700;
}
.now_base_place span::before {
	content:'\f3c5';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right:5px;
}
.now_base_img {
	width: 100%;
	margin-bottom: 7vw;
}
.now_base_img img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 5px;
}
.now_base_logo {
	margin-bottom: 5vw;
}
.now_base_logo img {
	display: block;
	width: 100%;
	max-width: 90%;
	max-height: 8vw;
	object-fit: contain;
	object-position: left;
}
.now_base_name {
	font-weight: 600;
	font-size: 1.2em;
	margin-bottom: 5px;
}
.now_base_txt {
	margin-bottom: 5vw;
	text-align: justify;
}
.now_base_insta a {
	color: #4c4a4c;
	font-size: 27px;
	line-height: 1;
	text-align: right;
	display: block;
	margin-bottom: 5vw;
}
.novelty_sns {
	display: flex;
	flex-wrap: wrap;
	width: -moz-fit-content;
	width: fit-content;
}
.novelty_sns a {
	font-size: 27px;
	color: #4c4a4c;
	line-height: 1;
	margin: 0 10px;
	height: auto;
	display: block;
}
.pre_img_w {
	margin-top: 15vw;
	position: relative;
}
.novelty_sns_w {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-top: 10vw;
}
.sns_hashtag {
	margin-top: 3vw;
}
.present::before {
	content: "";
	display: block;
	background-image: url('../img/ico_present.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 35vw;
	height: 25vw;
	position: absolute;
	top: -13vw;
	left: -5vw;
	z-index: 1;
}
.pre_img_w::before {
	content: "";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	width: 23vw;
	height: 23vw;
	position: absolute;
	top: -10vw;
	right: 0;
	z-index: 1;
}
.p_spot .pre_img_w::before {
	background-image: url('../img/ico_headcount_1.svg');
}
.p_exhibition .pre_img_w::before {
	background-image: url('../img/ico_headcount_2.svg');
}


/*----------------------------------------------- header */
header {
	position: relative;
	padding-bottom: 200px;
	padding-top: 30vw;
}
.fv {
	width: 100%;
	margin: auto;
	position: relative;
}
h1 {
	width: 70%;
	max-width: 475px;
	margin: 0 auto 10vw;
}
h1 img {
	display: block;
	width: 100%;
}
.fv_catch {
	display: block;
	margin: 0 auto 10vw;
	text-align: center;
	letter-spacing: 0.5em;
	font-weight: 600;
	height: 2em;
}
.fv_catch span {
	position: relative;
	color: #eb5e8e;
	display: inline-flex;
	width: 2em;
	height: 100%;
	justify-content: center;
}
.fv_catch span::after{
	content: "";
	display: block;
	background-color: #fff;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	align-self: center;
}
.fv_read {
	display: block;
	line-height: 3;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-feature-settings: "vpal" 1;
	margin: auto;
	font-size: 0.95em;
}
.fv_read_w {
	display: flex;
	align-items: center;
	margin: auto;
}
#spot,
#exhibition,
#airCabin,
#uniDonuts,
#seabass,
#nightflowers,
#letter,
#map{
	scroll-margin-top: 100px;
}
.scroll_container {
	margin: 0;
	padding: 0;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: absolute;
	z-index: 99;
	bottom: 3em;
	left: 3vw;
}
.scroll_container a:hover {
	opacity: 0.7;
}
.scroll-down_02 {
	position: relative;
	width: 110px;
	height: 110px;
	color: #fff;
	text-decoration: none;
}
.circle-text_02 {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: rotate 20s linear infinite;
}
.circle-text_02 span {
	position: absolute;
	left: 50%;
	font-size: 11px;
	transform-origin: 0 55px;
}
.arrow_02 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 15px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: translate(-50%, -50%) rotate(-45deg);
	animation: pulse_02 2s infinite;
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
	transform: rotate(360deg);
	}
}
@keyframes pulse_02 {
	0%,
	100% {
		transform: translate(-50%, -50%) rotate(-45deg) scale(1);
	}
		50% {
		transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
	}
}


/*----------------------------------------------- .spot */
.spot .section_inner {
	padding-bottom: 25vw;
	border-bottom: solid 1px #fff;
}
.spot_date {
	margin-bottom: 30vw;
}
.date_w {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 10vw;
}
.date_item {
	display: block;
	width: 80%;
	max-width: 315px;
	margin: 3vw auto;
}
.date_item img {
	width: 100%;
}
.spot_display .txt_center p {
	text-align: center;
}


/*----------------------------------------------- .exhibition */
.exhibition{
	padding-bottom: 25vw;
}


/*----------------------------------------------- .event*/
.event {
	background-color: #f4f0e7;
	padding-bottom: 25vw;
}
.event h2 {
	font-size: 1.15em;
	letter-spacing: 0.5em;
	margin-bottom: 20vw;
}
.event h2 .small {
	display: block;
}
.event_item {
	padding-bottom: 20vw;
	margin-bottom: 30vw;
	border-bottom: solid 1px #b8d3ce;
}
.event_item:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}
.sec_img_cap {
	display: block;
	font-size: 0.9em;
	text-align: center;
	margin-top: 0.5em;
	color: #7d7d7d;
}
.sec_img .small {
	display: block;
	text-align: center;
}
.event_txt {
	margin-top: 10vw;
}
.event_txt p {
	margin-bottom: 1em;
}
.event .button_arrow a {
	margin-right: 0;
}
.outline {
	margin: 10vw auto;
}
.ol_item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border-bottom: solid 1px #dfdcd6;
	background-color: #fff;
	margin-bottom: 8px;
}
.ol_item_t {
	color: #7d7d7d;
	background-color: #dfdcd6;
	text-align: center;
	font-weight: 600;
}
.ol_item_c {
	text-align: center;
	padding: 3vw;
	line-height: 1.85;
}
.ol_item_c.left {
	text-align: left;
}
.ol_item_c p.center {
	text-align: center;
}
.ol_item_c p{
	margin-bottom: 1em;
}
.ol_item_c span.small {
	display: block;
	line-height: 1.5;
	margin-top: 1em;
}
.ol_item strong {
	font-weight: 600;
}
.ships {
	margin: 2vw auto 3vw;
}
.ships_time::before {
	content: "●";
	margin-right: 0.25em;
	font-size: 0.6em;
	padding: 0.4em;
	vertical-align: middle;
	color: #b5b7c3;
}
.ships_time {
	text-indent: -1.25em;
	padding-left: 1.25em;
}
.ol_item_c a,
.precautions a {
	color: #b59eae;
	text-decoration: underline;
}
a.url {
	display: block;
	word-break: break-all;
	color: #b5b7c3;
}

.go_more a{
	display: block;
	text-align: center;
	color: #4c4a4c;
	background-color: #f1dce9;
	border-radius: 5px;
	font-size: 0.9em;
	line-height: 2.5;
/*	box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.15);*/
}
.go_more a i {
	color: #c06f99;
	padding-left: 1em
}


/*----------------------------------------------- footer */
footer {
	margin-top: 30vw;
	padding-bottom: 30vw;
}
.ft_logo {
	width: 17vw;
	margin: 0 auto 2em;
}
footer .novelty_sns_w {
	flex-direction: column;
	align-items: center;
}
footer .novelty_sns_w strong {
	color: #c06f99;
}
.copy {
	display: block;
	line-height: 1.25;
	text-align: center;
	margin: 9vw auto 0;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  レスポンシブ調整
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.pc,
.pc_flex {
	display: none;
}
.tb,
.tb_flex {
	display: none;
}
.sp {
	display: block;
}
.sp_flex {
	display: flex;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  掲載準備中
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
main {
	min-height: 100vh;
}

.coming_soon_img {
	width: 60%;
	max-width: 200px;
	margin: 10em auto;
}
.coming_soon_img img {
	width: 100%;
}








