@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: 1300px;
}
.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;
	}
}


/* footer 追加*/
.l-header-nav dd:nth-of-type(1) li {
    margin-block: 16px;
}
@media screen and (max-width: 767px) {
	.l-header-nav dd:nth-of-type(1) li {
		margin-block: 13px;
	}
    .footer-nav__inner dl dt {
        margin-block-end: 10px;
    }
}
.header-linkWrap{
	display: flex;
	align-items: center;
	gap: 16px;
}
.request-header{
	display: block;
	animation: fadeIn 2s ease-out 1s;
}
.header-request{
	padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    right: calc(0% + 100px);
    width: fit-content;
    z-index: 11;
    transition: 1s cubic-bezier(0.22, 1, 0.68, 1.01);
	height: 75px;
    display: inline-flex;
	flex-direction: column;
	justify-content: center;
	transition: 2.5s;
}
 .nvop .header-request{
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.header-request a{
	font-family: var(--font-cin);
    color: #ffffff;
    background-color: #610d32;
    max-width: 275px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    position: relative;
	margin: 0;
    height: 40px;
    font-size: clamp(1.3rem, 1.26rem + 0.125vw, 1.5rem);
    letter-spacing: 0.1em;
	width: 200px;
	transition: .6s;
}
.header-request a:hover{
	background-color: #000;
	color: #fff;
	opacity: 1;
	transition: .6s;
}
.l-header-nav .c-btn a{
	border-radius: 0px;
	width: 100%;
	background: #610d32 ;
	transition: .6s;
}
.l-header-nav .c-btn a:hover{
	color: #fff;
	opacity: .8;
}
@media screen and (max-width: 767px) {
	.l-header-nav .c-btn a{
		font-size: 1.4rem;
	}
	.header-request{
		display: none;
	}
	.l-header-nav dd:nth-of-type(1) li.sp-none {
		display: none;
	}
	.l-header-nav dd:nth-of-type(1) li a {
		font-size: 1.4rem;
		letter-spacing: 0.15em;
	}
}
@media screen and (max-width: 767px) {
    .l-header-nav {
        gap: 15px;
    }
	.footer_map-link{
		display: none;
	}
}
.footer-cv-area{
	padding: 40px 0;
	border-bottom: 1px solid #ebece8;
}
.footer-cv-area p{
	font-size: clamp(2rem, 1.76rem + 0.75vw, 3.2rem);
}
.footer-cv-btn{
	font-family: var(--font-cin);
    font-size: clamp(1.6rem, 1.52rem + 0.25vw, 2rem);
    color: #fff;
    background-color: #610d32;
    max-width: 275px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    margin: 24px auto 0 auto;
    position: relative;
}
.footer-cv-btn::after{
	content: "→";
    position: absolute;
    right: 21px;
    top: 50%;
	transform: translateY(-50%);
}

/* pcのみ */
@media screen and (min-width: 768px) {
	.footer-nav__inner{
		flex-direction: column-reverse;
	}
	.footer-nav__inner dl{
		display: none;
		grid-auto-flow: column;
		grid-template-rows: repeat(1, auto);
		row-gap: clamp(2.5rem, 1.6rem + 2.8125vw, 7rem);
		width: 100%;
		position: relative;
		margin-bottom: clamp(4.5rem, 3.4rem + 3.4375vw, 10rem);
	}
	.footer-nav__inner dl::before{
		position: absolute;
		content: "";
		bottom: 0px;
		left: 0%;
		/* translate: -50% -50%; */
		width: 100vw;
    	margin: 0 calc(50% - 50vw);
		height: 1px;
		background: #EBECE8;
	}
	.footer-nav__inner dl .c-btn{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: clamp(4.5rem, 3.4rem + 3.4375vw, 10rem);
	}
	.footer-nav__inner dl .c-btn a{
		background: #610d32;
		transition: .6s;
	}
	.footer-nav__inner dl .c-btn a:hover{
		color: #fff;
		opacity: .8;
		
	}
	
}
@media screen and (max-width: 767px) {
    .c-btn a {
        width: 100%;
        height: 40px;
    }
	
}
/* sp footer固定（現地案内と資料請求） */
@media screen and (max-width: 767px) {
	.footer-nav__inner dl dd {
        margin-block-end: 0;
		height: 40px;
    }
	.sp-fixed{
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		margin-block-end: 0px !important;
		height: 40px;
		z-index: 9;
	}
	.sp-fixed ul{
		height: 100%;
	}
	.sp-fixed ul li{
		padding-inline-start: 0; 
        text-align: center;
	}
	.sp-fixed-link{
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.fixed-map{
		background: #fff;
		background-color: #cdcec2;
	}
	.fixed-request{
		background-color: #610d32;
		color: #fff;
	}
}