/*****************************

共通

******************************/

body{
	font-family: 'メイリオ',"Meiryo","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic",  sans-serif;
	animation: fadeIn 1s ease 0s 1 normal;
	color: #333;
	font-weight: 400;
	min-width: 1025px;
	
}

/* font-family: 'M PLUS Rounded 1c', sans-serif; 500 700*/
/* font-family: 'Rubik', sans-serif; 400 500 */

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.body__inner{
	overflow: hidden;
}


img{
	vertical-align: bottom;
	width: 100%;
}

a{
	transition: .3s;
	color: #333;
}

.wrap{
	width: 90%;
	margin: 0 auto;
	max-width: 1040px;
}

.sp{
	display: none;
	}

.pc{
	display: block;
}

section{
	position: relative;
}



@media screen and (max-width: 1024px) {

	


}



@media screen and (max-width: 768px) {

	body{
		min-width: auto;
	}

	.wrap{
		width: auto;
		margin: 0 20px;
	}

	.sp{
	   display: block;
    }

	.pc{
		display: none;
	}



}

/*****************************

.c-secttl-mat

******************************/
.c-secttl-mat{
	font-family: 'Oswald', sans-serif;
	color: #F38200;
	font-size: 210px;
	position: absolute;
	top: -149px;
	left: 0;
	letter-spacing: 0;
}

.c-secttl-mat span{
	display: block;
	line-height: .81;
}

.c-secttl-mat span:first-child{
	opacity: .8;
}

.c-secttl-mat span:nth-child(2){
	opacity: .5;
}

.c-secttl-mat span:last-child{
	opacity: .2;
}

@media screen and (max-width: 767px) {

	.c-secttl-mat{
		font-size: 105px;
		position: absolute;
		top: -90px;
		left: 0;
	}

}

/*****************************

header

******************************/
header{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 30px;
	padding-top: 34px;
	z-index: 999;
	min-width: 1025px;
}

header h1{
	width: 200px;
}

header nav ul{
	display: flex;
	margin-right: 60px;
}

header nav ul a{
   color: #fff;
   font-size: 16px;
   letter-spacing: .1em;
   margin: 0 20px;
   display: block;
   line-height: 1;
   position: relative;
}

header nav ul a::after{
	content: "";
	width: 0%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	margin: auto;
	transition: width .3s;
}

header nav ul a.hover::after{
	width: 100%;
}

@media screen and (max-width: 767px) {


		header{
			position: fixed;
			margin-left: 0px;
			padding-top: 0px;
			min-width: 0;
			display: block;
			display: none;
		}

		header h1{
			width: 130px;
			margin-left: 20px;
			margin-top: 20px;
			position: absolute;
			left: 0;
			top: 0;
		}

		header nav {
			background-color: #fff;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100vh;
			padding-top: 80px;
			visibility: hidden;
			opacity: 0;
			transition: .3s;
		}

		header nav.act{
			visibility: visible;
			opacity: 1;
		}

		header nav ul{
			display: block;
			margin-right: 0px;
		}

		header nav ul li{
			width: 100%;
		}

		header nav ul li:last-child{
			width: 100%;
		}

		header nav ul a{
		   color: #000;
		   font-size: 16px;
		   margin: 0px;
		   padding: 20px 0;
		   width: 100%;
		   display: block;
		   line-height: 1;
		   position: relative;
		   text-align: center;
		}

		header nav ul a::after{
			display: none;
		}


}

/*****************************

c-header-fixed

******************************/
.c-header-fixed{
	position: fixed;
	left: 0;
	top: -90px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 30px;
	padding-bottom: 15px;
	padding-top: 15px;
	z-index: 999;
	min-width: 1025px;
	background-color: #fff;
	transition: top .3s;
}

.c-header-fixed.act{
	top: 0;
}

.c-header-fixed > p{
	width: 160px;
}

.c-header-fixed nav ul{
	display: flex;
	margin-right: 60px;
	margin-top: 5px;
}

.c-header-fixed nav ul a{
   color: #000;
   font-size: 14px;
   letter-spacing: .1em;
   margin: 0 20px;
   display: block;
   line-height: 1;
   position: relative;
}

.c-header-fixed nav ul a::after{
	content: "";
	width: 0%;
	height: 1px;
	background-color: #000;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	margin: auto;
	transition: width .3s;
}

.c-header-fixed nav ul a.hover::after{
	width: 100%;
}

@media screen and (max-width: 767px) {
	.c-header-fixed{
			position: fixed;
			margin-left: 0px;
			padding-top: 0px;
			min-width: 0;
			display: block;
			top: 0;
			height: 70px;
		}

		.c-header-fixed > p{
			width: 140px;
			margin-left: 20px;
			margin-top: 10px;
			position: absolute;
			left: 0;
			top: 0;
			z-index: 10000;
		}

		.c-header-fixed nav {
			background-color: #fff;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			padding-top: 65px;
			visibility: hidden;
			opacity: 0;
			transition: .3s;
		}

		.c-header-fixed nav.act{
			visibility: visible;
			opacity: 1;
		}

		.c-header-fixed nav ul{
			flex-wrap: wrap;
			margin-right: 0px;
		}

		.c-header-fixed nav ul li{
			width: 50%;
		}

		.c-header-fixed nav ul li:last-child{
			width: 100%;
		}

		.c-header-fixed nav ul li:nth-child(5){
			width: 100%;
		}

		.c-header-fixed nav ul li:nth-child(5) a{
			width: 100%;
			font-size: 24px;
			font-weight: bold;
			color: #F38200;
		}

		.c-header-fixed nav ul li:nth-child(2n) a{
			border-left: 1px solid #ccc;
		}

		.c-header-fixed nav ul li:last-child a{
			background-color: #F38200;
			color: #fff;
			font-weight: bold;
			border-left: 0px solid #ccc;
		}

		.c-header-fixed nav ul a{
		   color: #000;
		   font-size: 16px;
		   margin: 0px;
		   padding: 20px 0;
		   width: 100%;
		   display: block;
		   line-height: 1;
		   position: relative;
		   text-align: center;
		   border-top: 1px solid #ccc;
		}

		.c-header-fixed nav ul a::after{
			display: none;
		}

}


/*****************************

mv

******************************/
.mv{
	position: relative;
	margin-bottom: 140px;
}

.mv h2{
	position: absolute;
	width: 100%;
	top: 0;
	color: #fff;
	text-align: center;
	font-size: 72px;
	font-weight: bold;
	letter-spacing: .3em;
	line-height: 1;
	top: 30vw;
}

.mv h2 span{
	color: #F38200;
}

.mv__info{
	position: absolute;
	right: 10px;
	bottom: 10px;
	background-color: rgba(255,255,255,.9);
	padding: 10px;
	z-index: 2;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

.mv__info dt{
	background-color: #F38200;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	padding: 8px 10px 5px 15px;
	margin-bottom: 10px;
	color: #fff;
}

.mv__info dd{
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-left: 10px;
}

.mv__info dd::after{
	content: "";
	background: url(../img/arrow-right-o.svg) no-repeat 50% 50% / contain;
	width: 30px;
	height: 26px;
	position: absolute;
	right: 0;
	transition: right .3s;
}

.mv__info.hover dd::after{
	right: -5px;
}

.mv__scroll{
	position: absolute;
	color: #fff;
	bottom: 0;
	z-index: 2;
	font-size: 16px;
	width: 70px;
	left: 0;
	right: 0;
	margin: auto;
	white-space: nowrap;
	display: block;
	letter-spacing: .1em;
	padding-bottom: 49px;
}

.mv__scroll::after{
	content: "";
	width: 30px;
	height: 14px;
	background: url(../img/scroll-arrow.svg) no-repeat 50% 50% / contain;
	margin: 0 auto;
	position: absolute;
	bottom: 17px;
	left: 0;
	right: 0;
	margin: auto;
	animation: scrollAnim 2s ease .2s infinite;
}

.mv__scroll::before{
	content: "";
	width: 30px;
	height: 14px;
	background: url(../img/scroll-arrow.svg) no-repeat 50% 50% / contain;
	margin: 0 auto;
	position: absolute;
	bottom: 28px;
	left: 0;
	right: 0;
	margin: auto;
	animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
	20%{
		opacity: 0;
	}
	80%{
		opacity: 1;
	}
	
}

@media screen and (max-width: 767px) {

		.mv{
			margin-bottom: 100px;
			margin-top: 70px;
		}

		.mv h2{
			font-size: 42px;
			top: 60vw;
		}

		.mv h2 span{
			color: #F38200;
		}

		.mv__info{
			position: absolute;
			right: 0px;
			left: 0;
			margin: auto;
			bottom: 100px;
			width: 210px;
		}

		.mv__info dt{
			font-size: 10px;
			padding: 7px 5px 5px 5px;
			margin-bottom: 10px;
		}

		.mv__info dd{
			font-size: 12px;
			margin-left: 5px;
		}

		.mv__info dd::after{
			width: 20px;
			height: 17px;
			right: 5px;
		}

		.mv__info.hover dd::after{
			right: 5px;
		}

		.mv__scroll{
			font-size: 12px;
			width: 58px;
			padding-bottom: 38px;
		}

		.mv__scroll::after{
			content: "";
			width: 20px;
			height: 10px;
			bottom: 14px;
		}

		.mv__scroll::before{
			width: 20px;
			height: 10px;
			bottom: 22px;
		}

		

}



/*****************************

vision

******************************/
.vision{
	background: url(../img/bg01.jpg) no-repeat 50% 50% / cover;
	padding: 162px 0;
	margin-bottom: 130px;
}

.vision .wrap{
	background: rgba(255,255,255,.9);
	padding: 80px 120px 60px;
	position: relative;
	z-index: 2;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

.vision h2{
	text-align: center;
	font-size: 16px;
	letter-spacing: .1em;
	margin-bottom: 30px;
	color: #000;
}

.vision h2::before{
	content: "";
	width: 47px;
	height: 68px;
	background: url(../img/icon-logo.svg) no-repeat 50% 50% / contain;
	display: block;
	margin: 0 auto 34px;
}

.vision h2 em{
	display: block;
	font-size: 48px;
	font-weight: bold;
	letter-spacing: .1em;
	margin-top: 12px;
}

.vision h2 em span{
	color: #F38200;
}

.vision__txt{
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width: 767px) {

	.vision{
		padding: 80px 0;
		margin-bottom: 80px;
	}

	.vision .wrap{
		padding: 50px 30px;
	}

	.vision h2{
		text-align: center;
		font-size: 14px;
		margin-bottom: 24px;
	}

	.vision h2::before{
		margin: 0 auto 24px;
	}

	.vision h2 em{
		font-size: 36px;
		margin-top: 10px;
	}

	.vision__txt{
		font-size: 14px;
	}

}


/*****************************

about

******************************/

.about .c-secttl-mat{
	right: 0;
	left: auto;
	top: -140px;
}

.about > img{
	width: 100%;
	margin-bottom: -80px;
	display: block;
}

.about__inner{
	max-width: 1400px;
	margin: 0 auto 80px;
}

.about__inner > div{
	width: 93%;
	background: rgba(255,255,255,.9);
	padding: 67px 80px 50px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	position: relative;
	z-index: 2;
	max-width: 1120px;
}

.about__mes{
	display: flex;
	align-items: center;
	margin-bottom: 57px;
}

.about__mes h2{
	position: relative;
	font-size: 42px;
	font-weight: bold;
	letter-spacing: .1em;
	color: #000;
}

.about__mes h2 em{
	color: #F38200;
}

.about__mes h2:first-child{
	margin-right: 200px;
}

.about__mes h2:first-child::after,
.about__mes h2:first-child::before{
	content: "";
	width: 110px;
	height: 4px;
	background-color: #000;
	display: inline-block;
	position: absolute;
	right: -150px;
	top: 25px;
}

.about__mes h2:first-child::after{
	transform: rotate(45deg);
}

.about__mes h2:first-child::before{
	transform: rotate(-45deg);
}

.about__txt{
	font-size: 16px;
	line-height: 2;
}

.about__detail{
	display: flex;
	align-items: center;
	margin-right: 79px;
	margin-bottom: 80px;
}

.about__detail:last-child{
	flex-direction: row-reverse;
	margin-right: 0;
	margin-left: 79px;
}

.about__detail figure{
	width: 53%;
	margin-right: 50px;
	flex: none;
}

.about__detail:last-child figure{
	margin-right: 0;
	margin-left: 50px;
}

.about__detail figure img{
	width: 100%;
}

.about__detail > div span{
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	color: #707070;
	opacity: .7;
	margin-bottom: 10px;
	display: block;
}

.about__detail h3{
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 24px;
}

.about__detail h3 em{
	color: #F38200;
}

.about__detail p{
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width: 1200px) {
	.about h2{
		font-size: 3.2vw;
	}

}

@media screen and (max-width: 767px) {

		.about .c-secttl-mat{
			right: auto;
			left: 0;
			top: -80px;
		}

		.about > img{
			width: 100%;
			height: 330px;
			object-fit: cover;
			margin-bottom: -250px;
		}

		.about__inner{
			max-width: auto;
			margin: 0 20px 30px;
		}

		.about__inner > div{
			width: 100%;
			padding: 50px 30px;
			max-width: auto;
		}

		.about__mes{
			display: block;
			margin-bottom: 20px;
		}

		.about__mes h2{
			font-size: 28px;
			text-align: center;
		}

		.about__mes h2:first-child{
			margin-right: 0px;
			margin-bottom: 50px;
		}

		.about__mes h2:first-child::after,
		.about__mes h2:first-child::before{
			content: "";
			width: 30px;
			height: 3px;
			right: 0px;
			left: 0;
			margin: auto;
			top: 62px;
		}

		.about__txt{
			font-size: 14px;
		}

		.about__detail{
			display: block;
			margin: 0 20px 40px;
		}

		.about__detail:last-child{
			margin-right: 0;
			margin: 0 20px 40px;
		}

		.about__detail figure{
			width: 100%;
			margin-right: 0px;
			margin-bottom: 16px;
		}

		.about__detail:last-child figure{
			margin-right: 0;
			margin-left: 0px;
		}

		.about__detail > div span{
			font-size: 18px;
			margin-bottom: 5px;
			display: block;
		}

		.about__detail h3{
			font-size: 24px;
			margin-bottom: 8px;
		}

		.about__detail p{
			font-size: 14px;
		}

}

/*****************************

member

******************************/
.member .c-secttl-mat{
	top: 200px;
}

.member > img{
	margin-bottom: -70px;
}

.member__mes{
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 94px;
}

.member__mes > div{
	width: 93%;
	background: rgba(255,255,255,.9);
	padding: 67px 50px 50px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
	position: relative;
	z-index: 2;
	max-width: 1120px;
	margin-left: 7%;
}

.member__mes > div h2{
	font-size: 32px;
	line-height: 1.5;
	margin-bottom: 30px;
	letter-spacing: .1em;
	color: #000;
}

.member__mes > div h2 em{
	color: #F38200;
	font-weight: bold;
}

.member__mes > div p{
	font-size: 16px;
	line-height: 2;
}

.member__main{
	position: relative;
	max-width: 810px;
	margin: 0 auto 80px;
}

.member__main a.hover{
	opacity: .7;
}

.member__main div{
	position: absolute;
	left: 0;
	top: 120px;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
}

.member__main div span{
	font-size: 16px;
	display: block;
	margin-bottom: 5px;
	
}

.member__main div h3{
	font-size: 32px;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.member__main div h3 small{
	font-family: 'Dancing Script', cursive;
	font-size: 20px;
	margin-left: 20px;
	font-weight: 300;
	letter-spacing: 0;
	display: inline-block;
	margin-top: -20px;
}

.member__main div p{
	font-size: 24px;
	letter-spacing: .13em;
}

.member__main img{
	width: 74%;
	margin-left: 26%;
}

.member__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 90%;
	max-width: 1040px;
	margin: 0 auto 80px;
}

.member__list a{
	width: 48%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 10px;
    color: #000;
}

.member__list a.hover{
	opacity: .75;
}

.member__list a:nth-child(2n){
	margin-top: 100px;
}

.member__list div img{
	margin-bottom: 14px;
}

.member__list div span{
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 8px;
	display: block;
}

.member__list div h3{
	font-size: 32px;
	margin-bottom: 10px;
}

.member__list div h3 small{
	font-family: 'Dancing Script', cursive;
	font-size: 20px;
	margin-left: 20px;
}

.member__list div p{
	font-size: 24px;
	letter-spacing: .13em;
}

@media screen and (max-width: 767px) {


		.member .c-secttl-mat{
			top: 80px;
		}

		.member > img{
			margin-bottom: -80px;
			height: 240px;
			object-fit: cover;
		}

		.member__mes{
			max-width: auto;
			margin: 0 20px;
			margin-bottom: 30px;
		}

		.member__mes > div{
			width: 100%;
			padding: 50px 30px;
			max-width: auto;
			margin-left: 0%;
		}

		.member__mes > div h2{
			font-size: 24px;
			margin-bottom: 20px;
		}

		.member__mes > div p{
			font-size: 14px;
		}

		.member__main{
			margin-bottom: 40px;
		}

		.member__main a{
			position: relative;
			max-width: auto;
			margin: 0 20px 40px;
			display: flex;
			flex-wrap: wrap;
			flex-direction: column-reverse;
		}

		.member__main div{
			position: relative;
			left: 0;
			top: 0;
		}

		.member__main div span{
			font-size: 14px;
			display: block;
			margin-bottom: 5px;
			
		}

		.member__main div h3{
			font-size: 28px;
			margin-bottom: 5px;
		}

		.member__main div p{
			font-size: 20px;
		}

		.member__main img{
			width: 100%;
			margin-left: 0%;
			margin-bottom: 14px;
		}

		.member__list{
			display: block;
			width: auto;
			max-width: auto;
			margin: 0 20px 80px;
		}

		.member__list a{
			width: auto;
		  margin-bottom: 40px;
		  color: #000;
		  display: block;
		}

		.member__list a:nth-child(2n){
			margin-top: 0;
		}

		.member__list div img{
			margin-bottom: 14px;
		}

		.member__list div span{
			font-size: 14px;
			margin-bottom: 5px;
			display: block;
		}

		.member__list div h3{
			font-size: 28px;
			margin-bottom: 5px;
		}

		.member__list div h3 small{
			font-family: 'Dancing Script', cursive;
			font-size: 20px;
			margin-left: 20px;
		}

		.member__list div p{
			font-size: 20px;
		}

}

/*****************************

zoom

******************************/
.zoom{
	background-color: #eee;
	padding: 50px 0;
}

.zoom .wrap{
	background-color: #fff;
	padding: 80px ;
	border-radius: 8px;
}

.zoom h2{
	text-align: center;
	font-size: 32px;
	line-height: 1.5;
	margin-bottom: 24px;
	color: #000;
	letter-spacing: .1em;
}

.zoom h2 em{
	font-weight: bold;
	color: #F38200;
}

.zoom p{
	font-size: 16px;
	line-height: 2;
	margin-bottom: 22px;
}

.zoom ul{
	display: flex;
	justify-content: space-between;
}

.zoom ul li{
	width: 48%;
}

.zoom ul li iframe{
	width: 100%;
	height: 263px;
}

.zoom ul li a small{
	display: block;
	text-align: right;
	font-size: 12px;
	margin-top: 10px;
}

.zoom ul li a.hover{
	opacity: .7;
}

@media screen and (max-width: 767px) {

	.zoom{
		padding: 50px 0;
	}

	.zoom .wrap{
		padding: 50px 20px 20px;
		border-radius: 8px;
	}

	.zoom h2{
		text-align: left;
		font-size: 24px;
		margin-bottom: 20px;
	}

	.zoom h2 br{
		display: none;
	}

	.zoom p{
		font-size: 14px;
		margin-bottom: 22px;
	}

	.zoom ul{
		display: block;
	}

	.zoom ul li{
		width: 100%;
		margin-bottom: 30px;
	}

	.zoom ul li iframe{
		width: 100%;
		height: 43vw;
	}

	.zoom ul li a small{
		display: block;
		text-align: center;
		font-size: 12px;
		margin-top: 7px;
	}

}

/*****************************

company

******************************/
.company .c-secttl-mat{
	right: 0;
	top: 70px;
	left: auto;
}

.company > img{
	margin-bottom: -70px;
}

.company .wrap{
	position: relative;
	z-index: 2;
	background: rgba(255,255,255,.9);
	box-shadow: 0px 0px 40px -6px rgb(0 0 0 / 40%);
	padding: 80px 120px;
	margin-bottom: 131px;
}

.company h2{
	text-align: center;
	font-size: 32px;
	margin-bottom: 30px;
	letter-spacing: .1em;
	color: #000;
}

.company dl{
	display: flex;
	max-width: 600px;
	margin: 0 auto;
	border-bottom: 1px solid #CDD1D3;
	padding-bottom: 24px;
	margin-bottom: 24px;
	font-size: 14px;
}

.company dl.last{
	border-bottom: 0px solid #CDD1D3;
}

.company dl dt{
	font-weight: bold;
	padding-left: 90px;
	width: 180px;
	margin-right: 20px;
	flex: none;
	color: #000;
}

.company iframe{
	width: 100%;
	height: 375px;
	margin-bottom: 30px;
	margin-top: 50px;
}

@media screen and (max-width: 767px) {

		.company .c-secttl-mat{
			left: 0;
			right: auto;
			top: 30px;
		}

		.company > img{
			margin-bottom: -50px;
			height: 240px;
			object-fit: cover;
		}

		.company .wrap{
			padding: 50px 20px;
			margin-bottom: 80px;
		}

		.company h2{
			font-size: 28px;
			margin-bottom: 30px;
		}

		.company dl{
			display: block;
			max-width: auto;
			padding-bottom: 18px;
			margin-bottom: 18px;
		}

		.company dl dt{
			font-weight: bold;
			padding-left: 0px;
			width: 100%;
			margin-right: 0px;
			margin-bottom: 8px;
		}

		.company iframe{
			width: 100%;
			height: 72vw;
			margin-top: 30px;
		}

}


/*****************************

contact

******************************/
.contact{
	background: url(../img/bg02.jpg) no-repeat 50% 50% / cover;
	padding: 249px 0 130px;
}

.contact .c-secttl-mat{
	top: -8px;
	right: 0;
	left: auto;
}

.contact .c-secttl-mat span{
	color: #fff;
}

.contact .wrap{
	background-color: rgba(255,255,255,.9);
	padding: 80px 20px;
	position: relative;
	z-index: 2;
	box-shadow: 0px 0px 40px -6px rgb(0 0 0 / 40%);
}

.contact h2{
	text-align: center;
	font-size: 32px;
	letter-spacing: .1em;
	color: #000;
}

.contact__com{
	text-align: center;
	font-size: 12px;
	color: #F38200;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact dl{
	max-width: 600px;
	margin: 0 auto 30px;
}

.contact dt{
	margin-bottom: 10px;
	font-size: 16px;
}

.contact dt span{
	color: #F38200;
	font-size: 12px;
	margin-left: 3px;
}

.contact dt span.required{
	display: none;
}

.error_blank{
	font-size: 12px;
	color: #f00;
	display: block;
	width: 100%;
}

.contact dl.check dd{
	display: flex;
	flex-wrap: wrap;
}

.contact dl.check dd label{
	display: flex;
	align-items: center;
	margin-right: 30px;
	font-size: 14px;
	margin-bottom: 5px;
}

.contact dl.check dd input{
	width: 40px;
	height: 40px;
	flex: none;
	margin-right: 20px;
}

.contact input,
.contact textarea{
	border: 1px solid #ccc;
	border-radius: 7px;
	width: 100%;
	font-size: 16px;
	padding: 15px 20px;
}

.contact textarea{
	height: 240px;
}

.contact input[type=checkbox]{
	position: relative;
}

.contact input[type=checkbox]:checked::after{
	content: "";
	width: 30px;
	height: 30px;
	background: url(../img/icon-check.svg) no-repeat 50% 50% / contain;
	position: absolute;
	left: 5px;
	top: 5px;
}

.contact input[type=button]{
	background-color: #F38200;
	border: 0px solid #000;
	color: #fff;
	border-radius: 300px;
	width: 480px;
	display: block;
	margin: 0 auto;
	font-size: 20px;
	font-weight: bold;
	padding: 25px 0;
	transition: opacity .3s;
}

.contact input[type=button]:hover{
	opacity: .7;
}

@media screen and (max-width: 767px) {

	.contact{
		padding: 50px 0;
	}

	.contact .c-secttl-mat{
		top: 14px;
		right: auto;
		left: 0;
	}

	.contact .wrap{
		padding: 50px 20px;
	}

	.contact h2{
		font-size: 28px;
	}

	.contact input[type=button]{
		width: 280px;
		font-size: 16px;
		padding: 18px 0;
	}

}


/*****************************

copyright

******************************/
.copyright{
	text-align: center;
	font-family: 'Oswald', sans-serif;
	letter-spacing: .1em;
	font-size: 12px;
	margin: 20px 0;
}

/*****************************

c-ham

******************************/

.c-ham.top{
	transform: translateY(-30px);
	opacity: 0;
	animation: headerAnim 1s ease 1.8s 1 forwards;
}

@media screen and (max-width: 767px) {
	.c-ham{
		position: fixed;
		top: 8px;
		right: 15px;
		z-index: 10000;
		width: 45px;
		height: 50px;
	}

	.c-ham span{
		width: 30px;
		height: 2px;
		background-color: #F08300;
		display: block;
		margin: 0 auto;
		transition: .4s ease;
		border-radius: 10px;
	}

	.c-ham span:first-child{
		margin-top: 17px;
	}

	.c-ham span:nth-child(2){
		margin-top: 7px;
	}

	.c-ham span:nth-child(3){
		margin-top: 7px;
	}
	.c-ham.is-active span:first-child{
		transform: translateY(9px) rotate(45deg);
	}

	.c-ham.is-active span:nth-child(2){
		opacity: 0;
	}

	.c-ham.is-active span:nth-child(3){
		transform: translateY(-9px) rotate(-45deg);
	}

}




/************************ js-fadeup ************************/

.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform,animation,position;
}

.js-fadeup.run{
  opacity: 1;
  transform: translateY(0px);
  transition: transform 1.2s ease,opacity 1.2s ease;
}


/************************ js-img ************************/

.js-img {
  position: relative;
  overflow: hidden;
}

.js-img img{
	transform: scale(2.5);
	opacity: 0;
	will-change: transform,animation,position;
}

.js-img.run img{
	animation: imgAnim 1.5s .8s cubic-bezier(0.75, 0, 0.35, 1) forwards;
}

@keyframes imgAnim {
	0%{
       opacity: 0; transform: scale(1.1);
	}

	100%{
	   opacity: 1;transform: scale(1);
	}
	
}


.js-img::after{
	content: "";
	width: 100%;
	height: 100%;
    background: linear-gradient(90deg, rgba(178,221,255,1) 0%, rgba(128,199,255,1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transform: translateX(-101%);
	will-change: transform,animation,position;
}

.js-img.run::after{
	animation: imgBgAnim 1.5s cubic-bezier(0.75, 0, 0.35, 1) forwards;
}

@keyframes imgBgAnim {
	0%{
       transform: translateX(-101%);
	}

	50%{
		transform: translateX(0);
	}

	60%{
		transform: translateX(0);
	}

	100%{
		transform: translateX(101%);
	}
	
}




.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;

}
.modal__bg{
    background: rgba(255,255,255,0.95);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    left: 50%;
    height: 90%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 1000px;
    overflow: scroll;
    padding-bottom: 50px;
}

.modal__content img{
	width: 60%;
	margin-left: 32%;
	margin-bottom: 50px;
}

.modal__content div{
	position: absolute;
	left: 60px;
	top: 100px;
	background: rgba(255,255,255,.5);
	padding: 30px;
}

.modal__content div span{
	font-size: 16px;
	display: block;
	margin-bottom: 5px;
	
}

.modal__content div h3{
	font-size: 32px;
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.modal__content div h3 small{
	font-family: 'Dancing Script', cursive;
	font-size: 20px;
	margin-left: 20px;
	font-weight: 300;
	letter-spacing: 0;
	display: inline-block;
	margin-top: -20px;
}

.modal__content p{
	font-size: 16px;
	line-height: 2;
	position: relative;
}

.modal__close{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100px;
	margin: auto;
	width: 100px;
	height: 100px;
}

.modal__close::before,
.modal__close::after{
	content: "";
	width: 100px;
	height: 1px;
	background-color: #000;
	display: block;
	position: absolute;
	left: 0;
	top: 50px;
}

.modal__close::before{
	transform: rotate(45deg);
}

.modal__close::after{
	transform: rotate(-45deg);
}


@media screen and (max-width: 767px) {

.modal__content{
	padding: 0;
}

.modal__content img{
	width: 90%;
	margin-left: 10%;
	margin-bottom: 130px;
}

.modal__content div{
	position: absolute;
	left: 0px;
	top: 180px;
	padding: 20px;
	background: rgba(255,255,255,.95);
}

.modal__content div span{
	font-size: 12px;
	display: block;
	margin-bottom: 5px;
}

.modal__content div h3{
	font-size: 24px;
	margin-bottom: 0px;
}

.modal__content div h3 small{
	font-family: 'Dancing Script', cursive;
	font-size: 16px;
	margin-left: 20px;
	font-weight: 300;
	letter-spacing: 0;
	display: inline-block;
	margin-top: -20px;
}

.modal__content p{
	font-size: 13px;
	line-height: 2;
	position: relative;
}

}


#thanks{
	text-align: center;
	padding-top: 200px;
}

#thanks .contact__form img{
	width: 150px;
	margin: 30px auto;
}

#thanks .contact__form h2{
	font-size: 24px;
	margin-bottom: 20px;
}

#thanks .contact__form p{
	font-size: 16px;
	line-height: 2;
	margin-bottom: 30px;
}


#thanks .contact__form a{
background-color: #F38200;
border: 0px solid #000;
color: #fff;
border-radius: 300px;
max-width: 480px;
display: block;
margin: 0 auto;
font-size: 20px;
font-weight: bold;
padding: 25px 0;
transition: opacity .3s;
}

#thanks .contact__form a:hover{
	opacity: .75;
}

@media screen and (max-width: 767px) {

	#thanks{
		text-align: center;
		padding-top: 40px;
	}

	#thanks .contact__form img{
		width: 150px;
		margin: 30px auto;
	}

	#thanks .contact__form h2{
		font-size: 18px;
		margin-bottom: 20px;
	}

	#thanks .contact__form p{
		font-size: 14px;
		text-align: left;
	}

	#thanks .contact__form p br{
		display: none;
	}

	#thanks .contact__form a{
	font-size: 17px;
	padding: 18px 0;
	}

}

.txt_link{
	text-decoration: underline;
	color: #F08300;
}