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

*{
	font-family: 'BIZ UDPGothic', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	box-sizing: border-box;
}

img{
	width: 100%;
}

.sp{
	display: none;
}

.pc{
	display: block;
}

.sp-sp{
	display: none;
}


.sup{
	vertical-align: super;
	font-size: 0.8em;
}

.sub{
	vertical-align: sub;
	font-size: 0.8em;
}

:root{
	--green:rgba(117,187,60,1);
	--lightgreen:rgba(238,241,238,1);
	--gray:rgba(70,70,70,1);
	
	--max-w:1080px;
}













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

.g-nav-pc{
	box-sizing: border-box;
	width: 100%;
	background-color: #fff;
	border-bottom: 8px solid var(--green);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 18px 25px 48px ;
}

.g-nav-pc div{
	width: 326px;
}

.g-nav-pc ul{
	display: flex;
	justify-content: flex-end;
	column-gap: 10px;
	align-items: center;
	margin: 0;
}


.g-nav-pc-line{
	color: var(--gray);
	font-size: 15px;
	font-weight: 600;
	position: relative;
	padding: 10px;
	z-index: 2;
	transition: all .5s;
}

.g-nav-pc-line::after{
	content: "";
	position: absolute;
	background: #E4E4E4;
	height: 10px;
	width: 100%;
	bottom: -25px;
	left: 0;
	z-index: -1;
	transition: all .5s;
}

.g-nav-pc a:hover .g-nav-pc-line::after{
	background: var(--green);
	height: 120px;
}

.g-nav-pc a:hover .g-nav-pc-line{
	color: #fff;
}


.g-nav-pc-mail{
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 42px 21px 15px 21px;
	background-image: linear-gradient(to bottom, #FF9311 80%,#F06C0B);
	border-radius: 0 0 20px 20px;
	display: flex;
	align-items: center;
	transition: all .5s;
}

.g-nav-pc-mail img{
	width: 50px;
	height: 35px;
	margin-right: 15px;
}

.g-nav-pc-mail:hover{
	opacity: 0.5;
}













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

.topup{
	background-image: url("../img/topup.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 115px 0 155px 0;
}

.topup div{
	max-width: var(--max-w);
	margin: 0 auto;
}

.topup h1{
	color: var(--green);
	font-size: 70px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.07;
	margin-bottom: 100px;
}

.topup p{
	color: var(--gray);
	font-size: 20px;
	line-height: 1.8em;
	letter-spacing: 0.08em;
	max-width: 580px;
	text-align: justify;
	margin-bottom: 55px;
}















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

.title-area h1{
	width: 665px;
	margin: 0 auto;
}







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

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


.contents-in{
	max-width: var(--max-w);
	margin: 0 auto ;
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}

.text{
	flex: 1;
	font-size: 16px;
	color: var(--gray);
	line-height: 2;
	letter-spacing: 0.05;
}

.image-r{
	width: 454px;
	border-radius: 50px 0 0 50px;
	overflow: hidden;
}

.image-r img{
	height: 100%;
}

.main-wrap{
	max-width: var(--max-w);
	margin: 0 auto;
}


h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--gray);
}


.flexaarea01{
	display: flex;
	justify-content: space-between;
	column-gap: 32px;
	margin-bottom: 75px;
}


h2{
	display: block;
	margin: 0 auto 50px auto;
	background-color: #fff;
	border: 3px solid var(--green);
	padding: 16px 0;
	text-align: center;
	color: var(--green);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.08;
}


h4{
	font-size: 20px;
	color: var(--green);
	position: relative;
}
h4::after{
	content: "";
	height: 3px;
	width: calc(100% - 14em);
	background-color: var(--green);
	position: absolute;
	top: 50%;
	right: 0;
}

.list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.list li{
	width: 50%;
	font-size: 16px;
	color: var(--gray);
	letter-spacing: 0.08;
	padding: 5px 10px;
	border: 0.5px solid var(--gray);
	background-color: #fff; 
}

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

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

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

.list li:nth-last-of-type(2){
	border-bottom: 1px 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: 65px 0px;
}


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


.contents-in02{
	max-width: var(--max-w);
	margin: 0 auto ;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	column-gap: 40px;
}


.image-l{
	width: 454px;
	border-radius: 0 50px 50px 0;
	overflow: hidden;
}

.text-img{
	width: 353px;
	margin-bottom: 48px;
}


.card-wrap{
	display: flex;
	justify-content: space-between;
	column-gap: 18px;
}

.card{
	width: calc(100% / 4);
	border: 4px solid var(--green);
	background-color: #fff;
	border-radius: 30px;
	padding: 35px 25px 40px 25px;
	margin-bottom: 130px;
}

.card dt{
	position: relative;
	color: var(--green);
	font-size: 30px ;
	font-weight: 600;
	letter-spacing: 0.08;
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 40px;
}

.card dt::after{
	content: "";
	position: absolute;
	background-color: var(--green);
	height: 4px;
	width: 130px;
	bottom: 0;
	left: calc(50% - 65px);
}

.card dd{
	font-size: 16px;
	color: var(--gray);
	letter-spacing: 0.08em;
	text-align: justify;
}







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

.mail-area{
	background-image: url("../img/mail-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 63px 0 200px 0;
	text-align: center;
}

.hukidashi{
	display: block;
	position: relative;
	background-color: var(--green);
	border-radius: 20px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #fff;
	padding: 10px 0px;
	width: 252px;
	margin: 0 auto 10px auto;
}


.hukidashi:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: var(--green) transparent transparent transparent;
  border-width: 15px 10px 0 10px;
	z-index: 3;
}

.mail-button{
	position: relative;
	z-index: 0;
	display: block;
	padding: 15px 0px;
	width: 560px;
	border-radius: 15px;
	background-image: linear-gradient(to bottom, #FF9311 80%,#F06C0B);
	margin: 0 auto;
	transition: all .3s;
}

.mail-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, #FF9311 ,#F06C0B 50%);
    opacity: 0;
    transition: opacity 0.5s;
	border-radius: 15px;
}

.mail-button:hover::before{
	opacity: 1;
}


.mail-button p{
	position: relative;
	color: #fff;
	font-size: 27px;
	font-weight: 700;
	margin-left: 60px;
}

.mail-button p::before{
	content: "";
	display: inline-block;
	width: 40px;
	height: 30px;
	background-image: url("../img/mail-icon.png");
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-right: 20px;
}
















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

footer{
	background-color: var(--green);
	padding: 50px 0;
}

.footer-logo{
	display: block;
	width: 288px;
	margin-bottom: 30px;
}

.footer-wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-wrap p{
	font-size: 16px;
	letter-spacing: 0.01em;
	line-height: 2;
	color: #fff;
}

.footer-wrap ul{
	display: flex;
	justify-content: flex-end;
	column-gap: 30px;
	padding: 20px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin: 0;
}

.footer-wrap ul a{
	color: #fff;
}

.footer-wrap ul li:hover{
	opacity: 0.5;
}







small{
	display: block;
	background-color: var(--green);
	padding: 20px 0;
	border-top: 1px solid #fff;
	text-align: center;
	color: #fff;
}






/*-------------------------------------totop------------------------------------------*/
#page-top {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    /*border: solid 2px  var(--green);*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
	opacity: 0;
	transition: 1s;
    transform: translateY(30px);
}


/*
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--green);
    border-right: 3px solid  var(--green);
    transform: translateY(20%) rotate(-45deg);
}*/





#page-top.active {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(0);
}














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

.inquiry-imagearea{
	height: 170px;
	background-image: url("../img/mail-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.inquiry-title{
	color: var(--green);
	font-size: 26px;
	font-weight: 600;
	margin: 68px 0 48px 0;
	letter-spacing: 0.08em;
}


.inquiry-member{
	padding: 25px 50px;
	background-color: rgba(117,187,60,0.1);
	margin-bottom: 90px;
}


.inquiry-member dt{
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.02em;
	position: relative;
}

.inquiry-member dt::after{
	content: "";
	position: absolute;
	height: 1px;
	width: calc(100% - 5em);
	background-color: #000;
	right: 0;
	top: 50%;
}

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


.inquiry-text{
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

















