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

/*
Theme Name: 森工務店
*/

html, body {
	color: #f9f8f4;
	background: url(img/common/bg.png);
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: .20em;
	font-feature-settings: "palt";
	overflow-x: hidden;
	font-family: 'kokoro', sans-serif;
	font-weight: 300;
	font-style: normal;
}


@media (max-width: 1300px) {

	html, body{
		font-size: 1vw;
	}
}

.sp{display: none!important;}


.rmin{
	font-family: "a-otf-ud-reimin-pr6n", sans-serif;
}

header{
	width: 100%;
	height: 19em;
	background: url(img/common/bg.png);
	padding: 3.8em 15em 5em 5em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: padding .6s ease;
}

header .logo-wrap{
	display: flex;
	align-items: flex-end;
}

header .logo-wrap .logo{
	width: 20vw;
	min-width: 10em;
	max-width: 13em;
	display: block;
	margin-right: 6em;
	transition: .6s ease;
}

header .logo-wrap .copy{
	line-height: 2.5;
	letter-spacing: .5em;
	transform: translateY(.5em);
}

header .top-news-wrap{
	letter-spacing: .1em;
	position: relative;
	padding-right: 8em;
	transform: translateY(-0.5em);
	z-index: 1;
}

header .top-news-wrap header .top-news{
	display: flex;
	position: relative;
}

header .top-news::before{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

header .top-news::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(249,248,244,0.5);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) scaleX(0);
	z-index: -1;
	transition:transform .6s ease-out;
	transform-origin: right;
}

header .top-news:hover::after{
	transform-origin: left;
	transform: translateY(-50%) scaleX(1);
}

header .top-news-wrap .thumb-wrap{
	width: 6em;
	height: 6em;
	border-radius: 100%;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

header .top-news-wrap .thumb-wrap img{
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.33, 1, 0.68, 1);
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

header .top-news:hover .thumb-wrap img{
	transform: scale(1.1);
}

header .top-news-wrap .title{
	transform: translateY(-1.38em);
}

header .top-news-wrap .title span{
	display: inline-block;
	margin-right: 2em;
}

header .top-news-wrap .btn-more{
	position: absolute;
	left: 0;
	bottom: 0;
	border: 1px solid rgba(249,248,244,0.5);
	border-radius: 3em;
	padding: .66em 1.1em;
	line-height: 1;
	transform: translateY(4.6em);
	transition: .6s cubic-bezier(0.4, 0, 0.2, 1);
}

header .top-news-wrap .btn-more:hover{
	background: rgba(249,248,244,1);
	color: #447065;
}

header .top-news-wrap .btn-more font{
	display: inline-block;
	margin-left: .5em;
}


header.fixed{
	height: auto;
	padding: 1em 10em 2em 5em;
}

header.fixed .logo-wrap .logo{
	width: 10em;
}

header.fixed .top-news-wrap .btn-more{
    transform: translateY(3.3em);
}



/*
open menu
--------------------
*/


.open-menu{
	width: 5em;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background: #f9f8f4;
	color: #447065;
	z-index: 999;
}

.open-menu .gnav-wrap{
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	align-items: center;
}

.open-menu .gnav{
	writing-mode: vertical-rl;
	display: flex;
	letter-spacing: .5em;
	border-bottom: 1px solid rgba(61, 113, 101, 0.5);
}

.open-menu .gnav li{
	padding: 2em 1em;
	border-top: 1px solid rgba(61, 113, 101, 0.5);
}

.open-menu .icon-nav{
	display: flex;
	flex-flow: column;
	margin-top: 2em;
}

.open-menu .icon-nav li{
	padding: 1.5em 1em;
	border-bottom: 1px solid rgba(61, 113, 101, 0.5);
}

.open-menu .icon-nav li:last-of-type{
	border-bottom: none;
}

.open-menu .icon-nav li a{
	display: block;
	position: relative;
}

.open-menu .icon-nav li a span{
	position: relative;
	z-index: 2;
}

.open-menu .icon-nav li a:before {
    position: absolute;
    content: '';
    width: 3em;
    height: 3em;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    background: #447065;
    transform: translate(-50% , -50%) scale(0);
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(.22,1.42,.35,.99);
    opacity: 1;
}

.open-menu .icon-nav li a:hover:before {
	transform: translate(-50% , -50%) scale(1);
	opacity: 1;

}

.open-menu .icon-nav a.pin span{
	display: block;
	width: 1.38em;
	height: 2em;
	background: url(img/common/icon_pin.svg) no-repeat;
	background-size: contain;
	margin: 0 auto;
}

.open-menu .icon-nav a.pin:hover span{
	background: url(img/common/icon_pin_wt.svg) no-repeat;
	background-size: contain;
}

.open-menu .icon-nav a.tel span{
	display: block;
	width: 1.8em;
	height: 1.8em;
	background: url(img/common/icon_tel.svg) no-repeat;
	background-size: contain;
	margin: 0 auto;
}

.open-menu .icon-nav a.tel:hover span{
	background: url(img/common/icon_tel_wt.svg) no-repeat;
	background-size: contain;
}

.open-menu .icon-nav a.in span{
	display: block;
	width: 1.5em;
	height: 1.5em;
	background: url(img/common/icon_in.svg) no-repeat;
	background-size: contain;
	margin: 0 auto;
}

.open-menu .icon-nav a.in:hover span{
	background: url(img/common/icon_in_wt.svg) no-repeat;
	background-size: contain;
}


/* open */

.open-menu-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 2.5em;
    height: 1.15em;
    top: 3em;
    right: 1.2em;
    cursor: pointer;
    z-index: 999;
}

.open-menu-btn-wrap::before{
	content: "メニュー";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50% , -150%);
	font-size: .85em;
	letter-spacing: .1em;
	white-space: nowrap;
	transition: .6s ease;
}

.open-menu-btn-wrap::after{
	content: "目次";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50% , 150%);
	font-size: .85em;
	letter-spacing: .1em;
	white-space: nowrap;
	transition: .6s ease;
	opacity: 0;
}

.open .open-menu-btn-wrap::before{
	opacity: 0;
}
.open .open-menu-btn-wrap::after{
	opacity: 1;
}

.open-menu-btn {
	display: block;
	border: none;
	width: 100%;
	height: 100%;
	position: relative;
    transform: rotate(-45deg);
	z-index: 1;
	transition: .6s ease;
}

.open .open-menu-btn {
    transform: rotate(0);
}

.open-menu-btn .toggle {
	width: 100%;
	height: 1px;
	display: block;
	position: absolute;
	background: rgba(61, 113, 101, 0.6);
	left: 0;
	transition: .5s ease;
}

.open-menu-btn .toggle:nth-child(1) {
	width: 50%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.open-menu-btn .toggle:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.open-menu-btn .toggle:nth-child(3) {
	width: 50%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.open-menu-btn:hover .toggle:nth-child(1) {
	top: -0.35em;
}

.open-menu-btn:hover .toggle:nth-child(3) {
	bottom: -0.35em;
}


.open .open-menu-btn .toggle:nth-child(1) {
	width: 100%;
	top: 50%;
	left: 0;
	transform: rotate(45deg) translateY(-50%);
}

.open .open-menu-btn .toggle:nth-child(2) {
	opacity: 0;
}

.open .open-menu-btn .toggle:nth-child(3) {
	width: 100%;
	bottom: 50%;
	left: 0;
	transform: rotate(-45deg) translateY(50%);
}

.open-menu-bg {
	width: 100vw;
	height: 100vh;
	position: fixed;
	background: #f0f0ec;
	top: 0;
	right: 0;
	z-index: 998;
	pointer-events: none;
	opacity: 0;
	transition: opacity .6s ease;	
}

.open .open-menu-bg {
	opacity: 1;
	pointer-events: visible;
}

.open-menu-wrap {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	padding: 17em 0 8em;
	overflow-y: scroll;
	overflow-x: hidden;
	z-index: 998;
	-ms-overflow-style: none;
	scrollbar-width: none;
	pointer-events: none;
	opacity: 0;
	transition: opacity .4s ease;	
}

.open .open-menu-wrap {
	opacity: 1;
	pointer-events: visible;
}

.open-menu-wrap::-webkit-scrollbar{
  display: none;
}

.open-menu-wrap .open-logo{
	position: absolute;
	top: 3.5em;
	left: 4vw;
	width: 20vw;
	min-width: 10em;
	max-width: 13em;
}

.open-menu-wrap .open-contact-btn{
	position: absolute;
	top: 3.5em;
	right: 9em;
	font-size: 1.15em;
	letter-spacing: .3em;
	padding: 1.3em 3em;
	border-radius: 3em;
	background: #f9f8f4;
	border: 1px solid rgba(61, 113, 101, 0.5);
    transition: background .6s cubic-bezier(0.33, 1, 0.68, 1),color .6s cubic-bezier(0.33, 1, 0.68, 1);
}

.open-menu-wrap .open-contact-btn:hover{
	color: #f9f8f4;
	background: #447065;
	border: 1px solid rgba(249,248,244,0.5);
}

.open-nav-wrap {
	width: 90%;
	max-width: 1700px;
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translate(-50% , -50%);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-auto-rows: auto;
	gap: 3vw;
}

/* 最初の項目を1行で全幅に */
.open-nav-wrap .open-nav:nth-child(1) {
	grid-row: span 3;
	grid-column: 1;
}


.open-nav-wrap .open-nav{
	font-size: 1.3em;
	letter-spacing: .5em;
	padding-top: 1.9rem;
	border-top: 1px solid rgba(61, 113, 101, 0.5);
	position: relative;
}

.open-nav-wrap .open-nav::after,
.open-nav-wrap .icon-link::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	border-top: 1px solid rgba(61, 113, 101, 0.75);
	position: absolute;
	left: 0;
	top: -1px;
	transform: scaleX(0);
	z-index: -1;
	transition:transform .6s ease-out;
	transform-origin: right;
}

.open-nav-wrap .open-nav:hover::after,
.open-nav-wrap .icon-link:hover::after{
	transform-origin: left;
	transform: scaleX(1);
}

.open-nav-wrap .open-nav a{
	display: block;
	position: relative;
	white-space: nowrap;
	padding-left: 1.5em;
}


.open-nav-wrap .open-nav a .arrow{
	display: block;
	position: absolute;
	top: .66em;
	left: 0;
}

.open-nav-wrap .open-nav a .arrow:before{
	content: "";
	display: block;
	width: .3em;
	height: .3em;
	background: #727171;
	border-radius: 100%;
	transition: .3s ease-out;
}

.open-nav-wrap .open-nav a:hover .arrow:before{
	transform: scale(3.3);
	background: #447065;
}

.open-nav-wrap .open-nav a .arrow:after{
	content: "";
	display: block;
	width: .5em;
	height: .4em;
	background: url(img/common/arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	opacity: 0;
	transition: .3s ease-out;
}

.open-nav-wrap .open-nav a:hover .arrow:after{
	opacity: 1;
}

.open-nav-wrap .open-nav .sub-menu{
	font-size: .8em;
	letter-spacing: .1em;
	padding-top: 3em;
}

.open-nav-wrap .open-nav .sub-menu br{
	display: none;
}

.open-nav-wrap .open-nav .sub-menu li{
	margin-bottom: 1.3em;
}

.open-nav-wrap .open-nav .sub-menu li a{
	white-space: normal;
}

.open-nav-wrap .icon-link{
	padding-top: 1.9rem;
	border-top: 1px solid rgba(61, 113, 101, 0.5);
	position: relative;
}

.open-nav-wrap .icon-link ul{
	display: flex;
	align-items: center;
	gap:2em;
}

.open-menu .icon-nav.icon-link{
	margin: 0;
}

.open-menu .icon-nav.icon-link li{
	padding: 0;
	border: none;
}

.open-nav-wrap .btn-link{
	padding-top: 3em;
}

.open-nav-wrap .btn-link .note{
	font-size: .9em;
	letter-spacing: .2em;
	margin-top: 1em;
	line-height: 2;
}

.open-nav-wrap .policy-link{
	position: absolute;
	right: 0;
	bottom: 0;
	letter-spacing: .1em;
}


.fixed-btn{
	position: fixed;
	right: 8.8em;
	bottom: 2.5em;
	display: flex;
	flex-flow: column;
	gap:1.2em;
	opacity: 0;
	transition: .6s ease-out 2s;
}

.fixed-btn.top{
	transition-delay: 4s;
}

.visited .fixed-btn.top{
	transition-delay: 1s;
}


.load-on .fixed-btn{
	opacity: 1;
}

a.btn-feeling{
	text-align: center;
	display: block;
	line-height: 1;
	letter-spacing: .2vw;
	padding: 1.3em 2em;
	color: #f9f8f4;
	background: #447065;
	border: 1px solid rgba(249,248,244,0.5);
	border-radius: 1.15em;
	position: relative;
	white-space: nowrap;
    transition: background .6s cubic-bezier(0.33, 1, 0.68, 1),color .6s cubic-bezier(0.33, 1, 0.68, 1),transform .6s cubic-bezier(0.33, 1, 0.68, 1);
}

a.btn-feeling:hover{
	background: #f9f8f4;
	color: #447065;
	border: 1px solid rgba(61, 113, 101, 0.5);
	transform: scale(1.08);
}

a.btn-feeling::before{
	content: "";
	display: block;
	width: 3em;
	height: 2.5em;
	background: url(img/common/rline_wt_ok.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 20%;
	left: 0;
	transform: translate(-60% , -50%);
	transition: background .6s cubic-bezier(0.33, 1, 0.68, 1);
}

a.btn-feeling:hover::before{
	background: url(img/common/rline_ok.png) no-repeat;
	background-size: contain;
}

a.btn-contact{
	text-align: center;
	display: block;
	line-height: 1;
	letter-spacing: .2vw;
	padding: 1.3em 2em;
	background: #f9f8f4;
	color: #447065;
	border: 1px solid rgba(61, 113, 101, 0.5);
	border-radius: 1.15em;
	position: relative;
	white-space: nowrap;
    transition: background .6s cubic-bezier(0.33, 1, 0.68, 1),color .6s cubic-bezier(0.33, 1, 0.68, 1),transform .6s cubic-bezier(0.33, 1, 0.68, 1);
}

a.btn-contact:hover{
	background: #447065;
	color: #f9f8f4;
	border: 1px solid rgba(249,248,244,0.5);
	transform: scale(1.08);
}

a.btn-contact::before{
	content: "";
	display: block;
	width: 3em;
	height: 2.5em;
	background: url(img/common/rline_ok.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 20%;
	left: 0;
	transform: translate(-60% , -50%);
	transition: background .6s cubic-bezier(0.33, 1, 0.68, 1);
}

a.btn-contact:hover::before{
	background: url(img/common/rline_wt_ok.png) no-repeat;
	background-size: contain;
}


@media (max-height: 940px) {
	.open-menu .gnav li{
		padding: 2vh 1em;
	}
	
	.open-menu .icon-nav{
		margin-top: 2vh;
	}

	.open-nav-wrap{
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		margin: 0 auto;
	}
}

@media (max-height: 860px) {
	.open-menu .gnav li{
		padding: 1vh 1em;
	}

}

@media (max-height: 780px) {
	.open-menu .gnav{
		display: none;
	}

}


/*
TOP
--------------------
*/


.top-contents-wrap{
	padding-top: 19em;
}

.top-movie-wrap{
	overflow: hidden;
	line-height: 1;
	position: relative;
	width: calc(100% - 5em);
	height: calc(100vh - 19em);	
}

.top-movie-wrap video{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.top-movie-wrap .top-banner{
	width: 7em;
	position: absolute;
	left: 2.3em;
	bottom: 1.7em;
}



/*
PAGE
--------------------
*/

.page-contents-wrap{
	background: rgba(249,248,244,0.1);
	padding-top: calc(19em + 8.8em);
	padding-right: 5em;
	padding-bottom: 10em;
	min-height: 100vh;
}

.page-contents-wrap.pdt{
	padding-top: calc(19em + 13em);
}

.page-title{
	font-size: 2.7em;
	letter-spacing: .1em;
	width: 90%;
	margin: 0 auto;
}

.page-title-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 0 auto;
}

.page-title-wrap .page-title{
	width: auto;
	margin: 0;
}

.page-read{
	text-align: right;
	line-height: 2;
	letter-spacing: .4em;
}


/*
PHILOSOPHY
--------------------
*/

.philosophy-icatch-wrap{
	padding-top: 13em;
	display: flex;
	justify-content: space-between;
	margin-bottom: 9vw;
}

.philosophy-icatch-wrap .movie-wrap{
	width: 50%;
	display: flex;
	gap:.7em;
	height: 36em;
}

.philosophy-icatch-wrap .movie-wrap .movie{
	width: 70%;
}

.philosophy-icatch-wrap .movie-wrap .thumb{
	width: 30%;
}

.philosophy-icatch-wrap .movie-wrap video,
.philosophy-icatch-wrap .movie-wrap img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}


.philosophy-icatch-wrap .text-wrap{
	width: 40%;
}

.philosophy-icatch-wrap .text-wrap .title{
	font-size: 1.8em;
	letter-spacing: .5em;
	line-height: 2.5;
	margin-bottom: 5em;
}

.philosophy-icatch-wrap .text-wrap .text{
	font-size: 1em;
	letter-spacing: .3em;
	line-height: 2.5;
	margin-bottom: 5em;
	padding-right: 9em;
}

.philosophy-contents-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}

.philosophy-contents-wrap .philosophy-contents{
	width: 45%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 2.7em;
	margin-bottom: 15em;
	border-bottom: 1px solid rgba(249,248,244,0.25);
	position: relative;
}

.philosophy-contents-wrap .philosophy-contents::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(249,248,244,0.5);
	position: absolute;
	left: 0;
	bottom: -1px;
	transform: scaleX(0);
	transition:transform .6s ease-out;
	transform-origin: right;
}

.philosophy-contents-wrap .philosophy-contents:hover::after{
	transform-origin: left;
	transform: scaleX(1);
}


.philosophy-contents-wrap .philosophy-contents .thumb-wrap{
	width: 33%;
	background: rgba(249,248,244,1);
	line-height: 0;
}

.philosophy-contents-wrap .philosophy-contents .text-wrap{
	width: 60%;
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	position: relative;
}

.philosophy-contents-wrap .philosophy-contents .text-wrap .num{
	font-size: 3em;
	position: absolute;
	top: 0;
	right: 0;
	line-height: 1;
	transform: translateY(-0.1em);
}

.philosophy-contents-wrap .philosophy-contents .text-wrap .title{
	font-size: 1.7em;
	letter-spacing: .5em;
	padding-right: 1.5em;
	margin-bottom: .5em;
}

.philosophy-contents-wrap .philosophy-contents .text-wrap .read{
	line-height: 1.8;
	text-align: right;
}

.philosophy-contents-wrap .philosophy-contents .more-btn{
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: .8em;
	letter-spacing: .05em;
	transform: translateY(3em);
}

.philosophy-contents-wrap .philosophy-contents .more{
	display: block;
	position: relative;
	overflow: hidden;
}

.philosophy-contents-wrap .philosophy-contents .more span{
	display: block;
    transition: opacity 650ms,transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.philosophy-contents-wrap .philosophy-contents .more::before{
    content: attr(data-text);
    position: absolute;
    top: 130%;
    left: 0;
    opacity: 0;
    transition: opacity 650ms,transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.philosophy-contents-wrap .philosophy-contents:hover .more::before{
    opacity: 1;
    transform: translate3d(0, -130%, 0)
}

.philosophy-contents-wrap .philosophy-contents:hover .more span{
	opacity: 0;
    transform: translate3d(0, -130%, 0)
}

.philosophy-contents-wrap .philosophy-contents .arrow{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	border-left: 4px solid #f9f8f4;
	border-right: 0;
	position: absolute;
	left: -1em;
	top: 50%;
	transform: translateY(-50%);
}

.philosophy-contents-wrap .philosophy-contents:hover .arrow{
	animation: mo_arrow 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}


@keyframes mo_arrow {
    40%,50% {
        opacity: 0
    }

    43% {
        transform: translateX(105%) scaleY(0.1)
    }

    44%,50% {
        transform: translateX(-145%) scaleY(0.1)
    }

    100% {
        transform: translateX(0) scaleY(1)
    }
}


/* single */

.philosophy-single-wrap{
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-top: 7.5em;
}

.philosophy-single-wrap .text-wrap{
	width: 45%;
}

.philosophy-single-wrap .text-wrap .num {
    font-size: 3em;
    margin-bottom: 1.5em;
    line-height: 1;
}

.philosophy-single-wrap .text-wrap .title{
	font-size: 1.8em;
	letter-spacing: .5em;
	line-height: 1.9;
	margin-bottom: 3.3em;
}

.philosophy-single-wrap .text-wrap .text{
	line-height: 2.4;
	font-size: 1em;
	letter-spacing: 0.2em;
}

.philosophy-single-wrap .thumb-wrap{
	width: 52%;
}

.philosophy-flow-contents-wrap{
	width: 52%;
	padding-top: 7.5em;
}

.philosophy-flow-contents-wrap .philosophy-flow-contents{
	display: flex;
	justify-content: space-between;
	margin-bottom: 4.6em;
	padding-bottom: 1.3em;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.philosophy-flow-contents-wrap .philosophy-flow-contents.row{
	flex-flow: row-reverse;	
}

.philosophy-flow-contents-wrap .philosophy-flow-contents .thumb-wrap{
	width: 15em;
}

.philosophy-flow-contents-wrap .philosophy-flow-contents .text-wrap{
	width: calc(100% - 20em);
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}

.philosophy-flow-contents-wrap .philosophy-flow-contents .flow-title{
	font-size: 1.5em;
}


.philosophy-graph-contents-wrap{
	width: 52%;
	padding-top: 7.5em;
}

.philosophy-graph-contents-wrap .philosophy-graph-contents{
	padding-bottom: 7.5em;
	margin-bottom: 7.5em;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.philosophy-graph-contents-wrap .philosophy-graph-contents:last-of-type{
	padding-bottom: 7.5em;
	margin-bottom: 0;
	border-bottom: none;
}

.philosophy-graph-contents-wrap .graph-title{
	font-size: 1.5em;
	letter-spacing: .5em;
	line-height: 2;
	margin-bottom: 3em;
}


/*
LIVING
--------------------
*/

.living-contents-wrap{
	width: 90%;
	max-width: 1820px;
	margin: 0 auto;
	padding-top: 16em;
}

.living-contents-wrap .living-contents{
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 20em;
	padding-bottom: 1.2em;
}

.living-contents-wrap .living-contents::after{
	content: "";
	display: block;
	width: 48%;
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	right: 0;
	bottom: 0;
}

.living-contents-wrap .living-contents::before{
	content: "";
	display: block;
	width: 48%;
	height: 1px;
	background: rgba(249,248,244,0.5);
	position: absolute;
	right: 0;
	bottom: 0;
	transform: scaleX(0);
	transition:transform .6s ease-out;
	transform-origin: right;
}

.living-contents-wrap .living-contents:hover::before{
	transform-origin: left;
	transform: scaleX(1);
}

.living-contents-wrap .living-contents .thumb-wrap{
	width: 73%;
	display: flex;
	align-items: flex-start;
	gap:0.5em;
}

.living-contents-wrap .living-contents .thumb-wrap .thumb{
	position: relative;
	line-height: 0;
	background: rgba(249,248,244,1);
	height: 20vw;
	max-height: 30em;
}

.living-contents-wrap .living-contents .thumb-wrap .thumb:nth-of-type(1){
	width: 25%;
}

.living-contents-wrap .living-contents .thumb-wrap .thumb:nth-of-type(2){
	width: 55%;
}

.living-contents-wrap .living-contents .thumb-wrap .thumb:nth-of-type(3){
	width: 20%;
}

.living-contents-wrap .living-contents .thumb-wrap img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.living-contents-wrap .living-contents .text-wrap{
	width: 22%;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	position: relative;
	text-align: right;
	padding-top: 10%;
}

.living-contents-wrap .living-contents .text-wrap .title{
	font-size: 1.7em;
	letter-spacing: .5em;
}

.living-contents-wrap .living-contents .text-wrap .read{
	line-height: 1.8;
}

.living-contents-wrap .living-contents .more-btn{
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: .8em;
	letter-spacing: .05em;
	transform: translateY(3em);
}

.living-contents-wrap .living-contents .more{
	display: block;
	position: relative;
	overflow: hidden;
}

.living-contents-wrap .living-contents .more span{
	display: block;
    transition: opacity 650ms,transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.living-contents-wrap .living-contents .more::before{
    content: attr(data-text);
    position: absolute;
    top: 130%;
    left: 0;
    opacity: 0;
    transition: opacity 650ms,transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.living-contents-wrap .living-contents:hover .more::before{
    opacity: 1;
    transform: translate3d(0, -130%, 0)
}

.living-contents-wrap .living-contents:hover .more span{
	opacity: 0;
    transform: translate3d(0, -130%, 0)
}

.living-contents-wrap .living-contents .arrow{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	border-left: 4px solid #f9f8f4;
	border-right: 0;
	position: absolute;
	left: -1em;
	top: 50%;
	transform: translateY(-50%);
}

.living-contents-wrap .living-contents:hover .arrow{
	animation: mo_arrow 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}


/* single */

.living-single-wrap{
	width: 90%;
	margin: 0 auto;
	padding-top: 7.6em;
	position: relative;
}

.living-single-wrap .living-title{
	font-size: 1.8em;
	letter-spacing: .5em;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-120%);
}

.living-icatch-wrap{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10em;
}

.living-icatch-wrap .movie-wrap{
	width: 50%;
	height: 0;
	position: relative;
	padding-top: 30%;
}

.living-icatch-wrap .movie-wrap video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.living-icatch-wrap .text-wrap{
	width: 40%;
	line-height: 1.8;
}

.living-icatch-wrap .text-wrap .text{
	line-height: 2.4;
	font-size: 0.9em;
	padding-top: 10%;
	margin-bottom: 10em;
}

.living-icatch-wrap .text-wrap .living-data{
	line-height: 2.4;
	font-size: 0.9em;
	float: right;
}

.living-thumb-wrap{
	max-width: 940px;
	margin: 0 auto 16em;
}

.living-thumb-wrap img{
	display: block;
	margin-bottom: .6em;
}

.living-thumb-wrap .note{
	line-height: 2.2;
	margin: 3em 0 6em;
}

.living-reco-wrap .title{
	font-size: 3em;
	letter-spacing: .1em;
	text-align: center;
	position: relative;
	padding-bottom: 2rem;
	margin-bottom: 5.7rem;
}

.living-reco-wrap .title::after{
	content: "";
	display: block;
	width: 100vw;
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.living-reco-contents-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.living-reco-contents-wrap::after{
	content: "";
	display: block;
	width: 29%;
}

.living-reco-contents-wrap .living-reco-contents{
	width: 29%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 1em;
	margin-bottom: 4em;
	position: relative;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.living-reco-contents-wrap .living-reco-contents .thumb-wrap{
	line-height: 0;
	background: rgba(249,248,244,1);
	width: 25%;
	height: 0;
	padding-top: 16.5%;
	overflow: hidden;
}

.living-reco-contents-wrap .living-reco-contents .thumb-wrap img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.living-reco-contents-wrap .living-reco-contents .thumb-wrap img{
	transition: transform .6s cubic-bezier(0.33, 1, 0.68, 1);
}

.living-reco-contents-wrap .living-reco-contents:hover .thumb-wrap img{
	transform: scale(1.1);
}

.living-reco-contents-wrap .living-reco-contents .reco-title{
	letter-spacing: .1em;
	line-height: 2.5;
}

.living-reco-contents-wrap .living-reco-contents .btn-more{
	border: 1px solid rgba(249,248,244,0.5);
	border-radius: 3em;
	padding: .66em 1.1em;
	line-height: 1;
	transform: translateY(-0.6em);
	transition: .6s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
}

.living-reco-contents-wrap .living-reco-contents:hover .btn-more{
	background: rgba(249,248,244,1);
	color: #447065;
}

.living-reco-contents-wrap .living-reco-contents .btn-more font{
	display: inline-block;
	margin-left: .5em;
}

.living-reco-contents-wrap .living-reco-contents .text-wrap{
	width: 65%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1em;
}


/*
STAFF
--------------------
*/

.staff-contents-wrap{
	width: 90%;
	max-width: 1620px;
	margin: 0 auto;
	padding-top: 16em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.staff-contents-wrap .staff-contents{
	width: 43%;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 16em;
}

.staff-contents-wrap .staff-contents .thumb-wrap{
	width: 43%;
}

.staff-contents-wrap .staff-contents .text-wrap{
	width: 50%;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
}

.staff-contents-wrap .staff-contents .text-wrap .text{ 
	line-height: 2;
	margin-top: 4em;
	text-align: justify;
	font-size: 0.85em;
}

.staff-contents-wrap .staff-contents .text-wrap .title{ 
	font-size: 1.8em;
	letter-spacing: .5em;
	margin-top: 1em;
}

.staff-contents-wrap .staff-contents .text-wrap .cat{ 
	font-size: 1.15em;
	letter-spacing: .1em;
}


/*
FAQ
--------------------
*/

.faq-contents-wrap{
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-top: 9em;
}

.faq-contents-wrap .faq-nav{
	width: 25%;
}

.faq-contents-wrap .faq-nav li{
	display: table;
	font-size: 1.2em;
	letter-spacing: .1em;
	margin-bottom: 2em;
	position: relative;
	padding: 1em 2em;
	padding-left: 3.5em;
	z-index: 1;
	cursor: pointer;
}

.faq-contents-wrap .faq-nav .nav-bg{
	position: absolute;
	bottom: 0;
	border: 1px solid rgba(249,248,244,0.5);
	border-radius: 3em;
	z-index: 0;
	transition: .3s ease-out;
}

.faq-contents-wrap .faq-nav li::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #f9f8f4;
	border-right: 0;
	position: absolute;
	left: 1.5em;
	top: 50%;
	transform: translateY(-50%);
}

.faq-contents-wrap .main-contents-wrap{
	width: 70%;
}

.faq-list-wrap{
	margin-bottom: 10em;
}

.faq-list-wrap .faq-title{
	font-size: 1.5em;
	letter-spacing: .5em;
	padding-bottom: 1em;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.faq-list-wrap .faq-title::before{
	content: "";
	width: .33em;
	height: .33em;
	background: #f9f8f4;
	border-radius: 100%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.6em;
}

.faq-list{
	position: relative;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.faq-list::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(249,248,244,0.5);
	position: absolute;
	left: 0;
	bottom: -1px;
	transform: scaleX(0);
	z-index: -1;
	transition:transform .6s ease-out;
	transform-origin: right;
}

.faq-list:hover::after{
	transform-origin: left;
	transform: scaleX(1);
}

.faq-list dt{
	padding: 2.5em 0;
	padding-right: 3em;
	font-size: 1.2em;
	letter-spacing: .1em;
	position: relative;
	cursor: pointer;
}

.faq-list dt span{
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	border: 1px solid rgba(249,248,244,0.3);
	border-radius: 100%;
	position: absolute;
	right: 1.15em;
	top: 50%;
	transform: translateY(-50%);
	transition: .6s ease-out;
}

.faq-list:hover dt span{
	transform: translateY(-50%) translateX(1.15em);
}

.faq-list dt span::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 6px solid #f9f8f4;
	border-right: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
}

.faq-list dd{
	padding-bottom: 4em;
	position: relative;
	padding-left: 1.3em;
	display: none;
	letter-spacing: 0.1em;
}

.faq-list dd::before{
	content: "-";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}


/*
FEELING
--------------------
*/

.feeling-slider-contents-wrap{
	width: 90%;
	height: 0;
	margin: 7em auto 15em;
	padding-top: 30%;
	position: relative;
}

.feeling-slider-movie{
	width: calc(50% - 1.15em);
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.feeling-slider-contents{
	display: flex;
	justify-content: flex-end;
	position: relative;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.feeling-slider-contents.current{
	opacity: 1;
}

.feeling-slider-contents .slider{
	width: calc(50% - 1.15em);
	position: relative;
}

.feeling-slider-movie video,
.feeling-slider-contents img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.feeling-slider-contents .slider .slide-img {
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.feeling-slider-contents .slider .slide-img.is-active {
  opacity: 1;
}

.feeling-slider-contents .date{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

.feeling-slider-contents .date .time{
	display: block;
	font-size: 2.3em;
	margin-bottom: 0.8em;
}

.feeling-form-wrap{
	width: 90%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.feeling-form-wrap .text-wrap{
	width: 40%;
}

.feeling-form-wrap .form-wrap{
	width: calc(50% - 1.15em);
	background: rgba(249,248,244,0.1);
	padding: 4em 2em 8em;
}

.feeling-form-wrap .text-wrap .title{
	font-size: 3em;
	letter-spacing: .1em;
	margin-bottom: 2.2em;
}

.feeling-form-wrap .text-wrap .text{
	line-height: 2.2;
	margin-bottom: 5em;
	font-size: 0.9em;
}

.feeling-form-wrap .text-wrap .thumb-wrap{
	max-width: 576px;
}


/*
YOROZU
--------------------
*/

.yorozu-contents-wrap{
	width: 90%;
	display: flex;
	justify-content: space-between;
	justify-content:flex-start;
	margin: 0 auto;
	padding-top: 7.6em;
}

.yorozu-contents-wrap .thumb-wrap{
	width: 47%;
	height: 100vh;
	position: relative;
}

.yorozu-contents-wrap .form-wrap{
	width: 50%;
	min-height: 100vh;
	background: rgba(249,248,244,0.1);
	padding: 4em 2em 8em;
}

.yorozu-contents-wrap .thumb-wrap .read{
	position: absolute;
	line-height: 1.8;
	font-size: 1.15em;
	letter-spacing: .4em;
	white-space: nowrap;
}

.yorozu-contents-wrap .thumb-wrap .thumb1 .read{
	left: 0;
	bottom: 0;
	transform: translate(-10% , 45%);
}

.yorozu-contents-wrap .thumb-wrap .thumb2 .read{
	right: 0;
	top: 0;
	transform: translate(30% , 200%);
}

.yorozu-contents-wrap .thumb-wrap .thumb3 .read{
	right: 0;
	bottom: 35%;
	transform: translate(70% , 0%);
}

.yorozu-contents-wrap .thumb-wrap .thumb4 .read{
	left: 0;
	bottom: 0;
	transform: translate(-30% , -100%);
}


.yorozu-contents-wrap .thumb-wrap .thumb1{
	position: absolute;
	width: 50%;
	left: 0;
	top: 4%;
}

.yorozu-contents-wrap .thumb-wrap .thumb2{
	position: absolute;
	width: 30%;
	right: 12%;
	top: 12%;
}

.yorozu-contents-wrap .thumb-wrap .thumb3 {
    position: absolute;
    width: 26%;
    left: 5.5%;
    top: 32%;
}

.yorozu-contents-wrap .thumb-wrap .thumb4{
	position: absolute;
	width: 45%;
	left: 50%;
	top: 63%;
	transform: translateX(-50%);
}

.yorozu-contents-wrap .thumb-wrap .thumb4 img:nth-of-type(1){
	width: 27%;
	float: left;
	margin-right: 2%;
}

.yorozu-contents-wrap .thumb-wrap .thumb4 img:nth-of-type(2){
	width: 32%;
	float: left;
	margin-right: 2%;
}

.yorozu-contents-wrap .thumb-wrap .thumb4 img:nth-of-type(3){
	width: 33%;
	float: left;
}

.yorozu-contents-wrap .thumb-wrap .thumb4 img:nth-of-type(4){
	width: 69%;
	margin-top: .7em;
	float: right;
}


/*
BLOG
--------------------
*/

.post-cat-nav{
	width: 90%;
	display: flex;
	justify-content: flex-end;
	margin: 6em auto 4.6em;
}

.post-cat-nav li{
	font-size: 1.15em;
	letter-spacing: .3em;
	line-height: 1;
	padding: 1em 3em;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.post-cat-nav .nav-bg{
	position: absolute;
	bottom: 0;
	background: #447065;
	border: 1px solid rgba(249,248,244,0.5);
	border-radius: 1.15em;
	z-index: 0;
	transition: .3s ease-out;
}

.blog-contents-wrap{
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.blog-contents-wrap::before{
	content: "";
	display: block;
	width: 21%;
	order: 1;
}

.blog-contents-wrap::after{
	content: "";
	display: block;
	width: 21%;
}

.blog-contents-wrap .blog-contents{
	width: 21%;
	margin-bottom: 5em;
	padding-top: 1.6em;
	position: relative;
}

.blog-contents-wrap .blog-contents::before{
	content: "";
	display: block;
	width: 11em;
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	left: 0;
	top: 0;
}

.blog-contents-wrap .blog-contents .title{
	font-size: 1.15em;
	letter-spacing: .4em;
	margin-bottom: 1.3em;
}

.blog-contents-wrap .blog-contents .thumb-wrap{
	margin-bottom: .8em;
	line-height: 0;
	background: rgba(249,248,244,1);
}

.blog-contents-wrap .blog-contents .date-wrap{
	display: flex;
	justify-content: space-between;
}

.blog-contents-wrap .blog-contents .date-wrap .date{
	letter-spacing: 0;
}

.blog-contents-wrap .blog-contents .date-wrap .cat{
	letter-spacing: .2em;
	display: flex;
}

.blog-contents-wrap .blog-contents .date-wrap .cat li{
	padding-left: 1em;
	margin-left: 1em;
	border-left: 1px solid rgba(249,248,244,0.25);
}


/* single */
.blog-single-wrap{
	width: 90%;
	margin: 0 auto;
	padding-top: 8.5em;
	padding-bottom: 7.5em;
	margin-bottom: 7.5em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.blog-single-wrap .thumb-wrap{
	width: 50%;
}

.blog-single-wrap .text-wrap{
	width: 37%;
	text-align: center;
}

.blog-single-wrap .text-wrap .date{
	letter-spacing: 0;
	margin-bottom: 6em;	
}

.blog-single-wrap .text-wrap .title{
	font-size: 1.8em;
	letter-spacing: .5em;
	display: table;
	padding-left: .4em;
	margin:0 auto 1.5em;
}

.blog-single-wrap .text-wrap .cat{
	display: table;
	margin: 0 auto;
	border-bottom: 1px solid rgba(249,248,244,0.5);
	line-height: 2em;
}

.blog-text{
	line-height: 2.9;
	width: 90%;
	max-width: 1010px;
	margin: 0 auto 9em;
	font-size: 0.9em;
	letter-spacing: .3em;
}

.page-nation{
	width: 90%;
	margin: 0 auto;
	padding: 2em;
	border-top: 1px solid rgba(249,248,244,0.25);
	border-bottom: 1px solid rgba(249,248,244,0.25);
	display: flex;
	justify-content: center;
	gap:13em;
	position: relative;
}

.page-nation::after{
	content: "";
	display: block;
	background: rgba(249,248,244,0.25);
	width: 1px;
	height: calc(100% - 2em);
	position: absolute;
	top: 1em;
	left: 50%;
	transform: translateX(-50%);
}

.page-nation p{
	width: 10em;
}

.page-nation p.prev{
	text-align: right;
}

.page-nation p a{
	position: relative;
}

.page-nation p.prev a::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 8px solid #f9f8f4;
	border-left: 0;
	position: absolute;
	left: -2em;
	top: 60%;
	transform: translateY(-50%);
	transition: .4s ease-out;
}

.page-nation p.prev a:hover::before{
	left: -2.5em;
}

.page-nation p.next a::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #f9f8f4;
	border-right: 0;
	position: absolute;
	right: -2em;
	top: 60%;
	transform: translateY(-50%);
	transition: .4s ease-out;
}

.page-nation p.next a:hover::before{
	right: -2.5em;
}

.blog-slider .slick-dots{
	position: absolute;
	bottom: -3em;
}

.blog-slider .slick-dots li{
	text-indent: -9999px;
	border: none;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #FFF;
	opacity: .5;
	display: inline-block;
	margin-right: 7px;
}

.blog-slider .slick-dots li.slick-active{
	opacity: 1;
}


/*
NEWS
--------------------
*/


.news-contents-wrap{
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.news-contents-wrap::before{
	content: "";
	display: block;
	width: 21%;
	order: 1;
}

.news-contents-wrap::after{
	content: "";
	display: block;
	width: 21%;
}

.news-contents-wrap .news-contents{
	width: 21%;
	margin-bottom: 5em;
	padding-top: 1.6em;
	position: relative;
}

.news-contents-wrap .news-contents .cat-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: .9em;
	min-height: 3em;
}

.news-contents-wrap .news-contents .cat-wrap .status{
	padding: .6em 1.3em;
	letter-spacing: .1em;
	border-radius: 3em;
	background: #f9f8f3;
	color: #447065;
	border: 1px solid rgba(249,248,244,0.5);
}

.news-contents-wrap .news-contents .cat-wrap .status.off{
	background: #447065;
	color: #f9f8f3;
}

.news-contents-wrap .news-contents .thumb-wrap{
	width: 90%;
	line-height: 0;
	background: rgba(249,248,244,1);
	margin: 0 auto;
}

.news-contents-wrap .news-contents .title{
	font-size: 1.2em;
	letter-spacing: .1em;
	padding-top: 1.2em;
	margin-top: 1em;
	margin-bottom: .5em;
	position: relative;
}

.news-contents-wrap .news-contents .title::before{
	content: "";
	display: block;
	width: 3.3em;
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	left: 0;
	top: 0;
}

.news-contents-wrap .news-contents .date{
	font-size: .9em;
	letter-spacing: .1em;
}

/* single */
.news-single-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto;
	padding-top: 8.5em;
	display: flex;
	justify-content: space-between;
}

.news-single-wrap .thumb-wrap{
	width: 50%;
}

.news-single-wrap .text-wrap{
	width: 37%;
}

.news-single-wrap .text-wrap .date{
	text-align: center;
	letter-spacing: 0;
	margin-bottom: 2em;	
}

.news-single-wrap .text-wrap .title{
	text-align: center;
	font-size: 1.8em;
	letter-spacing: .5em;
	display: table; 
	margin:0 auto 4em;
	padding-left: .4em;
}

.news-single-wrap .text-wrap .text{
	line-height: 2.8;
	font-size: 0.9em;
	letter-spacing: .3em;
}



/*
ACCESS
--------------------
*/

.access-title{
	font-size: 2.6em;
	letter-spacing: .1em;
}

.access-com-wrap{
	width: 90%;
	max-width: 1390px;
	margin: 0 auto 10vw;
	padding-top: 9em;
	display: flex;
	gap:3.7em;
}

.access-com .thumb-wrap{
	line-height: 1;
	margin-bottom: 3em;
}

.access-com .title{
	font-size: 1.5em;
	letter-spacing: .3em;
	margin-bottom: 1.7em;
}

.access-com .address{
	font-size: 1.2em;
	letter-spacing: .15em;
	margin-bottom: .8em;
}

.access-com .map-link{
	display: table;
	margin-bottom: 3em;
	position: relative;
	padding-right: 2.5em;
}

.access-com .map-link span{
	padding-bottom: .3em;
	border-bottom: 1px solid rgba(249,248,244,0.5);
	transition: .4s ease;
}

.access-com .map-link:hover span{
	opacity: .5;
}

.access-com .map-link::after{
	content: "";
	display: block;
	width: 1.38em;
	height: 2em;
	background: url(img/common/icon_pin_wt.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-40%);
	transition: .4s ease;
}

.access-com .map-link:hover::after{
	transform: translateY(-40%) scale(1.08);
}

.access-com .btn-tel{
	display: table;
	line-height: 1;
	letter-spacing: .3em;
	padding: 1.3em 4em;
	background: #447065;
	border: 1px solid rgba(249,248,244,0.5);
	border-radius: 1.15em;
	position: relative;
	transition: .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.access-com .btn-tel:hover{
	color: #447065;
	background: #f9f8f3;
	border: 1px solid rgba(68,112,101,0.5);
}

.access-message-wrap{
	width: 90%;
	max-width: 1670px;
	margin: 0 auto 13vw;
}

.access-message-wrap .inner{
	padding: 7.6em 0 0 3.5em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.access-message-wrap .inner .thumb-wrap{
	width: 45%;
}

.access-message-wrap .inner .text-wrap{
	width: 55%;
	background: rgba(249,248,244,0.1);
	padding: 7.5em 15em 8em 4em;
}

.access-message-wrap .inner .text-wrap .read{
	font-size: 2.3em;
	letter-spacing: .1em;
	margin-bottom: 2em;
}

.access-message-wrap .inner .text-wrap .text{
	line-height: 2.2;
	font-size: 0.9em;
}

.access-com-detail-wrap{
	width: 90%;
	max-width: 1670px;
	margin: 0 auto 13vw;
}

.access-com-detail-wrap .inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 7.5em;
}

.access-com-detail-wrap .inner .text-wrap{
	width: 50%;
}

.access-com-detail-wrap .inner .thumb-wrap{
	width: 45%;
}

.access-com-detail-wrap .inner .thumb-wrap img{
	display: block;
	line-height: 1;
	margin-bottom: 1.2em;
}

.access-com-detail-wrap .inner .text-wrap{
	font-size: 1.2em;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid rgba(249,248,244,0.3);
}

.access-com-detail-wrap .inner .text-wrap dt{
	width: 13em;
	border-bottom: 1px solid rgba(249,248,244,0.3);
	padding: 3em 0;
}

.access-com-detail-wrap .inner .text-wrap dd{
	width: calc(100% - 13em);
	border-bottom: 1px solid rgba(249,248,244,0.3);
	padding: 3em 0;
	padding-left: 2em;
}


.access-story-wrap{
	width: 90%;
	max-width: 1670px;
	margin: 0 auto 13em;
}

.access-story-wrap .inner{
	display: flex;
	justify-content: space-between;
	flex-flow: row-reverse;
	align-items: flex-start;
	position: relative;
	margin-top: 5em;
	padding: 4.5em 0;
	border-top: 1px solid rgba(249,248,244,0.25);
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.access-story-wrap .inner::before{
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - 4em);
	background: rgba(249,248,244,0.25);
	position: absolute;
	left: 50%;
	top: 2em;
	transform: translateX(-50%);
}

.story-history-wrap{
	width: 50%;	
}

.story-history-wrap .story-history{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2em;
}

.access-story-wrap .date{
	font-size: 1.69em;
	letter-spacing: .1em;
	width: 5em;
	height: 5em;
}

.access-story-wrap .date span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(249,248,244,0.3);
	border-radius: 100%;
    transition: background .6s cubic-bezier(0.33, 1, 0.68, 1),color .6s cubic-bezier(0.33, 1, 0.68, 1),transform .6s cubic-bezier(0.33, 1, 0.68, 1);
}

.story-history-wrap .story-history .date{
	position: relative;
	cursor: pointer;
}

.story-history-wrap .story-history.current .date span{
	background: rgba(249,248,244,0.3);
}

.story-history-wrap .story-history .date:hover span{
	background: rgba(249,248,244,0.8);
	color: #447065;
	transform: scale(1.08);
}

.story-history-wrap .story-history .date::after{
	content: "";
	display: block;
	width: 1px;
	height: 2rem;
	background: rgba(249,248,244,0.25);
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50% , 100%);
}

.story-history-wrap .story-history:last-of-type .date::after{
	display: none;
}

.story-history-wrap .story-history .title{
	font-size: 1.3em;
	width: calc(100% - 10em);
}

.access-story-wrap .inner .story-contents-wrap{
	width: 50%;
	padding: 0 10em;
	text-align: center;
}

.access-story-wrap .inner .story-contents-wrap .date{
	margin: 0 auto 2em;
}

.access-story-wrap .inner .story-contents-wrap .title{
	font-size: 1.8em;
	letter-spacing: .4em;
	line-height: 2.3;
	margin-bottom: 1.5em;
}

.access-story-wrap .inner .story-contents-wrap .text{
	text-align: left;
	line-height: 2.6;
	margin-bottom: 4em;
	font-size: 0.9em;
}

.access-story-wrap .inner .story-contents-wrap .thumb-wrap{
	line-height: 0;
	max-width: 455px;
	margin: 0 auto;
	border-radius: 1em;
	overflow: hidden;
}

.story-contents-wrap .story-contents{
	display: none;
}

.story-contents-wrap .story-contents.current{
	display: block;
}



/*
CONTACT
--------------------
*/

.contact-contents-wrap{
	padding-top: 7.5em;
	max-width: 1200px;
	margin: 0 auto 10em;
}

.form-wrap .read{
	width: 90%;
	text-align: center;
	line-height: 2;
	margin:0 auto 4em;
}

.form-wrap .read p:last-child{
	margin-top: 1.2em;
}

.form-wrap .red{
	color: #ce2e2e;
}

.form-wrap table{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.confirm_area .form-wrap table{
	max-width: 550px;
}

.form-wrap table th{
	padding-bottom: 1.5em;
	padding-right: 1.5em;
	vertical-align: top;
	white-space: nowrap;
}

.form-wrap table td{
	font-weight: 500;
	padding-bottom: 1.5em;
}

.form-wrap table.day-list{
	width: auto;
	margin:0;
}

.form-wrap th.day-title{
	padding-top: 1em;
}

.form-wrap table.day-list th{
	vertical-align: middle;
}

.form-wrap table.day-list .select-wrap{
	width: 20em;
}

.form-wrap table .event-name th,
.form-wrap table .event-name td{
	padding-bottom: 2em;
}

.form-wrap table td .note{
	font-size: .9em;
	margin-top: .5em;
}

.form-wrap .step-wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid rgba(181,181,182,0.5);
	border-bottom: 1px solid rgba(181,181,182,0.5);
	margin-bottom: 3em;
	padding: 2em 0;
}

.form-wrap .step-wrap div{
	text-align: center;
	width: 33.333%;
	opacity: .5;
}

.form-wrap .step-wrap div span:first-child{
	display: inline-block;
	margin-right: .6em;
}

.form-wrap .step-wrap div.current{
	opacity: 1;
}

input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
} 

input[type="number"] { 
  -moz-appearance:textfield; 
} 


input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea{
	width: 100%;
    padding: 1em;
    font-size: 1em;
    line-height: 1.85714;
    letter-spacing: .1em;
    color: #f9f8f4;
    border: 1px solid #f9f8f4;
    background: none;
    margin-top: 0;
    transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    outline: none;
    -webkit-appearance: none;
}

.event-name input[type="text"]{
	border: none;
	pointer-events: none;
	padding: 0;
	font-size: 1.14em;
}

.form-wrap .btn-wrap{
	display: flex;
	justify-content: center;
	margin: 4em auto 0;
	position: relative;
}

input[type="reset"],
input[type="button"].back_button{
    color: #f9f8f4;
    background: none;
    position: absolute;
    display: block;
    -webkit-appearance: none;
    border: none;
    outline: none;
	cursor: pointer;
    bottom: -4em;
    left: 50%;
    transform: translateX(-50%);
	transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);	
}

input[type="reset"]:hover,
input[type="button"].back_button:hover{
	opacity: .5;
}

input[type="submit"],
input[type="button"].confirm_button{
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: .2em;
	padding: 1.5em 3.5em;
    width: 100%;
    max-width: 354px;
	padding: 1.3em 3em;
	border-radius: 3em;
	background: #f9f8f4;
	border: 1px solid rgba(61, 113, 101, 0.5);
	border-radius: 3em;
	color: #447065;
    font-family: inherit;
    -webkit-appearance: none;
    outline: none;
	cursor: pointer;
	text-align: center;
	display: block;
    transition: .3s ease;
}

input[type="submit"]:hover,
input[type="button"].confirm_button:hover{
	color: #f9f8f4;
	background: #447065;
	border: 1px solid rgba(249,248,244,0.25);
}



input::-webkit-input-placeholder { color:#bbb;}
input:-moz-placeholder { color:#bbb;}
input::-moz-placeholder { color:#bbb;}

textarea::-webkit-input-placeholder { color:#bbb;}
textarea:-moz-placeholder { color:#bbb;}
textarea::-moz-placeholder { color:#bbb;}

select{
    outline:none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
	-webkit-appearance: none;
	appearance: none;
    border-radius: 0;
	width: 100%;
    padding: 1em;
    font-size: 1em;
    line-height: 1.85714;
    letter-spacing: .1em;
    border: 1px solid #CCC;
    color: #bbb;
    background: #FFF;
}

.select-wrap{
	position: relative;
	width: 100%;
}

.select-wrap::after{
  border-top: 1px solid rgba(35,24,21,0.25);
  border-right: 1px solid rgba(35,24,21,0.25);
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 1.6em;;
  right: 20px;
  transform: rotate(130deg);
 }

.size-m{
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

.size-mm{
	display: inline-block;
	width: 100%;
	max-width: 600px;
}

.size-s{
	display: inline-block;
	width: 6em;
	margin-right: 1em;
}

.size-zip{
	display: inline-block;
	width: 100%;
	max-width: 300px;
	vertical-align: middle;
}

span.wpcf7-list-item{
	margin-left: 0;
	margin-right: 1em;
}

/* checkbox */

.form-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;/*既存のチェックボックスを見えなくする*/
}

.form-wrap .wpcf7-list-item-label{
	position: relative;
	cursor: pointer;
}

.form-wrap .wpcf7-list-item-label::before {/*チェックボックスの枠*/
	content: '';
	border: 1px solid rgba(62,58,57,0.25);
	background: #FFF;
	border-radius: 5px;
	display: inline-block;
	width: 15px;
	height: 15px;
	position: relative;
	top: -3px;
	margin-right: 10px;
	vertical-align: middle;
	cursor: pointer;
	vertical-align: -5px;
	text-align: center;
}

.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label::after {/*チェックアイコン*/
	position: absolute;
	top: 4px;
	left: 6px;
	transform: rotate(50deg);
	width: 4px;
	height: 8px;
	border-right: 2px solid #3e3a39;
	border-bottom: 2px solid #3e3a39;
	content: '';
}

.form-wrap .policy-link a{
	text-decoration: underline;
	transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);	
}

.form-wrap .policy-link a:hover{
	opacity: .5;
}

.confirm{
	text-align: center;
	margin:0 0 40px;
	padding-top: 80px;
	font-weight: 700;
	font-size: 16px;
}

.conf-text{
	text-align: center;
	font-size: 1.08em;
	letter-spacing: .5em;
	margin-bottom: 3em;
	margin-top: 7em;
}

.submit{
	position: relative;
    margin: 0 auto;
	display: table;
	margin-top: 20px;
}

.wpcf7c-conf {
    background: none!important;
    border: none!important;
 }

.ajax-loader,
div.wpcf7-mail-sent-ok,
.wpcf7 form .wpcf7-response-output,
.wpcf7-spinner {
	display: none!important;
}

.wpcf7-not-valid-tip {
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.form-wrap .policy-link a{
	text-decoration: underline;
}


.thanks-wrap{
	width: 100%;
	margin: 15vh auto 20vh;
	text-align: center;
}

.thanks-wrap .title{
	font-size: 1.73em;
	margin-bottom: 1em;
}

.thanks-wrap p{
	font-size: 1.1em;
	margin-bottom: 3em;
}

.thanks-wrap a{
	font-size: 1.15em;
	text-decoration: underline;
}

.info404-wrap{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.info404-wrap .title{
	font-size: 2em;
	margin-bottom: 1em;
}
.info404-wrap p{
	font-size: 1.4em;
	margin-bottom: 1em;
}
.info404-wrap a{
	font-size: 1.15em;
	text-decoration: underline;
}


/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
    display: none;
    padding-top: 13em;
}

.confirm_area table{
	margin: 6em auto;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output{
    display: none;
}


/*
--------------------
PRIVACY POLICY
*/


.policy-contents-wrap{
	width: 90%;
	max-width: 800px;
	margin: 0 auto 10em;
	padding-top: 7.5em;
}

.policy-read-wrap{
	line-height: 2;
	margin-bottom: 6em;
}

.policy-contents{
	margin-bottom: 6em;
}

.policy-contents .title{
	font-size: 1.3em;
	margin-bottom: 2em;
}

.policy-contents .ls-title::before{
	top: 1.3em;
}

.policy-contents .text{
	line-height: 2;
}

.policy-contents .text a{
	text-decoration: underline;
}

.policy-contents ul{
	margin-top: 2em;
}

.policy-contents .text ul{
	margin: 2em 0;
	list-style-type: decimal;
	padding-left: 2em;
}


.policy-contents .text ul li{
	line-height: 1.8;
	padding-left: .5em;
	margin-bottom: .7em;
	letter-spacing: .05em;
}

.policy-contents .text ul li li{
	line-height: 1.8;
}

