@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------------------------
* base
------------------------------------------------------------------------------------------------------------------------------- */
html {
	font-size: 10px;
}
@media (max-width: 480px) {
	html {
		font-size: 1.33vw;
	}
}
@media screen and (min-width: 1540px) {
	html {
		font-size: 0.064vw;
	}
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #333333;
	min-width: 1280px;
	-webkit-text-size-adjust: 100%;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.4s;
}
@media screen and (max-width:480px) {
	body {
		font-size: 2.6rem;
		min-width: 100%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	a:hover{
		opacity: 1 !important;
	}
	img{
		width: 100%;
	}
}


/* all-wrapper
===================================================================== */
#all-wrapper{
	background-color: #edede8;
	min-width: 1280px
	;
	overflow: hidden;
}
@media screen and (max-width:480px) {
	#all-wrapper{
		min-width: 100%;
	}
}


/* menu-pc
===================================================================== */
.menu-pc{
	position: fixed;
	z-index: 1000;
	top: 60px;
	left: 60px;
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1.0s ease 4.0s;
}
.menu-pc.active{
	opacity: 1;
	transform : translate(0, 0);
}
.menu-pc h1{
	width: 70px;
	margin: 0 0 50px;
}
.menu-pc ul li{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 22px;
	color: #726E33;
	padding: 10px 0;
}
.menu-pc ul li a{
	position: relative;
}
.menu-pc ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0px;
	width: 100%;
	height: 1px;
	background: #726E33;
	display: block;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.4s;
}
.menu-pc ul li a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1)
}
@media screen and (max-width:480px) {
	.menu-pc{
		display: none;
	}
}


/* menu-sp
===================================================================== */
.menu-sp{
	display: none;
}
@media screen and (max-width:480px) {
	.menu-sp{
		display: block;
	}
}
.btn-menu {
	position: fixed;
	z-index: 10001;
	top: 0;
	right: 0;
	display: block;
	width: 70px;
	height: 70px;
	cursor: pointer;
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1.0s ease 4.0s;
}
.btn-menu.active{
	opacity: 1;
	transform : translate(0, 0);
}
.btn-menu .menu-line, .btn-menu .menu-line span {
	display: inline-block;
}
.btn-menu .menu-line {
	position: relative;
	display: block;
	width: 28px;
	height: 21px;
	top: 23px;
	left: 21px;
}
.btn-menu .menu-line span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	border-radius: 0;
	transition: all .3s;
}
.btn-menu .menu-line span:nth-of-type(1) {
	top: 0;
}
.btn-menu .menu-line span:nth-of-type(2) {
	top: 10px;
}
.btn-menu .menu-line span:nth-of-type(3) {
	top: 20px;
}
.btn-menu.open .menu-line span{
	background-color: #726E33;
}
.btn-menu.open .menu-line span:nth-of-type(1) {
	top: 10px;
	transform: rotate(-45deg);
}
.btn-menu.open .menu-line span:nth-of-type(2) {
	display: none;
}
.btn-menu.open .menu-line span:nth-of-type(3) {
	top: 10px;
	transform: rotate(45deg);
}

.drawerMenu{
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	padding: 80px 0 50px;
	overflow: auto;
	-ms-overflow-style: none;
 	scrollbar-width: none;
	transform: translate(100%);
	transition: all 0.4s;
}
.drawerMenu.open{
	transform: translate(0);
}
.drawerMenu ul li{
	text-align: center;
	margin: 30px 0;
}
.drawerMenu ul li a{
	font-size: 13px;
	color: #726E33;
}
.drawerMenu ul li a span{
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 35px;
	line-height: 1.3;
	letter-spacing: 0.025em;
	color: #333;
}


/* footer
===================================================================== */
footer{
	padding: 80px 0 40px;
	text-align: center;
}
@media screen and (max-width:480px) {
	footer{
		padding: 10rem 0 4rem;
	}
}

footer .pagetop{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #726E33;
}
footer .pagetop a{
	position: relative;
	display: inline-block;
	padding: 40px 0 0;
}
footer .pagetop a::after{
	position: absolute;
	top: 0;
	left: 50%;
	content: "";
	display: block;
	width: 1px;
	height: 30px;
	background-color: #726E33;
	/*animation: scroll-bar 1.5s ease-in-out infinite;*/
}
@media screen and (max-width:480px) {
	footer .pagetop{
		font-size: 2rem;
	}
	footer .pagetop a{
		padding: 6rem 0 0;
	}
	footer .pagetop a::after{
		height: 5rem;
	}
}

footer dl{
	margin: 50px 0;
}
footer dl dt {
	margin: 0 0 20px;
}
footer dl dt img{
	width: 160px;
}
footer .copyright{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
@media screen and (max-width:480px) {
	footer dl{
		margin: 5rem 0 4rem;
	}
	footer dl dt {
		margin: 0 0 2rem;
	}
	footer dl dt img{
		width: 16rem;
	}
	footer .copyright{
		font-size: 2rem;
	}
}


/*-------------------------------------------------------------------------------------------------------------------------------
* index top
------------------------------------------------------------------------------------------------------------------------------- */

/* mv
===================================================================== */
.mv{
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	padding: 0 0 0 44%;
	background-color: #e3e3d8;
}
.mv .logo-sp{
	display: none;
}
@media screen and (max-width:480px) {
	.mv{
		padding: 70px 0 0;
		min-height: 135rem;
	}
	.mv .logo-sp{
		display: block;
		width: 116px;
		position: absolute;
		z-index: 1000;
		top: 20px;
		left: calc(50% - 58px);
	}
	.mv .logo-sp img{
		opacity: 0;
		transform: translate(0, 20px);
		transition: all 1.0s ease 4.0s;
	}
	.mv .logo-sp.active img{
		opacity: 1;
		transform : translate(0, 0);
	}
}

/* mv_txt */
.mv .mv-txt{
	position: absolute;
	z-index: 100;
	top: 50%;
	left: calc(200px + 5%);
	transform: translateY(-50%);
}
.mv .mv-txt01{
	width: 0;
	opacity: 0;
	transition: opacity 3.0s ease 0s,  width 2.0s ease-in 0s;
	overflow: hidden;
}
.mv .mv-txt01 img{
	width: 595px;
}
.mv .mv-txt01.active{
	width: 595px;
	opacity: 1;
}
.mv .mv-txt02{
	margin: 40px 0 0;
	font-size: 22px;
	color: #726E33;
	line-height: 2.1;
	letter-spacing: 0.05em;
	opacity: 0;
	transform: translate(0, 20px);
	transition : all 1.0s ease 2.5s;
}
.mv .mv-txt02.active{
	opacity: 1;
	transform : translate(0, 0);
}
@media screen and (min-width:1540px) {
	.mv .mv-txt01 img{
		width: 595rem;
	}
	.mv .mv-txt01.active{
		width: 595rem;
	}
	.mv .mv-txt02{
		margin: 40rem 0 0;
		font-size: 22rem;
	}
}
@media screen and (max-width:480px) {
	.mv .mv-txt{
		z-index: 100;
		top: 70px;
		left: 6rem;
		transform: translateY(0);
	}
	.mv .mv-txt01{
		margin: 6rem 0 0;	
	}
	.mv .mv-txt01 img{
		width: 60rem;
	}
	.mv .mv-txt01.active{
		width: 60rem;
	}
	.mv .mv-txt02{
		margin: 6rem 0 0;
		font-size: 3rem;
		-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
	}
}

/* mv-image */
.mv .mv-image{
	width: 100%;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
}
.mv .mv-image .mv-slider{
	position: relative;
}
.mv .mv-image .mv-slider li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	min-height: 100svh;
	background-size: cover;
	background-position: center top;
	opacity: 0;
}
.mv .mv-image .mv-slider.active li{
	animation: slideshow 10s linear infinite;
}
.mv .mv-image .mv-slider li:nth-child(1){
	background-image: url("../img/top/mv01.jpg");
}
.mv .mv-image .mv-slider li:nth-child(2){
	background-image: url("../img/top/mv02.jpg");
	animation-delay: 5s;
}
@media screen and (max-width:480px) {
	.mv .mv-image{
		position: absolute;
		top: calc(70px + 21rem);
		right: 0;
		width: 51rem;
		min-height: 80rem;
		overflow: hidden;
	}
	.mv .mv-image .mv-slider li{
		min-height: 80rem;
	}
}

@keyframes slideshow{
	0%{
		opacity: 0;
		z-index: 2;
		transform: scale(1.2);
	}
	15% {
		opacity: 1;
	}
	65% {
		opacity: 1;
	}
	80% {
		opacity: 0;
		transform: scale(1);
	}
	100% { 
		opacity: 0; 
		z-index: 1;
	}
}

/* mv-scroll */
.mv-scroll{
	position: absolute;
	z-index: 999;
	bottom: -30px;
	left: 90px;
	height: 120px;
	width: 20px;
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1.0s ease 4.0s;
}
.mv-scroll.active{
	opacity: 1;
	transform : translate(0, 0);
}
.mv-scroll a{
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.mv-scroll .mv-scroll-txt{
	height: 60px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	color: #726E33;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv-scroll .mv-scroll-line{
	position: relative;
	display: block;
	height: 60px;
	width: 100%;
}
.mv-scroll .mv-scroll-line::after{
	position: absolute;
	top: 0;
	left: 50%;
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: #726E33;
	animation: scroll-bar 2s ease infinite;
}
@media screen and (max-width:480px) {
	.mv-scroll{
		bottom: -20px;
		left: calc(50% - 10px);
		height: 80px;
	}
	.mv-scroll .mv-scroll-txt{
		height: 40px;
		font-size: 11px;
	}
	.mv-scroll .mv-scroll-line{
		height: 40px;
	}
}

@keyframes scroll-bar {
	0% {
		height: 0;
		top: 0;
		bottom: auto;
	}
	10% {
		height: 0;
	}
	50% {
		height: 100%;
	}
	51% {
		height: 100%;
		top: 0;
	}
	100% {
		height: 0;
		top: 100%;
	}
}

/* section
===================================================================== */
section .inner{
	width: 1180px;
	margin: 0 auto;
}
@media screen and (max-width:480px) {
	section .inner{
		width: 100%;
	}
}

section .title {
	display: inline-block;
}
section .title span{
	display: block;
}
section .title .jp{
	font-weight: 700;
	font-size: 22px;
	color: #726E33;
}
section .title .en{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 88px;
	line-height: 1.2;
	letter-spacing: 0.025em;
}
section .title.tate{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width:480px) {
	section .title {
		display: inline-block;
	}
	section .title .jp{
		font-size: 3rem;
	}
	section .title .en{
		font-size: 8.8rem;
	}
}

.title-fadein{
	display: inline-block;
	overflow: hidden;
}
.title-fadein-yoko{
	opacity: 0;
	width: 0;
	transition: opacity 3.0s ease 0s, width 2.0s ease 0s;
}
.title-fadein-yoko.scrollin{
	opacity: 1;
	width: 360px;
}
.title-fadein-tate{
	opacity: 0;
	height: 0;
	width: 150px;
	transition: opacity 3.0s ease 0s, height 2.0s ease 0s;
}
.title-fadein-tate.scrollin{
	opacity: 1;
	height: 360px;
}
.title-fadein-tateyoko{
	opacity: 0;
	height: 0;
	width: 150px;
	transition: opacity 3.0s ease 0s, height 2.0s ease 0s;
}
.title-fadein-tateyoko.scrollin{
	opacity: 1;
	height: 360px;
}
@media screen and (max-width:480px) {
	.title-fadein-yoko.scrollin{
		width: 28rem;
	}
	.title-fadein-tate{
		width: 15rem;
	}
	.title-fadein-tate.scrollin{
		opacity: 1;
		height: 33rem;
	}
	.title-fadein-tateyoko{
		opacity: 0;
		width: 0;
		height: auto;
		transition: opacity 3.0s ease 0s, width 2.0s ease 0s;
	}
	.title-fadein-tateyoko.scrollin{
		opacity: 1;
		height: auto;
		width: 36rem;
	}
}

section .lead{
	font-size: 18px;
	line-height: 2.22;
}
@media screen and (max-width:480px) {
	section .lead{
		font-size: 2.7rem;
		line-height: 1.92;
	}
}


/* about
===================================================================== */
#about {
	margin: 80px 0 0;
	padding: 80px 0 0;
}
#about .about-content{
	display: flex;
}
#about .about-content .txt{
	position: relative;
	padding: 0 0 0 80px;
}
#about .about-title{
	position: absolute;
	top: 0;
	left: 80px;
}
#about .about-lead{
	padding: 160px 0 0;
}
@media screen and (max-width:480px) {
	#about {
		margin: 8rem 0 0;
		padding: 8rem 5rem 0;
	}
	#about .about-content{
		display: block;
	}
	#about .about-content .txt{
		padding: 0;
	}
	#about .about-title{
		position: absolute;
		top: 6rem;
		left: 0;
	}
	#about .about-title .title{
		width: 30rem;
	}
	#about .about-lead{
		padding: 28rem 0 0;
	}
}


/* strength
===================================================================== */
#strength {
	margin: 120px 0 0;
	padding: 120px 0 0;
	overflow: hidden;
}
#strength .bg{
	position: relative;
}
#strength .bg2{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	width: 690px;
	height: 100%;
	background-color: #e3e3d8;
	border-bottom-right-radius: 80px;
}
@media screen and (max-width:480px) {
	#strength {
		margin: 8rem 0 0 0;
		padding: 8rem 0 0 5rem;
	}
	#strength .bg2{
		display: none;
	}
}

#strength .strength-content{
	position: relative;
	z-index: 2;
	background-color: #e3e3d8;
	border-top-left-radius: 80px;
	padding: 100px 0 100px 110px;
}
@media screen and (max-width:480px) {
	#strength .strength-content{
		border-top-left-radius: 8rem;
		border-bottom-right-radius: 8rem;
		padding: 9rem 0 9rem 5rem;
	}
}

#strength .strength-title{
	position: absolute;
	top: 100px;
	left: 110px;
	width: 150px;
}
@media screen and (max-width:480px) {
	#strength .strength-title{
		position: absolute;
		top: 9rem;
		left: 5rem;
		width: 15rem;
	}
}

#strength .strength-lead{
	margin: 450px 0 0;
}
@media screen and (max-width:480px) {
	#strength .strength-lead{
		margin: 82rem 0 0;
	}
}

#strength .strength-img01{
	position: absolute;
	top: -60px;
	left: 360px;
}
#strength .strength-img02{
	position: absolute;
	top: 230px;
	right: -30px;
}
@media screen and (max-width:480px) {
	#strength .strength-img01{
		position: absolute;
		top: 36rem;
		left: 12rem;
		width: 38rem;
	}
	#strength .strength-img02{
		position: absolute;
		top: -2rem;
		right: -3rem;
		width: 32rem;
	}
}


/* facility
===================================================================== */
#facility {
	margin: 80px 0 0;
	padding: 80px 0 0;
}
#facility .bg{
	position: relative;	
}
#facility .bg2{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	width: calc(50% + 60px);
	height: 100%;
	background-color: #e3e3d8;
	border-top-left-radius: 80px;
}
@media screen and (max-width:480px) {
	#facility {
		margin: 8rem 0 0 0;
		padding: 8rem 0 0 5rem;
	}
	#facility .bg2{
		width: 50rem;
		border-top-left-radius: 8rem;
	}
}

#facility .inner{
	position: relative;
	z-index: 2;
	padding: 100px 0 100px 110px;
}
@media screen and (max-width:480px) {
	#facility .inner{
		position: relative;
		z-index: 2;
		padding: 5rem 5rem 12rem 0;
	}
}

#facility .facility-content .txt{
	display: flex;
	align-items: center;
	padding: 0 0 60px;
}
#facility .facility-title{
	width: 500px;
}
@media screen and (max-width:480px) {
	#facility .facility-content .txt{
		display: block;
		padding: 0 0 5rem;
	}
	#facility .facility-title{
		width: 100%;
		margin: 0 0 4rem;
	}
}

#facility .facility-content .image dl:not(:first-of-type){
	margin: 40px 0 0;
}
#facility .facility-content .image dl dt{
	font-size: 36px;
}
#facility .facility-content .image dl dd{
	margin: 10px 0 0;
}
@media screen and (max-width:480px) {
	#facility .facility-content .image dl:not(:first-of-type){
		margin: 4rem 0 0;
	}
	#facility .facility-content .image dl dt{
		font-size: 3.6rem;
	}
	#facility .facility-content .image dl dd{
		margin: 1.5rem 0 0;
	}
}


/* member
===================================================================== */
#member{
	width: 100%;
	height: 516px;
	overflow: hidden;
}
.member-bg img{
	width: 100%;
}
@media screen and (max-width:480px) {
	#member{
		height: 36rem;
	}
	.member-bg img{
		width: 108%;
		margin-left: -4%;
	}
}


/* company
===================================================================== */
#company .company-content {
	position: relative;
	padding: 100px 0 0 110px;
}
@media screen and (max-width:480px) {
	#company .company-content{
		padding: 0 5rem 0 5rem;
	}
}

#company .company-title{
	position: absolute;
	top: 100px;
	left: 110px;
	width: 150px;
}
@media screen and (max-width:480px) {
	#company .company-title{
		top: 11rem;
		left: calc(50% - 18rem);
		width: auto;
	}
	#company .company-title .title.tate{
		-ms-writing-mode: rl;
  	writing-mode: horizontal-tb;
		text-align: center;
	}
}

#company .company-content .detail{
	width: 700px;
	margin-left: auto;
}
@media screen and (max-width:480px) {
	#company .company-content .detail{
		width: 100%;
		padding: 33rem 0 0;
	}
}

#company .company-img01{
	margin: 80px 0 0;
}
@media screen and (max-width:480px) {
	#company .company-img01{
		margin: 8rem 0 0;
	}
}

#company .map{
	margin: 80px 0 0;
	border-radius: 30px;
	overflow: hidden;
}
#company .map iframe{
	vertical-align: bottom;
}
@media screen and (max-width:480px) {
	#company .map{
		margin: 8rem 0 0;
		border-radius: 3rem;
	}
	#company .map iframe{
		width: 100%;
		height: 38rem;
	}
}

#company .history{
	margin: 80px 0 0;
}
#company .history h3{
	font-size: 24px;
	margin: 0 0 20px;
}
@media screen and (max-width:480px) {
	#company .history{
		margin: 8rem 0 0;
	}
	#company .history h3{
		font-size: 3.2rem;
		margin: 0 0 2rem;
	}
}

.table01{
	width: 100%;
	border-top: 1px solid #D3D2BE;
}
.table01 th{
	width: 140px;
	padding: 24px 0;
	font-weight: bold;
	color: #726E33;
	text-align: left;
	border-bottom: 1px solid #D3D2BE;
}
.table01 td{
	padding: 24px 0;
	border-bottom: 1px solid #D3D2BE;
}
@media screen and (max-width:480px) {
	.table01 th{
		width: 6em;
		padding: 3rem 0;
	}
	.table01 td{
		padding: 3rem 0;
	}
}

.table02{
	width: 100%;
}
.table02 th{
	width: 70px;
	padding: 16px 0;
	font-weight: bold;
	color: #726E33;
	text-align: left;
	border-bottom: 1px solid #D3D2BE;
}
.table02 td{
	padding: 16px 0;
	border-bottom: 1px solid #D3D2BE;
}
.table02 td .nami{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	display: block;
	padding: 1em 0 1em 2em;
}
@media screen and (max-width:480px) {
	.table02 th{
		width: 4em;
		padding: 2rem 0;
	}
	.table02 th:nth-child(2){
		width: 3em;
	}
	.table02 td{
		padding: 2rem 0;
	}
}


.list-more{
	display: none;
}
.more{
	margin: 30px 0 0;
	text-align: center;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #726E33;
}
.more span{
	position: relative;
	padding: 0 20px 0 0;
	cursor: pointer;
}
.more span::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 9px;
	height: 1px;
	background-color: #726E33;
}
.more span::after{
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 4px;
	width: 1px;
	height: 9px;
	background-color: #726E33;
}
.more span.active::after{
	position: absolute;
	top: 50%;
	right: 0;
	width: 9px;
	height: 1px;
}
@media screen and (max-width:480px) {
	.more{
		margin: 3rem 0 0;
		font-size: 16px;
	}
}


/* contact
===================================================================== */
#contact {
	padding: 160px 0 0;
}
#contact .bg{
	position: relative;	
}
#contact .bg2{
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: #e3e3d8;
}
@media screen and (max-width:480px) {
	#contact {
		padding: 16rem 0 0;
	}
}

#contact .contact-content{
	position: relative;
	z-index: 2;
	padding: 0 0 0 110px;
}
@media screen and (max-width:480px) {
	#contact .contact-content{
		padding: 0 0 0 5rem;
	}
}

#contact .contact-title{
	position: absolute;
	top: -70px;
	right: 0;
	width: 150px;
}
@media screen and (max-width:480px) {
	#contact .contact-title{
		position: absolute;
		top: -6rem;
		right: 5rem;
		width: 15rem;
	}
}

#contact .contact-content .detail{
	background-color: #e3e3d8;
	border-top-left-radius: 80px;
	padding: 60px 0 60px 90px;
}
#contact .contact-content .detail p{
	font-weight: 500;
}
#contact .contact-content .detail ul{
	display: flex;
	margin: 20px 0 0;
}
#contact .contact-content .detail ul li{
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #726E33;
	margin: 0 30px 0 0;
}
#contact .contact-content .detail ul li span{
	font-size: 70%;
	color: #333333;
}
@media screen and (max-width:480px) {
	#contact .contact-content .detail{
		width: 52rem;
		border-top-left-radius: 8rem;
		padding: 8rem 5rem 8rem 6rem;
	}
	#contact .contact-content .detail ul{
		display: block;
		margin: 3rem 0 0;
	}
	#contact .contact-content .detail ul li{
		font-size: 4.2rem;
		line-height: 1.5;
		margin: 0 3rem 0 0;
	}
	#contact .contact-content .detail .contact-txt02{
		font-size: 2.2rem;
	}
}

#contact .btn{
	width: 320px;
	margin: 30px 0 0;
}
#contact .btn a{
	position: relative;
	display: block;
	background-color: #726E33;
	padding: 16px 10px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #FFF;
	overflow: hidden;
}
#contact .btn a span{
	position: relative;
	z-index: 2;
	padding-left: 30px;
	background-image: url("../img/top/icon_mail.svg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 17px;
}
#contact .btn a::after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #FFF;
	display: block;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.4s;
}
#contact .btn a:hover{
	color: #726E33;
}
#contact .btn a:hover span{
	background-image: url("../img/top/icon_mail2.svg");
}
#contact .btn a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1)
}
@media screen and (max-width:480px) {
	#contact .btn{
		width: 100%;
		margin: 5rem 0 0;
	}
	#contact .btn a{
		padding: 2.5rem;
		font-size: 2.8rem;
	}
	#contact .btn a span{
		padding-left: 30px;
		background: url("../img/top/icon_mail.svg") no-repeat left center;
		background-size: 17px;
	}
}


/* fadein
===================================================================== */
.fadein {
	opacity : 0;
	transform : translate(0, 20px);
	transition : all 1.0s ease 1s;
}
.fadein2{
	transition : all 1.0s ease 1.5s;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


