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

/*
スマートフォン用CSS
*/

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

.pc{display: none!important;}


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

header{
	width: 100%;
	height: 7em;
	padding: 1em 5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: url(img/common/bg.png);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

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

header .logo-wrap .logo{
	display: block;
	width: 20vw;
	max-width: 100px;
	min-width: 80px;
	margin-right: 5vw;
}

header .logo-wrap .copy{
	font-size: .8em;
	line-height: 2.5;
	letter-spacing: .3em;
}

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 .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;
}



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


.open-menu{
	position: fixed;
	top: 0;
	right: 0;
	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 .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{
	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: 1px;
    height: 1px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    background: #447065;
    transform: translate(-50% , -50%) scale(0);
    transition: 0.6s cubic-bezier(.3,2.5,.3,1);
    transition-property: opacity, transform;
    opacity: 0;
}

.open-menu .icon-nav li a:hover:before {
	transform: translate(-50% , -50%) scale(40);
	opacity: 1;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(.22,1.42,.35,.99);
}

.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;
    color: #f9f8f4
}

.open .open-menu-btn-wrap {
	color: #447065;
}

.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: #f9f8f4;
	left: 0;
	transition: .5s ease;
}

.open .open-menu-btn .toggle {
	background: #447065;
}

.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: 100dvh;
	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: 100dvh;
	position: fixed;
	top: 0;
	right: 0;
	padding: 3em 5vw 4em;
	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{
	display: block;
	width: 20vw;
	max-width: 100px;
	min-width: 80px;
	margin-bottom: 3em;
}

.open-menu-wrap .open-contact-btn{
	display: table;
	font-size: 1.1em;
	letter-spacing: .3em;
	padding: 1.3em 4em;
	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);
    margin: 2em auto 1em;
}

.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%;
	margin: 0 auto;
}

.open-nav-wrap .open-nav{
	font-size: 1.3em;
	letter-spacing: .4em;
	padding: 1.5rem 0;
	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;
	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.main-menu{
	z-index: 1;
}

.open-nav-wrap .open-nav.main-menu a{
	display: inline;
	z-index: 2;
}

.open-nav-wrap .open-nav.main-menu .sub-trigger{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.open-nav-wrap .open-nav .sub-arrow{
	position: relative;
}

.open-nav-wrap .open-nav .sub-arrow {
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid rgba(61, 113, 101, 0.5);
    border-radius: 100%;
    position: absolute;
    right: 1.15rem;
    top: 2rem;
    transition: .6s ease-out;
    z-index: 2;
}

.open-nav-wrap .open-nav.active .sub-arrow {
    transform: translateX(1.15rem);
}

.open-nav-wrap .open-nav .sub-arrow::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #447065;
    border-right: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}

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

.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 .icon-link{
	position: absolute;
	top: .6em;
	right: 5.5em;
}

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

.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{
	text-align: center;
	letter-spacing: .1em;
	margin: 0 auto;
}


.fixed-btn{
	width: 98vw;
	position: fixed;
	left: 1vw;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	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;
}

.fixed-btn a.btn{
	width: 33%;
	text-align: center;
	display: block;
	line-height: 1;
	letter-spacing: .1em;
	font-size: 1.1em;
	padding: .8em .5em;
	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);
}

.fixed-btn a.btn::before {
    content: "";
    display: block;
    width: 2em;
    height: 1.7em;
    background: url(img/common/rline_wt.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: -0.5em;
    transform: translate(0 , -60%);
}

.fixed-btn a.btn span{
	display: block;
	font-size: .8em;
	margin-top: .5em;
}


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


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

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

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

.top-movie-wrap .top-banner{
	width: 4em;
	position: absolute;
	left: 5vw;
	bottom: 6em;
}



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

.page-contents-wrap{
	background: rgba(249,248,244,0.1);
	padding-top: calc(7em + 4em);
	padding-bottom: 7em;
	min-height: 100dvh;
}

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

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

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

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

.page-read{
	line-height: 1.8;
	letter-spacing: .25em;
}


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

.philosophy-icatch-wrap{
	padding-top: 5em;
	margin-bottom: 6em;
}

.philosophy-icatch-wrap .movie-wrap{
	width: 100%;
	display: flex;
	gap:.3em;
	height: 16em;
	margin-bottom: 3em;
}

.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: 90%;
	margin: 0 auto;
}

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

.philosophy-icatch-wrap .text-wrap .text{
	letter-spacing: .3em;
	line-height: 2.5;
	margin-bottom: 3em;
}

.philosophy-contents-wrap{
	width: 90%;
	margin: 0 auto;
}

.philosophy-contents-wrap .philosophy-contents{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 2em;
	margin-bottom: 6em;
	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%;
}

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

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

.philosophy-contents-wrap .philosophy-contents .text-wrap .title br{
	display: none;
}

.philosophy-contents-wrap .philosophy-contents .text-wrap .read{
	font-size: .9em;
	line-height: 1.8;
}

.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{
	margin: 0 auto;
	width: 90%;
	padding-top: 4em;
}

.philosophy-single-wrap .text-wrap{
	margin-bottom: 4em;
}

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

.philosophy-single-wrap .text-wrap .title{
	font-size: 1.4em;
	letter-spacing: .4em;
	line-height: 1.9;
	margin-bottom: 3em;
}

.philosophy-single-wrap .text-wrap .text{
	line-height: 2.6;
}

.philosophy-single-wrap .thumb-wrap{
	width: 100%;
	margin-bottom: 2em;
}

.philosophy-flow-contents-wrap{
	width: 100%;
	padding-top: 2em;
}

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

.philosophy-flow-contents-wrap .philosophy-flow-contents .thumb-wrap{
	width: 100%;
}

.philosophy-flow-contents-wrap .philosophy-flow-contents .text-wrap{
	width: 100%;
	margin-bottom: 2em;
}

.philosophy-flow-contents-wrap .philosophy-flow-contents .flow-title{
	font-size: 1.3em;
	margin-bottom: 1em;
}


.philosophy-graph-contents-wrap{
	width: 100%;
	padding-top: 2em;
}

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

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

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


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

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

.living-contents-wrap .living-contents{
	display: block;
	position: relative;
	margin-bottom: 6em;
	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: 100%;
	display: flex;
	align-items: flex-start;
	gap:0.5em;
}

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

.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: 100%;
	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.2em;
	letter-spacing: .4em;
	margin-bottom: 1em;
}

.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{
	padding-top: 4em;
	position: relative;
}

.living-single-wrap .living-title{
	width: 90%;
	font-size: 1.3em;
	letter-spacing: .4em;
	margin: 3em auto 0;
}

.living-icatch-wrap{
	margin-bottom: 4em;
}

.living-icatch-wrap .movie-wrap{
	width: 100vw;
	height: 0;
	position: relative;
	padding-top: 66%;
}

.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: 90%;
	margin: 0 auto;
	line-height: 1.8;
}

.living-icatch-wrap .text-wrap .text{
	line-height: 2.6;
	padding-top: 10%;
	margin-bottom: 10em;
}

.living-data{
	width: 90%;
	margin: 0 auto 6em;
	line-height: 2.6;
}

.living-thumb-wrap{
	width: 90%;
	margin: 0 auto 3em;
}

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

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

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

.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 .living-reco-contents{
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 1em;
	margin-bottom: 2em;
	padding-right: 1em;
	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: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	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 .reco-title{
	letter-spacing: .1em;
	line-height: 2;
}

.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: 70%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}


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

.staff-contents-wrap{
	width: 90%;
	max-width: 1620px;
	margin: 0 auto;
	padding-top: 4em;
}

.staff-contents-wrap .staff-contents{
	width: 100%;
	margin-bottom: 5em;
}

.staff-contents-wrap .staff-contents .thumb-wrap{
	width: 60%;
	margin: 0 auto 2em;
}

.staff-contents-wrap .staff-contents .text-wrap{
	width: 100%;
}

.staff-contents-wrap .staff-contents .text-wrap .text{ 
	line-height: 1.8;
	margin-top: 1.5em;
	text-align: justify;
}

.staff-contents-wrap .staff-contents .text-wrap .title{ 
	font-size: 1.4em;
	letter-spacing: .4em;
	text-align: center;
}

.staff-contents-wrap .staff-contents .text-wrap .cat{ 
	font-size: 1em;
	letter-spacing: .1em;
	text-align: center;
	margin-bottom: .8em;
}


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

.faq-contents-wrap{
	width: 90%;
	margin: 0 auto;
	padding-top: 3em;
}

.faq-contents-wrap .faq-nav{
	width: 100%;
	margin-bottom: 5em;
}

.faq-contents-wrap .faq-nav li{
	display: table;
	font-size: 1.1em;
	letter-spacing: .3em;
	margin-bottom: .5em;
	position: relative;
	padding: .5em 2.5em;
	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: 100%;
}

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

.faq-list-wrap .faq-title{
	font-size: 1.2em;
	letter-spacing: .4em;
	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: 1.3em 0;
	padding-right: 3em;
	font-size: 1.1em;
	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 .open 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: 2em;
	position: relative;
	padding-left: 1.3em;
	display: none;
}

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


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

.feeling-slider-contents-wrap{
	width: 90%;
	height: 0;
	margin: 3em auto 4em;
	padding-top: 60%;
	position: relative;
}

.feeling-slider-movie{
	width: calc(50% - 0.25em);
	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% - 0.25em);
	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: 1.4em;
	margin-bottom: 0.8em;
}

.feeling-form-wrap{
	width: 90%;
	margin: 0 auto;
}

.feeling-form-wrap .text-wrap{
	width: 100%;
	margin-bottom: 2em;
}

.feeling-form-wrap .form-wrap{
	width: 100%;
	background: rgba(249,248,244,0.1);
	padding: 3em 1em 7em;
}

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

.feeling-form-wrap .text-wrap .text{
	line-height: 2;
	margin-bottom: 3em;
}

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


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

.yorozu-contents-wrap{
	width: 90%;
	margin: 0 auto;
	padding-top: 3em;
}

.yorozu-contents-wrap .thumb-wrap{
	width: 100%;
	position: relative;
	margin-bottom: 3em;
}

.yorozu-contents-wrap .form-wrap{
	width: 100%;
	background: rgba(249,248,244,0.1);
	padding: 3em 1em 7em;
}

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

.yorozu-contents-wrap .thumb-wrap .thumb1 .read{
	left: -1em;
	bottom: 3em;
}

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

.yorozu-contents-wrap .thumb-wrap .thumb3 .read{
	right: 1em;
	top: 40%;
}

.yorozu-contents-wrap .thumb-wrap .thumb4 .read{
	left: 0;
	bottom: 6em;
}


.yorozu-contents-wrap .thumb-wrap .thumb1{
	width: 100%;
	margin-bottom: 2em;
}

.yorozu-contents-wrap .thumb-wrap .thumb2{
	width: 50%;
	margin: 0 auto 2em;
}

.yorozu-contents-wrap .thumb-wrap .thumb3{
	width: 100%;
	padding-right: 50%;
	margin-bottom: 2em;
}

.yorozu-contents-wrap .thumb-wrap .thumb4{
	width: 100%;
}

.yorozu-contents-wrap .thumb-wrap .thumb4::after{
	content: "";
	display: block;
	clear: both;
}

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

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

.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;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 3em auto 3em;
}

.post-cat-nav li{
	width: 50%;
	font-size: 1em;
	letter-spacing: .2em;
	line-height: 1;
	padding: 1em 1.5em;
	cursor: pointer;
	position: relative;
	text-align: center;
	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 .blog-contents{
	width: 47%;
	margin-bottom: 3em;
	padding-top: 1.6em;
	position: relative;
}

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

.blog-contents-wrap .blog-contents .title{
	font-size: 1em;
	letter-spacing: .3em;
	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{
	font-size: .9em;
	letter-spacing: 0;
}

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

.blog-contents-wrap .blog-contents .date-wrap .cat li{
	font-size: .9em;
	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: 4em;
	padding-bottom: 3em;
	margin-bottom: 2em;
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

.blog-single-wrap .thumb-wrap{
	width: 100%;
	margin-bottom: 2em;
}

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

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

.blog-single-wrap .text-wrap .title{
	font-size: 1.4em;
	letter-spacing: .4em;
	display: table;
	padding-left: .3em;
	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);
}

.blog-text{
	line-height: 2.6;
	width: 90%;
	max-width: 1010px;
	margin: 0 auto 2em;
}

.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{
	margin-top: 1.5em;
}

.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 .news-contents{
	width: 47%;
	margin-bottom: 3em;
	position: relative;
}

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

.news-contents-wrap .news-contents .cat-wrap .cat{
	font-size: .9em;
}

.news-contents-wrap .news-contents .cat-wrap .status{
	font-size: .85em;
	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.1em;
	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: 4em;
}

.news-single-wrap .thumb-wrap{
	width: 100%;
	margin-bottom: 2em;
}

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

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

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

.news-single-wrap .text-wrap .text{
	line-height: 1.8;
	margin-top: 1.5em;
	
}



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

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

.access-com-wrap{
	width: 90%;
	max-width: 1390px;
	margin: 0 auto 7em;
	padding-top: 4em;
}

.access-com{
	width: 100%;
	margin-bottom: 4em;
}

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

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

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

.access-com .map-link{
	display: table;
	margin-bottom: 2em;
	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 5em;
}

.access-message-wrap .inner{
	padding-top: 4em;
}

.access-message-wrap .inner .thumb-wrap{
	width: 100%;
	line-height: 0;
}

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

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

.access-message-wrap .inner .text-wrap .text{
	line-height: 1.8;
}

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

.access-com-detail-wrap .inner{
	padding-top: 4em;
}

.access-com-detail-wrap .inner .text-wrap{
	width: 100%;
	margin-bottom: 2em;
}

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

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

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

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

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

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

.access-story-wrap .inner{
	position: relative;
	padding: 2em 0 0;
	margin-top: 2em;
	border-top: 1px solid rgba(249,248,244,0.25);
	border-bottom: 1px solid rgba(249,248,244,0.25);
}

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

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

.access-story-wrap .date{
	font-size: 1.3em;
	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: 1rem;
	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.15em;
	width: calc(100% - 7em);
}

.access-story-wrap .inner .story-contents-wrap{
	width: 100%;
	text-align: center;
	margin-bottom: 2em;
}

.access-story-wrap .inner .story-contents{
	margin-bottom: 2em;
	display: block!important;
}

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

.access-story-wrap .inner .story-contents .contents-inner{
	display: flex;
	flex-flow: column-reverse;
}

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

.access-story-wrap .inner .story-contents-wrap .date::before{
	content: "";
	display: block;
	width: calc((90vw - 100%) / 2);
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(100% , -50%);
}

.access-story-wrap .inner .story-contents-wrap .date::after{
	content: "";
	display: block;
	width: calc((90vw - 100%) / 2);
	height: 1px;
	background: rgba(249,248,244,0.25);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-100% , -50%);
}

.access-story-wrap .inner .story-contents-wrap .title{
	font-size: 1.1em;
	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: 2em;
}

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



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

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

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

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

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

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

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

.form-wrap table th{
	display: block;
	width: 100%;
	padding-bottom: .5em;
	padding-right: 1.5em;
	vertical-align: top;
	white-space: nowrap;
}

.form-wrap table td{
	display: block;
	width: 100%;
	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: 2em;
	padding: 1em 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: 2em 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: -3.5em;
    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: .4em;
	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: 1em;
	text-decoration: underline;
}

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

.info404-wrap .title{
	font-size: 1.4em;
	margin-bottom: 1em;
}
.info404-wrap p{
	font-size: 1.1em;
	margin-bottom: 1em;
}
.info404-wrap a{
	font-size: 1em;
	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 5em;
	padding-top: 4em;
}

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

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

.policy-contents .title{
	font-size: 1.2em;
	margin-bottom: 1em;
}

.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.6;
    margin-bottom: 1.2em;
}

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

