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

.sp{
	display: block;
}

.pc{
	display: none;
}

@media screen and (max-width:428px){
.sp-sp{
	display: block;
}
}


:root{
	--max-w:100%;
}





/*------------------------------------sp-nav------------------------------------*/

/*logo*/
header{
	border-bottom: 5px solid var(--green);
}

.g-nav-sp{
	width: 200px;
	padding: 20px 20px;
}







/*sp-nav*/
#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
	background:#999;
	transition: all 0.3s;
}


#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}


#g-nav ul {
    display: none;
    width: 90%;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}



#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*sp-nav-button*/
.openbtn{
	position:fixed;
    z-index: 9999;
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}























/*----------------------------------------------------topup----------------------------------------------------*/


.topup{
	background-size: contain;
	background-position: bottom center;
	background-color: var(--lightgreen);
	padding: 50px 20px 50px 20px;
}


.topup div{
	margin: 0 auto;
}

.topup h1{
	font-size: 30px;
	margin-bottom: 50px;
}

.topup p{
	font-size: 16px;
	margin-bottom: 55px;
}

@media screen and (max-width:428px){
.topup{
	background-image: none;
	padding: 0 0px;
}
	
	.topup h1{
	margin: 0px 20px 50px 20px;
		padding-top: 20px;
	
}
	
	
.topup p{
	font-size: 16px;
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
}
	
	.topup p:nth-of-type(2) {
		margin-bottom: 0px;
		padding-bottom: 50px;
	}
}







/*----------------------------------------------------title-area----------------------------------------------------*/
.title-area{
	width: 100%;
	background-color: var(--green);
	padding: 15px 20px;
}

.title-area h1{
	width: 100%;
	margin: 0 auto;
}










/*----------------------------------------------------contents01----------------------------------------------------*/
.contents01{
	background-image: linear-gradient(to right, transparent 70%, var(--lightgreen)  0);
	padding: 50px 0px;
}

.contents-wrap{
	background-image: url("../img/back.png");
	background-repeat: no-repeat;
	padding-bottom: 30px;
	margin-bottom: 65px;
}
.contents-wrap.right{
	background-position: bottom left 100px;
}


.contents-in{
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
}

.text{
	font-size: 16px;
	margin-bottom: 30px;
	text-align: justify;
}

.image-r{
	width: 100%;
	border-radius: 20px;
}



.main-wrap{
	padding: 0 20px;
}

.flexaarea01 div:nth-of-type(1){
	margin-bottom: 30px;
}




h3{
	font-size: 18px;
}


.flexaarea01{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}


h2{
	border: 3px solid var(--green);
	padding: 10px 10px;
	text-align: left;
	font-size: 20px;
	margin-bottom: 20px;
}


h4{
	font-size: 18px;
}
h4::after{
	content: "";
	height: 2px;
	width: calc(100% - 13em);
}

.list{
	
}

.list li{
	width: 100%;
	font-size: 16px;
	padding: 5px 10px;
	border: 0.5px solid var(--gray);
}

.list li:nth-of-type(odd){
	border-left: 1px solid var(--gray);
	border-right: 1px solid var(--gray);
}

.list li:nth-of-type(even){
	border-right: 1px solid var(--gray);
	border-left: 1px solid var(--gray);
}


.list li:nth-of-type(2){
	border-top: 0.5px solid var(--gray);
}

.list li:nth-last-of-type(2){
	border-bottom: 0.5px solid var(--gray);
}

.list li:nth-last-of-type(1){
	border-right: 1px solid var(--gray);
	border-bottom: 1px solid var(--gray);
}







/*----------------------------------------------------contents02----------------------------------------------------*/
.contents02{
	background-image: linear-gradient(to left, var(--lightgreen) 70%, transparent  0);
	padding: 50px 0px;
}


.contents-wrap.left{
	background-position: bottom right 100px;
}


.contents-in02{
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
}


.image-l{
	width: 100%;
	border-radius:  20px;
	overflow: hidden;
}

.text-img{
	width: 80%;
	margin:0 auto 20px auto;
}



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


.card-wrap{
	display: flex;
	flex-wrap: wrap;
}

.card{
	width: 100%;
	padding: 20px 20px 40px 20px;
	margin-bottom: 0px;
}

.card dt{
	font-size: 20px ;
	padding-bottom: 20px;
	margin-bottom: 20px;
}


}








/*----------------------------------------------------mail-area----------------------------------------------------*/

.mail-area{
	padding: 63px 0 100px 0;
}


.mail-button{
	padding: 15px 0px;
	width: 80%;
}

.mail-button p{
	font-size: 20px;
	margin-left: 0px;
}

.mail-button p::before{
	width: 30px;
	height: 20px;
	margin-right: 10px;
}









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

footer{
	padding: 50px 0;
}

.footer-logo{
	width: 200px;
	margin-bottom: 30px;
}

.footer-wrap{
	display: flex;
	flex-direction: column;
}

.footer-wrap p{
	margin-bottom: 20px;
}

.footer-wrap ul{
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	flex: 1;
	width: 100%;
}





small{
	padding: 20px;
}












/*----------------------------------------------------inquiry-page----------------------------------------------------*/

.inquiry-title{
	font-size: 20px;
	margin: 50px 0 30px 0;
}


.inquiry-member{
	padding: 10px 20px;
	margin-bottom: 50px;
}


.inquiry-member dt{
	font-size: 18px;
}

.inquiry-member dd:first-of-type{
	margin-bottom: 15px;
}


.inquiry-text{
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0em;
	margin-bottom: 20px;
}













