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

*{
	box-sizing: border-box;
}

body{
		margin: 0;
	position: relative;
	z-index: -888;
	}
	
html{
	overflow-x: hidden;
	font-family:  "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif, "Segoe UI", sans-serif;;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
	background-color: #F1F1F1;
}

.header {
	width: 100%;
	max-width: 100%;
	height: 80px;
  display: flex;
	object-fit: cover;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
  position: fixed;
	z-index: 99;
top: 0;
}

.logo{
	position: relative;
	top: 7px;
	right: 10px;
}

.pc_nav{
	display: none;
}


/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
	
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 60px;
	top: 40px;
  z-index: 999;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 1.8px;
  width: 30px;
  border-radius: 4px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 10px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 10px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
	z-index: 999;
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
	z-index: 999;
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 800px;
  position: fixed;
  bottom: 200%;
  left: 0%; /* メニューを画面の外に飛ばす */
  z-index: 998;
  transition: .8s;
  padding-top: 12vw;
	background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
}

.nav_content a{
	position: relative;
	text-decoration: none;
	color: #ffffff;
	
}


/* メニュー黒ポチを消す */
.nav_list {
	width: 90%;
  list-style: none;
	font-size: 18px;
	margin: auto;
	position: absolute;
	top: 340px;
	left: 10px;
}

.nav_list ul{
	 list-style: none;
}



.nav_content .logo{
}

.nav_item{
	padding-top: 7vw;
	border-bottom: 1px solid;
	padding-bottom: 5vw;
	color: #fff;
	font-weight: bolder;
	font-size: 17px;
}

.nav_item a {
  color: #fff;
  text-decoration: none;
}

.ms_nav{
	margin-top: 0vw;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 50vw;/* メニューを画面に入れる */
}


#home{
	width: 100%;
	background-image: url("../img/home_background.svg");
	background-position:left 200px;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	padding-top: 100px;
	z-index: -999;
}

.main{
	width: 85%;
	height: auto;
	margin: auto;
}

.home_img{
	width: 70%;
	margin: auto;
	margin-top: 30px;
}

.home_img:last-child{
	width: 100%;
	position: relative;
	bottom: 50px;
}

.fadeleft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.main_box{
	width: 85%;
	height: 50px;
	margin: auto;
	margin-top: -60px;
	text-align: center;
	background-color: #fff;
}

.main_box p{
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding-top: 6px;
	line-height: 19px;
	background: linear-gradient(to left, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uketuke{
	width: 85%;
	height: 290px;
	text-align: center;
	background-color: #fff;
	margin: auto;
	margin-top: 25px;
	box-shadow: 5px 14px 18px 0px rgba(84, 84, 84, 0.35);
	
}

.uketuke h4{
	background-color: #1D2087;
	border-radius: 35px;
	color: #fff;
	width: 80%;
	height: 8%;
	text-align: center;
	font-size: 12.4px;
	font-weight: normal;
	margin: auto;
	position: relative;
	top: 27px;
	padding-top: 1.6px;
	
}
.uketuke h2{
	font-size: 35px;
}

.tel{
	width: 80%;
	max-width: 100%;
	display: flex;
	text-align: center;
	margin: auto;
	margin-top: 38px;
	margin-bottom: 20px;
}

.tel img{
	max-width: 98%;
	text-align: center;
	margin: auto;
}

.line{
	width: 80%;
	height: 45px;
	margin: auto;
	margin-bottom: 20px;
	text-align: center;
	background-color: #3CB056;
	border-radius: 35px;
	display: flex;
	justify-content: space-between;
	position: relative;
	transition: ease 0.3s;
}


.line a{
	margin: auto;
	padding-top: 9px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	display: flex;
	
}

.line img{
	width: 34px;
	position: relative;
	bottom: 5px;
	right: 30px;
}


	 .line_btn::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 4.4vw;
		 right: 6vw;
	 /*矢印の形状*/
    width: 1.7vw;
    height: 1.7vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.line_btn:hover::after{
		right: 2vw;
	}

.web{
	width: 80%;
	height: 45px;
	margin: auto;
	margin-top: 10px;
	text-align: center;
	background-color: #FC8014;
	border-radius: 35px;
	display: flex;
	justify-content: space-between;
	position: relative;
	transition: ease 0.3s;
}


.web a{
		margin: auto;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
}

.web img{
	width: 34px;
	position: relative;
	right: 30px;
}


/*申込矢印設定*/
	 .web_btn::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 4.4vw;
		 right: 6vw;
	 /*矢印の形状*/
    width: 1.7vw;
    height: 1.7vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.web_btn:hover::after{
		right: 4vw;
	}






#service{
	margin: auto;
	margin-top: 120px;
}

.title{
	font-size: 26px;
	font-weight: bold;
	color: #182987;
	text-align: center;
    position: relative;
	-webkit-text-stroke: 0.3px;
	height: 30px;
	letter-spacing: 0.1em;
	margin-bottom: 80px;
	z-index: -1
}


.title::after{
    content: "";
	z-index: -99;
    display: block;
    width: 20%;
    height: 5px;
    background: #FFEA2F;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
.border-underline5:hover::after{
    width: 0;
}


#service{
	margin: auto;
	margin-top: 120px;
}

.title{
	font-size: 26px;
	font-weight: bold;
	color: #182987;
	text-align: center;
    position: relative;
	-webkit-text-stroke: 0.3px;
	height: 30px;
	letter-spacing: 0.1em;
	margin-bottom: 80px;
	z-index: -1
}


.title::after{
    content: "";
	z-index: -99;
    display: block;
    width: 20%;
    height: 5px;
    background: #FFEA2F;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
.border-underline5:hover::after{
    width: 0;
}

#service{
	margin-top: 50px;
	width: 90%;
}

#service p{
	text-align: center;
	font-size: 14px;
	font-weight: bolder;
	color:#434343;
	line-height: 26px;
	margin-top: -30px;
}
.service_pc h2{
	display: none;
}


#tuyomi{
	width: 100%;
	margin: auto;
	margin-top: 50px;
}

.tuyomi_img{
	width: 90%;
	margin: auto;
	margin-top: -20px;
	margin-bottom: 100px;
	margin-left: 30px;
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fit,165px);
}

.tuyomi_img img{
	width: 150px;
	margin: auto;
	margin-bottom: -10px;
}

.tuyomi3pc, .tuyomi4pc, .tuyomi5pc, .tuyomi6pc, .tuyomi7pc, .tuyomi8pc{
	display: none;
}

#unei{
	width: 100%;
	margin: auto;
	margin-top: -30px;
	background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	position: relative;
	z-index: -5;
}

.title_a{
	font-size: 26px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	-webkit-text-stroke: 0.1px;
	height: 30px;
	letter-spacing: 0.14em;
	padding-top: 40px;
	margin-bottom: 40px;
}

.title_a::after{
    content: "";
    display: block;
    width: 18%;
    height: 3px;
    background: #FFEA2F;
    position: relative;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
.border-underline5:hover::after{
    width: 0;
}

#unei img{
	width: 220px;
	margin-top: 20px;
}

#unei h1{
	margin: auto;
	margin-top: 60px;
	text-align: center;
}

.unei_info{
	width: 80%;
	margin: auto;
	margin-top: 10px;
	display: flex;
	justify-content: center;
}

.info{
	width: 25%;
	color: #fff;
	font-size: 13px;
	font-weight: bolder;
	letter-spacing: 0.1rem;
	display: flex;
	flex-direction: column;

}


.info span{
	width: 10px;
	position: relative;
	display: inline-block;
}

.info span::after{
	content: "";
	display: inline-block;
	width: 2.35px;
	height: 12px;
	top: 1px;
	right: -34px;
	background-color: #fff;
	position: relative;
}

.info a:last-child span{
		position: relative;
		right: 14px;
	}
	

.info small{
	font-size: 10px;
}

.info a:nth-of-type(2){
	padding-top: 27px;
}

.info a:last-of-type{
	padding-top: 46px;
}



.info a:nth-child(2){
	position: relative;
}


.info2{
	color: #fff;
	font-size: 13px;
	font-weight: bolder;
	letter-spacing: 0.02rem;
	display: flex;
	flex-direction: column;
	column-gap: 200px;
	padding-left: 20px;
}


.info2 a{
	padding-bottom: 25px;
}

#contact_form{
	width: 100%;
	margin: auto;
	margin-top: 40px;
}



.form_text, .form_text0{
	width: 100%;
	display: flex;
	color: #0E2993;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.07rem;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 20px;
}

.form_text span{
	color: #fff;
	background-color: #E64545;
	font-size: 11px;
	margin: 0 10px;
	padding: 1.6px 4px;
	position: relative;
	bottom: 2px;
	z-index: -20;
}

.form_text0 span:last-of-type{
	background-color: #4662BE;
	color: #fff;
	font-size: 11px;
	margin: 0 10px;
	padding: 1.6px 4px;
	position: relative;
	bottom: 2px;
	z-index: -20;
}

.form_text input{
	margin: auto;
	width: 90%;
	background-color: #fff;
	margin-bottom: 20px;
}

.form_text label{
	margin: auto;
	width: 90%;
	margin-bottom: 5px;
}

.form_text0 label{
	margin: auto;
	width: 90%;
}


.radio{
	width: 80%;
	margin: auto;
	display: flex;
	margin-top: -16px;
	margin-right: 60px;
}
.radio input:first-child{
	margin-right: 5px;
	margin-bottom: -8px;
}

.radio input:last-child{
	margin-left: 5px;
	margin-bottom: 0px;
}

.form_text select{
		width: 20%;
		margin: 0 0 0 20px;
	}

.form_text input, textarea {
  width: 90%;
  max-width: 100%;
  border: none;
  margin: auto;
  padding: 0.5rem 1rem;
  background: darken(#f9f9f9, 10%);
  color: darken(#f9f9f9, 50%);
}
textarea{
	height: 140px;
}

.privacy-policy {
	width: 80%;
    height: 130px;
	margin: auto;
	background-color: #fff;
    border: 1px solid #D0D0D0;
    overflow-y: scroll;
}
  
.privacy-policy_head{
	font-weight: bolder;
	font-size: 14px;
	margin: 5px;
}
.privacy-policy_detail{
	font-size: 11px;
	padding: 5px;
	margin: 5px;
	pointer-events: none;
}

.fin{
	font-size: 11px;
	text-align: right;
}

#box_check{
	width: 85%;
	margin: auto;
	margin-top: 10px;
	padding-left: 5px;
}

.box-check_class{
	font-size: 13px;
}

#box_check input{
	position: relative;
	top: 1px;
	left: 5px;
	z-index: -1
}

.check{
	font-weight: bolder;
	color: #012776;
	font-size: 9px;
	margin: auto;
	text-align: center;	
	padding-left: 5px;

}

.check_span span{
	color: #fff;
	background-color: #E64545;
	font-size: 11px;
	font-weight: bold;
	padding: 1.6px 4px;
	position: relative;
	bottom: 42px;
	left: 275px;
	z-index: -1
}
#form_send{
	width: 80%;
	margin: auto;
	text-align: center;
}

.send{
	transition: all 0.4s;
	position: relative;
	margin: auto;
}

.send input{
	width: 290px;
	height: 42px;
	 background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	color: #fff;
	border: none;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 14px;
	font-weight: bolder;
	text-align: center;
	letter-spacing: 0.08rem;
	border-radius: 35px;
	margin: 20px auto 60px;
}

.send::after{
	content: '';
		 display: inline-block;
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 37px;
		 right: 50px;
	 /*矢印の形状*/
    width: 1.5vw;
    height: 1.5vw;
    border-top: 0.3vw solid #fff;
    border-right: 0.3vw solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

#complete-top{
	width: 100%;
	margin-top: 80px;
	position: relative;
	z-index: -7;
}

.complete-text_all_pc{
	display: none;
}

.complete_img_pc{
	display: none;
}

.complete-text_pc{
	display: none;
}

.complete-text2_pc{
	display: none;
}
.title_b{
	width: 75%;
	font-size: 21px;
	font-weight: bold;
	color: #182987;
	text-align: center;
    position: relative;
	left: 2vw;
	-webkit-text-stroke: 0.3px;
	height: 30px;
	letter-spacing: 0.1em;
	margin: auto;
	margin-bottom: 80px;
	z-index: -1
}


.title_b::after{
    content: "";
	z-index: -99;
    display: block;
    width: 26%;
    height: 7px;
    background: #FFEA2F;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}

.complete-text_all{
	background-color: #fff;
}

.complete-text{
	color: #182987;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align: center;
	font-size: 14px;
	padding: 15px;
	letter-spacing: 0.1rem;
	line-height: 27px;
	margin: auto;
	
}

.complete-text2{
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.08rem;
	line-height: 23px;
	padding-bottom: 20px;
}

.complete_img{
	width: 67%;
	margin: auto;
	padding-bottom: 30px;
}

.back_top{
	width: 55%;
	height: 42px;
	margin: auto;
	background-color: #FC8014;
	border-radius: 20px;
	text-decoration: none;
	color: #fff;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 40px;
	
}

.back_button{
	padding-top: 8px;
	position: relative;
}

.back_button a{
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.12rem;
}


#footer{
	 background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);

}

#footer span{
	color: #fff;
	text-align: center;
	margin: auto;
}

#footer h3{
	display: block;
	text-decoration: none;
	color: #fff
}

.footer_pc{
	display: none;
}

.copyright{
	font-size: 8px;
	text-align: center;
	margin: auto;
	color: #fff;
}

.footer_img{
	display: inherit;
	margin: auto;
	text-align: center;
	padding-top: 20px;
}

.footer_img img{
	width: 65%;
	margin: auto;
	padding-top: 20px;
	margin-left: -10px;
}


.footer_img_pc{
	display: none;
}


.footer_nav{
	width: 70%;
	margin: auto;
}


.top{
	width: 80%;
	font-weight: bold;
	margin: auto;
	text-align: center;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin-bottom: 20px;
}

.bottom{
	width: 65%;
	font-weight: bold;
	margin: auto;
	text-align: center;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin-bottom: 20px;
}

.footer_nav_item{
	margin: auto;
	margin-top: 20px;
	text-align: center;
	list-style: none;
}

.footer_nav_item a{

	text-decoration: none;
	list-style: none;
	color: #fff;
}

	.last{
		text-align: center;
		font-size: 11px;
		
	}

	
	.title_c{
		text-align: center;
		margin: auto;
		font-size: 16px;
		letter-spacing: 0.1rem;
		color: #182987;
		font-weight: bold;
		position: relative;
		z-index: -8;
		margin-top: 80px;
	}
	
	.title_c::after{
    content: "";
    display: block;
    width: 30vw;
    height: 2.5px;
    background: #FFEA2F;
    position: absolute;
    bottom: -2vw;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
	
	.kakunin_page{
		width: 90%;
		margin: auto;
		margin-top: 180px;
	}
	
	.kakunin_page p{
		width: 80%;
		display: contain;
		justify-content: space-between;
		margin: auto;
		font-weight: bold;
		color:  #182987;
		position: relative;
		top: -20px;
		left: 10px;
		padding-bottom: 40px;
		letter-spacing: 0.07rem;
	}
	
	.kakunin_page dd{
		display: contain;
		justify-content: space-between;
		width: 80%;
	font-size: 14px;
		border-bottom: 2px solid #9B9B9B;
		margin: auto;
		position: relative;
		top: -27px;
	}

.kakunin_page dd:last-of-type{
	position: relative;
	top: 30px;
}

.form_text1 label{
		width: 200px;
		font-weight: bold;
		color: #182987;
		font-size: 14px;
		margin-left: -90px;
		position: relative;
		left: 50px;
	}
	
	.conform-btnbox{
		width: 50%;
		height: 20%;
		margin: auto;
		margin-top: 40px;
		display: contain;
		justify-content: center;
		position: relative;
		
	}
	
	
	.kakunin_back{
		margin: 0 auto;
		position: relative;
		transition: all 0.4s;
	}

.kakunin_back input{
	width: 60vw;
		height: 50px;
		color: #fff;
		margin: 0 auto;
		text-align: center;
		background-color: #182987;
		border-radius: 50px;
		border: none;
		font-size: 16px;
		letter-spacing: 0.1rem;
		font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif, "Segoe UI", sans-serif;
		position: relative;
		left: -5vw;
		transition: all 0.4s;
}
	
			/*申込矢印設定*/
	
	 .kakunin_back::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 5.2vw;
		 right: 1vw;
	 /*矢印の形状*/
    width: 1.5vw;
    height: 1.5vw;
    border-top: 1.4px solid #fff;
    border-right: 1.4px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}


	.kakunin_back:hover::after{
		right: -2vw;
	}
	
	
	.kakunin_send{	
		border: none;
		position: relative;
		transition: all 0.4s;
	}

.kakunin_send input{
	width: 60vw;
		height: 50px;
		color: #fff;
		margin: auto;
		background-color: #FC8014;
		border-radius: 50px;
		border: none;
		font-size: 18px;
		letter-spacing: 0.16rem;
		font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif, "Segoe UI", sans-serif;
		position: relative;
		left: -5vw;
		transition: all 0.4s;
}
	
		 .kakunin_send::after {
			 content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 5.2vw;
		 right: 1vw;
	 /*矢印の形状*/
    width: 1.5vw;
    height: 1.5vw;
    border-top: 1.4px solid #fff;
    border-right: 1.4px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
		.kakunin_send:hover::after{
		right: -2vw;
	}

@media screen and (min-width:500px){
	.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 60px;
	top: 54px;
  z-index: 999;/* 重なり順を一番上にする */
  cursor: pointer;
}
	/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 650px;
	max-height: 600px;
  position: fixed;
  bottom: 200%;
  left: 0%; /* メニューを画面の外に飛ばす */
  z-index: 998;
  transition: .8s;
  padding-top: 1vw;
	background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
}

.nav_content a{
	position: relative;
	text-decoration: none;
	color: #ffffff;
	
}


/* メニュー黒ポチを消す */
.nav_list {
	width: 80%;
	max-width: 630px;
	max-height: 500px;
  list-style: none;
	font-size: 20px;
	margin: auto;
	position: absolute;
	top: 105px;
	left: 5vw;
}

.nav_list ul{
	 list-style: none;
}



.nav_content {
	margin-top: -20px;
}
	

.nav_item{
	max-height: 90px;
	padding-top: 5vw;
	border-bottom: 1px solid;
	padding-bottom: 4vw;
	color: #fff;
	font-weight: bolder;
	font-size: 16px;
}


.nav_item a {
  color: #fff;
  text-decoration: none;
}


/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 290px;/* メニューを画面に入れる */
}

	.main_box{
		max-width: 470px;
		height: 70px;
	}
	
	.main_box p{
		font-size: 17px;
		padding-top: 7px;
		line-height: 28px;
	}
	
	.uketuke{
		max-width: 470px;
		height: 45vw;
		min-height: 320px;
	}
	
	.uketuke h4{
		height: 33px;
		font-size: 15px;
		padding-top: 4px;
	}
	
	.line a{
	margin: auto;
	padding-top: 7px;
	text-decoration: none;
	color: #fff;
	font-size: 16.5px;
	display: flex;
	
}

.line img{
	width: 34px;
	position: relative;
	bottom: 3px;
	right: 30px;
}


	 .line_btn::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 17.5px;
		 right: 6vw;
	 /*矢印の形状*/
    width: 1.4vw;
    height: 1.4vw;
    border-top: 1.8px solid #fff;
    border-right: 1.8px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
		.line:hover{
		background: #83DD98;
	}
	
	.line_btn:hover::after{
		right: 2.6vw;
	}


.web a{
	margin: auto;
	padding-top: 0px;
	text-decoration: none;
	color: #fff;
	font-size: 16.5px;
	display: flex;
}

.web img{
	width: 34px;
	position: relative;
	right: 30px;
}


/*申込矢印設定*/
	 .web_btn::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 17.5px;
		 right: 6vw;
	 /*矢印の形状*/
    width: 1.4vw;
    height: 1.4vw;
    border-top: 1.8px solid #fff;
    border-right: 1.8px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.web:hover{
		background: #FFAC64;
	}

	
	.web_btn:hover::after{
		right: 2.6vw;
	}

.radio{
	width: 90%;
	margin: auto;
	display: flex;
	margin-top: -16px;

}
.radio input:first-child{
	margin-right: 5px;
	margin-bottom: 4px;
}

.radio input:last-child{
	margin-left: 30px;
	margin-bottom: 5px;
}
	
	.form_text select{
		width: 30%;
	}
	
	.privacy-policy_head{
		font-size: 18px;
	}
	.privacy-policy_detail{
		font-size: 14px;
	}
	.fin{
		font-size: 13px;
	}
	#box_check{
	width: 70%;
	margin: auto;
	position: relative;
		top: 2vw;
		left: 1.2vw;
}

#box_check input{
	position: relative;
	left: 3vw;
	
}

.check{
	font-weight: bolder;
	color: #012776;
	font-size: 16px;
	margin: auto;
	text-align: center;	
	position: relative;
	left: 3vw;

}

.check_span span{
	color: #fff;
	background-color: #E64545;
	font-size: 14px;
	font-weight: bold;
	padding: 1.8px 4.6px;
	letter-spacing: 0.08rem;
	position: relative;
	bottom: 45px;
	left: 28vw;
	z-index: -1
}
	
	.send input{
		height: 40px;
		font-weight: normal;
		font-size: 17px;
	}
	.send::after{
	content: '';
		 display: inline-block;
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 35px;
		 right: 25vw;
	 /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.send:hover::after{
		right: 80px;
	}
	
	.copyright{
		font-size: 12px;
	}
	
	.footer_nav_item{
		font-size: 18px;
	}
	.footer_img img{
		width: 60%;
		margin-right: 160px;
	}
	
	.kakunin_page p{
		width: 80%;
		display: contain;
		justify-content: space-between;
		margin: auto;
		position: relative;
		font-size: 16px;
		top: -20px;
		left: 80px;
		padding-bottom: 40px;
		letter-spacing: 0.07rem;
	}
	
	.kakunin_page dd{
		display: contain;
		justify-content: space-between;
		width: 55%;
	font-size: 14px;
		border-bottom: 2px solid #9B9B9B;
		margin: auto;
		position: relative;
		top: -27px;
	}
	
	.form_text1{
		font-size: 16px;
	}
	
	.form_text1> label{
		position: relative;
		left: 50px;
	}
	
	.kakunin_page> label{
		position: relative;
		left: 50px;
	}

	.kakunin_back::after{
		top: 20px;
	}
		.kakunin_back input:hover{
		background-color: #2854BB;
	}
	
	.kakunin_send::after{
		top: 20px;
	}
	.kakunin_send input:hover{
			background-color: #FFA251;
	}
	
	#line-top{
		margin-top: 180px;
	}
	
	.title_b{
		font-size: 25px;
	}
	
	.complete-text{
		font-size: 17px;
		font-weight: bold;
		line-height: 29px;
	}

	.complete-text2{
		font-size: 14px;
		line-height: 26px;
	}
}

@media screen and (min-width:565px){
	.tuyomi3, .tuyomi4, .tuyomi7, .tuyomi8{
		display: none;
	}
	.tuyomi3pc, .tuyomi4pc, .tuyomi7pc{
		display: inherit;
	margin-top: -20px;
	margin-bottom: 24px;
	margin-left: -14px;
	}
	.tuyomi8pc{
		display: inherit;
		margin-left: -15px;
		padding-bottom: 8px;
	}
}

@media screen and (min-width:749px){
	.tuyomi_img{
		margin-right: 20px;
	}
	.tuyomi5, .tuyomi6, .tuyomi7pc, .tuyomi8pc{
		display: none;
	}
	.tuyomi5pc, .tuyomi6pc, .tuyomi7, .tuyomi8{
		display: inherit;
		margin-left: -13px;
	}
}
@media screen and (min-width:760px){
	
}



@media screen and (min-width:768px){
	
	html {
  scroll-padding-top: 200px;
}
	
	body{
		width: 100%;
		margin: 0;
	}
	
.header {
	width: 100%;
	display: flex;
	position: fixed;
	height: 120px;
	padding: 0;
	z-index: 99;
	}
	
	
	.logo{
	min-width: 500px;
	max-width: 800px;
	position: relative;
	top: 5px;
	left: 70px;
}
	
	.logo img{
		width: 20vw;
		min-width: 300px;
		max-width: 500px;
		height: 5vw;
	}
	
		.nav_sp{
		display: none;
	}

	
	nav{
		width: 68%;
		min-width: 850px;
		display: flex;
		margin-top: -120px;
		float: right;
		justify-content: flex-end;
	}
	
	.pc_nav{
		width: 80%;
		height: auto;
		display: flex;
		justify-content: flex-end;
		list-style: none;
		margin: 0;
		margin-top: -22px;
		margin-left: 330px;
	}

	
	.pc_nav_item{
		width: auto;
		max-width: 30%;
		height: 150%;
		font-size: clamp(19px, 1.2vw, 25px);
		font-weight: bold;
		text-align: center;
		margin: 0;
		margin-top: 55px;
		margin-right: 90px;
		display: block;
		white-space: nowrap;
		position: relative;

	}
	.pc_nav_item a{
		text-decoration: none;
		color: #fff;
		margin: auto;
		position: relative;
		display: block;
		top: 55px;
	}
	
	.span1::after{
		content: '';
		position: absolute;
		bottom: -0.3vw;
		width: 0vw;
		height: 0.12vw;
		left: 1.8vw;
		margin: auto;
		background: #fff;
		transform:  translateX(-50%);
		transition: all 0.3s;
	}
	.span1:hover::after{
		width: 3vw;
		height: 0.12vw;
	}
	
	.span2::after{
		content: '';
		position: absolute;
		bottom: -0.3vw;
		width: 0vw;
		height: 0.12vw;
		left: 2.5vw;
		margin: auto;
		background: #fff;
		transform:  translateX(-50%);
		transition: all 0.3s;
	}
	
	.span2:hover::after{
		width: 4.6vw;
		height: 0.12vw;
	}
	
	.span3::after{
		content: '';
		position: absolute;
		bottom: -0.3vw;
		width: 0vw;
		height: 0.12vw;
		left: 3.7vw;
		margin: auto;
		background: #fff;
		transform:  translateX(-50%);
		transition: all 0.3s;
	}
	
	.span3:hover::after{
		width: 7vw;
		height: 0.12vw;
	}
	
	.span4::after{
		content: '';
		position: absolute;
		bottom: -0.3vw;
		width: 0vw;
		height: 0.12vw;
		left: 2.5vw;
		margin: auto;
		background: #fff;
		transform:  translateX(-50%);
		transition: all 0.3s;
	}
	
	.span4:hover::after{
		width: 4.7vw;
		height: 0.12vw;
	}
	
	.span5::after{
		position: absolute;
		margin: auto;
	}
	

	.pc_nav_item:nth-child(4){
		margin-right: 100px;
	}
	
	.pc_nav_item:last-child {
		width: 250px;
		height: 128%;
		font-size: 22px;
		font-weight: bold;
		display: flex;
		flex-direction: column;
		background-color: #FC8014;
		padding-left: 30px;
		margin: 0;
		margin-top: 50px;
		transition: all 0.3s;
	}
	
	.pc_nav_item:last-child:hover{
		background: #FFAC64;
	}
	
	.pc_nav_item img{
		width: 180px;
		position: relative;
		top: -37px;
		left: 136px;
	}
	
	.pc_nav_item:last-child a{
		width: auto;
		text-decoration: none;
		color: #fff;
		position: relative;
		top: 25px;
		right: 132px;
		white-space: nowrap;
		letter-spacing: 0.15rem;
	}

	
	
	#home{
	width: 100%;
	height: 60%;
	margin: auto;
	background-position:left 0.6vw;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding-top: 220px;
	padding-bottom: 590px;
	display: flex;
	justify-content: space-around;}
	
	.home_left{
		width: 50%;
		margin-left: 20px;
	}
	
	.home_img:first-child{
		width: 70%;
		margin-right: 300px;
		padding-bottom: 10px;
	}
	
	.home_img:last-child{
		margin-bottom: 55px;
	}
	
	.fadeleft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}
	
	.main_box{
	width: 80%;
	max-width: 800px;
	min-width: 100px;
	height: 8vw;
	
}

.main_box p{
	text-align: center;
	font-size: 1.4vw;
	font-weight: bold;
	letter-spacing: 0.05rem;
	padding-top: 1vw;
	line-height: 3vw;
	background: linear-gradient(to left, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
	
.uketuke{
	width: 50%;
	max-width: 700px;
	min-width: 300px;
	height: 26vw;
	max-height: 500px;
	min-height: 250px;
	text-align: center;
	background-color: #fff;
	margin-right: 90px;
	margin-top: 5vw;
	box-shadow: 5px 14px 18px 0px rgba(84, 84, 84, 0.35);
	
}

.uketuke h4{
	background-color: #1D2087;
	border-radius: 35px;
	color: #fff;
	width: 80%;
	height: 7%;
	text-align: center;
	font-size: 1.1vw;
	font-weight: bold;
	position: relative;
	top: 2.4vw;
	letter-spacing: 0.08rem;
	padding-top: 0px;
}
.uketuke h2{
	font-size: 35px;
}

.tel{
	width: 84%;
	max-width: 100%;
	display: flex;
	text-align: center;
	margin: auto;
	margin-top: 2.4vw;
	margin-bottom: 20px;
}

.tel img{
	max-width: 98%;
	text-align: center;
	margin: auto;
	margin-top: 12px;
}

.line{
	width: 29vw;
	min-width: 200px;
	max-width: 900px;
	height: 3.6vw;
	margin: auto;
	margin-top: 1.4vw;
	margin-bottom: 1.2vw;
	text-align: center;
	background-color: #3CB056;
	border-radius: 2vw;
	display: flex;
	justify-content: space-between;
	transition: ease 0.3s;
		position: relative;

}	
	.line:hover{
		background: #83DD98;
	}

.line a{
	margin: auto;
	text-decoration: none;
	color: #fff;
	font-size: 1.4vw;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	position: absolute;
	right: 27%;
	top: 10%;
	}

.line img{
	width: 2.5vw;
	position: absolute;
	bottom: 0%;
	right: 140%;
}
	/*申込矢印設定*/
	
	 .line_btn::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 1.4vw;
		 right: 3.5vw;
	 /*矢印の形状*/
    width: 0.7vw;
    height: 0.7vw;
    border-top: 0.2vw solid #fff;
    border-right: 0.2vw solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.line_btn:hover::after{
		right: 2vw;
	}


.web{
	width: 29vw;
	min-width: 200px;
	height: 3.6vw;
	margin: auto;
	margin-top: 1.2vw;
	text-align: center;
	background-color: #FC8014;
	border-radius: 2vw;
	display: flex;
	justify-content: space-between;
	position: relative;
	transition: ease 0.3s;
}
	
	.web:hover{
		background: #FFAC64;
	}

.web a{
	text-decoration: none;
	color: #fff;
	font-size: 1.4vw;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	padding-right: 0.8vw;
}

.web img{
	width: 2.5vw;
	position: relative;
	bottom: 0vw;
	right: 4.7vw;
}

	
	 .web_btn::after {
  content: '';
		color: #fff;
		 line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 1.4vw;
		 right: 3.5vw;
	 /*矢印の形状*/
    width: 0.7vw;
    height: 0.7vw;
    border-top: 0.2vw solid #fff;
    border-right: 0.2vw solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.web_btn:hover::after{
		right: 2vw;
	}


#service{
	width: 90%;
	margin: auto;
	margin-top: -170px;
}

#service p{
	text-align: center;
	font-size: 28px;
	font-weight: bolder;
	color:#434343;
	line-height: 60px;
	margin: auto;
	padding: auto;
}

.title{
	font-size: 35px;
	font-weight: bold;
	color: #182987;
	text-align: center;
    position: relative;
	-webkit-text-stroke: 0.3px;
	height: 30px;
	letter-spacing: 0.1em;
	z-index: -1
}


.title::after{
    content: '';
    display: block;
    width: 5vw;
    height: 0.4vw;
    background: #FFEA2F;
    position: absolute;
    bottom: -2.8vw;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
	
	
	
.border-underline5:hover::after{
    width: 0;
}

	.service_pc{
		display: flex;
		justify-content: space-between;
		margin-top: -10vw;
	}
	
	.service_pc p{
		width: 40%;
		font-size: 3vw;
	}
	
	.service_pc h1{
		display: none;
	}

.service_pc h2{
	display: inherit;
	margin-top: 50px;
		width: 60%;
	padding-left: 30px;
}



#tuyomi{
	width: 100%;
	margin: auto;
	margin-top: 50px;
}

.tuyomi_img{
	width: 96%;
	margin: auto;
	text-align: center;
	margin-top: 130px;
	margin-bottom: 100px;
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(auto-fit,370px);
}

.tuyomi_img img{
	width: 300px;
	margin: auto;
	margin-bottom: 50px;
}
	
	.tuyomi3pc, .tuyomi4pc, .tuyomi5, .tuyomi6, .tuyomi7pc, .tuyomi8pc{
	display: inline;
}
	.tuyomi3pc, .tuyomi4pc, .tuyomi7pc{
		margin-top: 10px;
	}
	
	.tuyomi8pc{
		margin-left: 3px;
	}
	
	.tuyomi3, .tuyomi4, .tuyomi5pc, .tuyomi6pc, .tuyomi7, .tuyomi8{
		display: none;
	}

#unei{
	margin-top: -30px;
	background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	position: relative;
	z-index: -1}

.title_a{
	font-size: 2.5vw;
	font-weight: bold;
	color: #fff;
	text-align: center;
	-webkit-text-stroke: 0.1px;
	height: 30px;
	letter-spacing: 0.14em;
	padding-top: 80px;
	margin-bottom: 40px;
}

.title_a::after{
    content: "";
    display: block;
   width: 6%;
    height: 0.3vw;
    background: #FFEA2F;
    position: relative;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
.border-underline5:hover::after{
    width: 0;
}

#unei img{
	width: 31vw;
	margin-top: 5vw;
}

#unei h1{
	margin: auto;
	margin-top: 60px;
	text-align: center;
}

.unei_info{
	width: 73%;
	margin: auto;
	margin-top: 3vw;
	display: flex;
	justify-content: center;
}

.info{
	width: 25%;
	color: #fff;
	font-size: 1.8vw;
	font-weight: bolder;
	letter-spacing: 0.1rem;
	display: flex;
	flex-direction: column;

}


.info span{
	position: relative;
	display: inline-block;
	z-index: -1
}

.info span::after{
	content: "";
	display: inline-block;
	width: 0.25vw;
	height: 1.6vw;
	background-color: #fff;
	position: relative;
	top: 0;
	right: -6vw;
}
	
	.info a:last-child span{
		position: relative;
		right: 1.8vw;
		width: 0.1vw;
	}
	
	


.info small{
	font-size: 1.2vw;
}

.info a:nth-of-type(2){
	padding-top: 3.8vw;
	position: relative;
}

.info a:last-of-type{
	padding-top: 6.4vw;
}
	
	


	

.info2{
	color: #fff;
	font-size: 1.8vw;
	font-weight: bolder;
	letter-spacing: 0.02rem;
	display: flex;
	flex-direction: column;
	column-gap: 250px;
	padding-left: 2vw;
}


.info2 a{
	padding-bottom: 3.5vw;
}

#contact_form{
	width: 100%;
	margin: auto;
	margin-top: 80px;
}



.form_text, .form_text0{
	width: 60%;
	display: flex;
	color: #0E2993;
	font-weight: bolder;
	font-size: 1.1rem;
	letter-spacing: 0.07rem;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 45px;
}

.form_text span{
	color: #fff;
	background-color: #E64545;
	font-size: 0.7rem;
	font-weight: bolder;
	letter-spacing: 0.18em;
	margin: 0 10px;
	padding: 2.5px 5px;
	position: relative;
	bottom: 0.1vw;
	z-index: -1
}

.form_text0 span:last-of-type{
	z-index: -1;
	background-color: #4662BE;
	color: #fff;
	font-size: 1rem;
	font-weight: bolder;
	margin: 0 10px;
	padding: 0 5px;
	position: relative;
	bottom: 1.5px;
}

.form_text input{
	background-color: #fff;
	margin: auto;
	width: 90%;
}

.form_text label{
	margin: auto;
	width: 90%;
}

.form_text0 label{
	margin: auto;
	width: 90%;
}

.radio{
	width: 72%;
	margin: auto;
	display: flex;
	margin-top: -40px;
	margin-right: 85px;
}
.radio input:first-child{
	margin-right: 5px;
	margin-bottom: 6px;
}

.radio input:last-child{
	margin-left: 20px;
}

.form_text input, textarea {
  width: 90%;
  max-width: 100%;
  margin: auto;
  padding: 0.5rem 1rem;
  background: darken(#fff, 10%);
  color: darken(#f9f9f9, 50%);
}
textarea{
	height: 140px;
	width: 90%;
	background-color: #fff;
}

.privacy-policy {
	width: 54%;
    height: 130px;
	margin: auto;
	background-color: #fff;
    border: 1px solid #D0D0D0;
    overflow-y: scroll;
}
  
.privacy-policy_head{
	font-weight: bolder;
	font-size: 20px;
	margin: 5px;
}
.privacy-policy_detail{
	font-size: 15px;
	padding: 5px;
	margin: 5px;
}

.fin{
	font-size: 15px;
	text-align: right;
	padding-right: 20px;
}

#box_check{
	width: 70%;
}
	
	.box-check_class{
		width: 50%;
		margin: 0 auto;
		font-size: 16px;
	}
	
	#box_check input{
		margin-right: 50px;
	}

.check{
	width: 80%;
	font-weight: bolder;
	font-size: 16px;
	text-align: center;
	margin: auto;
	position: relative;
}
	
	.check_span{
		position: relative;
		left: 240px;
		top: 5px;
		font-size: 1rem;
		font-weight: bold;
		
	}

.check_span span{
	color: #fff;
	background-color: #E64545;
	position: relative;
	top: -48px;
	z-index: -1;
}
	
	.form_text select{
		width: 10%;
		margin: 0 0 0 46px;
	}
	
#form_send{
	width: 80%;
	margin: auto;
	text-align: center;
}

.send{
	transition: ease 0.5s;
	position: relative;
	margin: auto;
	margin-bottom: 80px;
}
	
	.send input{
	width: 400px;
	height: 60px;
	 background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	color: #fff;
	border: none;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 23px;
	font-weight: bold;			
	letter-spacing: 0.2rem;
	text-align: center;
	border-radius: 50px;
	margin: auto;
	}


	/*申込矢印設定*/
	
	 .send::after {
  content: '';
		 display: block;
		color: #fff;
		 line-height: 10;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 23px;
		 right: 480px;
	 /*矢印の形状*/
    width: 0.6vw;
    height: 0.6vw;
    border-top: 2.6px solid #fff;
    border-right: 2.6px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
	
	.send:hover::after{
		right: 450px;
	}


#footer{
	width: 100%;
	height: 200px;
	 background: linear-gradient(to right, #057DB4 , #036EB7 15%, #182987 50%, #1D2087);
	margin: auto;
}

.footer_img{
	display: none;
}
	
	.footer_img_pc{
		width: 350px;
		padding-top: 50px;
		display: inherit;
		position: relative;
		left: 150px;
	}

	
	.footer_pc{
		width: 40%;
		display: flex;
		min-width: 700px;
		margin: 0;
		text-align: right;
		position: relative;
		left: 780px;
		bottom: 112px;
		font-size: 22px;
		font-weight: bold;
		letter-spacing: 0.12rem;
	}
	
.copyright{
	font-size: 13px;
	text-align: center;
	margin: auto;
	margin-top: -60px;
}

.footer_nav{
	width: 50%;
	min-width: 50%;
	max-width: 60%;
	display: flex;
}

.top, .bottom{
	display: none;
}


.footer_nav_item{
	display: inline;
}

.footer_nav_item a{
	display: inline;
}




	
		.title_c{
	font-size: 26px;
	font-weight: bold;
	color: #182987;
	text-align: center;
	-webkit-text-stroke: 0.1px;
	height: 30px;
	letter-spacing: 0.14em;
	padding-top: 0px;
	position: relative;
	top: 10px;
	}

.title_c::after{
    content: "";
    display: block;
    width: 14%;
    height: 3px;
    background: #FFEA2F;
    position: relative;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
.kakunin_page{
		width: 70%;
		min-width: 800px;
		margin: auto;
		margin-top: 140px;
		position: relative;
	}
	
	.kakunin_page p{
		width: 200px;
		display: flex;
		justify-content: space-between;
		margin: auto;
		font-weight: bold;
		color: #182987;
		font-size: 15px;
		position: relative;
		top: 22px;
		left: -50px;
	}
	
	
	.kakunin_page dd{
		display: flex;
		justify-content: space-between;
		width: 26vw;
		min-width: 200px;
	font-size: 15px;
		border-bottom: 2px solid #9B9B9B;
		position: relative;
		top: 25px;
		left: 0vw;
	}
	
	.kakunin_page dd:last-of-type{
		position: relative;
		top: 70px;
	}

	.form_text1 label{
		width: 200px;
		font-weight: bold;
		color: #182987;
		font-size: 20px;
		margin-left: -90px;
		position: relative;
		left: -50px;
	}

	
	.conform-btnbox{
		width: 70%;
		height: 240px;
		margin: 0 auto;
		display: flex;
		position: relative;
		top: 100px;
		left: 100px;
		justify-content: center;
		
	}
	
	
	.kakunin_back{
		border: none;
		position: relative;
		transition: all 0.4s;
		margin-right: 70px;
	}
	
	.kakunin_back input{

		width: 330px;
		height: 50px;
		color: #fff;
		background-color: #182987;
		border-radius: 50px;
		border: none;
		margin: auto;
		padding-right: 30px;
		font-size: 18px;
		letter-spacing: 0.16rem;
		font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif, "Segoe UI", sans-serif;
		position: relative;
		transition: all 0.4s;
		margin-right: 70px;
	}
	
	.kakunin_back input:hover{
		background-color: #2854BB;
	}
	
	.kakunin_back::after{
		content: '';
		color: #fff;
		line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 18.6px;
		 right: 230px;
	 /*矢印の形状*/
    width: 0.6vw;
    height: 0.6vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
	}
		.kakunin_back:hover::after{
		right: 180px;
	}
	
	
	.kakunin_send{
		width: 330px;
		height: 50px;
		border: none;
		position: relative;
		transition: all 0.4s;
		margin: 0;
	}
	
	.kakunin_send input{
		width: 330px;
		height: 50px;
		color: #fff;
		background-color: #FC8014;
		border-radius: 50px;
		border: none;
		font-size: 18px;
		letter-spacing: 0.16rem;
		font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', sans-serif, "Segoe UI", sans-serif;
		position: relative;
		transition: all 0.4s;
		margin: 0;
		margin-left: 30px;
	}
	
	.kakunin_send::after{
		content: '';
		color: #fff;
		line-height: 1;
	  /*絶対配置で矢印の位置を決める*/
		 position: absolute;
		 top: 18.6px;
		 right: 160px;
	 /*矢印の形状*/
    width: 0.6vw;
    height: 0.6vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
	}
	.kakunin_send input:hover{
			background-color: #FFA251;
	}
	
	.kakunin_send:hover::after{
		right: 110px;
;
	}


	#complete-top{
	width: 100%;
	margin-top: 160px;
}
	
.title_b{
	font-size: 30px;;
	font-weight: bold;
	color: #182987;
	text-align: center;
    position: relative;
	-webkit-text-stroke: 0.3px;
	height: 30px;
	letter-spacing: 0.1em;
	z-index: -1
}


.title_b::after{
    content: "";
    display: block;
    width: 6vw;
    height: 5px;
    background: #FFEA2F;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}

.complete-text_all{
	display: none;
}

.complete-text{
	display: none;
}

.complete-text2{
	display: none;
}

.complete_img{
	display: none;
}

	.complete-text_all_pc{
		background-color: #fff;
		margin-top: 80px;
		display: inherit;
	}
	
	.complete-text_pc{
	color: #182987;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align: center;
	font-size: 20px;
		font-weight: bold;
	padding-top: 40px;
	letter-spacing: 0.15rem;
	line-height: 35px;
		margin-top: 30px;
		display: inherit;
	}
	
	
	
.complete-text2_pc{
	text-align: center;
	font-size: 14px;
	letter-spacing: 0.08rem;
	line-height: 27px;
	padding-bottom: 40px;
	display: inherit;
	margin-top: 0px;
}

.complete_img_pc{
	width: 320px;
	margin: auto;
	padding-bottom: 50px;
	display: inherit;
}
	
.back_top{
	width: 250px;
	height: 42px;
	margin: auto;
	background-color: #FC8014;
	border-radius: 20px;
	text-decoration: none;
	color: #fff;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 40px;
	transition: 0.3s all;
}
	
	.back_top:hover{
		background: #FFAC64;
	}

.back_button{
	padding-top: 8px;
}

.back_button a{
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.12rem;
}

	.back_button::before{
		content: '';
		color: #fff;
		line-height: 1;
		position: absolute;
		width: 8px;
		height: 8px;
		top: 15px;
		right: 50px;
		border-top: 2px solid #fff;
    border-right: 2px solid #fff;
		transform: rotate(45deg);
		transition: ease .3s;
	}
	
	.back_button:hover::before{
		right: 30px;
	}

	
	.last{
		text-align: center;
		font-size: 20px;
		
	}
	
	@media screen and (min-width:785px){
		.tuyomi3pc, .tuyomi4pc, .tuyomi7pc, .tuyomi8pc{
			display: none;
		}
		.tuyomi3, .tuyomi4, .tuyomi7, .tuyomi8{
			display: inherit;
		}
	}
	
	@media screen and (min-width:1174px){
		.tuyomi3, .tuyomi4, .tuyomi7, .tuyomi8{
			display: none;
		}
		
		.tuyomi3pc, .tuyomi4pc, .tuyomi7pc, .tuyomi8pc{
			display: inherit;
		}
	}
	
	@media screen and (min-width:1558px){
		.tuyomi5, .tuyomi6, .tuyomi7pc, .tuyomi8pc{
			display: none;
		}
		.tuyomi5pc, .tuyomi6pc, .tuyomi7, .tuyomi8{
			display: inherit;
			margin-left: 2px;
		}
	}