@charset "UTF-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	margin: 0;
}

main {
	min-height: 400px;
}

p {
	line-height: 2;
	text-align: justify;
}

a	{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	color: #3C66C4;
}

img {
	max-width:100%;
	height: auto;
	user-select: none;
	-webkit-user-drag: none;
}

a,
a:hover {
	cursor: pointer;
}

a:hover {
	opacity: .7;
}

a img {
	cursor: pointer;
}

.center {
	text-align: center;
}

/*タブレット幅*/
.pc-tab
{ display: block !important; }
.sp-tab
{ display: none !important; }
 
@media only screen and (max-width: 992px) {
	.pc-tab { display: none !important; }
	.sp-tab { display: block !important; }
	
}
/*スマホ幅*/
.pc
{ display: block !important; }
.sp 
{ display: none !important; }
 
@media only screen and (max-width: 768px) {
	.pc { display: none !important; }
	.sp { display: block !important; }
}

.fugaz {
	font-family: "Fugaz One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.zen-bold {
	font-weight: 500;
}

:hover {
	transition : all 0.3s ease 0s;
}

.page-container {
	max-width: 900px;
	margin: 0px auto 0px;
}

.page-container-large {
	max-width: 1100px;
	margin: 0px auto 0px;
}

.grecaptcha-badge { visibility: hidden; }

/*****リンク*****/

/*内部リンク（改行なし）*/
.site-link::after {
	content: "";
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	margin: 0 3px;
	margin-bottom: -0.3em;
	background: url("../img/common/btn-blue.svg") no-repeat center / contain;
}
.site-link.btn-white::after {
	background: url("../img/common/btn-white.svg") no-repeat center / contain;
}


/*外部リンク*/
a.ext-link::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin: 0 3px;
	margin-bottom: -1px;
	background: url("../img/common/site-link_black_blue.svg") no-repeat center / contain;
}

a.ext-link.ext-orange::after {
	background: url("../img/common/site-link_black_orange.svg") no-repeat center / contain;
}

/******共通文字******/

.section-ttl {
	margin: 130px auto 40px;
	text-align: center;
	position: relative;
}

.section-ttl h2 {
	font-size: 28px;
	margin: 0px;
	position: relative;
	display: inline-block;
}

.section-ttl::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -3.3em;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: inline-block;
}

.ttl-ruby {
	font-size: 18px;
	text-align: center;
	margin-top: 0px;
	color: #000;
}

.section-ttl p {
	text-align: center;
}

@media screen and (max-width: 768px) {
h2.section-ttl {
	font-size: 24px;
	margin: 70px auto 40px;
}
}

/***トップへ戻る***/

.pagetop {
	cursor: pointer;
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: auto;
	border-radius: 50%;
	transition: .3s;
	opacity: 0;
	z-index: 99;
}

.pagetop:hover {
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
	.pagetop {
		width: 80px;
	}
}

/***パンくず***/

.single_date {
	max-width: 1100px;
	font-size: 12px;
	font-weight: 500;
	margin: 0px auto 40px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.single_date a {
	color: #000;
}

@media screen and (max-width: 768px) {
	.single_date {
		margin-top: 15px;
		flex-flow: column;
		gap: 6px;
		margin-left: 16px;
		margin-right: 16px;
	}
}

/***波線タイトル***/

.ttl-wave-wrap {
	text-align: center;
	margin: 30px auto 30px;
}

h2.ttl-wave {
	color: #000;
	font-size: 30px;
	display: inline;
	line-height: 1.8;
	background-image: url("../img/common/line-wave-blue.svg");
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 17px 17px;
	padding-bottom: 17px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

@media screen and (max-width: 768px) {
	.ttl-wave-wrap {
	text-align: center;
	margin: 30px auto 30px;
	}
}

/**色**/
.imizu-red {
	color: #F50100;
}
.imizu-orange {
	color: #FA9100;
}
.imizu-pink {
	color: #FD59C3;
}
.imizu-yellow {
	color: #FFF100;
}
.imizu-lg {
	color: #64BE4F;
}
.imizu-green {
	color: #00B281;
}
.imizu-blue {
	color: #3C66C4;
}
.imizu-lb {
	color: #A2D4C6;
}
.imizu-aqua {
	color: #25D4F2;
}
.imizu-db {
	color: #284679;
}

/**背景**/
.imizu-red-bg {
	background-color: #F50100;
}
.imizu-orange-bg {
	background-color: #FA9100;
}
.imizu-pink-bg {
	background-color: #FD59C3;
}
.imizu-yellow-bg {
	background-color: #FFF100;
}
.imizu-lg-bg {
	background-color: #64BE4F;
}
.imizu-green-bg {
	background-color: #00B281;
}
.imizu-blue-bg {
	background-color: #3C66C4;
}
.imizu-lb-bg {
	background-color: #A2D4C6;
}
.imizu-aqua-bg {
	background-color: #25D4F2;
}
.imizu-db-bg {
	background-color: #284679;
}

/**splideの矢印の基本cssをリセット***/
.splide__arrow {
	background: none;
	border-radius: 0px;
	opacity: 1;
}



/******ヘッダー******/
/***** 共通 *****/

header {
	width: 100%;
	z-index: 100;
	text-align: center;
	position: relative;
}

.header-inner {
	width: 100%;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px 0 260px;
	display: flex;
	flex-direction: column;
}

.top-links a {
	margin-left: 10px;
	color: #333;
	font-size: 12px;
	text-decoration: underline;
}

.lang-select {
	position: relative;
	display: inline-block;
	margin-left: 10px;
}

.lang-toggle {
	font-size: 14px;
	cursor: pointer;
	background-color: #3C66C4;
	padding: 4px 10px 6px;
	border-radius: 20px;
	color: #fff;
	border: none;
}

.lang-options {
	display: none;
	position: absolute;
	right: 0;
	top: 100%;
	background: #fff;
	border: 1px solid #ddd;
	list-style: none;
	padding: 0;
	margin: 4px 0 0;
	z-index: 10;
	font-size: 14px;
}

.lang-options li a {
	display: block;
	padding: 6px 12px;
	text-decoration: none;
	color: #333;
}

.lang-options li a:hover {
	background: #f0f0f0;
}

.header-tools {
	position: relative;
	display: flex;
}

.header-tools input,
.header-tools select {
	border: 1px solid;
	border-radius: 20px;
	padding: 4px 36px 4px 8px;
	font-size: 14px;
}

.header-tools input{
	width: 160px;
	text-align: left;
}

.header-tools form {
	position: relative;
}

.header-tools .search-btn {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 0;
	cursor: pointer
}

.header-tools .search-btn img {
	width: 18px;
	height: 18px;
	display: block;
	margin-right: 5px;
}

@media only screen and (max-width: 992px) {
.header-tools {
	justify-content: right;
}

.header-tools input {
	padding: 6px 36px 6px 10px;
	font-size: 16px;
	width: 190px;
}

.top-links {
	margin: 30px auto;
}
	
.top-links a {
	color: #fff;
	font-size: 14px;
}
}

/******メインヘッダー******/

.main-header {
	width: 100%;
	position: relative;
	height: auto;
	justify-content: space-between;
	padding-top: 30px;
	margin-bottom: 40px;
}

.header-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}

.top-menu {
	display: flex;
	list-style: none;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.top-menu a {
	color: #000;
	font-size: 12px;
}

.main-nav ul {
	display: flex;
	justify-content: flex-end;
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	gap: 25px;
}

.main-nav li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #000;
	font-size: 13px;
}

.main-nav li img {
	width: 50px;
	height: 50px;
	margin-bottom: 5px;
}

.logo-area {
	width: auto;
	height: 250px;
	position: absolute;
	left: 40px;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;

}

.logo-img {
	width: auto;
	height: 250px;
}

@media screen and (max-width: 1130px) {
	.logo-area {
		height: 180px;
	}
	
	.logo-img {
		width: auto;
		height: 180px;
	}
}

@media screen and (max-width: 992px) {
	.logo-area {
		height: 250px;
	}
	
	.main-header {
		margin-bottom: 150px;
		padding-top: 0px;
	}
}


@media screen and (max-width: 768px) {	
	.logo-area {
	left: 10px;
	}
}

/******下層用ヘッダー******/

.compact-header {
	width: 100%;
	max-width: 1200px;
	position: fixed;
	top: -250px;
	left: 0;
	right: 0;
	transition: top 0.4s ease;
	display: flex;
	align-items: center;
	margin: 0 auto;
	padding: 15px 20px 5px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	z-index: 1000;
}

.compact-header.active {
	top: 0;
}

.header-inner.compact {
	height: 80px;
	padding: 0;
	max-width: inherit;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.logo-area.small {
	width: auto;
	height: 80px;
	margin-right: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

.logo-area.small {
	position: initial;
}

.logo-img.small {
	width: auto;
	height: auto;
	max-width: 110px;
}

.compact-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.compact-header .main-nav ul {
	margin: 0;
}

.compact-header .main-nav li a {
	font-size: 12px;
}

.bottom-tools input,
.bottom-tools select {
	padding: 2px 6px;
	font-size: 12px;
}

.compact-header .main-nav li img {
	width: 40px;
	height: 40px;
	margin: 0;
}

.compact-header .pc-tab {
	margin: 0 auto;
}

@media screen and (min-width: 993px) {
	.compact-header {
		width: 97%;
		background: #fff;
		box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	}
}

@media screen and (max-width: 1130px) {
	.header-inner.compact {
		gap: 15px;
	}
	.main-nav ul {
		gap: 15px;
	}
}

@media screen and (max-width: 992px) {
	.header-inner.compact {
		height: 100vh;
		flex-direction: column;
		gap: 15px;
	}
	.compact-header {
		padding: 0;
		display: block;
	}
	
	.sp-sitetop-area {
		width: 100%;
		height: 74px;
		background-color: #fff;
		text-align: left;
		padding: 10px 20px;
	}
	.sp-sitetop-area img {
		height: 100%;
	}
}

/******ハンバーガーメニュー******/

.hamburger, .hamburger-close {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	top: 0;
	right: 0;
	width: 71px;
	height: auto;
	background: none;
}

.sp-menu-logo {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 160px;
}

.hamburger {
	position: fixed;
}

.hamburger-close {
	position: absolute;
}

.sp-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100dvh;
	background-color: rgb(60 102 196 / .95);
	transition: .3s;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.sp-menu.active {
	right: 0;
}

.sp-nav__item-wrappr {
	width: 80%;
	max-width: 400px;
	padding: 30px 0px;
	margin-top: 90px;
}

.sp-nav {	
	text-align: left;
	margin-bottom: 30px;
}

.sp-nav-ttl::after {
	content: "";
	width: 1em;
	height: 1em;
	margin-left: 5px;
	background: url("../img/common/btn-white.svg") no-repeat center / contain;
}

.sp-nav ul {	
	margin: 0;
	padding: 0;
}

.sp-nav li {
	border-bottom: 0.5px #fff solid;
	list-style: none;
}

.sp-nav li:last-of-type {
	border-bottom: none;
}
	
.sp-nav li a {
	display: flex;
	height: 65px;
	align-items: center;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}

.sp-nav li a img {
	width: 40px;
	margin-right: 10px;
}

.sp-nav-header {
	display: flex;
	justify-content: space-between;
}

.sp-nav-child {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
}

.sp-nav-child li {
	border: none;
}

.sp-nav-child li a {
	height: auto;
	font-size: 14px;
	text-decoration: underline;
	margin: 0px 10px 15px;
}

.sp-nav-child li a.sp-nav-spots {
	justify-content: space-evenly;
	text-align: center;
	text-decoration: none;
	max-width: 140px;
	padding: 8px 0;
	border-radius: 50px;
	color: #fff;
	border: 2px solid #fff;
	margin: 0 auto 15px;
	box-shadow: 3px 3px #fff;
	transition: 0.3s ease-in-out;
}

.sp-nav-lang {
	width: 90%;
	max-width: 350px;
	justify-content: space-between;
	display: flex;
	margin: 0 auto 100px;
}

.sp-nav-lang a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	width: 140px;
	margin: 0 5px;
	padding: 8px 0px;
	border: 1px solid #fff;
	background-color: rgba(255,255,255,0.3);
	text-align: center;
}


@media only screen and (max-width: 400px) {
.sp-nav-child {
	grid-template-columns: repeat(1, 1fr);
}
}

/******フッター******/

footer {
	position: relative;
	width: 100%;
	margin-top: -8px;
	padding: 60px 16px 10px;
	color: #fff;
	background: url("../img/common/footer-bg.webp") no-repeat center / cover;
	box-sizing: border-box;
	--wave-h: 100%;	/* 波の高さ */
	-webkit-mask-image:
		url("../img/common/wave-footer.svg"),
		linear-gradient(#000 0 0);
	-webkit-mask-repeat: repeat-x, no-repeat;
	-webkit-mask-position: 0 0, 0 0;
	-webkit-mask-size: auto calc(var(--wave-h) + 2px), 101% 101%;

	-webkit-mask-composite: source-in;
	mask-image:
		url("../img/common/wave-footer.svg"),
		linear-gradient(#000 0 0);
	mask-repeat: repeat-x, no-repeat;
	mask-position: 0 0, 0 0;
	mask-size: auto calc(var(--wave-h) + 2px), 101% 101%;
	/* Firefox等 */
	mask-composite: intersect;
	z-index: 10;
	background-color: #284679;
}

footer {
    -webkit-mask-repeat: repeat-x, no-repeat;
    -webkit-mask-position: 0 0, 0 6px; 
    -webkit-mask-composite: source-over; 
}

footer p {
	margin: revert;
}

.footer-top {
	max-width: 1200px;
	margin: 0 auto 30px;
}

.footer-top__btn {
	display: block;
	text-align: center;
	text-decoration: none;
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: auto 10px;
	padding: 0.8rem 4rem;
	font-weight: bold;
	border-radius: 50px;
	color: #fff;
	border: 2px solid #fff;
	box-shadow: 5px 5px #fff;
	transition: 0.2s ease-in-out;
}

.footer-top__btn:hover {
	transform: translate(5px,5px);
	box-shadow: 0px 0px #fff;
}

.footer-nav {
	max-width: 1200px;
	list-style: none;
	margin: 0 auto;
	padding: 30px 0px;
}

.footer-nav a {
	text-decoration: none;
	color: #fff;
}

.footer-nav a:hover {
	text-decoration: underline;
}

ul.footer-nav__group {
	padding: 0 40px 0 0;
	margin: 1em 0;
}

ul.footer-nav__group li {
	line-height: 2rem;
}

li.footer-nav__title {
	font-size: 18px;
	list-style: none;
}

li .footer-nav__title-text::after {
	content: "";
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	margin: -5px 4px 0px;
	background: url("../img/common/btn-white.svg") no-repeat center;
	background-size: contain;
	vertical-align: middle;
}

.footer-nav__title ul {
	font-size: 14px;
	line-height: 1.4rem;
	padding-left: 26px;
}

.footer-nav__title ul li {
	list-style: none;
}

.footer-nav__title ul ul {
	padding-left: 1.2em;
}

.footer-nav__title ul ul li {
	position: relative;
	list-style: none;
	padding-left: 1.4em;
}

.footer-nav__title ul ul li::before {
	content: "─";
	position: absolute;
	left: 0;
	color: #fff;
}

.footer-unique-flex {
	display: flex;
}

.footer-info {
	display: flex;
	max-width: 1200px;
	margin: 40px auto 0;
	font-size: 18px;
	width: 100%;
	gap: 40px;
}

.footer-info__title {
	font-size: 20px;
}

.footer-info__block {
	flex: 1 1 calc(100% / 3);
	min-width: 0;
}

.footer-info__block a {
	color: #fff;
}

.footer-copy {
	padding-top: 50px;
}

.footer-copy p {
	text-align: center;
	font-size: 12px;
}

.footer-sns {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-sns li {
	width: 30px;
	height: auto;
	margin-right: 10px;
}

.footer-sns img:hover {
	opacity: 0.7;
}

@media screen and (min-width: 993px) {
	.footer-top {
		display: flex;
		max-width: 1200px;
		margin: 0 auto 30px;
		justify-content: space-between;
	}
	.footer-top__btn {
		padding: 0.8rem 2.5rem;
	}
	.footer-nav {
		display: flex;
		flex-wrap: wrap;
	}
	.footer-info {
		display: flex;
	}
}

@media screen and (max-width: 992px) {
	.footer-top {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		width: 100%;
        place-items: center;
	}
	
	.footer-nav__item a {
		text-decoration: underline;
		float: left;
		margin-right: 1em;
	}
	
	.footer-unique .footer-nav__item a {
		float: none;
	}

	a.footer-nav__title-text {
    font-size: 15px;
    font-weight: 500;
	}
	
	.footer-nav_sp-small .footer-nav__title-text::after {
		content: none;
	}
	
	a.footer-top__btn {
		margin: 10px 10px;
		padding: 10px 0;
	}
	
	ul.footer-nav__group {
        padding: 5px;
        border-bottom: 1px solid #525d8b;
        margin: 0;
	}
	
	.sp-nav__flex {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	
	ul.footer-nav__group.footer-nav_sp-small {
		font-size: 15px;
		border-bottom: none;
		text-decoration: underline;
		padding: 0;
	}
	
	ul.footer-nav__group.footer-nav_sp-small.about {
		margin-top: 20px;
	}
	
	.footer-nav_sp-small li.footer-nav__title {
		font-size: 15px;
	}
	
	.footer-sp-nav-lang {
		display: flex;
		gap: 10px;
		width: 100%;
		margin: 20px auto 0px;
	}

	.footer-sp-nav-lang .footer-nav__group {
		flex: 1;
	}

	.footer-sp-nav-lang .footer-nav__title-text {
		display: block;
		color: #fff;
		text-decoration: none;
		font-size: 14px;
		padding: 6px 0;
		border: 1px solid #fff;
		background-color: rgba(255, 255, 255, 0.3);
		text-align: center;
		box-sizing: border-box;
	}

	.footer-unique-flex {
		display: block;
	}
	
	.footer-info {
		flex-direction: column;
		font-size: 15px;
        margin: 0;
	}
	
	.footer-info p {
        margin: 0;
	}
	
	.footer-info__title {
		font-size: 15px;
	}

	.footer-info__block {
		flex: 1 1 100%;
	}
	
	.footer-sns {
		margin-top: 5px;
	}
}

/******汎用アコーディオン******/

/* ボタン */
.b-acc-btn,
.b-acc-btn-sp {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

/* 矢印 */
.b-acc-arrow {
	display: inline-block;
	transition: transform 0.3s ease;
	pointer-events: none;
}
.b-acc-arrow.is-rotated {
	transform: rotate(180deg);
}

/* コンテンツ開閉 */
.b-acc-content,
.b-acc-content-sp {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.b-acc-content.is-active,
.b-acc-content-sp.is-active {
	max-height: 2200px;
}

.b-acc-btn-sp{
	position: relative;
	z-index: 5;
	pointer-events: auto;
}

@media screen and (min-width: 769px) {
	.b-accordion-sp .b-acc-content-sp {
		max-height: none;
		overflow: visible;
	}
}

/******目次******/
/* ===== 右下固定 目次 ===== */
:root {
	--toc-blue: #3C66C4;
	--toc-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	--toc-border: 3px solid var(--toc-blue);
	--toc-overhang: 10px; /* 画面外にはみ出す量 */
	--toc-gap: 18px; /* ボタンとパネルの隙間 */
	--toc-icon-w: 50px;
	--toc-icon-h: 30px;
}

/* 全体固定 */
.toc-wrap {
	position: fixed;
	right: calc(var(--toc-overhang) * -1);
	bottom: 26px;
	z-index: 99;
	animation: slideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
	0% {
		transform: translateX(120px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}


/* ボタン共通 */
.toc-toggle,
.toc-close {
	appearance: none;
	width: 107px;
	border: 0;
	cursor: pointer;
	background: var(--toc-blue);
	color: #fff;
	box-shadow: var(--toc-shadow);
	position: relative;
	text-align: left;
	padding: 18px 26px;
	border-top-left-radius: 60px;
	border-bottom-left-radius: 60px;
}

.toc-toggle {
	display: grid;
	gap: 6px;
	min-width: 100px;
	text-align: center;
}

.toc-toggle__jp {
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
}

.toc-toggle__en {
	font-size: 11px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
}

.toc-toggle::before {
	content: "";
	position: absolute;
	top: calc(var(--toc-icon-h) * -0.6);
	right: 25px;
	width: var(--toc-icon-w);
	height: var(--toc-icon-h);
	background: url("../img/common/icon-welcome.svg") no-repeat center / contain;
	pointer-events: none;
}

.mzmz .toc-toggle::before {
	width: 63px;
    height: 65px;
    top: -54px;
    right: 23px;
	background: url("../img/common/icon-mzmz.png") no-repeat center / contain;
}

.welcome .toc-toggle::before {
	background: url("../img/common/icon-welcome.svg") no-repeat center / contain;
}

.event .toc-toggle::before {
	background: url("../img/common/icon-event.svg") no-repeat center / contain;
}

.unique .toc-toggle::before {
	background: url("../img/imizu-unique/top/kirinuki-neko.webp") no-repeat center / contain;
}

.cat-seaside-area .toc-toggle::before {
	background: url("../img/imizu-unique/top/heart-aqua.svg") no-repeat center / contain;
}

.cat-souvenir-gourmet .toc-toggle::before {
	background: url("../img/imizu-unique/top/heart-orange.svg") no-repeat center / contain;
}

.cat-culture .toc-toggle::before {
	background: url("../img/imizu-unique/top/heart-lightgreen.svg") no-repeat center / contain;
}

.cat-festival .toc-toggle::before {
	background: url("../img/imizu-unique/top/heart-red.svg") no-repeat center / contain;
}

.cat-add-toyama .toc-toggle::before {
	background: url("../img/imizu-unique/top/heart-yellow.svg") no-repeat center / contain;
}

.spot .toc-toggle::before {
	background: url("../img/common/icon-spot.svg") no-repeat center / contain;
}

.info .toc-toggle::before {
	background: url("../img/common/icon-info.svg") no-repeat center / contain;
}

.course .toc-toggle::before {
	background: url("../img/common/icon-course.svg") no-repeat center / contain;
}

.access .toc-toggle::before {
	background: url("../img/common/icon-access.svg") no-repeat center / contain;
}


.toc-panel {
	position: absolute;
	right: var(--toc-overhang);
	bottom: calc(100% + var(--toc-gap));
	background: #fff;
	border: var(--toc-border);
	border-radius: 12px;
	box-shadow: var(--toc-shadow);
	padding: 34px 36px;
	min-width: min(350px, calc(100vw - 80px));
	overflow: visible;
	opacity: 0;
	transform: translate(10px,60px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
	z-index: -1;
}

.toc-list, .ez-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.ez-toc-list {
	padding-bottom: 1.3em;
}

.toc-list a, .ez-toc-list a {
	color: #000;
	text-decoration: none;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
	position: relative;
	display: inline-block;
}

.toc-list a:hover,
.ez-toc-list a:hover {
	text-decoration: underline;
}

.toc-list a::before,
.ez-toc-list a::before,
.toc-wrap.spot .toc-list a::before, 
.toc-wrap.event .toc-list a::before, 
.toc-wrap.info .toc-list a::before,
.toc-wrap.model .toc-list a::before {
	content: "";
	position: absolute;
	left: -1.2em;
	top: 0.3em;
	width: 1em;
	height: 1em;
}

.toc-list a::before,
.ez-toc-list a::before {
	background: url("../img/common/btn-anchor-blue.svg") no-repeat center;
	background-size: contain;
}

.toc-wrap.spot .toc-list a::before,
.toc-wrap.spot .ez-toc-list a::before {
	background: url("../img/common/btn-anchor-pink.svg") no-repeat center;
	background-size: contain;
}

.toc-wrap.event .toc-list a::before,
.toc-wrap.event .ez-toc-list a::before {
	background: url("../img/common/btn-anchor-yellow.svg") no-repeat center;
	background-size: contain;
}

.toc-wrap.info .toc-list a::before,
.toc-wrap.info .ez-toc-list a::before {
	background: url("../img/common/btn-anchor-blue.svg") no-repeat center;
	background-size: contain;
}

.toc-wrap.course .toc-list a::before,
.toc-wrap.course .ez-toc-list a::before {
	background: url("../img/common/btn-anchor-green.svg") no-repeat center;
	background-size: contain;
}

.toc-wrap.model .toc-list a::before,
.toc-wrap.model .ez-toc-list a::before,
.toc-wrap.cat-seaside-area .ez-toc-list a::before {
	background: url("../img/common/btn-anchor-aqua.svg") no-repeat center;
	background-size: contain;
}

.ez-toc-title-container {
	display: none;
}

.toc-wrap.is-open .toc-panel {
	opacity: 1;
	transform: translate(10px,40px);
	pointer-events: auto;
}

#ez-toc-container a {
	font-size: 18px;
	color: #000;
	box-shadow: none;
	text-decoration: none;
	text-shadow: none;
	align-items: stretch;
	flex-wrap: nowrap;
	display: block;
}

#ez-toc-container a:hover {
	text-decoration: underline;
}

/*****ボタン*****/

.btn-basic {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 90%;
	width: 400px;
	height: 75px;
	border-radius: 50px;
	text-decoration: none;
	transition: 0.3s;
	margin: 5px auto 25px;
	padding: 0 2em;
	position: relative;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	flex: 1;
}

.btn-basic::after{
	content: "";
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	right: 0.5em;
	background: url("../img/common/btn-white.svg") no-repeat center / contain;
	transition:right .3s ease;
}

/*.btn-basic:hover::after,
.btn-basic.small:hover::after,
.btn-basic.tiny:hover::after {
	right: 0.3em;
}

.btn-basic.tiny:hover::after {
	right: 0.8em;
}*/

.btn-basic:hover {
	opacity: 0.85;
}

.spot-btn__icon {
	width: 3.2em;
	height: auto;
	flex-shrink: 0;
}

.btn-basic.tiny {
	font-size: 17px;
}

.btn-catch p{
	text-align: center;
	font-weight: 500;
	color: #3C66C4;
	margin-bottom: 0px;
}

.btn-box p {
	text-align: center;
}

.btn-basic.btn-orange {
	background-color: #FA9100;
}
.btn-basic.btn-orange::after {
	background: url("../img/common/btn-white-orange.svg") no-repeat center / contain;
}


@media (max-width: 768px) {
.btn-basic {
	width: 90%;
	height: 52px;
	font-size: 17px;
}
.spot-btn__icon {
	width: 2.5em;
	height: auto;
}
.btn__icon--right {
	width: 1.8em;
	height: auto;
}
}

/*小ボタン*/
.btn-basic.small {
	width: 90%;
	max-width: 368px;
	height: 62px;
}


@media (max-width: 768px) {
.btn-basic.small {
	/*max-width: 257px;*/
	max-width: 300px;
	min-height: 54px;
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}
}

/*最小ボタン*/
.btn-basic.tiny {
	width: 250px;
	height: 51px;
}

.btn-basic.tiny::after {
	content: "";
	position: absolute;
	width: 1.3em;
	height: 1.3em;
	right: 1em;
	background: url("../img/common/btn-white.svg") no-repeat center / contain;
}

/**横並び**/
.frex-btn {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	gap: 20px;
}

.frex-btn p {
	text-align: center;
	margin-bottom: 5px;
	font-weight: 500;
	color: #3C66C4;
}

/**カミングスーン*/
.comingsoon-btn {
	color: #fff;
	border: 1px solid #777;
	background-color: #bbb;
}

@media screen and (max-width: 768px) {
.frex-btn {
	display: block;
}
}

.comingsoon-sub img {
	opacity: 0.7;
	filter: brightness(0.5);
}

.comingsoon-sub::before {
    content: "coming\Asoon";
    position: absolute;
    z-index: 1;
	width: 100%;
    top: 39%;
    font-family: "Fugaz One", sans-serif;
    color: #fff;
	font-size: 25px;
    line-height: 1.2em;
	display: flex;
    justify-content: center;
    align-items: center;
	white-space: pre-wrap;
}

.comingsoon-sub .btn-basic {
	color: #fff;
	border: 1px solid #777;
	background-color: #bbb;
}

/******青波背景******/

.frame-wave_wrap {
	position: relative;
	width: 100vw;
	margin: 150px calc(50% - 50vw) 0px;
	background-color: #EBEFF9;
	padding: 0px 0px 70px;
}

.frame-wave_wrap::before {
	content: "";
	position: absolute;
	top: -85px;
	left: 0;
	width: 100%;
	height: 90px;
	background-repeat: repeat-x;
	background-position: top center;
	background-size: auto 90px;
	z-index: -1;
	pointer-events: none;
}

.frame-wave_wrap::before {
	background-image: url("../img/common/wave-blue_top-bg.svg");
}

.frame-wave_wrap .page-container {
	padding: 0 16px;
}

/***タグ***/
.spot-tag {
	list-style: none;
	padding: 0;
	margin: 0;
	margin: 30px 0 0;
}

.spot-tag li {
	display: inline-flex;
}

.spot-tag a {
	font-size: 14px;
	border: 1px solid #000;
	padding: 0 10px;
	color: #000;
	text-decoration: none;
}

/****ページネーション****/
.pagination {
	text-align: center;
	font-size: 21px;
	margin-bottom: 20px;
}

.pagination a {
	color: #000;
}

span.page-numbers.current {
	color: #fff;
	background-color: #3C66C4;
	border-radius: 50%;
	border: 1.5px solid #3C66C4;
}

span.page-numbers.current,
a.page-numbers {
	font-weight: 500;
	padding: 0.2em 0.7em;
	text-decoration: none;
}

/*.pagination-arrow {
	border: 1.5px solid #3C66C4;
	border-radius: 50%;
	padding: 0.3em 0.7em;
}*/

.next:hover,
.prev:hover {
	opacity: 0.7;
}

.next,
.prev {
	font-size: 16px;
}

.pagination a.next,
.pagination a.prev {
	color: #3C66C4;
}

.pagination-arrow {
	margin: 0;
}

@media screen and (max-width: 768px) {
	span.page-numbers.current,
	a.page-numbers {
	font-size: 16px;
}
}


/**表**/
table.table-basic {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
}

.table-basic th,
.table-basic td {
	padding: 7px 12px;
	border: 1.5px solid #3C66C4;
	text-align: left;
	vertical-align: middle;
}

.table-basic th {
	font-size: 15px; 
	background-color: #3C66C4;
	color: #fff;
	text-align: center;
	border-bottom: 1.5px solid #fff;
	white-space: nowrap;
}

.table-basic tbody tr:last-of-type th:last-of-type {
	border-bottom: 1.5px solid #3C66C4;
}

.table-basic td {
	font-size: 18px;
	color: #000;
	background-color: #fff;
}

.table-basic.tb-blue td {
	background-color: #EBEFF9;
}

@media (max-width: 768px) {
	.table-basic table,
	.table-basic tbody,
	.table-basic tr,
	.table-basic th,
	.table-basic td {
		display: block;
	}

	.table-basic th {
		border-right: none;
		border-bottom: 1px solid #fff;
	}

	.table-basic td {
		border-top: none;
	}
}

/******404エラー*****/
.page-404 {
	margin-top: 150px;
}

@media screen and (max-width: 768px) {
	.page-404 {
		margin-top: 100px;
	}
}


/*****フェードインアニメーション*****/
/*下からフェードイン*/
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*ふわっと拡大表示*/
.zoom-in {
	opacity: 0;
	transform: scale(0.8);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(.22,1,.36,1);
	will-change: opacity, transform;
}

.zoom-in.is-visible {
	opacity: 1;
	transform: scale(1);
}


/****英語版***/
.en-site .toc-toggle {
	width: 125px;
}