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

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

html, body {
	color: #3e3a39;
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: .05em;
	font-feature-settings: "palt";
	overflow-x: hidden;
	font-family: "a-otf-ud-reimin-pr6n", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.en,.num,.more,.btn,.date,.new{
	font-family: "Times New Roman", serif;
	font-weight: 300;
	font-style: normal;
}

.pc{display: none!important;}


:target {
    scroll-margin-top: 8em;
}

header{
	width: 100%;
	height: 5.7em;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5em 5%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	line-height: 1;
	white-space: nowrap;
}

header::after{
	content: "";
	display: block;
	background: #00381f;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

header.top::after{
	transform: translateY(-100%);
	transition: transform .4s cubic-bezier(.215,.61,.355,1);
}

header.top.fixed::after{
	transform: translateY(0);
}

header.top{
	opacity: 0;
	transition: opacity .6s ease-out 3.3s;
}

.load-on header.top{
	opacity: 1;
}

header .logo{
	display: block;
	width: 45%;
	max-width: 180px;
}

header .gnav{
	display: flex;
	align-items: center;
	margin-left: 4vw;
}

header .gnav li{
	font-size: 1.05em;
	letter-spacing: .24em;
	margin-left: 2vw;
	padding-bottom: .4em;
	position: relative;
	transition: opacity .3s ease;
}

header .gnav li::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
	background: rgba(220,221,221,0.5);
    transform: scaleX(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: right center;
}

header .gnav li.nohover{
	opacity: .5;
}

header .gnav li .child-nav{
	padding: 3.6em 3.6em 2.6em;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50% , 100%);
	display: none;
}

header .gnav li .child-nav:after{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% - 1em);
	background: #efefef;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

header .gnav li .child-nav a{
	display: table;
	font-size: .86em;
	letter-spacing: .05em;
	color: #00381f;
	padding-bottom: .5em;
	margin-bottom: 1.5em;
	position: relative;
}

header .gnav li .child-nav a:last-child{
	margin-bottom: 0;
}

header .gnav li .child-nav a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
	background: rgba(0,56,31,0.5);
    transform: scaleX(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: right center;
}

header .contact-btn{
	color: #00381f;
	background: #FFF;
	border: 1px solid rgba(255,255,255,0.5);
	letter-spacing: .2em;
	padding: 1.2em 2em;
	border-radius: 3em;
	margin-left: 3em;
	transition: .4s ease;
}

header .tel-btn{
	border: 1px solid rgba(255,255,255,0.5);
	letter-spacing: .1em;
	padding: 1.2em 2em;
	border-radius: 3em;
	margin-left: 1.3em;
	transition: .4s ease;
}

a.c-link{
	letter-spacing: .2em;
	display: table;
	position: relative;
	padding-right: 3.3em;
}

a.c-link::after{
	content: "";
	display: block;
	width: .5em;
	height: .5em;
	border: 1.1em solid #00381f;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: .4s ease;
}

a.c-link.wt::after{
	border: 1.1em solid #FFF;
}

.hover a.c-link::after{
	transform: translateY(-50%) scale(1.1);
}

a.c-link span{
	position: relative;
	padding-bottom: .5em;
}

a.c-link span:after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(0,56,31,0.5);
	position: absolute;
	bottom: 0;
	left: 0;
    transform-origin: right center;
	transition: transform .5s ease , opacity .2s ease 0s;
}

a.c-link.wt span::after{
	background: rgba(255,255,255,0.5);
}

.hover a.c-link span:after{
    transform: scaleX(0);
    opacity: 0;
	transition: transform .5s ease , opacity .2s ease .3s;
}

.cap-title{
	color: #00381f;
	margin-bottom: 2em;
}

.cap-title.wt{
	color: #dcdddd;
}

.cap-title .en{
	display: block;
	font-size: 1.1em;
	letter-spacing: .1em;
	position: relative;
	margin-bottom: 1.3em;
}

.cap-title .en::after{
	content: "";
	display: block;
	width: 1.6em;
	height: 1px;
	background: rgba(0,56,31,0.5);
	margin-top: 1em;
}

.cap-title.wt .en::after{
	background: rgba(220,221,221,0.5);
}

.cap-title .jp{
	display: block;
	font-size: 1.3em;
	letter-spacing: .2em;
}

footer{
	color: #efefef;
	width: 90%;
	max-width: 1740px;
	margin: 0 auto;
	padding: 6.4em 0 4.6em;
	position: relative;
}

footer::after{
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: #00381f;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

footer .pagetop{
	font-size: .8em;
	color: #00381f;
	letter-spacing: .2em;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	transform: translateY(calc(-50%  - 1em));
	z-index: 5;
}

footer .pagetop span{
	display: block;
	width: 5em;
	height: 5em;
	border: 1px solid rgba(0,56,31,0.5);
	border-radius: 100%;
	background: #f6f5f5;
	margin-top: .4em;
	position: relative;
}

footer .pagetop span::after{
	content: "";
	display: block;
	width: .9em;
	height: .9em;
	border-right: 1px solid rgba(0,56,31,0.8);
	border-bottom: 1px solid rgba(0,56,31,0.8);
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50% , -50%) rotate(-135deg);
}

.foot-contact-wrap{
	margin-bottom: 3em;
}

.foot-contact-wrap .btn-wrap{
	margin-bottom: 2em;
}

.foot-contact-wrap .btn-wrap span{
	display: block;
	text-align: center;
	letter-spacing: .2em;
	margin-bottom: 1em;
}

.foot-contact-wrap .btn-wrap .contact-btn{
	display: block;
	text-align: center;
	color: #00381f;
	background: #efefef;
	border: 1px solid rgba(220,221,221,0.5)	;
	font-size: 1.1em;
	letter-spacing: .26em;
	padding: 1.17em;
	width: 20em;
	max-width: 350px;
	border-radius: 3em;
	transition: .4s ease;
	margin: 0 auto;
}

.foot-contact-wrap .btn-wrap .tel-btn{
	display: block;
	text-align: center;
	border: 1px solid rgba(220,221,221,0.5)	;
	font-size: 1.1em;
	letter-spacing: .26em;
	padding: 1.17em;
	width: 20em;
	max-width: 350px;
	border-radius: 3em;
	transition: .4s ease;
	margin: 0 auto;
}

.foot-contact-wrap .sns-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8em;
	padding-top: 2em;
}

.foot-contact-wrap .line-btn{
	display: block;
	width: 3.5em;
	height: 3.5em;
	background: url(img/common/icon_line_wt.svg) no-repeat;
	background-size: contain;
	margin: 0 1em;
	margin-bottom: .66em;
	transition: .4s ease;
}

.foot-contact-wrap .chat-btn{
	display: block;
	width: 4.3em;
	height: 3.3em;
	background: url(img/common/icon_chat_wt.svg) no-repeat;
	background-size: contain;
	margin: 0 1em;
	transition: .4s ease;
}

.foot-nav-wrap .foot-nav{
	margin-bottom: 3em;
}

.foot-nav-wrap .foot-nav:last-child{
	margin-bottom: 1em;
}

.foot-nav-wrap .foot-nav li{
	margin-bottom: 1em;
	position: relative;
	display: table;
	padding-bottom: .4em;
}

.foot-nav-wrap .foot-nav li::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(239,239,239,0.5);
	position: absolute;
	left: 0;
	bottom: 0;
    transform: scaleX(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: right center;
}

.foot-nav-wrap .title-link{
	display: block;
	font-size: 1.1em;
	letter-spacing: .2em;
	margin-bottom: 1.3em;
	padding-bottom: .4em;
	position: relative;
}

.foot-nav-wrap .title-link::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(239,239,239,0.5);
	position: absolute;
	left: 0;
	bottom: 0;
    transform: scaleX(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: left center;
}

.foot-nav-wrap .foot-nav .title-link:nth-of-type(2){
	margin-top: 3em;
}

.foot-info-wrap{
	text-align: center;
}

.foot-info-wrap .foot-logo{
	width: 50%;
	max-width: 220px;
	display: block;
	margin: 0 auto;
}

.foot-info-wrap .address{
	font-size: .9em;
	line-height: 2.2;
	letter-spacing: .2em;
	margin: 2em auto 4em;
}

.foot-info-wrap .copyright{
	font-size: .76em;
	line-height: 2.7;
	letter-spacing: .2em;
}

footer .policy-link{
	font-size: .9em;
	display: table;
	position: relative;
	letter-spacing: .2em;
	padding-bottom: .4em;
	float: right;
	margin-bottom: 5em;
}

footer .policy-link::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(239,239,239,0.5);
	position: absolute;
	left: 0;
	bottom: 0;
    transform: scaleX(1);
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: left center;
}

#loading{
	width: 100%;
	height: 100dvh;
	background: #00381f;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	animation: fadeOut 2s ease forwards 3s;
}

#loading .loading-logo{
	width: 30%;
	max-width: 180px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

#loading .loading-logo img {
	opacity: 0;
	filter: blur(10px);
	animation: skewFadeIn 2s ease forwards;
}


@keyframes skewFadeIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: skewX(-2deg);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: skewX(0);
  }
}


@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}


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


.top-icatch-wrap{
	width: 100%;
	height: 100dvh;
	color: #FFF;
	position: relative;
	overflow: hidden;
}

.top-icatch-wrap .scroll{
	position: absolute;
	bottom: 5em;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity .6s ease-out 3.5s;
}

.load-on .top-icatch-wrap .scroll{
	opacity: 1;
}

.top-icatch-wrap .scroll span{
	position: absolute;
    top: 0;
    left: 50%;
    width: 1.5em;
    height: 2.6em;
    margin-left: -0.75em;
    border: 1px solid #fff;
    border-radius: 2.3em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.top-icatch-wrap .scroll span::before {
    position: absolute;
    top: 6px;
    left: 50%;
    content: '';
    width: 0.4em;
    height: 0.4em;
    margin-left: -0.2em;
    background-color: #fff;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    animation: scrolldown 2s infinite;
    -webkit-animation: scrolldown 2s infinite;
}


@keyframes scrolldown {
	
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 0; 
	}
	40% {
		opacity: 1; 
	}
	80% {
		-webkit-transform: translate(0, 0.76em);
		transform: translate(0, 0.76em);
		opacity: 0; 
	}
	100% {
		opacity: 0; 
	} 

}

.top-icatch-wrap .slider{
	width: 100%;
	height: 100vh;
}

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

.top-icatch-wrap .slick-dots{
	position: absolute;
	right: 5%;
	top: 7em;
	z-index: 5;
	opacity: 0;
	transition: opacity .6s ease-out 3.5s;
}

.load-on .top-icatch-wrap .slick-dots{
	opacity: 1;
}

.top-icatch-wrap .slick-dots li{
	width: 6px;
	height: 6px;
	background: none;
	text-indent: -9999px;
	border: 1px solid #FFF;
	border-radius: 100%;
	margin-bottom: .6em;
}

.top-icatch-wrap .slick-dots li.slick-active{
	background: #FFF;
}

.top-icatch-wrap .top-news{
	position: absolute;
	bottom: 10em;
	right: 5%;
	line-height: 1;
	display: flex;
	align-items: flex-end;
	flex-flow: column;
	opacity: 0;
	transition: opacity .6s ease-out 3.5s;
}

.load-on .top-icatch-wrap .top-news{
	opacity: 1;
}

.top-icatch-wrap .top-news .date{
	font-size: .9em;
	letter-spacing: .15em;
	margin-bottom: 1.4em;
}

.top-icatch-wrap .top-news .title{
	font-size: 1.05em;
	letter-spacing: .1em;
	margin-bottom: 3.4em;
}

.top-credo-wrap{
	background: #00381f;
	color: #efefef;
	padding: 6em 0 9em 0;
	margin-bottom: 5em;
}

.top-credo-wrap .thumb-wrap{
	width: 100%;
	position: relative;
	overflow: initial;
}

.top-credo-wrap .thumb-wrap img:nth-of-type(1){
	width: 75%;
	height: auto;
}

.top-credo-wrap .thumb-wrap img:nth-of-type(2){
	width: 33%;
	height: auto;
	position: absolute;
	right: 5vw;
	bottom: -5em;
}

.top-credo-wrap .text-wrap{
	width: 90%;
	margin: 0 auto 12em;
}

.top-credo-wrap .text-wrap .text{
	line-height: 2.4;
	margin-bottom: 4em;
}

.top-credo-wrap .text-wrap .c-link{
	float: right;
}

.top-credo-wrap .text-wrap .c-link::after{
	border-color: #dcdddd;
}

.top-service-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 4em;
	padding-bottom: 3em;
	position: relative;
}

.top-service-wrap::after{
	content: "";
	display: block;
	width: 100vw;
	height: 90%;
	background: #f5f5f4;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.top-service-contents{
	display: block;
	margin-bottom: 2em;
}

.top-service-contents .text-wrap{
	padding: 2em 1.5em 5em;
	background: #FFF;
	position: relative;
	transition: .4s ease;
}

.top-service-contents .text-wrap .title{
	font-size: 1.2em;
	letter-spacing: .24em;
	margin-bottom: 1.2em;
}

.top-service-contents .text-wrap .text{
	font-size: .9em;
	line-height: 2.6em;
}

.top-service-contents .text-wrap .more{
	letter-spacing: .2em;
	margin-top: 3.33em;
	padding-bottom: .3em;
	border-bottom: 1px solid rgba(0,56,31,0.5);
	position: absolute;
	bottom: 2.6rem;
	right: 2rem;
}

.top-voice-wrap{
	display: block;
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 5em;
	padding-top: 40%;
	position: relative;
	overflow: hidden;
}

.top-voice-wrap::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(img/top/top_voice.jpg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	z-index: -1;
    transition: transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top-voice-wrap .voice-title{
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

.top-voice-wrap .voice-title span{
	font-size: 1.3em;
	letter-spacing: .2em;
}

.top-blog-wrap{
	margin-bottom: 9em;
	position: relative;
}

.top-blog-wrap .title-wrap{
	width: 90%;
	max-width: 1700px;
	margin: 0 auto 4em;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.top-blog-wrap .title-wrap .cap-title{
	margin-bottom: 0;
}

.top-blog-wrap .blog-slider{
    width: calc(100% + 8em);
    margin-left: 5vw;
    padding-bottom: 5em;
}

.top-blog-wrap .dots-wrap{
	width: 90vw;
	max-width: 1740px;
	margin: 0 auto;
	position: relative;
}

.top-blog-wrap .slick-dots{
	display: flex;
}

.top-blog-wrap .slick-dots li{
	text-indent: -9999px;
	border: none;
	outline: none;
	width: calc(100% / 3);
	height: 4px;
	background: #efefef;
}

.top-blog-wrap .line {
	position: absolute;
	width: 100px;
	height: 4px;
	background: #00381f;
	border-radius: 10px;
	bottom: 0;
	transition: left 0.3s ease, width 0.3s ease;
}

.top-blog-wrap .slick-slide {
    margin: 0 1em;
}

.top-blog-wrap .slick-list {
    margin: 0 -1em;
    overflow: visible !important;
}

.top-blog-wrap .blog-slider .thumb-wrap{
	margin-bottom: 2em;
}

.top-blog-wrap .blog-slider .date{
	line-height: 1;
	margin-bottom: 1em;

}

.top-blog-wrap .blog-slider .title{
	font-size: 1.05em;
	letter-spacing: .2em;
}


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

.page-contents-wrap{
	padding-top: 5.7em;
}

.page-icatch-wrap{
	height: 20em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 4em;
}

.page-icatch-wrap .page-title{
	color: #FFF;
}

.page-icatch-wrap .page-title span{
	font-size: 1.3em;
	letter-spacing: .2em;
}


/*
CREDO
--------------------
*/

.credo .page-icatch-wrap{
	background: url(img/page/credo_icatch.jpg) no-repeat;
	background-size: cover;
}

.credo-read-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 5em;
}

.credo-read-wrap .text{
	line-height: 2.4;
}

.credo-list-wrap{
	background: #00381f;
	color: #dcdddd;
	padding-bottom: 2em;
	margin-bottom: 5em;
}

.credo-list{
	padding: 2em 5vw;
	margin-bottom: 2em;
}

.credo-list .thumb-wrap{
	width: 100%;
}

.credo-list .thumb-wrap img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.credo-list .text-wrap{
	width: 100%;
	padding: 3em 0 0;
	display: flex;
	align-items: center;
	flex-flow: column;
}

.credo-list .text-wrap .inner{
	padding: 3em 0;
	border-top: 1px solid rgba(220,221,221,0.5);
	border-bottom: 1px solid rgba(220,221,221,0.5);
}

.credo-list .text-wrap .s-title{
	width: 100%;
	font-size: 1.05em;
	letter-spacing: .1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: .3em;
}

.credo-list .text-wrap .s-title span{
	font-size: 1.2em;
}

.credo-list .text-wrap .title{
	font-size: 1.2em;
	letter-spacing: .2em;
	margin-bottom: 1.6em;
}

.credo-list .text-wrap .text{
	line-height: 2.4;
}

.credo-logo-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 10em;
}

.credo-logo-wrap .logo-read-wrap{
	margin-bottom: 4em;
}

.credo-logo-wrap .logo-read-wrap .logo{
	width: 40%;
	max-width: 160px;
	padding-top: 2em;
	margin: 0 auto 3em;
}

.credo-logo-wrap .logo-read-wrap .text{
	line-height: 2.4;
}

.credo-logo-wrap .logo-detail-wrap{
	background: #f6f5f5;
	padding: 2em 5vw 2em;
}

.credo-logo-wrap .logo-detail-contents{
	margin-bottom: 4em;
}

.credo-logo-wrap .logo-detail-contents .sthumb-wrap{
	text-align: center;
	margin-bottom: 2em;
}

.credo-logo-wrap .logo-detail-contents .title{
	font-size: 1.2em;
	letter-spacing: .2em;
	text-align: center;
	margin-bottom: 1em;
}

.credo-logo-wrap .logo-detail-contents .text{
	line-height: 2.4;
}


/*
SERVICE
--------------------
*/

.page-contents-wrap.service{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto;
	padding-top: 11em;
	padding-bottom: 7em;
	position: relative;
	z-index: 1;
}

.page-contents-wrap.service::after{
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: #f6f5f5;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.service-nav{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 4em 0 3em;
	line-height: 1;
}

.service-nav li{
	width: 100%;
	text-align: center;
	letter-spacing: .2em;
	margin-bottom: .6em;
}
.service-nav li a{
	color: #00381f;
	background: #FFF;
	display: block;
	border: 1px solid rgba(0,56,31,0.5);
	border-radius: 6em;
	padding: 1.3em 1em;
	line-height: 1.6;
	transition: .4s ease;
}

.service-nav li.current a{
	color: #FFF;
	background: #00381f;
}

.service-nav li.medical.current a{
	background: #45836f;
	border: 1px solid #45836f;
}
.service-nav li.international.current a{
	background: #0d4665;
	border: 1px solid #0d4665;
}
.service-nav li.inheritance.current a{
	background: #be9a3e;
	border: 1px solid #be9a3e;
}

.service-icatch-wrap{
	border-top: 4px solid #00381f;
	margin-bottom: 2em;
}

.medical .service-icatch-wrap{
	border-top: 4px solid #45836f;
}

.international .service-icatch-wrap{
	border-top: 4px solid #0d4665;
}

.inheritance .service-icatch-wrap{
	border-top: 4px solid #be9a3e;
}

.service-icatch-wrap img{
	width: 100%;
}

.service-read-wrap{
	margin-bottom: 3em;
}

.service-read-wrap .read{
	color: #00381f;
	font-size: 1.2em;
	letter-spacing: .2em;
	margin-bottom: 1em;
}

.medical .service-read-wrap .read,
.medical .service-tab-contents .contents-title,
.medical .service-tab-contents dt span.more{
	color: #45836f;
}
.international .service-read-wrap .read,
.international .service-tab-contents .contents-title,
.international .service-tab-contents dt span.more{
	color: #0d4665;
}
.inheritance .service-read-wrap .read,
.inheritance .service-tab-contents .contents-title,
.inheritance .service-tab-contents dt span.more{
	color: #be9a3e;
}

.service-read-wrap .text{
	line-height: 2.4;
}

.service-tab{
	display: flex;
}

.owner .service-tab{
	position: relative;
	z-index: 1;
}

.owner .service-tab::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(0,56,31,0.5);
	position: absolute;
	bottom: 0;
}

.owner .service-tab::before{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #f6f5f5;
	position: absolute;
	bottom: -1px;
	z-index: -1;
}


.service-tab li{
	letter-spacing: .2em;
	padding: 0 1.2em 1.6em;
	color: #c9caca;
	cursor: pointer;
	transition: .4s ease;
	border-bottom: 4px solid rgba(0,56,31,0);
}

.service-tab li.current{
	color: #00381f;
	border-bottom: 4px solid rgba(0,56,31,1);
}

.service-tab-contents dt{
	padding: 3em 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(0,56,31,0.5);
}

.medical .service-tab-contents dt{
	border-top: 1px solid rgba(69,131,111,0.5);
}
.international .service-tab-contents dt{
	border-top: 1px solid rgba(13,70,101,0.5);
}
.inheritance .service-tab-contents dt{
	border-top: 1px solid rgba(190,154,62,0.5);
}

.owner .service-tab-contents:first-child dt{
	border-top: none;
}

.service-tab-contents dt .title{
	letter-spacing: .2em;
	color: #efefef;
	background: #00381f;
	padding: .6em;
}

.medical .service-tab-contents dt .title{
	background: #45836f;
}
.international .service-tab-contents dt .title{
	background: #0d4665;
}
.inheritance .service-tab-contents dt .title{
	background: #be9a3e;
}

.service-tab-contents dt span.more{
	display: flex;
	align-items: center;
	letter-spacing: .2em;
	color: #00381f;
	cursor: pointer;
}

.service-tab-contents dt span.more::before{
	content: "詳細を見る";
	display: inline-block;
	padding-bottom: .3em;
	border-bottom: 1px solid rgba(0,56,31,0.5);
}

.service-tab-contents.open dt span.more::before{
	content: "閉じる";
}

.medical .service-tab-contents dt span.more::before{
	border-bottom: 1px solid rgba(69,131,111,0.5);
}
.international .service-tab-contents dt span.more::before{
	border-bottom: 1px solid rgba(13,70,101,0.5);
}
.inheritance .service-tab-contents dt span.more::before{
	border-bottom: 1px solid rgba(190,154,62,0.5);
}

.service-tab-contents dt span span{
	display:inline-block;
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	border: 1px solid rgba(0,56,31,0.5);
	background: #00381f;
	position: relative;
	margin-left: 1em;
	transition: .3s ease;
}

.medical .service-tab-contents dt span span{
	border: 1px solid rgba(69,131,111,0.5);
	background: #45836f;
}
.international .service-tab-contents dt span span{
	border: 1px solid rgba(13,70,101,0.5);
	background: #0d4665;
}
.inheritance .service-tab-contents dt span span{
	border: 1px solid rgba(190,154,62,0.5);
	background: #be9a3e;
}

.service-tab-contents dt span span::after{
	content: "";
	display: block;
	width: .6rem;
	height: .6rem;
	border-right: 1px solid rgba(239,239,239,0.8);
	border-bottom: 1px solid rgba(239,239,239,0.8);
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50% , -50%) rotate(45deg);
	transition: .3s ease;
}

.service-tab-contents.open dt span span::after{
	border-right: 1px solid rgba(0,56,31,0.5);
	border-bottom: 1px solid rgba(0,56,31,0.5);
	transform: translate(-50% , -20%) rotate(225deg);
}

.medical .service-tab-contents.open dt span span::after{
	border-right: 1px solid rgba(69,131,111,0.5);
	border-bottom: 1px solid rgba(69,131,111,0.5);
}
.international .service-tab-contents.open dt span span::after{
	border-right: 1px solid rgba(13,70,101,0.5);
	border-bottom: 1px solid rgba(13,70,101,0.5);
}
.inheritance .service-tab-contents.open dt span span::after{
	border-right: 1px solid rgba(190,154,62,0.5);
	border-bottom: 1px solid rgba(190,154,62,0.5);
}


.service-tab-contents.open dt span span{
	background: none;
}

.service-tab-contents dd{
	max-height: 0;
	overflow: hidden;
	transition: .6s ease;
}

.service-tab-contents.open dd{
	padding-bottom: 3em;
	max-height: 999px;
}

.service-tab-contents .contents-title{
	font-size: 1.2em;
	letter-spacing: .2em;
	margin-bottom: 1.5em;
}

.service-tab-contents .contents-list-wrap{
	display: flex;
	gap:4em;
	margin-bottom: 3em;
}

.service-tab-contents .contents-list-wrap ul{
	border-left: 1px solid rgba(0,56,31,0.5);
	padding-left: 2em;
}

.medical .service-tab-contents .contents-list-wrap ul{
	border-left: 1px solid rgba(69,131,111,0.5);
}
.international .service-tab-contents .contents-list-wrap ul{
	border-left: 1px solid rgba(13,70,101,0.5);
}
.inheritance .service-tab-contents .contents-list-wrap ul{
	border-left: 1px solid rgba(190,154,62,0.5);
}

.service-tab-contents .contents-list-wrap li{
	margin-bottom: 1em;
}

.service-tab-contents .contents-list-wrap li::before{
	content: "○";
	display: inline-block;
	margin-right: .2em;
}

.contents-table-wrap{
	overflow-x: scroll;
}

.service-tab-contents table{
	width:100%;
	background: #FFF;
	color: #00381f;
	text-align: center;
	white-space: nowrap;
}

.medical .service-tab-contents table{
	color: #45836f;
}
.international .service-tab-contents table{
	color: #0d4665;
}
.inheritance .service-tab-contents table{
	color: #9c7e30;
}

.service-tab-contents table thead{
	background: #f0f4f0;
	font-size: 1.05em;
	letter-spacing: .2em;
}

.service-tab-contents table th{
	background: #f0f4f0;
	letter-spacing: .2em;
	text-align: center;
	padding: 1.2em;
	border-bottom: 1px solid rgba(255,255,255,1);
}

.medical .service-tab-contents table thead,
.medical .service-tab-contents table th{
	background: #eef3f1;
}
.international .service-tab-contents table thead,
.international .service-tab-contents table th{
	background: #ecf3f7;
}
.inheritance .service-tab-contents table thead,
.inheritance .service-tab-contents table th{
	background: #f4f4ee;
}

.service-tab-contents table td{
	padding: 1.2em;
	border-bottom: 1px solid rgba(160,160,160,0.5);
	border-right: 1px solid rgba(160,160,160,0.5);
}

.service-tab-contents table thead td{
	border-bottom: 1px solid rgba(255,255,255,1);
	border-right: 1px solid rgba(255,255,255,1);
}

.service-tab-contents table tr td:last-child{
	border-right: none;
}

.service-tab-contents table tbody tr:last-child th,
.service-tab-contents table tbody tr:last-child td{
	border-bottom: none;
}

.service-tab-contents table td.empty{
	position: relative;
}

.service-tab-contents table td.empty::after{
	content: "";
	display: block;
	width: 1em;
	height: 1px;
	background: rgba(160,160,160,0.75);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

.service-voice-wrap{
	background: #00381f;
	color: #FFF;
	padding: 2em 2em 8em;
	margin-top: 3em;
	position: relative;
}

.service-voice-wrap .thumb-wrap{
	width: 100%;
}

.service-voice-wrap .thumb-wrap .inner{
	display: block;
	margin-bottom: 3em;
}

.service-voice-wrap .thumb-wrap .inner img{
    transition: transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.service-voice-wrap.hover .thumb-wrap .inner img{
	transform: scale(1.04);
}

.service-voice-wrap .text-wrap{
	width: 100%;
	margin-bottom: 2em;
}

.service-voice-wrap .text-wrap .text{
	line-height: 2.4;
}

.service-voice-wrap .text-wrap .c-link{
	position: absolute;
	bottom: 4em;
	right: 2em;
}

.medical .service-voice-wrap{
	background: #45836f;
}
.international .service-voice-wrap{
	background: #0d4665;
}
.inheritance .service-voice-wrap{
	background: #9c7e30;
}



/*
PARTNER
--------------------
*/

.partner .page-icatch-wrap{
	background: url(img/page/partner_icatch.jpg) no-repeat;
	background-size: cover;
}

.partner-read-wrap{
}

.partner-read-wrap .inner{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 4em;
}

.partner-read-wrap .thumb-wrap{
	width: 100%
}

.partner-read-wrap .text-wrap{
	width: 100%;
	margin-bottom: 3em;
}

.partner-read-wrap .text-wrap .text{
	line-height: 2.4;
}

.partner-graph-wrap{
	width: 90%;
	max-width: 1740px;	
	margin: 0 auto 4em;
}

.partner-graph-wrap .thumb-wrap{
	margin-bottom: 1em;
}

.partner-graph-wrap .text{
	line-height: 2.4;
}

.partner-btm-read-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 4em;
}

.partner-btm-read-wrap .thumb-wrap{
	width: 100%;
	margin-bottom: 1em;
}

.partner-btm-read-wrap .text-wrap{
	width: 100%;
	line-height: 2.4;
}

.partner-list-wrap{
	background: #f6f5f5;
	padding: 0 0 7em;
}

.partner-list-wrap .thumb-wrap{
	width: 100%;
	height: 0;
	padding-top: 66%;
	position: relative;
	margin-bottom: 3em;
}

.partner-list-wrap .thumb-wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

.partner-list-wrap .text-wrap{
	width: 90%;
	margin: 0 auto;
}

.partner-list-wrap .text-wrap .partner-list{
	column-count: 2;
}

.partner-list-wrap .text-wrap .partner-list li{
	font-size: 1.05em;
	letter-spacing: .16em;
	margin-bottom: 1em;
}


/*
RECRUIT
--------------------
*/

.recruit .page-icatch-wrap{
	background: url(img/page/recruit_icatch.jpg) no-repeat;
	background-size: cover;
}

.recruit-read-wrap{
	display: flex;
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 5em;
}

.recruit-read-wrap .text{
	line-height: 2.4;
}

.recruit-wb-wrap{
	width: 90%;
	position: relative;
	max-width: 1740px;
	margin: 0 auto 6em;
	padding: 4em 0 2em;
	z-index: 1;
}

.recruit-wb-wrap::after{
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: #f6f5f5;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.wb-contents-wrap .wb-contents{
	width: 100%;
	margin-bottom: 4em;
}

.wb-contents-wrap .wb-contents .thumb-wrap{
	margin-bottom: 2em;
}

.wb-contents-wrap .wb-contents .title{
	color: #00381f;
	font-size: 1.2em;
	letter-spacing: .2em;
	margin-bottom: .6em;
}

.wb-contents-wrap .wb-contents .text{
	line-height: 2.4;
}

.recruit-slider-wrap{
	margin-bottom: 6em;
}

.recruit-slider-wrap .slider{
	height: 12em;
	padding: 0 .9em;
}

.recruit-slider-wrap .slider img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.recruit-job-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 10em;	
}

.job-contents{
	margin-bottom: 5em;
}

.job-contents .job-title-wrap{
	margin-bottom: 2em;
}

.job-contents .job-title-wrap .thumb-wrap{
	width: 100%;
}

.job-contents .job-title-wrap .text-wrap{
	padding-top: 2em;
}

.job-contents .job-title-wrap .text-wrap .title{
	font-size: 1.2em;
	letter-spacing: .2em;
	background: #00381f;
	color: #FFF;
	padding: .6em 2em;
	display: table;
	margin-bottom: 1.2em;
}

.job-contents .job-title-wrap .text-wrap .text{
	line-height: 2.4;
}

.job-detail-wrap dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px solid rgba(0,56,31,1);
}

.job-detail-wrap dl dt{
	width: 20%;
	color: #231815;
	padding: 2.2rem 0;
	border-bottom: 1px solid rgba(0,56,31,0.5);
}

.job-detail-wrap dl dd{
	width: 80%;
	line-height: 2.4;
	padding: 1.8rem 0;
	padding-left: 1em;
	border-bottom: 1px solid rgba(0,56,31,0.5);
}


/*
OFFICE
--------------------
*/

.office .page-icatch-wrap{
	background: url(img/page/DSC02514.jpg) no-repeat;
	background-size: cover;
	margin-bottom: 0;
}

.office-detail-wrap{
	width: 90%;
	position: relative;
	max-width: 1740px;
	margin: 0 auto 4em;
	padding: 2em 0 3em;
	z-index: 1;
}

.office-detail-wrap::after{
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: #f6f5f5;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.office-detail-wrap dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 5em;
}

.office-detail-wrap dl dt{
	width: 25%;
	color: #231815;
	padding: 1.4rem 0;
	border-bottom: 1px solid rgba(0,56,31,0.5);
}

.office-detail-wrap dl dd{
	width: 75%;
	line-height: 2.4;
	padding: 1.4rem 0;
	padding-left: 1em;
	border-bottom: 1px solid rgba(0,56,31,0.5);
}

.office-detail-wrap .map-wrap #map{
	height: 20em;
	margin-bottom: 2.3em;
}

.office-detail-wrap .map-wrap .cap{
	line-height: 2.4;
}

.office-message-wrap{
	margin-bottom: 10em;
	position: relative;
}

.office-message-wrap .inner{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto;
}

.office-message-wrap .thumb-wrap{
	width: 100%;
	margin-bottom: 3em;
}

.office-message-wrap .text-wrap{
	width: 100%;
}

.office-message-wrap .text-wrap .text{
	line-height: 2.4;
}

.office-message-wrap .text-wrap .name{
	text-align: right;
	font-size: 1.1em;
	letter-spacing: .2em;
	margin-top: 2em;
}

.office-message-wrap .text-wrap .name span{
	display: inline-block;
	width: 11rem;
	margin-left: 2em;
	vertical-align: middle;
}


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


.page-contents-wrap.blog{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 7em;
	padding-top: 11em;
}

.page-contents-wrap.blog .cap-title{
	margin-bottom: 2em;
}

.page-contents-wrap.blog .read{
	line-height: 2.4;
	margin-bottom: 4em;
}

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

.blog-contents-wrap .blog-contents{
	display: block;
	width: 47%;
	margin-bottom: 3em;
}

.blog-contents-wrap .blog-contents .thumb-wrap{
	margin-bottom: 1.3em;
	position: relative;
	height: 0;
	padding-top: 100%;	
}

.blog-contents-wrap .blog-contents .thumb-wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

.blog-contents-wrap .blog-contents .date{
	font-size: .9em;
	color: #00381f;
	letter-spacing: .2em;
	margin-bottom: .6em;
}

.blog-contents-wrap .blog-contents .title{
	color: #00381f;
	font-size: 1.1em;
	letter-spacing: .16em;
}

/* single */

.blog-single-wrap{
	width: 90%;
	max-width: 930px;
	padding-top: 5em;
	margin: 0 auto 7em;
}

.blog-single-wrap .icatch-wrap{
	margin: 0 0 2em;
}

.blog-single-wrap .title-wrap{
	text-align: center;
	margin: 0 0 1.6em;
}

.blog-single-wrap .title-wrap .date{
	color: #231815;
	letter-spacing: .1em;
	margin-bottom: 1em;
}

.blog-single-wrap .title-wrap .title{
	font-size: 1.2em;
	letter-spacing: .2em;
}

.blog-single-wrap .text-wrap p{
	line-height: 2.4;
}


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

.page-contents-wrap.news{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto;
	padding-top: 11em;
	padding-bottom: 8em;
	z-index: 1;
	position: relative;
}

.page-contents-wrap.news::after{
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: #f6f5f5;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.page-contents-wrap.news .cap-title{
	margin-bottom: 3em;
}

.news-contents-wrap .news-contents{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.3em 0;
	border-bottom: 1px solid rgba(0,56,31,0.5);
}

.news-contents-wrap .news-contents .thumb-wrap{
	width: 10em;
	height: 6.6em;
}

.news-contents-wrap .news-contents .text-wrap{
	width: calc(100% - 11em);
	color: #231815;
}

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

.news-contents-wrap .news-contents .text-wrap .title{
	font-size: 1.1em;
	letter-spacing: .2em;
}


/* single */

.news-single-wrap{
	margin: 0 auto;
	position: relative;
	padding-bottom: 5em;
}

.news-single-wrap .icatch-wrap{
	margin: 0 0 2em;
}

.news-single-wrap .title-wrap{
	text-align: center;
	margin: 0 0 1.6em;
}

.news-single-wrap .title-wrap .date{
	color: #231815;
	letter-spacing: .1em;
	margin-bottom: 1em;
}

.news-single-wrap .title-wrap .title{
	font-size: 1.2em;
	letter-spacing: .2em;
}

.news-single-wrap .text-wrap p{
	line-height: 2.4;
}

.news-single-wrap .c-link{
	position: absolute;
	bottom: 0;
	right: 0;
}


/*
VOICE
--------------------
*/


.page-contents-wrap.voice{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 7em;
	padding-top: 11em;
}

.page-contents-wrap.voice .cap-title{
	margin-bottom: 3em;
}

.page-contents-wrap.voice .read{
	line-height: 2.4;
	margin-bottom: 4em;
}

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


.voice-contents-wrap .voice-contents{
	width: 100%;
	margin-bottom: 4em;
}

.voice-contents-wrap .voice-contents .thumb-wrap{
	margin-bottom: 2em;
	position: relative;
	height: 0;
	padding-top: 66%;	
}

.voice-contents-wrap .voice-contents .thumb-wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
    transition: transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.voice-contents-wrap .voice-contents.hover .thumb-wrap img{
	transform: translate(-50% , -50%) scale(1.04);
}

.voice-contents-wrap .voice-contents .text-wrap{
	transition: .4s ease;
}

.voice-contents-wrap .voice-contents.hover .text-wrap{
	opacity: .6;
}

.voice-cat{
	color: #231815;
	margin-bottom: 1em;
	font-size: 0;
}

.voice-cat.wt{
	color: #FFF;
}

.voice-cat li{
	font-size: .9rem;
	display: inline-block;
	letter-spacing: .15em;
}

.voice-cat li::after{
	content: "／";
	display: inline-block;
	letter-spacing: 0;
}

.voice-cat li:last-child::after{
	display: none;
}

.voice-contents-wrap .voice-contents .title{
	color: #231815;
	font-size: 1.2em;
	letter-spacing: .2em;
	padding-top: 1em;
}

.voice-contents-wrap .voice-contents .voice-cat-title{
	display: table;
	letter-spacing: .2em;
	text-align: center;
	color: #FFF;
	background: #00381f;
	border-radius: 6em;
	padding: 1em 2em;
	margin-bottom: 1.3em;
	border: 1px solid rgba(0,56,31,0);
	transition: .4s ease;
}

.voice-contents-wrap .voice-contents .voice-cat-title.individual{
	background: #be9a3e;
}
.voice-contents-wrap .voice-contents .voice-cat-title.medical{
	background: #45836f;
}
.voice-contents-wrap .voice-contents .voice-cat-title.international{
	background: #0d4665;
}


/* single */

.voice-single-wrap{
	margin-bottom: 7em;
}

.voice-single-wrap .icatch-wrap{
	width: 100%;
	height: calc(50vh - 5.7em);
	position: relative;
	margin-bottom: 3em;
	background-color: #eee;
	background-position: center center;
}

.voice-single-wrap .icatch-wrap .title-wrap{
	width: 90%;
	max-width: 1740px;
	color: #FFF;
	position: absolute;
	bottom: 4em;
	left: 50%;
	transform: translateX(-50%);
}

.voice-single-wrap .icatch-wrap .title-wrap .title{
	font-size: 1.3em;
	letter-spacing: .2em;
	margin-bottom: .6em;
}

.voice-single-wrap .icatch-wrap .title-wrap .voice-cat{
	color: #FFF;
}

.voice-read-wrap{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 4em;
}

.voice-read-wrap .text-wrap{
	width: 100%;
	margin-bottom: 2em;
}

.voice-read-wrap .text-wrap .title{
	font-size: 1.3em;
	letter-spacing: .2em;
	margin-bottom: 1.2em;
}

.voice-read-wrap .text-wrap .text{
	line-height: 2.4;
}

.voice-read-wrap .text-wrap .voice-cat-title{
	display: table;
	letter-spacing: .2em;
	text-align: center;
	color: #FFF;
	background: #00381f;
	border-radius: 6em;
	padding: 1em 2em;
	margin-bottom: 2em;
	border: 1px solid rgba(0,56,31,0);
	transition: .4s ease;
}

.voice-read-wrap .text-wrap .voice-cat-title.individual{
	background: #be9a3e;
}
.voice-read-wrap .text-wrap .voice-cat-title.medical{
	background: #45836f;
}
.voice-read-wrap .text-wrap .voice-cat-title.international{
	background: #0d4665;
}

.voice-read-wrap .info-wrap{
	width: 100%;
	border: 1px solid rgba(0,56,31,0.5);
	padding: 2em;
	color: #00381f;
}

.voice-read-wrap .info-wrap .title{
	font-size: 1.2em;
	color: #00381f;
	margin-bottom: 1rem;
}

.voice-read-wrap .info-wrap dl{
	display: flex;
	flex-wrap: wrap;
}

.voice-read-wrap .info-wrap dl dt{
	width: 30%;
	padding: 1rem 0;
	border-top: 1px solid rgba(0,56,31,0.5);
	letter-spacing: .2em;
}

.voice-read-wrap .info-wrap dl dd{
	width: 70%;
	padding: 1rem 0;
	border-top: 1px solid rgba(0,56,31,0.5);
}

.voice-single-contents{
	width: 90%;
	max-width: 1740px;
	margin: 0 auto 3em;
}

.voice-single-contents .thumb-wrap{
	padding-top: 2em;
	margin-bottom: 2em;
}

.voice-single-contents .thumb-wrap img{
	display: block;
	margin-bottom: 1em;
}

.voice-single-contents .title-wrap{
	color: #00381f;
	margin-bottom: 2em;
}

.voice-single-contents .title-wrap .cat{
	letter-spacing: .2em;
	border: 1px solid rgba(0,56,31,0.5);
	display: inline-block;
	padding: .6em 2em;
	margin-right: 3em;
	margin-bottom: 2em;
}

.voice-single-contents .title-wrap .title{
	font-size: 1.2em;
	letter-spacing: .2em;
}

.voice-single-contents .text{
	line-height: 2.4;
}



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

.page-contents-wrap.contact{
	padding-top: 11em;
}

.contact-contents-wrap{
	width: 90%;
	max-width: 1600px;
	margin: 0 auto 9em;
}

.form-wrap{
	max-width: 1520px;
	margin: 0 auto;
}

.form-wrap .read{
	line-height: 2.4;
	text-align: center;
	margin-bottom: 4em;
}

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

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

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

.form-wrap table td{
	display: block;
	width: 100%;
	padding-bottom: 20px;
}

.form-wrap table td .note{
	font-size: .96em;
}

.form-wrap .step-wrap{
	display: flex;
	flex-wrap: wrap;
	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;
}

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

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

.form-wrap .btn-area{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 3em;
	margin-top: 2em;
	border-top: 1px solid rgba(181,181,182,0.5);
	margin-bottom: 40px;
}

.form-wrap .btn-wrap p{
	display: flex;
	gap:1em;
	justify-content: center;
	margin: 0 auto;
}

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;
    border: 1px solid #CCC;
    margin-top: 0;
    transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    outline: none;
    -webkit-appearance: none;
}

input[type="reset"],
input[type="button"]{
    padding: 1em 2em;
    background: rgba(181,181,182,0.5);
    color: #FFF;
    font-size: 1.07em;
    -webkit-appearance: none;
    border: none;
    outline: none;
	cursor: pointer;
	transition: .2s ease-in;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
}

input[type="submit"],
input[type="button"].confirm_button{
    padding: 1em 2em;
    background: #00381f;
    color: #FFF;
    font-size: 1.07em;
    -webkit-appearance: none;
    border: none;
    outline: none;
	cursor: pointer;
	transition: .2s ease-in;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
}

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: 19%;
	margin-right: 1%;
}

.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{
	display: block;
	position: relative;
	cursor: pointer;
	margin-bottom: 1em;
}

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

.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{
	line-height: 2.4;
}

.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.05em;
	text-decoration: underline;
}

.info404-wrap{
	width: 100%;
	height: calc(100vh - 12em);
	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;
}

.confirm_area table{
	margin: 6em auto;
}

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



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


.page-contents-wrap.clm2{
	width: 90%;
	max-width: 1830px;
	margin: 0 auto 7em;
	padding-top: 11em;	
}

.page-contents-wrap.clm2 .page-title{
	font-size: 2em;
	margin-bottom: 2em;
}

.clm-title-wrap{
	width: 100%;
	margin-bottom: 4em;
}

.clm-title-wrap p{
	line-height: 2.4;
}

.clm-contents-wrap{
	width: 100%;
}

.policy-contents{
	padding-bottom: 3em;
	margin-bottom: 3em;
	border-bottom: 1px solid rgba(89,87,87,0.5);
}

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

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

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

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

.policy-contents .text ul{
	list-style-type: disc;
	list-style-position: inside;
	margin: 2em 0;
}

.policy-contents .text ul.num{
	list-style-type: decimal;
}

.policy-contents .text ul.numc{
	list-style-type: none;
}

.policy-contents .text ul li{
	line-height: 1.6;
    text-indent: -1.4em;
    padding-left: 1.4em;
    margin-bottom: 1.2em;
}

.policy-contents .text ul.numc li{
	list-style-type: none;
    text-indent: -1.6em;
    padding-left: 1.6em;
    margin-bottom: .8em;
}

.policy-contents .table-wrap{
	margin: 3em 0;
}

.policy-contents .table-wrap .ttitle{
	margin-bottom: 1em;
	font-size: 1.16em;
}

.policy-contents .table-wrap table thead{
	background: #f7f7f2;
}

.policy-contents .table-wrap table td{
	padding: 1em 2em;
    border: 1px solid rgba(62,58,57,0.25);
}

.policy-contents .table-wrap table td ul{
	margin: 0;
}

.policy-contents .table-wrap table td li{
	margin-bottom: 1em;
}



/*
-----------------------
OPEN MENU
*/

.open-menu-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 3.3em;
    height: 1.2em;
    top: 2.8em;
    right: 5vw;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 999;
}

.open-menu-btn-wrap.top{
	opacity: 0;
	transition: opacity .6s ease-out 3.3s;
}

.load-on .open-menu-btn-wrap.top{
	opacity: 1;
}

.open-menu-btn {
	display: block;
	border: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.open-menu-btn .toggle {
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	display: block;
	position: absolute;
	left: 0;
	transition: all .3s ease 0s;
	transition: all 300ms cubic-bezier(.25,.1,.25,1) 300ms,transform 400ms cubic-bezier(.775,-.185,0,1.01) 0ms,background-color 200ms cubic-bezier(.25,.1,.25,1) 0ms;
}

.open .open-menu-btn .toggle {
	width: 80%;
	left: 10%;
	background: rgba(0,56,31,0.5);
	transition: all 300ms cubic-bezier(.25,.1,.25,1) 0ms,transform 400ms cubic-bezier(.775,-.185,0,1.01) 200ms;
}

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

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

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

.open .open-menu-btn .toggle:nth-child(1) {
    transform: rotate(30deg);
    top: 50%;
    margin-top: -2px;
    transform-origin: center center;
}

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

.open .open-menu-btn .toggle:nth-child(3) {
    transform: rotate(-30deg);
    bottom: 50%;
    margin-top: 0;
    transform-origin: center center;
}


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

.open .open-menu-bg {
	opacity: 1;
}

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

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

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

.open-contact-wrap .btn-wrap{
	margin-bottom: 1.3em;
}

.open-contact-wrap .btn-wrap .contact-btn{
	display: block;
	text-align: center;
	color: #efefef;
	background: #00381f;
	border: 1px solid rgba(220,221,221,0.5)	;
	font-size: 1.1em;
	letter-spacing: .26em;
	padding: 1.17em;
	width: 20em;
	max-width: 350px;
	border-radius: 3em;
	transition: .4s ease;
	margin: 0 auto;
}

.open-contact-wrap .btn-wrap .tel-btn{
	display: block;
	text-align: center;
	border: 1px solid rgba(0,56,31,0.5)	;
	font-size: 1.1em;
	letter-spacing: .26em;
	padding: 1.17em;
	width: 20em;
	max-width: 350px;
	border-radius: 3em;
	transition: .4s ease;
	margin: 0 auto;
}

.open-contact-wrap .sns-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8em;
	padding-top: 2em;
}

.open-contact-wrap .line-btn{
	display: block;
	width: 3.5em;
	height: 3.5em;
	background: url(img/common/icon_line.svg) no-repeat;
	background-size: contain;
	margin: 0 1em;
	margin-bottom: .66em;
	transition: .4s ease;
}

.open-contact-wrap .chat-btn{
	display: block;
	width: 4.3em;
	height: 3.3em;
	background: url(img/common/icon_chat.svg) no-repeat;
	background-size: contain;
	margin: 0 1em;
	transition: .4s ease;
}

.open-nav-wrap{
	color: #00381f;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 4em;
}

.open-nav-wrap .open-nav{
	width: 47%;
	margin-bottom: 3em;
}


.open-nav-wrap .open-nav:last-child{
	margin-bottom: 1em;
}

.open-nav-wrap .open-nav li{
	margin-bottom: 1em;
	position: relative;
	display: table;
	padding-bottom: .4em;
}

.open-nav-wrap .title-link{
	display: block;
	font-size: 1.15em;
	letter-spacing: .2em;
	margin-bottom: 1.3em;
	padding-bottom: .4em;
	position: relative;
}

.open-nav-wrap .title-link::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(0,56,31,0.5);
	position: absolute;
	left: 0;
	bottom: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.open-nav-wrap .open-nav .title-link:nth-of-type(2){
	margin-top: 3em;
}


.open-nav-wrap .open-nav,
.open-contact-wrap .btn-wrap .contact-btn,
.open-contact-wrap .sns-wrap{
    opacity: 0;
    transform: translate3d(0,20px,0);
    transition: opacity 600ms cubic-bezier(.25,.1,.25,1) 0ms,transform 600ms cubic-bezier(.25,.1,.25,1) 0ms;
}

.open .open-nav-wrap .open-nav,
.open .open-contact-wrap .btn-wrap .contact-btn,
.open .open-contact-wrap .sns-wrap{
    opacity: 1;
    transform: translate3d(0,0,0);
    transition: opacity 600ms cubic-bezier(.25,.1,.25,1) 300ms,transform 600ms cubic-bezier(.25,.1,.25,1) 300ms;
}

