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

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300,400;500;700&display=swap');

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

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--color-primary: #222;
	--color-gray-light: #f5f5f5;
	--color-light-gray: #ccc;
	--color-gray: #666;
	--color-red: #d7073a;
	--color-blue: #57c3ea;
	--color-light-blue: #86d6f3;
	--color-mizuiro: #b6e6fe;
	--color-navy: #0063b0;
	--color-light-navy: #accce5;
	--color-green: #00b4bb;
	--color-yellow: #fff26f;
	--bg-light-blue: #f1f8ff;
	--bg-light-navy: #e2f0ff;
	--font-nontserrat: "Montserrat", sans-serif;

	/* ヒーロー高さ：1920×960比率 ただし 画面高(100svh)を上限にする */
	--heroH: min(calc((960 / 1920) * 100vw), 100svh);
}

html {
	overflow: auto;
	scroll-behavior: smooth;
}

body {
	color: var(--color-primary);
	font-size: 1em;
	font-family:'Roboto','Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	letter-spacing: 1px;
	overflow-wrap: anywhere;
	line-break: strict;
	position: relative;
	z-index: 0;
	display: flex;
	flex-flow: column;
	background-image: url('../images/common/back-g.png');
	background-attachment: fixed;
	background-repeat: repeat;
	background-position: center top;
	height: 100%;
	min-height: 100vh;
	background-color: #fff;
}

body::before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../images/common/edge-l.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: auto 100%;
	pointer-events: none;
	z-index: -1;
	mix-blend-mode: multiply;
}

body::after {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../images/common/edge_r.png');
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto 100%;
	pointer-events: none;
	z-index: -1;
	mix-blend-mode: multiply;
}

img {
	max-width: 100%;
	height: auto;
}

a:hover img {
	opacity: 0.85;
	filter: alpha(opacity=85);
	-ms-filter: "alpha(opacity=85)";
}

a:link {
	color: var(--color-purple);
	text-decoration: none;
	transition-property: all;
	transition: 0.2s linear;
	border-style: none;
}

a:visited {
	color: var(--color-purple);
}

a:hover {
	color: var(--color-purple);
	text-decoration: underline;
}

section {
	margin: 0;
	padding: 0;
}

h1 {
	width: 100%;
	max-width: 300px;
	margin: 0;
}

.container {
	width: 92%;
	max-width: 1200px;
	margin: auto;
}

.container1350 {
	width: 92%;
	max-width: 1350px;
	margin: auto;
}

.container1500 {
	width: 92%;
	max-width: 1500px;
	margin: auto;
}

.container1000 {
	width: 92%;
	max-width: 1000px;
	margin: auto;
}


/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(10px);
	padding-top: 10px;
	padding-right: 2%;
	padding-left: 2%;
	height: 90px;
	opacity: 0; /* JS読み込み前のちらつき防止：GSAPが制御 */
	background-color: rgba(0, 98, 176, 0.85);
	z-index: 1000;
}

/* SP：JSアニメーション無効のため最初から表示 */
@media (max-width: 640px) {
	.header {
		opacity: 1;
	}
}


.h1_mov {
	width: 30%;
	text-align: left;
	opacity: 1;
	position: absolute;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}

 
.h1_logo {
	width: 120px;
	margin: 10px 0 0;
}


h1 {
	color: #fff;
	font-size: 0.8em;
	line-height: 1.4em;
	margin: 20px 0 0 20px;
	letter-spacing: 1px;
	font-weight: 400;
}


h1 a:link,
h1 a:visited {
	color: #fff !important;
}

h1 a:hover {
	text-decoration: none;
}

/* ヘッダーメニュー */
.header_menu {
	text-align: center;
    transition: .6s;
    opacity: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	margin: 15px 0 0 auto;
	width: 70%;
}

ul.main_menu {
	display: flex;
	margin: 20px 50px 0 0;
	padding: 0;
	justify-content: flex-end;
}

ul.main_menu li {
	font-size: 1em;
	line-height: 1.2em;
	font-family: var(--font-poppins);
	font-weight: 500;
	list-style: none;
	margin: 0 50px 0 0;
	padding: 0;
}

ul.main_menu li a {
	color: #fff;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

ul.main_menu li a .txt_default,
ul.main_menu li a .txt_hover {
	display: block;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

ul.main_menu li a .txt_hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--color-mizuiro);
	transform: translateY(110%) rotateX(-45deg);
	transform-origin: top center;
}

ul.main_menu li a:hover .txt_default {
	transform: translateY(-110%) rotateX(45deg);
	transform-origin: bottom center;
}

ul.main_menu li a:hover .txt_hover {
	transform: translateY(0) rotateX(0deg);
}

ul.main_menu li:last-child {
	margin: 0;
}



/* Slide 1 / Hero */
#slide1 {
	position: relative;
	width: 100%;
	height: var(--heroH);
	overflow: hidden;
}

/* スライドショーコンテナ */
#slide1 > div:first-child {
	position: relative;
	width: 100%;
	height: 100%;
}

/* figureスタイル */
#slide1 > div:first-child figure {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	overflow: hidden;
}

/* アクティブなfigure */
#slide1 > div:first-child figure.active {
	opacity: 1;
	z-index: 1;
}

/* 画像スタイル */
#slide1 > div:first-child figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* キャプションスタイル */
#slide1 > div:first-child figure figcaption {
	color: #fff;
	font-size: 0.75rem;
	line-height: 1;
	position: absolute;
	right: 15px;
	bottom: 15px;
}


/* テキストコンテンツを中央配置 */
#slide1 .slide1_txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	text-align: center;
	width: 90%;
	max-width: 1200px;
}

#slide1 h1 {
	color: #fff;
	font-size: clamp(2.5rem, 6vw, 6rem);
	line-height: 1.2;
	text-align: center;
	margin: calc((-32 / 1920) * 100vw) auto calc((-32 / 1920) * 100vw);
	white-space: nowrap;
	font-weight: 700;
	text-shadow: 0 calc((5 / 1920) * 100vw) calc((10 / 1920) * 100vw) rgba(0, 0, 0, 0.15), 0 calc((1 / 1920) * 100vw) calc((2 / 1920) * 100vw) rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: calc((978 / 1920) * 100vw);
	display: flex;
	justify-content: center;
	align-items: center;
}
#slide1 h1 path {
	opacity: 0;
}

#slide1 .sub_en {
	color: #fff;
	font-size: calc((28.8 / 1920) * 100vw);
	letter-spacing: calc((6.4 / 1920) * 100vw);
	text-align: center;
	margin: calc((8 / 1920) * 100vw) 0 0;
	opacity: 0;
}
#slide1 .sub_title {
	color: #fff;
	font-size: calc((30.4 / 1920) * 100vw);
	line-height: 1.5;
	text-align: center;
	font-weight: 500;
	margin: 0 0 calc((32 / 1920) * 100vw) 0;
	text-shadow: 0 calc((2 / 1920) * 100vw) calc((4 / 1920) * 100vw) rgba(0, 0, 0, 0.2), 0 calc((1 / 1920) * 100vw) calc((2 / 1920) * 100vw) rgba(0, 0, 0, 0.1);
	opacity: 0;
}
.hero_details {
	text-align: center;
	margin-top: calc((128 / 1920) * 100vw);
	opacity: 0;
}

.hero_details img {
	width: calc((509 / 1920) * 100vw);
	height: auto;
}

/* p 設定 */
.p_01 {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: left;
	margin: 0 0 20px;
}

.p_01_center {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: center;
	margin: -20px 0 40px;
}

.p_01_s {
	font-size: 0.85rem;
	line-height: 1.8;
	text-align: left;
	margin: 0 0 20px;
}

.p_02 {
	font-size: 0.95rem;
	line-height: 2;
	text-align: left;
	margin: 0 0 20px;
}

.p_notes {
	font-size: 0.8rem;
	line-height: 1.6;
	margin: 0 0 5px;
	color: #888;
}

.note_wrap {
	background-color: #fbfbfb;
	padding: 15px;
	border: thin solid #ddd;
	margin: 30px 0 0;
}

.note_line {
	display: inline-block;
	width: 2rem;
	height: 1px;
	background-color: #999;
	vertical-align: middle;
	margin: 0 0.5rem;
}

/* Slide 2 コンセプト */
#slide2 {
	padding: 0 5% 100px;
	position: relative;
}

.bg_title {
	text-align: center;
	margin: 0 auto;
	opacity: 0.3;
}

#slide2 h2 {
	font-size: 2.2rem;
	line-height: 1.6;
	margin: 80px 0 50px;
	background: linear-gradient(135deg, #57c3ea 0%, #0063b0 33%, #57c3ea 66%, #c3f0fd 100%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

#slide2 p {
	font-size: 1.05rem;
	line-height: 2.2;
	margin: 0 0 15px;
}


/* Slide 3 ニュース */
#slide3 {
	margin: 0;
	padding: 0 0 100px;
	position: relative;
	z-index: 200;
}

.section_title_en {
	color: var(--color-blue);
	font-size: 3.5rem;
	line-height: 1.5;
	text-align: center;
	font-family: var(--font-nontserrat);
	font-weight: 800;
	transform: scale(0.95, 1);
	margin: 0;
	padding-top: 50px;
}

.section_title_en .jp {
	font-size: 2.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	display: inline-block;
	vertical-align: middle;
	margin-top: -10px;
	transform: scale(0.92, 1);
	margin-left: -18px;
}

.mg_mixBottom {
	margin-bottom: 80px;
}

.section_title {
	color: var(--color-light-blue);
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: center;
	font-weight: 600;
	margin: 0 0 80px;
	letter-spacing: 3px;
}

.news {
	border-top: 1px solid #bbb;
	margin: 0;
}

.news dl {
	width: 100%;
	margin: 0;
	padding: 18px 40px 15px 5px;
	border-bottom: 1px solid #bbb;
	display: flex;
	position: relative;
}

.news dt {
	font-size: 0.9em;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
	display: flex;
}

.news dt .date {
	width: 100px;
}

.news dt .category {
	font-weight: 500;
	font-size: 0.8em;
	line-height: 2em;
	text-align: center;
	margin: 0 20px 0 0;
	border: 1px solid #999;
	width: 90px;
	height: 22px;
	min-width: 70px;
	padding: 0;
}

.news dd {
	font-size: 0.9em;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

.news dl a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.news dt,
.news dd {
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.news dl a::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-light-blue);
	border-right: 2px solid var(--color-light-blue);
	transform: translateY(-50%) rotate(45deg);
}

.news dl a:hover {
    background-color: var(--bg-light-navy);
}

/* Slide 3　トピックス */
.special_grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 100px 0 0;
}

.special_grid > * {
	width: calc(50% - 20px);
	margin-bottom: 24px;
}

.special_card {
	background: #fff;
	border-radius: 14px;
	box-shadow: rgba(17, 45, 78, 0.08) 0 12px 30px;
	overflow: hidden;
}

.special_card figure {
	margin: 0;
	position: relative;
}

.special_card figcaption {
	color: #fff;
	font-size: 0.7em;
	line-height: 1.5px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.special_card img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.special_card .text {
	padding: 1.5em 2em;
}

.special_card .eyebrow {
	color: var(--color-blue);
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--font-nontserrat);
	letter-spacing: 0.08em;
	display: inline-block;
	margin-bottom: 10px;
}
	
.special_card h3 {
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0 0 12px;
}

.special_card p {
	font-size: 0.9rem;
	line-height: 1.9;
	margin: 0;
}


/* 展示紹介　Slide4 旧みどころ */
#slide4 {
	background: #fff;
	margin: 0;
	padding: 0 0 100px;
	position: relative;
	z-index: 200;
}

.section_title_en {
	color: var(--color-blue);
	font-size: 3.5rem;
	line-height: 1.5;
	text-align: center;
	font-family: var(--font-nontserrat);
	font-weight: 800;
	transform: scale(0.95, 1);
	margin: 0;
	padding-top: 50px;
}

.section_title_en .jp {
	font-size: 2.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	display: inline-block;
	vertical-align: middle;
	margin-top: -10px;
	transform: scale(0.92, 1);
	margin-left: -18px;
}

.mg_mixBottom {
	margin-bottom: 80px;
}

.section_title {
	color: var(--color-light-blue);
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: center;
	font-weight: 600;
	margin: 0 0 80px;
	letter-spacing: 3px;
}

.spot_title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.spot_title .title {
	width: 10%;
	min-width: 90px;
	margin: 0;
	padding: 0;
	max-width: 100px;
}

.spot_title .title img {
	opacity: 0;
}

.spot_title .spot_h3 {
	color: var(--color-navy);
    font-size: 1.8rem;
    line-height: 1.7;
    font-weight: 600 !important;
    letter-spacing: 0;
	width: 88%;
	opacity: 0;
}


.spot_title + .p_01 {
	opacity: 0;
}

.spot_title + .p_01 + .note_wrap {
	opacity: 0;
}

.spot_title.spot_title_mgTop + .p_01 + .note_wrap {
	opacity: 0;
}

.span_red_s {
	color: var(--color-red);
	font-size: 0.75rem;
}

.span_red {
	color: var(--color-red);
	font-size: 1em;
}

.spot_title_mgTop {
	margin-top: 80px;
}

.catch_p {
	font-size: 1.6rem;
    line-height: 1.8;
	text-align: left;
	font-weight: 600;
	margin: 80px 0 0;
}

.slide4_photo_wrap {
	position: relative;
	z-index: 3;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1300px;
	margin: 30px auto 0;
	padding: 0;
}

.slide4_photo_wrap figure {
	width: 48%;
	margin: 0;
	position: relative;
	/* 八角形に沿った影 — 不要なら下の1行を削除 */
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.15));
}

.slide4_photo_wrap figure .img_wrap {
	overflow: hidden;
	/* 面取り八角形クリップ — 不要なら下の1行を削除で元に戻る */
	clip-path: polygon(3% 0%, 97% 0%, 100% 6%, 100% 94%, 97% 100%, 3% 100%, 0% 94%, 0% 6%);
}

.slide4_photo_wrap figure img {
	display: block;
	margin: 0 auto 0 0;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	opacity: 0;
}

.slide4_photo_wrap figure figcaption {
	opacity: 0;
}

.slide4_photo_wrap figure figcaption.cap01 {
    color: #000;
    font-size: 0.75rem;
    line-height: 1;
    position: absolute;
    right: 5px;
    bottom: 40px;
}

.slide4_photo_wrap figure figcaption.cap02 {
    font-size: 0.85rem;
    line-height: 1;
    position: relative;
	margin: 15px 0 0;
}

.slide4_photo_wrap figure figcaption.cap03 {
    font-size: 0.85rem;
    line-height: 1.7;
	text-align: right;
    position: relative;
	margin: 10px 0 0;
}

.slide4_photo_wrap .description {
	width: 48%;
	margin: 0;
}

.spot_title_s {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: -20px 0 10px;
	padding: 0;
}

.spot_title_s .title {
	width: 10%;
	min-width: 75px;
	margin: 0;
	padding: 0;
	max-width: 100px;
}

.spot_title_s .title img {
	opacity: 1;
}

.spot_title_s h4 {
	color: var(--color-navy);
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: 0;
	width: 88%;
	margin: 0;
	opacity: 1;
}

.slide4_photo_wrap .description p {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
	margin: 0;
}

.other_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	margin: 150px 0 80px;
	padding: 0;
}

.slide4_photo_wrap.col {
	flex-direction: column;
	width: 31%;
	margin: 15px 3.5% 40px 0;
}

.slide4_photo_wrap.col:nth-child(3n) {
	margin-right: 0;
}

.slide4_photo_wrap.col figure {
	width: 100%;
	margin-bottom: 15px;
}

.slide4_photo_wrap.col figure img {
	opacity: 1;
}

.slide4_photo_wrap.col figure .img_wrap {
	clip-path: polygon(3% 0%, 97% 0%, 100% 6%, 100% 94%, 97% 100%, 3% 100%, 0% 94%, 0% 6%);
}

.slide4_photo_wrap.col figure figcaption {
	opacity: 1;
}

.slide4_photo_wrap.col .description {
	width: 100%;
}


/* Slide 5 挨拶 */
#slide5 {
	margin: 0;
	padding: 0 0 100px;
	position: relative;
	z-index: 200;
}

.message_wrap {
    margin: 0 0 60px;
    padding: 2em 3em 1em;
    border-radius: 8px;
    background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.message_title {
	color: #000;
	font-size: 1.3rem;
	line-height: 1.6;
	font-weight: 600;
	margin: 0 0 30px;
	position: relative;
	padding: 0 0 1rem;
	background: linear-gradient(90deg, var(--color-blue) 0% 100%);
    background-repeat: no-repeat;
    background-size: 50px 3px;
    background-position: left bottom;
}



.message_name {
	font-size: 1.3rem;
	line-height: 1.6;
	font-weight: 600;
	margin: 40px 0 20px;
	text-align: right;
}

.message_name span {
	font-size: 0.7em;
	font-weight: 400;
	margin-right: 20px;
}


/* Slide 6 Special */
#slide6 {
	background: #fff;
	margin: 0;
	padding: 0 0 100px;
	position: relative;
	z-index: 200;
}

.character_wrap {
display: flex;
	flex-wrap: wrap;
	 justify-content: center;
	width: 100%;
	margin: 0;
	padding: 0;
}

.character_card {
	margin: 0 0 30px;
	padding: 1.5em 0.5em 1em;
	border-radius: 8px;
	text-align: center;
	width: 30%;
	border: 1px solid #666;
	position: relative;
	display: flex;
	flex-direction: column;
}

.character_card::before {
	content: "";
	position: absolute;
	top: -15px;
	right: -15px;
	width: 25px;
	height: 25px;
	background: url("../images/slide6/pin.svg") center / contain no-repeat #fff;
}

.character_card .h3_flex {
	display: flex;
	align-items: flex-start;
	align-items: center;
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
	gap: 20px;
}

.character_card .h3_flex img {
	flex-shrink: 0;
}

.character_card .h3_flex h3 {
	margin: 0;
	text-align: left;
	flex: 1;
}

.character_card h3 {
	color: #000;
	font-size: 1.5rem;
	line-height: 1.6;
	font-weight: 600;
	margin: 0 0 20px;
}

.character_card .h3_flex h3 img {
	display: inline;
	vertical-align: -2px;
	height: 1em;
	width: auto;
	margin-left: 0.2em;
}

.character_card h3 span {
	display: inline-block;
}

.character_card h3 .span01 {
	font-size: 1.2em;
}

.character_card h3 .span02 {
	font-size: 0.8em;
}

.character_card h3 .span03 {
	font-size: 0.65em;
}

.character_card p {
	margin: 0 0 20px;
	line-height: 1.8;
}

.character_link {
	color: #000 !important;
	font-size: 0.95rem;
	font-weight: 500;
	display: block;
	width: 100%;
	background-color: var(--color-mizuiro);
	text-decoration: none !important;
	border-radius: 4px;
	transition: background-color 0.3s;
	margin-top: auto;
	padding: 10px 30px;
	box-sizing: border-box;
	position: relative;
}

.character_link::after {
	content: "\f08e";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.85em;
}

.character_link img {
	display: inline;
	vertical-align: -2px;
	height: 1em;
	width: auto;
	margin-right: 0.2em;
}

.character_link span {
	font-size: 0.8em;
}

.character_link:hover {
	background-color: var(--color-light-blue);
	text-decoration: none !important;
}


.link_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 50px 0 0;
	padding: 0;
}

.link_banner picture {
	width: 24.5%;
	margin: 0;
	padding: 0;
}

.link_banner picture img {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link_banner picture img:hover {
	transform: translateY(-5px);
}


/* Slide 7 アクセス */
#acces {
	background: #fff;
	margin: 0;
	padding: 0 0 50px;
	position: relative;
}


/* Slide 9 概要 */
#slide9 {
	padding: 0 0 100px;
	position: relative;
	z-index: 200;
}

table.outline {
	border-collapse: collapse;
	font-size: 0.95em;
	line-height: 1.8em;
	text-align: left;
	width: 100%;
	margin-top: 80px;
	margin-bottom: 100px;
	border: thin solid #aaa;
	border-left-style: none;
	border-right-style: none;
}

.outline th {
	color: #444;
	font-weight: normal;
	text-align: left;
	letter-spacing: 3px;
	vertical-align: top;
	width: 200px;
	padding: 1.5em .5em;
}

.outline td {
	vertical-align: top;
	border-left: thin solid #aaa;
	padding: 1.5em 1em 1.5em 3em;
}

.outline td span {
	display: inline-block;
}

table.outline a {
	color: #444;
}

/* .btn002 - 使用されている */
.btn002 {
	display: inline-block;
	margin-top: 20px;
}

.btn002 a {
	color: var(--color-pink);
	text-decoration: none;
	transition: all 0.3s;
}

.btn002 a:hover {
	opacity: 0.7;
}

.mgLeft15 {
	margin-left: 15px;
}


/* sponsor */
#sponsor {
background: #fff;
padding: 60px 0;
}

.dl_01 {
color: #000;
font-size: 1em;
line-height: 1.5em;
text-align: left;
display: flex;
margin: 0;
padding: 30px 0;
border-top: 1px solid #ccc;
}

.dl_01 dt {
	width: 160px;
	margin: 0;
	flex-shrink: 0;
	letter-spacing: 0.5em;
}

.dl_01 dd {
	margin: 0;
	width: auto;
}

.dl_01 dd span {
	font-size: 0.85em;
}

.dl_02 {
color: #000;
font-size: 1em;
line-height: 1.7em;
text-align: left;
display: flex;
align-items: flex-start;
margin: 0;
padding: 30px 0;
border-top: 1px solid #ccc;
}

.dl_02:last-child {
border-bottom: 1px solid #ccc;
}

.dl_02 dt {
width: 160px;
margin: 0;
flex-shrink: 0;
}

.dl_02 dt .l_space {
letter-spacing: 2.2em;
margin-right: -2.2em;
}

.dl_02 dd {
margin: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
width: auto;
}

.dl_02 dd.no_flex {
display: inline;
}

.dl_02 dd .logo_small {
width: auto;
height: 20px;
margin: 0 40px 0 0;
}

.dl_02 dd .logo_misawa {
width: auto;
height: 25px;
margin: 0 40px 0 0;
}

.dl_02 dd .logo_yanmar {
width: auto;
height: 18px;
margin: 0 40px 0 0;
}

.dl_02 dd .logo_nodai {
width: auto;
height: 19px;
margin: 0 40px 0 0;
}


/* Footer */
footer {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	padding: 0 3rem 30px 5rem;
	position: relative;
	z-index: 200;
	background-image: url(../images/footer/footer_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0.65) 30%,
		rgba(255, 255, 255, 0.2) 65%,
		rgba(255, 255, 255, 0) 90%
	);
	z-index: -1;
}

.footer_01 {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	align-self: flex-end;
	min-height: 300px;
	min-width: 500px;
	text-align: center;
	margin: 0;
	padding: 0;
}

footer .footer-logo {
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	text-align: center;
	font-weight: 500;
	margin: 0 0 40px;
	padding: 0;
}

footer .footer-logo img {
	margin: 0 auto 10px;
	width: 180px;
}

.footer_sns {
	margin-top: 5px;
	margin-bottom: 0;
	padding: 0;
}

.footer_sns img {
	width: auto;
	height: 25px;
	margin: 0 auto;
	filter: brightness(0) invert(1);
}

.copyright {
	color: #eee;
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 20px 0 0;
}

footer a:link,
footer a:visited {
	color: #fff;
}


/*中ページ*/
/*slide_sub_1*/
#slide_sub_1 {
    position: relative;
    margin: 0;
    padding: 0;
}

#slide_sub_1 figure {
    position: relative;
    width: 100%;
    margin: 0;
}

#slide_sub_1 figure img {
	width: 100%;
    object-fit: cover;
    object-position: 0 0;
    position: relative;
}

#slide_sub_1 figure figcaption {
    color: #666;
    font-size: 0.7rem;
    line-height: 1;
    position: absolute;
    right: 15px;
    bottom: 30px;
}

#slide_sub_1 > picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    z-index: 2;
    width: 240px;
    height: auto;
}

#slide_sub_1 > picture img {
    width: 100%;
    height: auto;
}

#slide_sub_1 > h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    text-align: center;
	font-weight: 500;
    margin: 30px 0 0;
    white-space: nowrap;
    transform: translate(-50%, 50%);
    z-index: 2;
}

/*slide_sub_2*/
#slide_sub_2 {
    position: relative;
    margin: 0;
    padding: 0;
}

.g_map {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* 中央寄せレイアウト対策 */
	margin-top: 0;
}

/*アクセス*/
.g_map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.access_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 80px auto;
	padding: 0;
	overflow: hidden;
}

.access_wrap figure {
	width: 50%;
	margin: 0;
	padding: 0;
}

.access_wrap figure img {
	width: 100%;
	height: auto;
}

.access_wrap .description {
	width: 40%;
	margin: 0;
	padding: 0;
}

.access_wrap .description dl {
	text-align: left;
	width: 100%;
	margin: 0;
	padding: 0;
}

.access_wrap .description dt {
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 600;
	margin: 0 0 15px;
	padding: 0 0 18px;
	color: var(--color-navy);
	position: relative;
}

.access_wrap .description dt img {
	margin-top: 0;
	margin-bottom: 10px;
	width: 150px;
}

.access_wrap .description .dt_2 {
	font-size: 1.1rem;
	margin: 50px 0 15px;
}

.access_wrap .description dt::after {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background-color: var(--color-navy);
	position: absolute;
	bottom: 0;
	left: 0;
}

.access_wrap .description dd {
	font-size: 0.95rem;
	line-height: 1.8;
	margin: 0 0 15px;
	padding: 0;
}


/*チケットページ*/
.ticket_table {
	width: 100%;
	margin: 0 auto 80px;
	overflow-x: auto;
	border-collapse: collapse;
	text-align: center;
}

.ticket_table caption {
	font-size: 0.85rem;
	line-height: 1.8;
	letter-spacing: 1px;
	text-align: right;
	margin-bottom: 5px;
}

.ticket_table th {
	background-color: var(--bg-light-navy);
	color: #000;
	font-size: 1.1rem;
	line-height: 1.6;
	font-weight: 500;
	padding: 20px 15px;
	border-top: 1px solid var(--color-light-navy);
	border-bottom: 1px solid var(--color-light-navy);
	width: 33%;
	letter-spacing: 2px;
}

.ticket_table td {
	font-size: 1.6rem;
	line-height: 1;
	padding: 15px;
	border-bottom: 1px solid var(--color-light-navy);
	background-color: var(--bg-light-blue);
}

.ticket_table td span {
	font-size: 1rem;
}


/* プレイガイド */
.plyguide_h3 {
	font-size: 1.3rem;
    line-height: 1;
    font-weight: 600;
    margin: 0;
    color: var(--color-navy);
	text-align: center;
}

.playguide_table {
	border-collapse: collapse;
	margin: 25px auto 50px;
	border: thin solid var(--color-light-navy);
	border-right-style: none;
	border-left-style: none;
 	position: relative;
	width: 100%;
	background-color: #fff;
}

.playguide_table th {
	font-weight: 600;
	letter-spacing: 1px;
	padding: 1.2em 1em 1.2em 0;
	background-color: transparent;
	border: thin solid var(--color-light-navy);
	border-right-style: none;
	border-left-style: none;
	vertical-align: middle;
	text-align: left;
	width: 50%;
}

.playguide_table .th_0 {
	font-size: 1.3rem;
	text-align: center;
	font-weight: 500;
	background-color: var(--bg-light-navy);
	padding: 0.8em 0;
	border-right: thin solid var(--color-light-navy);
	border-left: thin solid var(--color-light-navy);
}

.playguide_table .th01 {
	font-size: 1.8rem;
	line-height: 1.3;
	padding: .5em 1em .5em 15px;
	border-bottom-style: none;
}

.playguide_table th span {
	font-size: 0.85em;
	font-weight: normal;
}

.playguide_table .th02 {
	font-size: 1.4rem;
	padding-left: 15px;
}

.playguide_table .th03 {
	font-size: 1.4rem;
	border-bottom-style: none;
	padding-left: 15px;
}

.playguide_table td {
	border: thin solid var(--color-light-navy);
	border-right-style: none;
	border-left-style: none;
}

.playguide_table .td01 {
	font-size: 1em;
	line-height: 1.2em;
	font-weight: 500;
	padding: 1.2em 15px 1.2em 0;
	letter-spacing: 1px;
	text-align: right;
	border-bottom-style: none;
	width: 170px;
}

.playguide_table .td02 {
	color: var(--color-gray);
	font-size: 0.8em;
	line-height: 1.7em;
	padding: 0 15px 1.2em;
	border-top-style: none;
	border-bottom-style: none;
	margin-right: 1em;
}

.playguide_table a {
	color: var(--color-green);
}



.buy_flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

.buy_flex a {
    color: #fff;
    display: flex;
	justify-content: flex-end;
    align-items: center;
    text-decoration: none;
}

.buy_flex a:hover {
opacity: 0.79;
transform: translateY(-2px);
}


.official_table {
	border-collapse: collapse;
	margin: 25px auto 50px;
	border-right-style: none;
	border-left-style: none;
 	position: relative;
	width: 100%;
	background-color: var(--color-navy);
	border-radius: 10px;
	box-shadow: 0 3px 0 #ccc;
}

.official_table th {
	color: var(--color-yellow);
	font-size: 2rem;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 0.8em 1em 0.8em 15px;
	background-color: transparent;
	vertical-align: middle;
	text-align: left;
	width: 70%;
}

.official_table th span {
	font-size: 0.85em;
	font-weight: normal;
}

.official_table td {
	font-size: 1em;
	line-height: 1.2em;
	font-weight: 500;
	padding: 1.2em 15px 1.2em 0;
	letter-spacing: 1px;
	text-align: right;
	width: 170px;
}

.official_table a {
	color: var(--color-green);
}


/* 注意事項 */
.notes_wrap {
	background-color: #fff;
	margin: 0 0 80px;
	padding: 2em 2em 1em;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
	border: thin solid var(--bg-light-navy);
}

.notes_wrap ul {
	font-size: 0.9rem;
    text-align: left;
    margin: 0;
	padding: 0;
}

.notes_wrap ul li {
	font-size: 0.9rem;
	line-height: 1.8;
    text-align: left;
    margin: 0 0 10px 20px;
}


/*フローティングバナー*/
.floating-banner {
    position: fixed;
    bottom: -5px;
    right: 5px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
	width: 220px;
}

.floating-banner img {
    width: 100%;
	margin-bottom: 10px;
}



/*hidden*/
.hidden_pc {
	display: none;
}
.hidden_sp {
	display: block;
}


@media screen and (max-width: 1500px) {
/*LINKS-1500*/
.character_card .h3_flex {
gap: 10px;
}
}


@media screen and (max-width: 1024px) {
.header {
height: 70px;
}

.h1_logo {
width: 140px;
}

ul.main_menu {
display: none;
}

/*sns・関連サイト-1024*/
.character_card {
width: 48%;
}

#slide2 {
    padding: 0 0 100px;
}


/*アクセス-1024*/
.access_wrap .description {
    width: 44%;
    margin: 0;
    padding: 0;
}

/*sponsor-1024*/
.dl_02 dd .logo_small {
    width: auto;
    height: 20px;
    margin: 10px 40px 10px 0;
}

/*footer-1024*/
footer {
    padding: 0 1rem 30px 1rem;
    justify-content: center;
    min-height: 500px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 90%);
    z-index: -1;
}

.footer_01 {
    align-self: center;
    justify-content: flex-start;
    min-width: auto;
    min-height: 0;
}
}


@media screen and (max-width: 820px) {
.dl_02 dt {
    width: 120px;
}

#slide6 {
    padding: 0;
}

.link_banner picture {
	width: 48.5%;
	margin: 0 0 10px;
}

/*展示-820*/
.other_area {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.slide4_photo_wrap.col {
    width: 48%;
	margin-right: 0;
}
}


@media screen and (max-width: 768px) {
.ticket_table th {
    width: 35%;
    letter-spacing: 1px;
}
}

@media (min-width: 767px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


@media screen and (max-width: 640px) {
body::before,
body::after {
	display: none;
}

.slide1-hero-overlay {
display: none;
}

.footer_contact .open_time .br {
display: block;
}

.header {
  height: 60px;
  opacity: 1 !important;
  transform: none !important;
}

.h1_mov h1 {
display: none;
}

.h1_logo {
	width: 90px;
	margin-top: 0;
}

.news dl {
	flex-direction: column;
}

.news dt {
	margin-bottom: 10px;
}

.container {
	width: 90%;
}

.container1500 {
	width: 90%;
}

.container1000 {
	width: 90%;
}

.special_grid > * {
    width: 100%;
    margin-bottom: 40px;
}

.access_wrap figure {
    width: 100%;
    margin: 0 0 40px;
}

.access_wrap .description {
    width: 100%;
}

/*slide1-sp*/
#slide1 {
	height: auto;
	margin-top: 60px;
}

#slide1 > div:first-child figure img {
	object-fit: contain;
	width: 100%;
	height: auto;
}

#slide1 .sub_title {
font-size: 1.2rem;
line-height: 1.6;
margin: 20px 0 1rem;
}

#slide1 h1 {
    margin: 0 auto;
    width: 100%;
	max-width: 100%;
}

#slide1 .sub_en {
    font-size: 1.2rem;
    margin: 0;
}

.hero_details {
    text-align: center;
    margin-top: 3rem;
	margin-right: auto;
	width: 75%;
	margin-left: auto;
}

.hero_details img {
	width: 100%;
	height: auto;
}

#slide1 > div:first-child figure figcaption {
    right: 5px;
    bottom: 5px;
}

/*slide2-sp*/
#slide2 {
padding: 0 0 50px;
background-color: transparent;
}

.bg_title {
	display: none;
}

#slide2 h2 {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 50px 0;
}

#slide2 p {
    font-size: 1rem;
    line-height: 2;
    margin: 0 0 15px;
}


/*slide3-sp*/
.special_card .text {
    padding: 1.5em;
}

/*slide4-sp*/
.section_title_en {
    color: var(--color-blue);
    font-size: 3rem;
}

.section_title {
    color: var(--color-light-blue);
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
    margin: 0 0 40px;
    letter-spacing: 3px;
}

#slide4 {
padding: 0 0 50px;
}

.spot_title {
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.spot_title .spot_h3 {
    width: 100%;
	font-size: 1.5rem;
	margin-top: 0;
	line-height: 1.6;
}

.spot_title_mgTop {
    margin-top: 60px;
}

.catch_p {
    font-size: 1.15rem;
    margin: 60px 0 0;
}

.slide4_photo_wrap .description {
    width: 100%;
    margin: 0 0 20px;
}

.slide4_photo_wrap figure {
    width: 100%;
    margin: 0 0 30px;
}

.other_area {
    margin: 100px 0 80px;
}

.slide4_photo_wrap.col {
    flex-direction: column;
    width: 100%;
    margin: 15px 0 40px;
}

.slide4_photo_wrap.col figure {
    width: 100%;
    margin-bottom: 0;
}

.spot_title_s {
    margin: 0 0 10px;
}


/*slide5-sp*/
#slide5 {
padding: 0 0 50px;
}

.message_wrap {
	padding: 2em 1em 1em 1.2em;
}

/*slide9-sp*/
#slide9 {
padding: 0 0 50px;
}

table.outline {
   font-size: 0.9em;
    line-height: 1.8em;
    margin-top: 60px;
    margin-bottom: 0;
}

.outline th {
letter-spacing: 1px;
padding: 1.5em 0;
width: 75px;
}

.outline td {
padding: 1.5em 0 1.5em 1em;
}

/*slide6-sp*/
#slide6 {
padding: 0 0 50px;
}

.section_title_en .jp {
    font-size: 2.4rem;
}

.character_wrap {
margin: -20px 0 0;
}

.character_card {
width: 97%;
padding: 1.5em 0.5em 1em;
}

.link_banner picture {
    width: 100%;
}

/*sponsor-sp*/
.dl_02 {
    font-size: 0.95em;
    padding: 20px 0;
}

.dl_02 dt {
    width: 100px;
}


/*footer-sp*/
footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 400px;
    text-align: center;
    margin: 0;
    padding: 60px 0 50px;
    background-position: 45% center;
}

.footer_dl_wrap {
    margin: -80px auto;
}

footer .footer-logo {
margin: 20px 0;
}

footer .footer-logo img {
    margin: 0 auto 10px;
    width: 120px;
}

.copyright {
    margin: 10px 0 0;
}


/*中ページ-sp*/
#slide_sub_1 {
margin-top: 60px;
}

#slide_sub_1 figure {
height: 220px;
overflow: hidden;
}

#slide_sub_1 figure img {
height: 100%;
object-fit: cover;
object-position: center center;
}

#slide_sub_1 > picture {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 150px;
}

#slide_sub_1 > h2 {
    font-size: 1.3rem;
    margin: 0;
}

#slide_sub_1 figure figcaption {
    right: 5px;
    bottom: 0;
}


/*チケット-sp*/
.ticket_table th {
    font-size: 0.95rem;
    padding: 20px 5px;
}

.official_table th,
.official_table td {
	display: block;
}

.official_table th {
    padding: 0.5em 1em 0 15px;
    width: 100%;
}

.official_table td {
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 500;
    padding: 1.2em 15px 1.2em 0;
    letter-spacing: 1px;
    text-align: right;
    width: 100%;
}

.playguide_table .th_0 {
    font-size: 1.2rem;
}

.playguide_table th {
    padding: 1.2em 0 1.2em 0;
    width: 60%;
}

.playguide_table .th01 {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: .5em 0 .5em 10px;
    border-bottom-style: none;
}

.playguide_table .th02 {
    font-size: 1.1rem;
    padding-left: 10px;
}

.playguide_table .th03 {
    font-size: 1.1rem;
    border-bottom-style: none;
    padding-left: 10px;
}

.notes_wrap {
    padding: 2em 1em 1em;
}


/*フローティングバナー*/
.floating-banner {
    position: fixed;
    bottom: -5px;
    right: 5px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
	width: 130px;
}


/*hidden-sp*/
.hidden_pc {
	display: block;
}
.hidden_sp {
	display: none;
}
}
