@charset "utf-8";

html {
	font-size: 62.5%;
	word-break: break-word;
	overflow-y: scroll;
}

body {
	font-size: 1.4rem;
	line-height: 1.5;
	font-family: "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	color: #282828;
}

/* self add */

p {
	margin: 0;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

a {
	text-decoration: none;
}

img {
	border: 0;
	max-width: 100%;
}

.inner {
	width: 90%;
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.clear:after {
	display: block;
	content: "clear";
	width: 0;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.fade {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.mincho {
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.bold {
	font-weight: bold;
}

.f_pink {
	color: #ef454a;
}

.f_green {
	color: #9acc82;
}

.raduis10 {
	border-radius: 10px;
}

.content_txt {
	font-size: 1.4rem;
	line-height: 1.7;
}
.content_txt16{
	font-size: 1.6rem;
	line-height: 1.8125;
}
.font18{
	font-size: 1.8rem;
}
.font20{
	font-size: 2rem;
}
.font24{
	font-size: 2.4rem;
}

/* -------------------- header -------------------- */
header {
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	position: sticky;
	background-color: #FFFFFF;
}

header.fixed {
	box-shadow: 0 0 10px rgba(31, 31, 31, 0.3);
}

header .inner {
	width: 100%;
	max-width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 60px 17px 120px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.logo {
	width: 233px;
	display: block;
	position: relative;
}

.logo img {
	display: block;
}

nav {
	width: calc(100% - 233px);
}

.nav_list {
	width: 100%;
	display: flex;
	justify-content: right;
	align-items: center;
}

.nav_list>li {
	width: auto;
	margin-right: 30px;
}

.nav_list>li>a {
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #282828;
	text-align: center;
	position: relative;
	padding: 5px 0;
	overflow: hidden;
}
.nav_list>li>a:not(.nav_list>li:last-of-type a)::before{
	content: "";
	position: absolute;
	width: 100%;
	left: -100%;
	height: 2px;
	bottom: 0;
	background-color: #ef454a;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.nav_list>li>a:not(.nav_list>li:last-of-type a).active::before{
	left: 0;
}


.nav_list>li:last-of-type {
	width: 236px;
	margin-right: 0;
	margin-left: 25px;
}

.nav_list>li:last-of-type a {
	background-color: #ffffff;
	border: 2px solid #9acc82;
	border-radius: 30px;
	padding: 12px 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.d-menu {
	display: none;
}

/* -------------------- footer -------------------- */
footer {
	width: 100%;
	background-color: #9acc82;
	margin-top: 85px;
	padding-bottom: 55px;
	color: #FFFFFF;
	position: relative;
}

.idx_bg04 {
	width: 100%;
	background-color: #ffffff;
}

.idx_bg04 img {
	display: block;
	width: 100%;
}

footer a {
	color: #FFFFFF;
}

.footer_content {
	display: flex;
	align-items: center;
	padding-top: 85px;
}

.footer_logo {
	width: 47%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #FFFFFF;
	padding: 4px 20px 10px;
	font-size: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.footer_logo img {
	display: block;
}

.footer_info {
	padding-left: 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 1.6rem;
	line-height: 1.8125;
}

.footer_nav_list {
	display: flex;
	justify-content: center;
	margin: 45px 0 30px;
	border-bottom: 1px solid #FFFFFF;
	padding-bottom: 20px;
}

.footer_nav_list>li {
	font-size: 1.5rem;
	line-height: 1;
	padding-right: 18px;
	margin-right: 18px;
	border-right: 1px solid #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.footer_nav_list>li:last-of-type {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

.copyright {
	font-size: 1.4rem;
	text-align: center;
}

.pagetop {
	display: none;
	position: fixed;
	width: 17px;
	right: 100px;
	bottom: 100px;
	z-index: 999;
	padding: 10px 5px;
	border-radius: 5px;
	background: url(../img/inc/bg_pagetop.png) no-repeat center center, #9acc82;
}

.pagetop img {
	display: block;
	animation: bounce 1.2s infinite;
}
/* -------------------- faq -------------------- */

.idx_q {
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 1px solid #ffffff;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.idx_a {
	display: flex;
	align-items: start;
}

.idx_a_tit {
	width: 45px;
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 3px;
}

.idx_a_txt {
	width: calc(100% - 45px);
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}
/* -------------------- common -------------------- */
.btn_detail {
	width: 150px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.6rem;
	font-weight: bold;
	color: #282828;
	padding: 10px 0;
}
.idx_btn_ico {
	position: relative;
    display: block;
    border-radius: 50%;
    background: #9acc82;
	-ms-flex-preferred-size: 40px;
	flex-basis: 40px;
	width: 40px;
	height: 40px;
}
.idx_btn_ico::before, .idx_btn_ico::after {
    position: absolute;
    content: '';
    display: block;
}
.idx_btn_ico::before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #dcedd3;
    -webkit-transform: scale(0);
    transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.idx_btn_ico::after {
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    margin: 2px 0 0 -7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
}

/* -------------------- banner -------------------- */
.banner_img img {
	display: block;
}

.banner_btn {
	background-color: #ffffff;
	display: flex;
	align-items: start;
	justify-content: space-between;
	width: calc(100% - 35px);
	border-radius: 0 30px 0 0;
	color: #282828;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-top: -45px;
	position: relative;
	z-index: 1;
	padding: 45px 55px 0 0;
}
.banner_btn_left{
	width: calc(100% - 85px);
	padding-right: 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.banner_en {
	color: #9acc82;
	font-size: 1.6rem;
	background: url(../img/ico_tit.png) no-repeat left center;
	padding-left: 26px;
}

.banner_jp {
	font-size: 2.4rem;
	font-weight: bold;
	margin-top: 10px;
}

.banner_btn_right {
	width: 85px;
	border-top: 3px solid #ef454a;
	font-size: 1.4rem;
	letter-spacing: 3px;
	padding: 10px 0;
	position: relative;
	margin-top: 30px;
}

.banner_btn_right::after {
	content: "";
	width: 50%;
	height: 3px;
	background-color: #9acc82;
	position: absolute;
	top: -3px;
	right: 0;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

@media only screen and (min-width:1200px) {


	/* -------------------- header -------------------- */

	.nav_list>li>a:not(.nav_list>li:last-of-type a):hover::before {
		left: 0;
	}

	.nav_list>li:last-of-type a:hover {
		background-color: #9acc82;
		color: #ffffff;
	}


	/* -------------------- footer -------------------- */

	footer a:hover {
		color: #282828;
	}

	.pagetop:hover {
		background-color: #ef454a;
	}
	/* -------------------- common -------------------- */
	.btn_detail:hover .idx_btn_ico::before{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	/* -------------------- banner -------------------- */
	.banner_btn:hover .banner_btn_right::after {
		width: 0;
	}
}

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

	/* -------------------- header -------------------- */

	header .inner {
		width: 95%;
		max-width: 95%;
		padding: 25px 0 17px 0;
	}
}
@media only screen and (max-width:1200px) {

	/* -------------------- header -------------------- */
	
	.nav_list>li {
		margin-right: 20px;
	}

	.nav_list>li:last-of-type {
		width: 210px;
		margin-right: 0;
		margin-left: 0;
	}

	/* -------------------- footer -------------------- */

	.footer_nav_list>li {
		padding-right: 15px;
		margin-right: 13px;
	}

	.pagetop {
		right: 50px;
		bottom: 50px;
	}
}

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

	.fade {
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}

	.font24{
		font-size: 2.2rem;
	}


	/* -------------------- header -------------------- */

	header .inner {
		padding: 20px 0;
	}

	.logo {
		width: 180px;
	}

	nav {
		display: none;
		width: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
		background-color: #9acc82;
	}

	.nav_list {
		display: block;
	}

	.nav_list>li {
		width: 100%;
		margin-right: 0;
		border-bottom: 1px solid #ffffff;
	}

	.nav_list>li>a {
		color: #ffffff;
		text-align: left;
		padding: 20px 5%;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	.nav_list>li>a:not(.nav_list>li:last-of-type a)::before{
		display: none;
	}

	.nav_list>li:last-of-type {
		width: 100%;
		margin-left: 0;
	}

	.nav_list>li:last-of-type a {
		background-color: #ef454a;
		color: #FFFFFF;
		border-radius: 0;
		padding: 20px 5%;
	}
	.d-menu {
		display: block;
		width: 50px;
	}

	.panel-btn {
		display: block;
		width: 50px;
		height: 50px;
		background: #9acc82;
		position: relative;
		cursor: pointer;
		border-radius: 5px;
	}

	.panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 2px;
		margin: -1px 0 0 -15px;
		background: #FFFFFF;
		transition: .2s;
	}

	.panel-btn-icon:before,
	.panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 30px;
		height: 2px;
		background: #FFFFFF;
		transition: .3s;
	}

	.panel-btn-icon:before {
		margin-top: -10px;
	}

	.panel-btn-icon:after {
		margin-top: 8px;
	}

	.panel-btn .close {
		background: transparent;
	}

	.panel-btn .close:before,
	.panel-btn .close:after {
		margin-top: 0;
	}

	.panel-btn .close:before {
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.panel-btn .close:after {
		-ms-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}


	/* -------------------- footer -------------------- */
	footer {
		margin-top: 80px;
	}

	.footer_logo {
		width: 470px;
	}

	.footer_info {
		width: calc(100% - 470px);
	}

	.footer_nav_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer_nav_list>li {
		width: 32%;
		margin-right: 2%;
		margin: 0 2% 10px 0;
		padding-right: 0;
		text-align: center;
	}

	.footer_nav_list>li:nth-of-type(3n) {
		margin-right: 0;
		border-right: none;
	}

	.copyright {
		font-size: 1.4rem;
		text-align: center;
	}

	.pagetop {
		right: 20px;
		bottom: 50px;
	}

	/* -------------------- banner -------------------- */
	.banner_btn{
		padding-right: 25px;
	}
	.banner_btn_left{
		padding-right: 20px;
	}
}

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

	.content_txt16{
		font-size: 1.5rem;
	}
	.font18{
		font-size: 1.6rem;
	}
	.font20{
		font-size: 1.8rem;
	}
	.font24{
		font-size: 2rem;
	}
	/* -------------------- header -------------------- */

	.logo {
		width: 180px;
	}

	.nav_list>li>a,.nav_list>li:last-of-type a {
		padding: 15px 5%;
	}



	/* -------------------- footer -------------------- */
	footer {
		margin-top: 70px;
		padding-bottom: 40px;
	}

	.footer_content {
		display: block;
		padding-top: 50px;
	}

	.footer_logo {
		width: 100%;
		max-width: 470px;
		margin: 0 auto;
	}

	.footer_info {
		width: 100%;
		padding-left: 0;
		text-align: center;
		margin-top: 30px;
	}

	.footer_nav_list {
		margin: 40px 0 20px;
	}
	/* -------------------- common -------------------- */
	.btn_detail {
		width: 150px;
		display: inline-block;
		text-align: left;
	}
	.btn_detail span{
		display: inline-block;
		vertical-align: middle;
	}
	.idx_btn_ico {
		display: inline-block;
		margin-left: 20px;
	}
	/* -------------------- banner -------------------- */

	.banner_jp {
		font-size: 2rem;
	}

	.banner_btn_right{
		margin-top: 25px;
	}
	/* -------------------- faq -------------------- */

	.idx_q {
		font-size: 1.6rem;
	}

	.idx_a_tit {
		width: 40px;
		font-size: 1.6rem;
	}

	.idx_a_txt {
		width: calc(100% - 40px);
	}
}

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


	.raduis10 {
		border-radius: 6px;
	}

	/* -------------------- header -------------------- */

	header .inner {
		width: 90%;
		max-width: 90%;
		padding: 15px 0;
	}
	.logo {
		width: 160px;
	}

	.nav_list>li>a {
		font-size: 1.4rem;
	}
	.d-menu {
		width: 40px;
	}

	.panel-btn {
		width: 40px;
		height: 40px;
		border-radius: 6px;
	}

	.panel-btn-icon {
		width: 20px;
		margin-left: -10px;
	}

	.panel-btn-icon:before,
	.panel-btn-icon:after {
		width: 20px;
	}

	.panel-btn-icon:before {
		margin-top: -8px;
	}

	.panel-btn-icon:after {
		margin-top: 6px;
	}


	/* -------------------- footer -------------------- */

	.footer_content {
		padding-top: 40px;
	}

	.footer_logo {
		padding: 4px 15px 10px;
	}

	.footer_info {
		font-size: 1.4rem;
	}

	.footer_nav_list {
		justify-content: start;
	}

	.footer_nav_list>li {
		width: 49%;
		font-size: 1.4rem;
	}

	.footer_nav_list>li:nth-of-type(3n) {
		margin-right: 2%;
		border-right: 1px solid #ffffff;
	}

	.footer_nav_list>li:nth-of-type(2n) {
		margin-right: 0;
		border-right: none;
	}

	.copyright {
		font-size: 1.2rem;
	}

	.pagetop {
		width: 12px;
		right: 10px;
		bottom: 20px;
		padding: 5px 3px;
		background-size: 12px auto;
	}
	.pagetop img{
		width: 12px;
	}
	/* -------------------- common -------------------- */
	.btn_detail {
		width: 130px;
		font-size: 1.4rem;
	}
	.idx_btn_ico {
		-ms-flex-preferred-size: 30px;
		flex-basis: 30px;
		width: 30px;
		height: 30px;
	}

	/* -------------------- banner -------------------- */

	.banner_btn {
		width: calc(100% - 25px);
		border-radius: 0 20px 0 0;
		margin-top: -30px;
		padding: 30px 30px 0 0;
	}

	.banner_en {
		font-size: 1.4rem;
	}

	.banner_jp {
		font-size: 1.8rem;
	}

	.banner_btn_right {
		font-size: 1.2rem;
	}
	/* -------------------- faq -------------------- */

	.idx_q {
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
}