@charset "UTF-8";
html {
	width: 100%;
    font-size: 100%;
	/*line-height: 1.8em;*/
}
body {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    overflow-x: hidden;
}

img{
	vertical-align:bottom;
}

.contsMenu {
    width: 1200px;
    margin: 20px auto 100px;
    display: table;
    border-left: 1px solid #ccc;
  }

.contsMenu a {
	padding: 0 15px;
	border-right: 1px solid #ccc;
	width: 14%;
	line-height: 1.5;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #000 !important;
}

#beginner_contents #title_conts {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 490px;
	min-height: 28vw;
	background-image: url(../images/beginner/beginner_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	position: relative;
	margin-bottom: 40px;
}
#beginner_contents .title_inner {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin: auto;
	left: 0;
	top: 190px;
}

#beginner_contents a {
	color:#0693e3;

}

#beginner_contents a:hover{
	opacity: 0.8;

}


.top_title {
	font-size: 18px;
	margin-bottom: 0;
}
.title_inner h1 {
	font-size: 44px;
	font-weight: bold;
	text-shadow: 0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255);
}
.beginner_box {
	max-width: 1000px;
	margin: 70px auto;
    padding-left: 10px;
    padding-right: 10px;
}
.beginner_box_area {
	width: 100%;
}

.point_box_area ul{
	margin-top: 0;
}

.beginner_box_area p{
	margin-top: 0;
}
.pic_area {
	margin-top: 2em;
}

.beginner_box_area .point_area ul {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	align-items: top;
	flex-wrap: wrap;
	padding-left: 0;
	margin-top: 1em;
}
.beginner_box_area .point_area ul li {
	list-style: none;
	width: 30%;
	margin-right: 1%;
	margin-left: 1%;
}
.beginner_box_area .point_area .point_area_no {
	font-weight: bold;
	font-size: 120%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.beginner_box_title {
	font-size: 30px;
	font-weight: bold;
	padding: 20px;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.beginner_box_area p span{
	font-weight: bold;
	color: #ff0000;
}

.beginner_box_area .step_area ul{
	margin-top: 3em;
}


.beginner_box_area .step_area ul li {
	margin-bottom: 2em;
}

.beginner_box_area .step_area ul li .step_box_right{
	width: 70%;
	float: right;
	padding-left: 1em;
}

.beginner_box_area .step_area ul li .step_box_left{
	width: 30%;
	float: left;
}

.beginner_box_area .step_area .step_area_no {
	font-weight: bold;
	font-size: 120%;
	margin-bottom: 0.5em;
}

.beginner_box_area .itemlist_area .itemlist{
	background-color: #f3e7e9;
	border-radius: 15px;
	font-size: 120%;
	padding: 1em 2em;
	font-weight: bold;
	margin-bottom: 1em;
}

.beginner_box_area .itemlist_area .itemlist_box{
	float: left;
	width: 50%;
	padding: 1em;
}

.beginner_box_area .itemlist_area .p01{
	text-align: center;
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 1em;
}


.beginner_box_area .itemlist_area .itemlist_box small {
	font-size: 80%;
}
.beginner_box_area .payment_area .payment_list{
	display:flex;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}
.beginner_box_area .payment_area .payment_list li{
		background-color: #f0ede3;
		border-radius:10px;
		padding: 10px;
		width: calc((100% - 60px ) / 4);
		/* flex-grow: 1; */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
}
.beginner_box_area .payment_area .payment_list li p{
	font-size:14px;
}
.beginner_box_area .payment_area .payment_box span{
	font-size: 119%;
	font-weight: bold;
	margin-bottom: 1em;
}

.beginner_box_area .payment_area .p02 {
	font-size: 14px;
}

.btn01 a {
    background: #333;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff !important;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    margin-top: 2em;
}
.btn01 a:hover {
    background: #fff;
    color: #333 !important;
	border: solid 1px #333;
}
.btn01 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn01 a:hover:after {
    border-color: #333;
}


.btn02 a {
    background: #e89192;
    border-radius: 3px;
    position: relative;
    display: block;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff !important;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    margin-top: 10px;
}
.btn02 a:hover {
    background: #fff;
    color: #e89192 !important;
	border: solid 1px #e89192;
}
.btn02 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn02 a:hover:after {
    border-color: #e89192;
}


.btn03 a {
    background: #57bc6a;
    border-radius: 3px;
    position: relative;
    display: block;
    max-width: 280px;
    padding: 10px 25px;
    color: #fff !important;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    margin-top: 10px;
}
.btn03 a:hover {
    background: #fff;
    color: #57bc6a !important;
	border: solid 1px #57bc6a;
}
.btn03 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn03 a:hover:after {
    border-color: #57bc6a;
}

.mt10{
	margin-top: 10px !important;
}

.mt20{
	margin-top: 20px !important;
}

.mt30{
	margin-top: 30px !important;
}

.mt60{
	margin-top: 60px !important;
}

.mb10{
	margin-bottom: 10px !important;
}

.mb20{
	margin-bottom: 20px !important;
}

.mb30{
	margin-bottom: 30px !important;
}


.clear{
	clear: both;
}

.sp{
	display: none;
}

.pc{
	display: block;
}

@media screen and (max-width: 769px){	

	#beginner_contents #title_conts {
		margin-bottom: 0;
		height: 280px;

	}
	.beginner_box {
		margin-top: 0;
	}

	.beginner_box_area p{
		font-size: 14px;
		line-height: 1.8em;
	}

	.top_title {
		font-size: 3vw;
		margin-bottom: 0;
	}

    .title_inner h1 {
        font-size: 6vw;
        font-weight: bold;
        color: #000;
        text-align: left;
		text-shadow: 0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255),0 0 10px rgb(255 255 255);
	}

	#beginner_contents .title_inner {
		left: 5%;
		top: 40%;
	}

	.beginner_box_title {
		font-size: 120%;
	}
	.beginner_box_area .step_area ul li .step_box_right{
		width: 100%;
		float: none;
		margin-top: 1em;
		padding-left: 0em;
	}
	
	.beginner_box_area .step_area ul li .step_box_left{
		width: 100%;
		float: none;
		display: block;
	}

.beginner_box_area .payment_area .payment_list{
	display:flex;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	flex-flow:wrap;
	flex-direction: column;
}
.beginner_box_area .payment_area .payment_list li{
		background-color: #f0ede3;
		border-radius:10px;
		padding: 10px;
		width: 100%;
		/* flex-grow: 1; */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
}
.beginner_box_area .payment_area .payment_list li p{
	font-size:14px;
	line-height: 1.2;
}

	.beginner_box_area .payment_area .payment_box span{
	font-size: 100%;

}

	.beginner_box_area .point_area ul {
		display: block;
		width: 100%;
	}
	.beginner_box_area .point_area ul li {
		width: 100%;
		margin-bottom: 1.5em;
	}

	.beginner_box_area .point_area .point_area_img {
		float: left;
		width: 45%;		
	}
	.beginner_box_area .point_area .point_area_text {
		float: right;
		width: 53%;		
	}	

	.beginner_box_area .point_area .point_area_no {
		font-size: 95%;
		margin-top: 0;
		margin-bottom: 0.2em;
	}

	.beginner_box_area .point_area .point_area_text .p_text{
		font-size: 12px;
	}

	.beginner_box_area .itemlist_area .itemlist_box {
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 1em;
	}

	.beginner_box_area .itemlist_area .itemlist {
		margin-bottom: 0.5em;
		padding: 1em;
	}

	.beginner_box_area .itemlist_area .p01{
		font-size: 120%;
	}

	.contsMenu {
		width: 100%;
		margin: 0;
		display: inline-block;
	  }
	  .contsMenu {
		margin-bottom: 10vw;
		display: flex;
		width: 100%;
		flex-flow: wrap;
	  }
	  .contsMenu a {
		text-align: left;
		height: 15vw;
		padding: 0 6% 0 1em;
		width: 50%;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		position: relative;
		margin-top: -1px;
		font-size: 3.5vw;
		line-height: 1.5;
		display: flex;
		align-items: center;
	  }
	  .contsMenu a:nth-child(2n) {
		border-right: 0;
	  }
	  /* .contsMenu a:nth-child(1), .contsMenu a:nth-child(2) {
		line-height: 1.5;
	  }*/
	  .contsMenu a:nth-child(even) {
		border-left: none;
	  }
	  .contsMenu a:after {
		content: '';
		position: absolute;
		background-image: url(../images/common/under_arrow.png);
		background-repeat: no-repeat;
		right: 3vw;
		top: 50%;
		margin-top: -1vw;
		width: 3vw;
		height: 3vw;
		background-size: 100%;
		filter: saturate(0%) brightness(0);
	  }	


	.btn01 a {
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 300px;
		padding: 20px;
		text-align: center;
	}	

	.btn02 a {
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 300px;
		padding: 20px;
	}

	.btn03 a {
		display: block;
		margin-left: auto;
		margin-right: auto;
		max-width: 300px;
		padding: 20px;
	}

	.pc{
		display: none;
	}
	
	.sp{
		display: block;
	}
	
}



