@charset "UTF-8";
/*--------------------------------
common
--------------------------------*/
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.small-text {
	font-size: 75%;
}
.small-text02 {
	font-size: 85%;
}
.small-text03 {
	font-size: 80%;
}
.middle-text{
	font-size: 125%;
}
.large-text{
	font-size: 150%;
}
.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}
.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.has-max {
	height: auto;
	max-width: 100%;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.align-center{
	align-items: center;
}
.has-gap{
	gap: 16px;
}
.col-2{
	width: 50%;
}
.col-3{
	width: calc(100% / 3);
}
.col-4{
	width: calc(100% / 3);
}
.has-gap .col-2{
	width: calc(50% - 8px);
}
.has-gap .col-3{
	width: calc(100% / 3 - 11px);
}
.has-gap .col-4{
	width: calc(100% / 4 - 12px);
}
@media screen and (max-width: 767px){
	.col-2,
	.has-gap .col-2,
	.col-3,
	.has-gap .col-3{
		width: 100%;
	}
	.has-gap .col-4{
		width: calc(50% - 8px);
	}
	.has-gap .sp-col-3{
		width: 100%;
	}
}
.img-wrapper{
	position: relative;
}
.img-wrapper .caption{
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}
.caption.cap-top{
    height: fit-content;
	top: 62%;
	bottom: auto;
	opacity: .7;
}
.inline-block{
	display: inline-block;
}
.grid-wrapper{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.grid-col-2{
	grid-template-columns: repeat(2, 1fr);
}
.grid-col-3{
	grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
	grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px){
	.grid-wrapper{
		grid-template-columns: 1fr;
	}
	.caption.cap-top{
		top: 70%;
	}
	.sp-text-right{
		text-align: right;
	}
	.grid-col-2,
	.grid-col-3{
		grid-template-columns: repeat(1, 1fr);
	}
	.grid-col-4{
		grid-template-columns: repeat(2, 1fr);
	}
}
.primary-heading{
	margin-bottom: .8em;
	font-size: 4.4rem;
	font-size: clamp(2.6rem, 3.95vw, 4.4rem);
	font-weight: 400;
	line-height: 1.3;
}
.secondary-heading{
	margin-bottom: CLAMP(1.8em, 4.32vw, 2.4em);
	font-size: clamp(1.8rem, 3.2vw, 3.2rem);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: clamp(.3rem, .5vw, .5rem);
}
.tertiary-heading{
	margin-bottom: clamp(.3em, 1.28vw, .8em);
	font-size: clamp(1.7rem, 2.65vw, 2.65rem);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: clamp(.4rem, .6vw, .6rem);
}
.quaternary-heading{
	margin-bottom: 1.6em;
	font-size: clamp(1.65rem, 2.2vw, 2.2rem);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .6rem;
}
.page-heading{
	margin-bottom: .8em;
	font-size: 4rem;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: .2em;
	text-indent: .1em;
}
.font-palt{
	font-feature-settings: "palt";
}
/* @media screen and (max-width: 767px){
	.primary-heading{
		font-size: 2.6rem;
	}
	.secondary-heading{
		font-size: 2rem;
	}
	.tertiary-heading{
		font-size: 1.8rem;
	}
} */
.note{
	margin: 1em 0;
	font-size: clamp(1.3rem, 1.8vw, 1.8rem);
	line-height: 2;
	letter-spacing: .3rem;
}
.lead{
	margin: 1em 0;
	font-size: clamp(1.4rem, 2.15vw, 2rem);
	line-height: 1.6;
}
.caption{
	margin: .4em 0;
	font-size: 1.2rem;
	line-height: 1.4;
}
.general-section .inner-fit{
	width: 100%;
	max-width: none;
}
.general-section .inner-lwide{
	max-width: 1350px;
}
.general-section .inner-wide{
	max-width: 1520px;
}
.general-section .inner-mid{
	max-width: 1100px;
}
.general-section .inner-small{
	max-width: 1040px;
}
.general-section .inner-full{
	max-width: none;
}
.general-section .inner + .inner{
	padding-top: 0;
}
@media screen and (max-width: 767px){
	.general-section .inner{
		width: calc(100% - 36px);
		.inner{
			width: 100%;
		}
	}
	.sp-text-center{
		text-align: center;
	}
}

/* add */

.img-wrapper .public-caption{
  bottom: -20px;
}