@charset "UTF-8";
/* CSS Document */

/* ---------------------------------------------------------
#contents
----------------------------------------------------------*/
#contents {
  flex: 1 0 auto;
  position: relative;
  width: 1246px;
  padding-top: 68px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header {
	padding: 105px 0 0;
	margin-bottom: 60px;
}
header h1 {
	width: 380px;
	margin: 0 auto 60px;
}
header h1 img {
  width: 380px;
  height: 235px;
}
.lang-en header h1 img {
  width: 380px;
  height: 295px;
}
nav ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
nav li a {
	position: relative;
	display: block;
	width: 85px;
	height: 64px;
	font-size: 1.4rem;
	font-weight: bold;
	background-color: #fff;
	text-align: center;
	text-decoration: none;
	padding-top: 7px;
	border: 3px solid #707070;
	box-sizing: border-box;
}
nav li a::before {
	content: '';
	position: absolute;
	top: 31px;
	left: 0;
	display: block;
	width: 79px;
	height: 10px;
	background-color: #afafaf;
	transition: background-color .3s;
}
.lang-en nav li a {
	height: 66px;
	font-size: 1.3rem;
}
.lang-en nav li a::before {
	top: 33px;
}
nav li a::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 50%;
	display: block;
	width: 12px;
	height: 10px;
	background: url("../../img/icon_tri.svg");
	background-size: 12px 10px;
	margin-left: -6px
}
nav li.is-active a::before {
	background-color: #1B8640;
}

/* ---------------------------------------------------------
#intro
----------------------------------------------------------*/
#intro {
	position: relative;
	padding: 23px 0 23px;
	border-bottom: 2px solid #598e48;
	margin-bottom: 61px;
}
#intro h2 {
  font-size: 3.3rem;
	line-height: 1;
	margin: 0 0 45px 50px;
}
#intro .btn a {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 470px;
	height: 80px;
	font-size: 2.8rem;
	font-weight: bold;
	text-decoration: none;
	color: #707070;
	border: 1px solid #707070;
	box-sizing: border-box;
	transition: color .3s,border-color .3s;
}
#intro p {
	font-size: 1.6rem;
	line-height: 30px;
}

/* ---------------------------------------------------------
modal
----------------------------------------------------------*/
.modaal-content {
	position: relative;
	width: 750px;
	background-color: #fff;
	padding: 40px 40px 100px;
	box-sizing: border-box;
}
.modaal-wrapper .modaal-close {
	position: absolute;
	top: inherit;
	bottom: 40px;
	left: 50%;
	width: 150px;
	height: 30px;
	background: url("../img/icon_close.svg");
	background-size: 100% auto;
	border-radius: 0;
	margin-left: -75px;
	transition: background .3s;
}
.modaal-wrapper .modaal-close:hover {	
	background: url("../img/icon_close_on.svg");
	background-size: 100% auto;
}
.modaal-close::before,
.modaal-close::after {
	display: none;
}
.lang-en .modaal-wrapper .modaal-close {
	background-image: url("../img/icon_close_en.svg");
}
.lang-en .modaal-wrapper .modaal-close:hover {	
	background-image: url("../img/icon_close_en_on.svg");
}

/* ---------------------------------------------------------
.sec
----------------------------------------------------------*/
.sec {
	display: none;
}
.sec.is-active {
	display: block;
}
.sec h2 {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 60px;
}
.sec .wrapper {
	display: flex;
	justify-content: space-between;
}
.sec .left-col {
	width: 340px;
}

.sec .main img {
	width: 100%;
	height: auto;
	margin-bottom: 60px;
}

.sec .left-col img {
	width: 100%;
	height: auto;
}
.sec .right-col {
	width: 845px;
	font-size: 1.6rem;
	line-height: 30px;
}
.sec .right-col p:first-child {
	margin-top: -12px;
}

.sec .pic {
	cursor: pointer;
}
.sec .icon-scale {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: underline;
	margin-top: 10px;
	margin-bottom: 10px;
}
.sec .icon-scale02 {
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 20px;
}
.sec .icon-scale::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background: url("../../img/icon_scale.svg") no-repeat;
	background-size: 16px auto;
	margin-right: 7px;
}
.sec .btn02 a {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 470px;
	height: 60px;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	color: #707070;
	border: 1px solid #707070;
	box-sizing: border-box;
	transition: color .3s,border-color .3s;
	margin-top: 40px;
}

@media screen and (min-width:641px) {
	nav li a:hover::before {
		background-color: #1B8640;
	}
	#intro .btn a:hover {
		color: #1B8640;
		border-color: #1B8640;
	}
	.sec .btn02 a:hover {
		color: #1B8640;
		border-color: #1B8640;
	}
}

/* ---------------------------------------------------------
tablet
----------------------------------------------------------*/
@media screen and (min-width:641px) and (max-width:768px) {
	#contents {
    width: 100%;
	  padding: 68px 20px 0;
  }
	
/* ---------------------------------------------------------
header
----------------------------------------------------------*/
	nav ul {
		flex-wrap: wrap;
	}
	nav li a {
		width: 13vw;	
		margin: 0 10px 10px 0;
	}
	nav li a::before {
		width: 100%;
	}

/* ---------------------------------------------------------
#intro
----------------------------------------------------------*/
	#intro {
		position: relative;
		width: 90.4vw;
		padding: 0 0 48px;
		margin: 0 auto 49px;
	}
	#intro h2 {
		font-size: 3.6rem;
		line-height: 1;
		margin: 0 0 26px;
	}
	#intro .btn a {
		position: relative;
		width: 100%;
		margin-bottom: 48px;
	}
	#intro p {
		line-height: 40px;
	}

/* ---------------------------------------------------------
.sec
----------------------------------------------------------*/
	.sec h2 {
		line-height: 40px;
	}
	.sec .left-col {
		width: 30%;
	}
	.sec .right-col {
		width: 65%;
	}
	.sec .btn02 a {
		position: relative;
		width: 100%;
		margin-bottom: 48px;
	}

/* ---------------------------------------------------------
modal
----------------------------------------------------------*/
	.modaal-content {
		width: 100%;
	}
}

/* ---------------------------------------------------------
sp
----------------------------------------------------------*/
@media screen and (max-width:640px) {
/* ---------------------------------------------------------
#contents
----------------------------------------------------------*/
  #contents {
    width: 100%;
    padding-top: 105px;
  }

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
  header {
    display: block;
    text-align: center;
		padding: 0;
  }
  header h1 {
    display: block;
		width: 90.4vw;
		margin: 0 auto 60px;
  }
	header .select-box {
		position: relative;
		width: 90.4vw;
		height: 40px;
		margin: 0 auto;
	}
	header select {
		position: relative;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		margin: 0;
		padding: 0;
		background: none;
		border: none;
		border-radius: 0;
		outline: none;
		
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 90.4vw;
		height: 40px;
		font-size: 16px;
		padding-left: 12px;
		box-sizing: border-box;
		border: 1px solid #707070;
	}
	header .select-box::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		background: url("../../img/icon_tri.svg") no-repeat center;
		background-size: 16px 16px;
		border-left: 1px solid #707070;
		border-right: 1px solid #707070;
		box-sizing: border-box;
	}

/* ---------------------------------------------------------
#intro
----------------------------------------------------------*/
	#intro {
		position: relative;
		width: 90.4vw;
		padding: 0 0 48px;
		margin: 0 auto 49px;
	}
	#intro h2 {
		font-size: 3.6rem;
		line-height: 1;
		margin: 0 0 26px;
	}
	#intro .btn a {
		position: relative;
		width: 100%;
		margin-bottom: 48px;
	}
#intro p {
	font-size: 1.6rem;
	line-height: 30px;
}

/* ---------------------------------------------------------
.sec
----------------------------------------------------------*/
	.sec {
		width: 90.4vw;
		margin: 0 auto;
	}
	.sec h2 {
		font-size: 3rem;
		line-height: 50px;
		margin-bottom: 50px;
	}
	.sec .wrapper {
		display: block;
	}
	.sec .left-col {
		width: 100%;
		padding-bottom: 18px;
	}
	.sec .right-col {
		width: 100%;
	}
	.sec .right-col p:first-child {
		margin-top: 0;
	}
	.sec .pic {
		margin-bottom: 30px;
		cursor: default;
	}
	.sec .icon-scale,
	.sec .icon-scale::before{
		display: none;
	}
	.sec .btn02 a {
		position: relative;
		width: 100%;
		margin-bottom: 48px;
	}
}