 @charset "UTF-8";


/* *********************************

   common.css

	- Variable
	- Reset
	- Base
	- Layout
	- Navigation
	- Component
	- Animation
	- Utility

********************************* */



/* ========================================================
  
  Variable

======================================================== */
:root {
	--fw-bold: 600;

	--font-en: normal normal 400 100%/1 "Lexend Mega", sans-serif;
	/* --font-no: normal normal 400 100%/1 "Cardo", serif; */

	--color-base: #000;
	--color-bdr: #eaeaea;

	--color-nvy: #1c3670;
	--color-nvy-300: #3871b5;
	--color-taq: #62bac6;
	--color-blu-100: #f1f8f7;
	--color-yel: #ffff92;
	--color-org: #ff8949;
	--color-red: #c1272d;
	--color-ivo: #f9faf3;
	--color-gry: #8a969b;
	--color-gry-200: #ecf0f1;
	--color-gry-100: #f5f7f7;

	--accent-color: var(--color-taq);

	--bdr-solid: 1px solid #eaeaea;
}




/* ========================================================
  
  Reset

======================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fildset,p,blockquote,
figure,figcaption,hr {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: inherit;
}

ul{
	list-style:none;
}

img{
	display: block;
    /* width: 100%; */
    max-width: 100%;
    height: auto;
    /* object-fit: cover; */
}

picture {
	display:block;
}

table {
	width:100%;
	font-size:inherit;
	font:100%;
	border-collapse:separate;
	border-spacing:0;
}

button {
	display: block;
	padding: 0;
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
}






/* ========================================================
  
  Base

======================================================== */
html {
	font-size: 16px;
}
body {
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","游ゴシック","Yu Gothic",Meiryo,sans-serif;
	font-style: normal;
	color: var(--color-base);
	letter-spacing: .06em;
	line-height: 2;
	font-feature-settings: "halt";
	margin: 0;
	-webkit-text-size-adjust: 100%;
}

main {
	position: relative;
}

a {
	color: inherit;
	text-decoration: none;
	outline: 0;
	transition: color .8s, background-color .8s;
}

address {
	font-style: normal;
}

section {
	position: relative;
}

main {
	position: relative;
}

cite {
	display: block;
	text-align: right;
	font-size: min(1.5vw,100%);
	letter-spacing: normal;
	font-style: normal;
	line-height: 1.4;
	margin-top: 1em;
}

sup {
	font-size:60%;
}

hr {
	display: block;
	height: 1px;
	background: #e6e6e6;
	width: 100%;
	border: none;
	margin: 7% auto;
}

b {font-weight: var(--fw-bold);}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

body {
	line-height: 1.8;
}
}

@media(min-width: 768px) {
/* PC時はaタグ無効 */
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/* スマホのときはビューポートを基準にサイズ調節する */
/* スマホ時：emまたは%で指定する */
/* スマホ以外でビューポート基準にするときは、その都度「vw」で指定する */
html {
	font-size: 4vw;
}
body {
	line-height: 1.7;
	letter-spacing: .02em;
}
cite {
	font-size: 80%;
}
hr {
	margin: 12% auto;
}
}






/* ========================================================
  
  Layout

======================================================== */
.l-wrapper { overflow: clip; }


/*-----------------------------------------------
 Layout - header
-----------------------------------------------*/
.l-header {
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
	padding: min(3vw,40px) min(3.2vw,50px) 20px;
	z-index: 100;
}
.l-header__inner {
	position: relative;
	color: #FFF;
}

.l-header__txt {
	font-size: min(1.3vw,1rem);
	font-weight: var(--fw-bold);
	line-height: 1.3;
	margin-bottom: 1.2em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.l-header__inner {
	display: flex;
	justify-content: space-between;

	.c-logo {
		width: 20vw;
		max-width: 298px;
		grid-template-columns: none;
	}
	.c-logo__mark {
		position: absolute;
		width: 8.4vw;
		max-width: 129px;
		left: 50%;
		top: 0;
		translate: -50% 0;
	}
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-header {
	padding: 4vw;
}

.l-header__right {
	display: none;
}

.l-header__txt {
	font-size: 3vw;
	margin-bottom: .6em;
}
}

@media only screen and (min-width: 768px) and (max-width: 1500px) and (min-aspect-ratio: 1024/750) {

.l-header {
	padding: min(2.2vw,40px) min(3vw,50px) 15px;
}
.l-header__right {
	font-size: min(1.1vw,1rem);
}
.l-header__txt {
	font-size: min(1.1vw,88%);
	white-space: nowrap;
}
.l-header__inner {
	.c-logo {
		width: 18vw;
	}
	.c-logo__mark {
		width: 7vw;
	}
}
}

/*-----------------------------------------------
 Layout - l-nav
-----------------------------------------------*/
.l-nav {
	color: #FFF;
	margin-top: min(4vw,5em);

	.l-nav__list {
		justify-content: center;
	}
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
.l-nav {
	margin-top: min(2vw,5em);
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.l-nav {
	display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 1500px) and (min-aspect-ratio: 1024/750) {

.l-nav {
	margin-top: min(2vw,3em);
}
}

/* Navigation - l-nav - l-nav__list
-----------------------------------------------*/
.l-nav__list {
	position: relative;
	display: flex;
	column-gap: 2em;
	font-size: min(1.55vw,1.05rem);
	font-weight: var(--fw-bold);
	letter-spacing: .1em;
	line-height: 1.3;

	> li {
		position: relative;
		overflow: hidden;
	}
	> li > a {
		position: relative;
		display: flex;
		flex-direction: column;
		height: 1.2em;
		white-space: nowrap;

		> span {
			display: block;
			animation-delay: 0.1s;
			animation-fill-mode: both;
			animation-duration: 0.4s;

			&:nth-child(1) {
				translate: 0 0;
			}
			&:nth-child(2) {
				position: absolute;
				inset: 0;
				translate: 0 100%;
			}
		}
		&:hover {
			> span:nth-child(1) {
				animation-name: transform_toTop;
			}
			> span:nth-child(2) {
				animation-name: transform_toBase;
			}
		}
	}
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (max-width: 1500px) {

.l-nav__list > li > a {
	> br {
		display: block;
	}
}
}

/* Navigation - l-nav - l-nav__inmenu
-----------------------------------------------*/
.l-nav__inmenu {
	display: none;
	position: absolute;
	width: 16em;
	right: 50%;
	top: calc(100% + 1em);
	translate: 50% 0;
	background: var(--color-gry-100);
	padding: 2em;
	border-radius: 1.4em;
	z-index: 999;
}

/* inmenu */
.l-nav__inmenu ul {
	display: grid;
	gap: 1em;

	& a {
		position: relative;
		display: block;
		white-space: nowrap;

		&::before {
			display: inline-block;
			font-family: 'fontello';
			content: '\e801';
			opacity: 0;
			margin-left: -1em;
			transition: opacity .5s, margin .5s;
		}
		&:hover::before {
			margin-left: 0;
			opacity: 1;
		}
	}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.l-nav__inmenu {
	font-size: min(1.5vw,1.06rem);
}
}



/*-----------------------------------------------
 Layout - scl_header
-----------------------------------------------*/
#scl_header {
	position: fixed;
	color: #FFF;
    background: rgb(28 54 112 / 0.9);
	z-index: 500;
	left: 0;
	top: 0;
	width: 100%;
	/* padding: min(3vw,20px) min(3vw,30px); */
	padding-left: min(3vw,30px);
	translate: 0 -101%;

	&.is-show {
		display: block;
		translate: 0 0;
		opacity: 1;
		animation: sclAnimation 1.0s;
	}
}
.l-scroll__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.l-scroll {
	.c-cta-wrap {
		display: grid;
		row-gap: 0;
		max-width: 200px;
		margin: 0;

		> * {
			width: 100%;
			max-width: none;
		}
	}
	.c-cta-cap {
		display: none;
	}
}

@keyframes sclAnimation {
	0% {
		translate: 0 -100%;
	}
	100% {
		translate: 0 0;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#scl_header {
	display: none !important;
}
}

/*-----------------------------------------------
 Layout - drawer
-----------------------------------------------*/
.l-drawer__inner {
	padding: 10% 5%;
	border-bottom: 1px solid var(--color-nvy);

	&:last-child {
		border-bottom: none;
	}
	.c-cta-wrap {
		flex-wrap: wrap;

		> * {
			flex: auto;
		}
	}
	.c-cta-cap {
		font-size: 85%;
		margin-bottom: .4em;
	}
	.c-tel-txt {
		font-size: 7vw;
		margin-bottom: .2em;
	}
}

/* Layout - drawer - l-drawer__menu
-----------------------------------------------*/
.l-drawer__menu {
	font-size: 4vw;
	font-weight: var(--fw-bold);
	letter-spacing: .1em;
	line-height: 1.3;

	> li:nth-of-type(n+2) {
		margin-top: 2em;
	}
	& a {
		&::after {
			font-family: 'fontello';
			content: '\e800';
			font-size: 90%;
			margin-left: .8em;
		}
	}
}


/*-----------------------------------------------
 Layout - footer
-----------------------------------------------*/
.l-footer {
	position: relative;
	color: #FFF;
	background-color: var(--color-gry);
	padding: min(10vw,120px) 0 min(6vw,40px);
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-footer {
	padding: 14% 0 20%;
}
}

/* Layout - footer - inner
-----------------------------------------------*/
.l-footer__inner {
	display: grid;
	row-gap: 1.6em;

	& address {
		margin: 1.5em 0 2.5em;
	}
	& iframe {
		display: block;
	}
	.c-cta-wrap {
		margin-top: 5%;
	}
	.c-btn-en {
		text-align: right;
	}
}
.l-footer__time {
	position: relative;
	max-width: max-content;
	text-align: center;
	font-size: min(1.7vw,105%);
    font-weight: var(--fw-bold);
    line-height: 1.3;
    letter-spacing: .12em;
	background-color: var(--color-nvy);
	border-radius: 2em;
	padding: .4em 2em;
    margin: 0 auto -1em;

	> span {
		color: var(--color-yel);
	}
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.l-footer__inner {
	max-width: 1236px;
	justify-content: space-between;
	grid-template-columns: min(45%,503px) 51%;
	margin-inline: auto;

	.c-logo {
		width: 80%;
	}
	> li {
		max-width: max-content;
	}
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.l-footer__inner {
	& iframe {
		height: 50vw;
	}
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-footer__inner {
	& address {
		margin: 1.5em 0 1.5em;
	}
	& iframe {
		height: 80vw;
	}
}
.l-footer__time {
	font-size: 90%;
    letter-spacing: .08em;
}
}

/* Layout - footer - access
-----------------------------------------------*/
.l-footer__acs {
	display: flex;
	column-gap: 3%;
	text-align: center;
	font-size: min(1.4vw,1rem);
	font-weight: var(--fw-bold);
	line-height: 1.4;
	white-space: nowrap;
	margin-top: 4%;

	> li {
		flex: 1;

		& img {
			width: 3.75em;
			margin: 0 auto .3em;
		}
		& span {
			font-size: 125%;
		}
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-footer__acs {
	column-gap: 3%;
	font-size: 75%;
	margin-top: 6%;
}
}

/* Layout - footer - bottom
-----------------------------------------------*/
.l-footer__btm {
	border-top: 1px solid #78868c;
	padding: 35px 3.5% 0;
	margin-top: 50px;
}
.l-footer__bnr {
	width: 84%;
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3,32%);
	row-gap: .5em;

	> li {
		max-width: max-content;
	}
}

#page_top {
	text-align: right;
	font: var(--font-en);
	font-size: 88%;

	> a {
		position: relative;
		display: inline-block;
		padding-left: 2em;

		&::before {
			position: absolute;
			content: "";
			background: url(../images/common/icon-pagetop.svg) no-repeat;
			background-size: contain;
			width: 1.2em;
			height: 1.2em;
			left: 0;
			top: 0;
		}
		&:hover span {
			border-color: #45858c;
		}
	}
}
.copyright {
	display: block;
	text-align: center;
	font-size: 94%;
	line-height: 1.4;
	letter-spacing: .14em;
	margin-top: 3.5em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-footer__btm {
	padding: 8% 3% 0;
	margin-top: 10%;
}
.l-footer__bnr {
	width: 100%;
	grid-template-columns: repeat(2,49%);
}

#page_top {
	font-size: 80%;
	margin-top: 2em;
}
.copyright {
	font-size: 80%;
}
}


/*-----------------------------------------------
 Layout - sp_footer
-----------------------------------------------*/
#sp_footer {
	position: fixed;
	width: 100%;
	background-color: #fff;
	inset: auto 0 0 0;
	z-index: 10;

	.c-cta-wrap {
		flex-wrap: nowrap;
		gap: 0;
		width: 100%;

		> * {
			flex: auto;
			width: 50%;
			max-width: none;
		}
	}
	.c-cta-tel {
		text-align: center;
		background-color: #FFF;
		padding: 2% 2% 2% 6%;

		&::before {
			position: absolute;
			content: "";
			background: url(../images/common/icon-tap@2x.png) no-repeat;
			background-size: contain;
			width: 18%;
			aspect-ratio: 1;
			left: 2%;
			top: 0;
			translate: 0 -30%;
		}
	}
	.c-cta-btn {
		align-self: stretch;
	}
	.c-cta-btn--line {
		> a {
			&::before {
				translate: 0 -25%;
			}
		}
	}
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

#sp_footer {
	display: none;
}
}


/*-----------------------------------------------
 Layout - FV
-----------------------------------------------*/
.l-fv {
	position: relative;
	width: 100%;
}
.l-fv__img {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	inset: 0;
	margin: auto;
}


/*-----------------------------------------------
 Layout - float
-----------------------------------------------*/
.l-flt {
	position: relative;
	text-align: left;
	
	&::after {
		content: "";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden;
	}
}
.l-flt__img {
	position: relative;
	max-width: max-content;

	.abs {
		position: absolute;
	}
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.l-flt {
	.is-right {
		float: right;
	}
	.is-left {
		float: left;
	}
}
.l-flt__img {
	width: 40%;
	margin-bottom: .5em;

	&.is-left {
		margin-right: 5%;
	}
	&.is-right {
		margin-left: 5%;
	}
}
.l-flt__txt {
	.c-hdg--bld {
		text-align: left;
	}
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.l-flt__img {
	&.is-w {
	width: 45%;
}
}
.l-flt__txt {
	width: 100% !important;
	float: none;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-flt__img {
	width: 80%;
	margin: 0 auto 6%;
}
.l-flt__img {
	&.is-w {
	width: 96%;
}
}
}

/*-----------------------------------------------
 Layout - box
-----------------------------------------------*/

/* Layout - l-item-list
-----------------------------------------------*/
.l-item-list {
    display: grid;
    row-gap: 2.5em;
    margin-inline: auto;
}
.l-item-list > * {
	position: relative;
    background-color: var(--color-bei);
    padding: 10%;
    border-radius: 1.2em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.l-item-list {
    justify-content: space-between;
}
.l-item-list.col-3 {
    grid-template-columns: repeat(3,31%);
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-item-list {
    row-gap: 1em;
}
.l-item-list > * {
    padding: 8%;
}
}


/*---------------------------------------------------------
 Layout - bnr
---------------------------------------------------------*/
.l-bnr-m {
	display: block;
	width: 45vw;
	max-width: max-content;
	margin-inline: auto;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-bnr-m {
	width: 80%;
}
}


/*---------------------------------------------------------
 Layout - l-qa
---------------------------------------------------------*/
.l-qa {
	max-width: 1050px;
	margin-inline: auto;
}
.l-qa__item {
	margin-bottom: min(5%,50px);

	&:last-child {
		margin-bottom: 0;
	}
}
.l-qa__q,
.l-qa__a {
	position: relative;

	&::after {
		position: absolute;
		display: block;
		width: 1.9em;
		text-align: center;
		font: var(--font-en);
		font-size: min(3.2vw,2.2rem);
		line-height: 1.9;
		border-radius: 50%;
		left: 4.2%;
		top: 50%;
		translate: -50% -50%;
	}
}

.l-qa__q {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 4.3em;
	padding-left: 10%;

	&::after {
		content: "Q";
		color: #FFF;
		background-color: var(--color-taq);
	}
	.c-hdg--bld {
		margin-bottom: 0;
	}
}

.l-qa__a {
	background-color: var(--color-gry-100);
	padding: 1.6em 4% 1.6em 9%;
	margin-top: 1.2em;

	&::before {
		position: absolute;
		display: block;
		content: "";
		background-color: inherit;
		width: 1.05em;
		height: .9em;
		clip-path: polygon(50% 0, 100% 100%, 0 100%);
		left: 4.2%;
		bottom: 99%;
		translate: -50% 0;
	}
	&::after {
		content: "A";
		color: var(--color-taq);
		top: 1.3em;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-qa__item {
	margin-bottom: 8%;
}
.l-qa__q,
.l-qa__a {
	&::after {
		font-size: 6vw;
		left: 7%;
	}
}

.l-qa__q {
	min-height: 3em;
	padding-left: 16%;
}

.l-qa__a {
	padding: 7% 4% 7% 14%;
	margin-top: 5%;

	&::before {
		left: 7%;
	}
	&::after {
		top: 1.6em;
	}
}
}

/*---------------------------------------------------------
 Layout - fv--sub
---------------------------------------------------------*/
.l-fv--sub {
	position: relative;
	width: 100%;
	height: min(40vw,630px);
	min-height: 320px;
	overflow: hidden;

	.l-fv__img {
		position: absolute;
		inset: 0;
		overflow: hidden;

		picture {
			height: 100%;
		}
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			filter: grayscale(1);
		}
		&::after {
			position: absolute;
			content: "";
			background-color: #FFF;
			width: 100%;
			height: 18%;
			clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
			inset: auto 0 -0.5px 0;
		}
	}

	.l-fv__ttl {
		position: absolute;
		left: 6%;
		bottom: 25%;
		color: #FFF;
		font-size: min(4.56vw,4.375rem);
		font-weight: var(--fw-bold);
		letter-spacing: .06em;
		line-height: 1.3;

		.c-hdg--en {
			display: block;
			color: #FFF;
			font-size: min(1.6vw,2rem);
			margin-top: .4em;
		}
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.l-fv--sub {
	height: 60vw;
	min-height: auto;
	.l-fv__ttl {
		font-size: 6vw;

		.c-hdg--en {
			font-size: 3vw;
		}
	}
}
}



/*---------------------------------------------------------
 Layout - breadcrumb
---------------------------------------------------------*/
.l-breadcrumb {
	padding: 1em 0;

	ul {
		display: flex;
		justify-content: flex-end;
		column-gap: .6em;
		font-size: min(1.2vw,.8rem);
		color: var(--color-gry);
	}
	li {
		&:not(:last-child)::after {
			content: "ー";
			margin-left: .6em;
		}
	}
	a {
		color: inherit;
		text-decoration: underline;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-breadcrumb {
	ul {
		font-size: 3vw;
	}
}
}



/*---------------------------------------------------------
 Layout - lead
---------------------------------------------------------*/
.l-lead{
	margin-block: min(8vw,100px);

	h3 {
		font-size: min(3.2vw, 250%);
		font-weight: var(--fw-bold);
		margin-bottom: .6em;
	}
	p {
		line-height: 2.5;
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.l-lead {
	margin-top:4vw;
	margin-bottom: 8vw;

	h3 {
		font-size: 130%;
	}
	p{
		line-height: 2;
		text-align: left;
	}
}
}


/*---------------------------------------------------------
 Layout - anchor
---------------------------------------------------------*/
.l-anchor{
	ul{
		display: grid;
		grid-template-columns: repeat(3,1fr);
		column-gap: min(4vw,60px);
	}

	li {
		border-bottom: 1px solid #ccc;
		padding-bottom: 1.2em;
	}
	a {
		display: inline-flex;
		align-items: center;
		column-gap: .6em;
	}

	.l-anchor__icon {
		position: relative;
		flex-shrink: 0;
		width: 1.8em;
		height: 1.8em;
		border-radius: 50%;
		background-color: var(--color-org);

		&::before {
			position: absolute;
			content: "";
			left: 50%;
			top: 50%;
			width: .45em;
			height: .45em;
			border-right: .12em solid #FFF;
			border-bottom: .12em solid #FFF;
			translate: -50% -65%;
			rotate: 45deg;
		}
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.l-anchor {
	ul{
		grid-template-columns: repeat(2,1fr);
		column-gap: 4%;
		row-gap: .8em;
	}
	li {
		padding-bottom: .8em;
	}
	a {
		column-gap: .3em;
		font-size: 3.5vw;
	}

	.l-anchor__icon {
		width: 1.6em;
		height: 1.6em;
	}
}
}





/* ========================================================
  
  Navigation

======================================================== */

/*-----------------------------------------------
 Navigation - menu
-----------------------------------------------*/

/* Navigation - menu - c-menu-sp
-----------------------------------------------*/
.c-menu-sp {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 1px;
	font-size: 90%;
	font-weight: var(--fw-bold);
	line-height: 1.4;
	letter-spacing: .15em;

	& a {
		position: relative;
		display: block;
		color: #FFF;
		background-color: rgb(28 54 112 / 0.9);
		padding: 1.2em;

		&::before {
			position: absolute;
			font-family: 'fontello';
			content: '\e800';
			font-size: 90%;
			right: .6em;
			top: 50%;
			translate: 0 -50%;
		}
	}
}





/* ========================================================
  
  Component

======================================================== */


/*-----------------------------------------------
 Component - text
-----------------------------------------------*/
.c-txt--link {
	color: var(--accent-color);
	text-decoration: underline;
	text-underline-offset: .1em;
}
.c-txt--link:hover {
	text-decoration: none;
}

.c-txt--ast {
	display: block;
	font-size: 94%;
	line-height: 1.6;
	letter-spacing: .08em;
	margin-top: 1em;
}
ul.c-txt--ast {
	display: grid;
	row-gap: .2em;
}

.c-txt-center {
	text-align: center;
	font-size: 112%;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	margin-top: 2em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-txt--ast {
	font-size: 80%;
	letter-spacing: .04em;
}

.c-txt--radi {
	font-size: 110%;
}

.c-txt-center {
	font-size: 105%;
	line-height: 1.6;
	margin-top: 1.6em;
}
}


/*-----------------------------------------------
 Component - scroll
-----------------------------------------------*/
.scl-area {
	position: relative;

	--scr-bg-color: #d6d4c8;
}
.scl-area__txt {
	text-align: center;
	color: #9194A1;
	font-size: 80%;
	letter-spacing: .1em;
	line-height: 1.4;
	margin-bottom: 1em;
}
/* scrollbar */
.scl-area {
	&::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}

	&::-webkit-scrollbar-track {
		background: var(--scr-bg-color);
		border-radius: 2px;
	}

	&::-webkit-scrollbar-thumb {
		background-color: var(--accent-color);
		border-radius: 2px;

		&:hover {
			background-color: #555;
		}
	}
}

/* Firefox */
@-moz-document url-prefix(){
.scl-area {
	scrollbar-width: thin;         /* auto, thin, none */
	scrollbar-color: var(--accent-color) transparent; /* thumb track */
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.scl-area {
	overflow-x: scroll;
	padding-bottom: 8%;
}
}

/*-----------------------------------------------
 Component - accordion
-----------------------------------------------*/
.c-acd {
	position: relative;
}
.c-acd__trigger {
	position: relative;
	cursor: pointer;
	transition: color .5s, background-color .5s;
}
.c-acd__content {
	display: none;
}
.c-acd__close {
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s .1s;
}
/*c-acd__icon*/
.c-acd__icon {
	position: relative;
	letter-spacing: normal;
	line-height: 1.0em;
	display: inline-block;
	vertical-align: middle;
	width: 1.1em;
	height: 1.1em;
	border-radius: 50%;
	translate: 0 -0.1em;
	transition: background-color .5s;

	&::before,
	&::after {
		content: "";
		position: absolute;
		width: .6em;
		height: 1px;
		background: currentcolor;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	&::after {
		transform: rotate(90deg);
		transition: transform 0.4s;
	}
}
.c-acd__trigger.is-active {
	.c-acd__icon::after {
		transform: rotate(0deg);
	}
	+ .c-acd__content .c-acd__close {
		opacity: 1;
	}
}

/*-----------------------------------------------
 Component - hover
-----------------------------------------------*/
.c-hov--zoom {
	position: relative;
	overflow: hidden;

	> img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: translateZ(0);
		transition: scale .6s;
	}
}
.blocklink:hover .c-hov--zoom img,
a:hover .c-hov--zoom img {
	scale: 1.08;
}


/*-----------------------------------------------
 Component - contact
-----------------------------------------------*/
.c-cta-cap {
	font-size: 88%;
	font-weight: var(--fw-bold);
	line-height: 1.3;
	letter-spacing: .12em;
	white-space: nowrap;
	margin-bottom: .4em;

	> span {
		color: var(--color-nvy-300);
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-cta-cap {
	font-size: 70%;
	margin-bottom: .2em;
}
}

/* Component - contact - c-tel-txt
-----------------------------------------------*/
.c-tel-txt {
	font: var(--font-en);
	font-size: min(3vw,200%);
	letter-spacing: -0.04em;
	white-space: nowrap;

	&::before {
		display: none;
		font-family: 'fontello';
		content: '\e801';
		font-size: 90%;
		margin-left: -0.1em;
		margin-right: .2em;
	}
}
.l-header__inner {
	.c-tel-txt {
		font-size: 1.94rem;
	}
}
.l-scroll {
	.c-tel-txt {
		font-size: 1.45rem;
		padding: .5em 0;
		
		&::before {
			display: inline;
		}
	}
	.c-cta-btn--line {
		> a {
			&::before {
				translate: 0 -25%;
			}
		}
	}
}
.l-footer {
	.c-tel-txt {
		&::before {
			display: inline;
		}
	}
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.l-footer {
	.c-tel-txt {
		font-size: min(2.5vw,201%);
	}
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-tel-txt {
	font-size: 5vw;
}
}

/* Component - contact - c-cta-btn
-----------------------------------------------*/
.c-cta-btn {
	max-width: max-content;

	> a {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		transition: filter .6s;
		
		&:hover {
			filter: brightness(1.05);
		}
	}
}

.c-cta-btn--line {
	> a {
		background-color: #4cc764;

		&::before {
			position: absolute;
			content: "";
			background: url(../images/common/icon-beginner.svg) no-repeat;
			background-size: contain;
			width: 10%;
			height: 62%;
			right: 0;
			top: 0;
			translate: 25% -25%;
		}
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-cta-btn > a {
	
}
}

/* Component - contact - c-cta-wrap
-----------------------------------------------*/
.c-cta-wrap {
	position: relative;
	width: 100%;
	max-width: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 4%;
	row-gap: 1em;
	margin: auto;

	> * {
		position: relative;
		flex: 1;
		max-width: max-content;
	}
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.l-header__inner {
	.c-cta-wrap {
		display: grid;
	}
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-cta-wrap {
	row-gap: .4em;
}
}


/*-----------------------------------------------
 Component - heading
-----------------------------------------------*/
.c-hdg--bld {
	position: relative;
	font-size: min(2.4vw,200%);
	font-weight: var(--fw-bold);
	line-height: 1.4;
	letter-spacing: .06em;
	margin-bottom: .4em;
}
/* c-hdg--var */
.c-hdg--var {
	position: relative;
	font: var(--font-min);
	font-size: min(2vw,117%);
	line-height: 1.5;
	letter-spacing: .16em;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

/* c-hdg--bg */
.c-hdg--bg {
	position: relative;
	text-align: center;
	color: #FFF;
	font: var(--font-min);
	font-size: min(211%,2.8vw);
	line-height: 1.3;
	letter-spacing: .16em;
	background-color: var(--accent-color);
	padding: .8em 1em;
	margin-bottom: 1.2em;
}

/* c-hdg--radi */
.c-hdg--radi {
	position: relative;
	text-align: center;
	color: var(--color-nvy);
	font-size: min(2.2vw,150%);
	font-weight: var(--fw-bold);
	line-height: 1.3;
	letter-spacing: .08em;
	background-color: #FFF;
	border-radius: 2em;
	padding: .3em 1.4em;
	margin: 0 auto 1.2em;
}

.c-hdg--bdr {
	position: relative;
	text-align: center;
	font: var(--font-min);
	font-size: min(3.2vw,264%);
	line-height: 1.4;
	letter-spacing: .06em;
	padding-bottom: .8em;
	margin-bottom: 1em;
	border-bottom: 1px solid currentColor;
}

.c-hdg--bbl {
	position: relative;
	text-align: center;
	color: var(--color-nvy);
	font: var(--font-min);
	font-size: min(2.8vw,188%);
	line-height: 1.5;
	letter-spacing: .04em;
	/* color: var(--color-base); */
	background-color: #fff;
	border-radius: .6em;
	padding: .6em 1em;
	margin-bottom: .6em;
	box-shadow: 0 0 7px rgba(0,0,0,0.1);

	&::before {
		position: absolute;
		content: "";
		background-color: inherit;
		width: 1em;
		height: .7em;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		inset: auto 0 -0.6em 0;
		margin: auto;
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-hdg--bld {
	font-size: 130%;
	letter-spacing: .05em;
}

.c-hdg--bg {
	font-size: 130%;
	letter-spacing: .06em;
}

.c-hdg--radi {
	font-size: 120%;
	letter-spacing: .06em;
}

.c-hdg--bbl {
	font-size: 120%;
}

.c-hdg--bdr {
	font-size: 130%;
}
}

/* Component - heading - deco
-----------------------------------------------*/
.c-hdg--en {
	position: relative;
	font: var(--font-en);
	font-size: min(2.6vw,1.87rem);
	letter-spacing: -0.1em;

	&.is-lg {
		font-size: min(8vw,6.75rem);
	}
}
.c-hdg--en:last-child {
	margin-bottom: 0;
}

.c-hdg--deco {
	--color-grd: #def5b8;

	position: relative;
	max-width: max-content;
	text-align: center;
	font: var(--font-en);
	font-size: min(6.5vw,4.37rem);
	letter-spacing: .08em;
	line-height: 1.1;
	white-space: nowrap;
	margin-bottom: .2em;
	
	background-color: #dbdede;
	background-image: radial-gradient(var(--color-grd), transparent 50%);
    background-position: center center;
    background-size: 100% 4em;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c-hdg--deco.is-center {
	margin-inline: auto;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-hdg--en {
	font-size: 3.5vw;

	&.is-lg {
		font-size: 12vw;
	}
}
.c-hdg--deco {
	font-size: 10vw;
}
}


/*-----------------------------------------------
 Component - title
-----------------------------------------------*/
.c-title--enjp {
	display: grid;
	row-gap: 1em;
	margin-bottom: 4%;

	> * {
		margin-bottom: 0 !important;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-title--enjp {
	row-gap: .8em;
	margin-bottom: 8%;
}
}


/*-----------------------------------------------
 Component - text_deco
-----------------------------------------------*/
.c-txt--marker {
	position: relative;
	&::before {
		position: absolute;
		content: "";
		background-color: rgba(57,158,177,0.2);
		width: 100%;
		height: .25em;
		border-radius: .2em;
		left: 0;
		bottom: -0.18em;
	}
}
/*c-txt--fuki*/
.c-txt--fuki {
	position: relative;
	text-align: center;
	max-width: max-content;
	letter-spacing: .05em;
	line-height: 1.5;
	margin: 0 auto 1.5em;

	&::before,
	&::after {
		position: absolute;
		display: inline-block;
		content: "";
		background-color: currentColor;
		width: 1px;
		height: 1.2em;
		bottom: 0;
	}
	&::before {
		rotate: -32deg;
		right: calc(100% + 1em);
	}
	&::after {
		rotate: 32deg;
		left: calc(100% + 1em);
	}
}
/*c-txt--ccl */
.c-txt--ccl {
    position: relative;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	/* font-size: min(2vw,1.35rem); */
	font-weight: var(--fw-bold);
    letter-spacing: .1em;
	font-feature-settings: "palt";
    line-height: 1.3;
    width: min(9.5em);
	background-color: var(--accent-color);
	aspect-ratio: 1;
    border-radius: 50%;
	transition-duration: .5s;
	transition-property: color, background-color, scale;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/*c-txt--fuki*/
.c-txt--fuki {
	font-size: 120%;
}
}


/*-----------------------------------------------
 Component - list
-----------------------------------------------*/
.c-list {
	display: grid;
	row-gap: .4em;
	text-align: left;
	line-height: 1.5;
}
.c-list > li {
	position: relative;
	padding-left: 1.4em;

	&::before {
		position: absolute;
		content: "";
		font-family: 'fontello';
		font-weight: normal;
		left: 0;
		top: 0;
	}
}

.c-list--point > li {
	padding-left: 1em;

	&::before {
		display: block;
		background-color: var(--accent-color);
		width: .7em;
		height: .7em;
		border-radius: 50%;
		left: 0;
		top: .4em;
	}
}

.c-list--dot > li {
	padding-left: .7em;

	&::before {
		content: "・";
	}
}

.c-list--check > li {
	&::before {
		content: '\e808';
		color: var(--accent-color);
	}
}

.c-list--ast {
	font-size: 82%;
	margin-top: 1em;

	> li {
		padding-left: 1.1em;
		&::before {
			content: "※";
		}
	}
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.is-col2 {
	column-count: 2;
}
.is-col3 {
	justify-content: space-between;
	grid-template-columns: repeat(3,32%);
	column-count: 3;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-list {
	row-gap: .4em;
}

.c-list--ast {
	font-size: 90%;
}
}


/*-----------------------------------------------
 Component - c-sns-list
-----------------------------------------------*/
.c-sns-list {
	display: flex;
	column-gap: .4em;
	font-size: 2.5rem;
	margin-top: .6em;
}
.c-sns-list li {
	width: 1em;
}
.c-sns-list a {
	display: block;
	transition: filter .5s;

	&:hover {
		filter: invert(0.8) sepia(1);
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-sns-list {
	font-size: 8vw;
}
}


/*-----------------------------------------------
 Component - bg
-----------------------------------------------*/
.c-bg-color {
	position: absolute;
	background-color: var(--color-gry-200);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100vw;
	height: 100%;
	left: 0;
	top: 0;
	margin-inline: calc(50% - 50vw);
	z-index: -2;
	overflow: clip;
	pointer-events: none;
}

.c-bg-tri {
	position: absolute;
	content: "";
	background-color: var(--color-gry-100);
	width: 100%;
	height: min(14vw,216px);
	inset: auto 0 calc(100% - 1px) 0;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	z-index: -1;
}

.c-bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	max-height: 100%;
	top: 0;
	z-index: -2;
	overflow: clip;

	> img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		pointer-events: none;
	}

	&.is-max {
		width: 100vw;
		left: calc(50% - 50vw);

		-webkit-mask-image: linear-gradient(to top, transparent 10%, black 80%);
		mask-image: linear-gradient(to top, transparent 10%, black 80%);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-size: auto;
		mask-size: auto;
	}

	&.pos-l,
	&.pos-r {
		width: 62vw;
		max-width: 960px;
		color: var(--color-bei);
		background-color: currentColor;

		&::after {
			position: absolute;
			content: "";
			width: 101%;
			height: 101%;
			inset: -1px;
			pointer-events: none;
			background:
				linear-gradient(to right, transparent 30%, currentColor 100%),
				linear-gradient(to bottom, transparent 50%, currentColor 100%);
		}
	}
	&.pos-l {
		left: calc(50% - 50vw);
	}
	&.pos-r {
		left: auto;
		right: calc(50% - 50vw);

		&::after {
			scale: -1 1;
		}
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-bg-img {
	&.pos-l,
	&.pos-r {
		width: 70vw;
	}
}
}

/*-----------------------------------------------
 Component - c-icon
-----------------------------------------------*/
.c-icon {
    position: relative;
	display: inline-block;
    text-align: center;
	letter-spacing: normal;
	width: 1.1em;
	height: 1.1em;
	overflow: hidden;

	&::before,
	&::after {
		position: absolute;
		display: block;
		font-family: 'fontello';
		content: '\e800';
		font-weight: normal;
		text-align: center;
		width: 100%;
		left: 0;
		top: 0;
		transition: all .4s;
		animation-delay: 0.1s;
		animation-fill-mode: both;
		animation-duration: 0.6s;
	}

	&.is-wh {
		color: var(--color-base);
		background-color: #FFF;
	}
	&.is-out {
		rotate: -45deg;
	}
}
.hov-arw:hover .c-icon,
a:hover .c-icon {
	background-color: var(--color-cml);

	&::after {
		animation-name: transformLeftRight;
	}
	&::before {
		animation-name: transformRightLeft;
	}
}
@keyframes transformLeftRight {
	0% {	translate: -100% 0;}
	100% {	translate: 0 0;}
}
@keyframes transformRightLeft {
	0% {	translate:  0 0;}
	100% {	translate:  100% 0;}
}

/*-----------------------------------------------
 Component - link
-----------------------------------------------*/

/* Component - link - c-btn-bg
-----------------------------------------------*/
.c-btn-bg {
	margin-top: 2em;

	> a {
		position: relative;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		column-gap: .8em;
		min-width: 16em;
		max-width: 100%;
		height: 3em;
		text-align: left;
		font-size: min(1.4vw,1.25rem);
		font-weight: var(--fw-bold);
		letter-spacing: .1em;
		line-height: 1.2;
		font-feature-settings: "palt";
		color: #FFF;
		background-color: var(--color-taq);
		border-radius: .5em;
		padding: .5em 1em;
		transition: filter .5s;

		&:hover {
			filter: brightness(1.08);
		}
	}

	.c-icon {
		/* position: absolute;
		right: 1em;
		top: 50%;
		translate: 0 -50%; */
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-btn-bg {
	text-align: center;
	margin-top: 1.5em;

	> a {
		font-size: 90%;
	}
}
}

/* Component - link - c-btn-en
-----------------------------------------------*/
.c-btn-en {
	margin-top: .8em;

	> a {
		position: relative;
		display: inline-block;
		text-align: left;
		font: var(--font-en);
		font-size: min(1.8vw,0.87rem);
		letter-spacing: .08em;
		padding-right: 1.4em;
	}

	.c-icon {
		position: absolute;
		right: 0;
		top: 60%;
		translate: 0 -50%;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-btn-en {
	margin-top: .6em;

	> a {
		font-size: 90%;
	}
}
}

/* Component - link - c-btn-insta
-----------------------------------------------*/
.c-btn-insta {

	> a {
		position: relative;
		display: inline-block;
		text-align: left;
		font: var(--font-en);
		font-size: min(1.8vw,1rem);
		letter-spacing: .16em;
		padding: .5em 0 .5em 3em;

		&::before {
			position: absolute;
			content: "";
			background: url(../images/common/icon-instagram@2x.png) no-repeat;
			background-size: contain;
			width: 2em;
			height: 2em;
			left: 0;
			top: 0;
		}
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-btn-insta {
	text-align: center;

	> a {
		font-size: 90%;
	}
}
}

/* Component - link - c-btn-wrap
-----------------------------------------------*/
.c-btn-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 3%;
	margin-top: 1.4em;

	&.is-center {
		justify-content: center;
	}

	> * {
		margin-top: 0 !important;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-btn-wrap {
	justify-content: center;
	row-gap: .6em;
}
}


/*---------------------------------------------------------
 Component - slider
---------------------------------------------------------*/
.c-slide--ticker .splide__track {
	overflow: visible;

	.splide__slide {
		width: 33vw;
		max-width: max-content;
	}
}
/* dot */
.c-slide--fade .splide__pagination {
	position: relative;
}
/* .c-slide--fade .splide__pagination {
	gap: 28px;
	margin-top: 15px;

	& button {
		display: block;
		background-color: #e6e6e6;
		border: none;
		border-radius: 50%;
		width: 10px;
		height: 10px;
		padding: 0;
		opacity: 1;
		transition: background-color .5s;
		cursor: pointer;
		outline: none;
		
		&.is-active,
		&:hover {
			background-color: var(--color-primary);
		}
	}
} */
/* arrow */
.splide__arrow {
	display: block;
	width: 1em;
	font-size: min(5vw,4em);
	font-weight: normal;
	aspect-ratio: 1;
	color: #FFF;
	background-color: var(--color-grn);
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color .5s;
	box-shadow: 0 0 5px rgb(0 0 0 / 0.05);

	&::before {
		display: block;
		content: "";
		background: url(../images/common/icon-arrow.svg) no-repeat center center;
		background-size: 23% auto;
		width: 100%;
		height: 100%;
	}
	&::before {
		scale: -1 1;
	}
	&:hover {
		background-color: var(--color-brw-600);
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-slide--ticker .splide__track {
	.splide__slide {
		width: 50vw;
	}
}
/* arrow */
.splide__arrow {
	font-size: 8vw;
}
}



/*---------------------------------------------------------
 Component - info
---------------------------------------------------------*/
address {
	font-size: min(1.8vw,94%);
	line-height: 1.6;
	/* letter-spacing: .1em; */
}
.c-cliname {
	font: var(--font-min);
	font-size: min(3vw,281%);
	letter-spacing: .15em;
	line-height: 1.4;
	font-feature-settings: "palt";
	margin-bottom: .4em;
}

.c-logo {
	max-width: 345px;
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 32% 60%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

address {
	font-size: 90%;
}
.c-cliname {
	font-size: 150%; 
}

.c-logo {
	width: 60vw;
	grid-template-columns: 28% 65%;
}
}

/* Component - info - c-timetable
-----------------------------------------------*/
.c-timetable-wrap {
	max-width: 550px;
	background-color: #FFF;
	padding: 3% 5% 6%;
	border-radius: 10px;
	border: 1px solid #cfcfcf;
}

.c-timetable {
	width: 100%;
	/* width: 37em; */
	max-width: 100%;
	color: var(--color-nvy);
	font-size: min(1.5vw,1.05rem);
	font-weight: var(--fw-bold);
	line-height: 1.2;
	border-collapse: separate;
	border-spacing: 0 1em;
	margin-inline: auto;

	& th,
	& td {
		text-align: center;
		vertical-align: middle;
		white-space: nowrap;
	}
	& th {
		width: 36%;
		letter-spacing: .14em;
	}
	& td {
		width: 8%;
	}
	& caption {
		caption-side: bottom;
	}
	.c-schedule {
		justify-content: center;
		padding-top: 1.2em;
		border-top: 1px solid #cfcfcf;
	}
}
.c-timetable thead {
	& th {
		letter-spacing: .3em;
	}
}
.c-timetable tbody {
	& th {
		text-align: right;
		font: var(--font-en);
		font-size: 114%;
		letter-spacing: normal;
		padding-right: .8em;
	}
	& td {
		font-size: 80%;
		font-weight: normal;
		vertical-align: middle;
	}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-timetable {
	font-size: 3.2vw;
}
}

/* Component - info - c-schedule
-----------------------------------------------*/
.c-schedule {
	display: flex;
	flex-wrap: wrap;
	gap: .2em 1em;
	line-height: 1.4;
	margin-top: 1em;

	& span {
		font: var(--font-en);
		letter-spacing: normal;
		font-size: 107%;
	}
	& i {
		color: var(--color-taq);
		margin-left: -0.2em;
	}
}
.c-timetable .c-schedule {
	font-size: 92%;
	margin-top: .2em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.c-schedule {
	font-size: 85%;
	margin-top: .8em;
}
}

/*---------------------------------------------------------
 Component - under-title
---------------------------------------------------------*/

.c-title--under{
    font-size: min(3.2vw, 190%);
    font-weight: var(--fw-bold);
    text-align: center;
    color: #FFF;
    line-height: 1.3;
    letter-spacing: .16em;
	max-width: 1336px;
    margin-inline: auto;
    padding: 1.2em 1em;
    background-color: var(--accent-color);
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px){
.c-title--under {
	font-size: 130%;
}
}


/*---------------------------------------------------------
 Component - note
---------------------------------------------------------*/

.c-note {
	margin-top: 30px;

	small {
		display: block;
		line-height: 1.6;
		margin-top: .2em;
		font-size: 90%;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.c-note {
	font-size: 4vw;
	margin-top: 4%;

	small{
		font-size: 3.2vw;
	}
}
}






/* ========================================================
  
  Animation

======================================================== */
.u-anm--fade,
.u-anm--fadelist > li {
	opacity: 0;
	transition: opacity 1.5s ease;
}
.is-animated .u-anm--fade,
.is-animated.u-anm--fade,
.u-anm--fadelist.is-animated > li {
	opacity: 1;
}
.u-anm--fadelist {
	> li {
		&:nth-of-type(2) {transition-delay: .2s}
		&:nth-of-type(3) {transition-delay: .4s}
		&:nth-of-type(4) {transition-delay: .6s}
		&:nth-of-type(5) {transition-delay: .8s}
		&:nth-of-type(6) {transition-delay: 1.0s}
		&:nth-of-type(7) {transition-delay: 1.2s}
	}
}

.u-anm--up {
	opacity: 0;
	translate: 0 10px;
	transition: opacity 1.2s .2s, translate 1.2s .2s;
}
.is-animated .u-anm--up,
.is-animated.u-anm--up {
	opacity: 1;
	translate: 0 0;
}

.u-anm--down {
	opacity: 0;
	translate: 0 -10px;
	transition: opacity 1.5s .2s, translate 1.5s .2s;
}
.is-animated .u-anm--down,
.is-animated.u-anm--down {
	opacity: 1;
	translate: 0 0;
}

.u-anm--zoom {
	opacity: 0;
	scale: 0.8;
	transition: scale 1s .3s, opacity 1s .4s;
}
.is-animated .u-anm--zoom,
.is-animated.u-anm--zoom {
	opacity: 1;
	scale: 1;
}

.u-anm--txt {
	display: inline-block;
	white-space: nowrap;

	> * {
		display: inline-block;
		width: 0;
		overflow: hidden;
	}
	&.is-animated > * {
		animation: TEXT_SHOW_CLIP 1.2s linear forwards;
	}
}

@keyframes TEXT_SHOW_CLIP {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}
@keyframes TEXT_SHOW_CLIP_VERTICAL {
	from {
		height: 0%;
	}
	to {
		height: 100%;
	}
}

.u-anm-hov {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 1.2em;
	white-space: nowrap;
	overflow: hidden;

	> span {
		display: block;
		height: 100%;
		animation-delay: 0.1s;
		animation-fill-mode: both;
		animation-duration: 0.4s;

		&:nth-child(1) {
			translate: 0 0;
		}
		&:nth-child(2) {
			position: absolute;
			inset: 0;
			translate: 0 100%;
		}
	}
	&:hover {
		> span:nth-child(1) {
			animation-name: transform_toTop;
		}
		> span:nth-child(2) {
			animation-name: transform_toBase;
		}
	}
}

@keyframes transform_toTop {
	0% {	translate: 0 0;}
	100% {	translate: 0 -100%;}
}
@keyframes transform_toBase {
	0% {	translate: 0 100%;}
	100% {	translate: 0 0;}
}

/*PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {

/* .u-anm--up:nth-of-type(2),
.u-anm--fade:nth-of-type(2) {transition-delay: .2s}
.u-anm--up:nth-of-type(3),
.u-anm--fade:nth-of-type(3) {transition-delay: .4s} */
}



/* ========================================================
  
  Utility

======================================================== */
/* font */
.u-font--min {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	letter-spacing: .06em;
}
.u-font--en {
	font: var(--font-en);
	letter-spacing: .1em;
	line-height: 1;
	font-optical-sizing: auto;
}

/* Font-weight */
.u-fw--bold{font-weight: var(--fw-bold);}
.u-fw--normal{font-weight: normal;}	

/* Font-weight */
.u-fz--sm{font-size: 94%;}
.u-fz--lg{font-size: 112%;}

/* Line-height */
.u-lh--l {line-height: 2.6;}

/* Text-align */
.u-align--l{text-align:left;}
.u-align--r{text-align:right;}
.u-align--c{text-align:center;}
.u-align--l-sp{text-align:center;}

/* Block-link */
.blocklink,
.blocklink_out,
.blocklink_ank{
	cursor:pointer;
}

/* text color */
.u-color--accent { color: var(--accent-color);}
.u-color--nvy { color: var(--color-nvy);}
.u-color--taq { color: var(--color-taq);}
.u-color--red { color: var(--color-red);}

/* background color */
.u-bg--wh {background-color: #fff;}
.u-bg--ivo {background-color: var(--color-ivo);}
.u-bg--bei {background-color: var(--color-bei);}

/* img */
img.size-max {width: 100%;}

/* radius */
.u-radi--full {border-radius:50%;}
.u-radi--10px {border-radius: 10px;}
.u-radi--20px {border-radius: min(2.4vw,20px);}
.u-radi--30px {border-radius: min(2.6vw,30px);}
.u-radi--50px {border-radius: clamp(30px,4.5vw,50px);}
.u-radi--60px {border-radius: clamp(40px,5vw,60px);}


/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

/* Font-weight */
.u-fz--lg{font-size: 105%;}

/* Line-height */
.u-lh--l {line-height: 2.3;}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/* Text-align */
.u-align--l-sp{text-align:left;}

/* Font-weight */
.u-fz--sm{font-size: 90%;}
.u-fz--lg{font-size: 100%;}

/* Line-height */
.u-lh--l {line-height: 2.1;}
}

/*-----------------------------------------------
 Utility - size
-----------------------------------------------*/
.u-size--20 {font-size: min(2vw,125%);}
.u-size--25 {font-size: min(2.2vw,156%);}
.u-size--24 {font-size: min(2.2vw,150%);}
.u-size--35 {font-size: min(3.2vw,218%);}
.u-size--40 {font-size: min(3.5vw,250%);}
.u-size--45 {font-size: min(4vw,281%);}
.u-size--50 {font-size: min(4.4vw,312%);}
.u-size--60 {font-size: min(5.2vw,375%);}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.u-size--20 {font-size: 115%;}
.u-size--25 {font-size: 120%;}
.u-size--24 {font-size: 120%;}
.u-size--35 {font-size: 135%;}
.u-size--40 {font-size: 140%;}
.u-size--45 {font-size: 145%;}
.u-size--50 {font-size: 160%;}
.u-size--60 {font-size: 165%;}
}

/*-----------------------------------------------
 Utility - border/padding
-----------------------------------------------*/
.u-pdg--sm,
.u-pdg--md,
.u-pdg--lg,
.u-pdg--xl {
	position: relative;
}
.u-pdg--sm {
	padding: min(6vw,80px) 0;
}
.u-pdg--md {
	padding: min(8vw,100px) 0;
}
.u-pdg--lg {
	padding: min(10vw,120px) 0;
}
.u-pdg--xl {
	padding: min(12vw,150px) 0;
}

.u-bdr--b {
	padding-bottom: min(6%,60px);
	margin-bottom: min(6%,60px);
	border-bottom: 1px solid var(--color-bdr);
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.u-pdg--s {
	padding: 10% 0;
}
.u-pdg--m {
	padding: 12% 0;
}
.u-pdg--l {
	padding: 15% 0;
}
.u-pdg--xl {
	padding: 18% 0;
}
.u-bdr--b {
	padding-bottom: 10%;
	margin-bottom: 10%;
	border-width: 1px;
}
}


/*---------------------------------------------------------
 anchor
---------------------------------------------------------*/
/* [id] {
	position: relative;
} */
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
[id] {
	scroll-margin-top: min(14vw,100px);
}
}

/*---------------------------------------------------------
 Utility - width
---------------------------------------------------------*/
.max_width,
.w1440,.w1400,
.w1360,.w1340,.w1300,
.w1280,.w1240,.w1200,
.w1180,.w1100,.w1000 {
	box-sizing: content-box;
	width: 92%;
	padding: 0 4%;
	margin-inline: auto;
}
.max_1500 {
	max-width: 1500px;
	margin-inline: auto;
}
.w1440 {max-width: 1440px;}
.w1400 {max-width: 1400px;}
.w1360 {max-width: 1360px;}
.w1340 {max-width: 1340px;}
.w1300 {max-width: 1300px;}
.w1280 {max-width: 1280px;}
.w1240 {max-width: 1240px;}
.w1200 {max-width: 1200px;}
.w1180 {max-width: 1180px;}
.w1100 {max-width: 1100px;}
.w1000 {max-width: 1000px;}

.u-inner {
	width: 96%;
	max-width: 1200px;
	margin-inline: auto;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.max_width,
.w1440,.w1400,
.w1360,.w1340,.w1300,
.w1280,.w1260,.w1200,
.w1180,.w1100,.w1000 {
	width: 90%;
	padding: 0 5%;
}
}

/*---------------------------------------------------------
margin
---------------------------------------------------------*/
.u-mb--xl {margin-bottom: 150px;}
.u-mb--lg {margin-bottom: 120px;}
.u-mb--md {margin-bottom: 100px;}
.u-mb--sm {margin-bottom: 80px;}
.u-mb--xs {margin-bottom: 60px;}
.u-mb--xxs {margin-bottom: 40px;}
.mgn_b_1em {margin-bottom: 1em;}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.u-mb--xl {margin-bottom: 12%;}
.u-mb--lg {margin-bottom: 10%;}
.u-mb--md {margin-bottom: 8%;}
.u-mb--sm {margin-bottom: 7%;}
.u-mb--xs {margin-bottom: 5%;}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.u-mb--xl {margin-bottom: 15%;}
.u-mb--lg {margin-bottom: 14%;}
.u-mb--md {margin-bottom: 12%;}
.u-mb--sm {margin-bottom: 10%;}
.u-mb--xs {margin-bottom: 8%;}
.u-mb--xxs {margin-bottom: 6%;}
}


/* PC
------------------------------------------*/
@media only screen and (min-width: 960px)  {
.tb_only{display:none !important;}
.sp_only{display:none !important;}
.sp_tb{display:none !important;}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.pc_only{display:none !important;}
.sp_only{display:none !important;}
.sp_pc{display:none !important;}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.pc_only{display:none !important;}
.tb_only{display:none !important;}
.tb_pc{display:none !important;}
}
