@charset "utf-8";
/* 全体の初期スタイル調整 */
*{
    margin:0;
    padding: 0;
}
img{
    width:100%;
    height:auto;
}
li,p{
	line-height: 20px;
}
html{
    font-size: 62.5%;/*(=10px)*/
}
body{
    /*font-size: 1.2rem;*/
	font-family: 'Noto Sans JP', 'PT Sans', sans-serif;
	color:#4682B4;
}
/*--------------------------
	共通の設定
-------------------------- */



a:link, a:visited, /*a:hover,*/ a:active {
  color:#3E4550;
}


@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(-64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* フェードイン用のCSS */
/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all 1s ease-out;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease-out;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease-out;
 }
.flow1{
	transition-delay: .2s;
}
.flow2{
	transition-delay: .4s;
}
.flow3{
	transition-delay: .6s;
}


/*ハンバーガーicon設置*/
#toggle {
	display: block;
	text-align: center;
	width: 55px;
	height: 55px;
	position: fixed;
	top: 10px;
	right: 50px;
	z-index:1001;
	color: #fff;
	cursor: pointer;
	
		/*	アイコン下部に文字がある場合追加
					background: #bcc5d8;
					display: flex;
					justify-content:center;
					align-items: center;
					flex-direction: column;*/
	}

/*グローバルナビ*/
/*spのg_nav設定（open状態）*/
.toggleWrap {
	background-color: rgba(21,21,21,.7);
	padding: 50px 15px 10px 15px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
.toggleWrap a{
	color:#FFFFFF;
}

.mainNav li {
	list-style-type: none;
}
.navItem {
	display: block;
	text-decoration: none;
	color: #f66;
    line-height: 10rem;
	text-align: center;
	font-size: 1.8rem;
	position: relative;
}
.navItem:hover {
	/*color: #f66;*/
	font-weight: bold;
}
.navItem::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #4682B4;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.navItem:hover::after {
  transform: scale(1, 1);
}

.navItem2{
		display: block;
    	line-height: 4rem;
		text-align: center;
		font-size: 1.8rem;
		position: relative;
		margin:20px auto 0;
		width:70%;
		background:#4682B4;
		border-radius: 60px;
		text-decoration: none!important;
		color:#fff!important;
		padding:10px 30px;
	}
	.navItem2::before{
		content: '';
		display: inline-block;
		width: 30px;
		height: 20px;
		background: url("../img/mail_icon.png") no-repeat;
		background-size: contain;
		vertical-align: middle;
		margin-right: .5em;
	}
	.navItem2:hover{
		background:#2E5678;
	}

/*spのg_nav設定（hidden状態）*/
		.hide {
			opacity: 0;
			visibility: hidden;
			overflow: hidden;
		}

		.animation {
			transition-property:visibility;
			transition-duration: .5s;
			transition-timing-function: ease-in;
		}
		.no-scroll {
			overflow: hidden;
		}



/*メインの設定 */
main section {
	padding:35px;
	/*border-bottom: solid 1px #ccc;*/
}

main .inner {
/*///////////////////////
    height: 100vh;
	
    ↑↑↑↑ページの高さ (仮） 
            重要！！制作時は高さをなくすこと↑↑↑↑
/////////////////////////////////////*/

	padding:0 0 50px;
}

main .inner p{
	font-size:16px;
	line-height: 35px;
}

main.privacy .inner,main.about .inner{
	width:80%;
	margin:0 auto;
}
main.privacy .inner{
	padding-top:120px;
}
main.about .inner{
	padding-top:100px;
}
main.privacy .inner h3,main.about .inner h3{
	color:#333;
	margin-bottom: 10px;
}
main.privacy .inner p,main.about .inner p{
	color:#333;
	margin-bottom: 30px;
}
main.privacy .inner ol,main.about .inner ol{
	margin-bottom: 30px;
}
main.privacy .inner li,main.about .inner li{
	color:#333;
	margin-left:1em;
}

h1{
	font-family:Bahnschrift;
}

.qa{
	background:#ecf7dc;
	border-radius: 30px 30px 0 0;
}

/* アコーディオンメニュー全体のサイズ・位置 */
.ac {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* クリック領域 */
.ac-parent {
	position: relative;
	font-weight:500;
	padding-left: 4em;
	padding-right: 6em;
	display: flex;
	align-items: center;
	letter-spacing: .2em;
	font-size:130%;
  height: 100px;
  border-bottom: 1px solid #ccc;
  background-color: #F9F9F9;
  color: #555;
  text-align: left;
  line-height: 20px;
  cursor: pointer;
}

/* クリックしたら表示される領域 */
.ac-child {
	position: relative;
  display: none;
  padding: 2em 2em 2em 4em;
	color: #333;
	line-height: 1.8em;
	font-size:120%;
  background-color: #fff;
  text-align: left;
}

.ac-parent:before,.ac-child:before {
    display: block;
    position: absolute;
    top: 40%;
    left: 1em;
    border-radius: 50%;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 18px;
}
.ac-parent:before {
    content: "Q";
    color: #fff;
    background: #4682B4;
}
.ac-child:before {
    content: "A";
    color: #4682B4;
    border: 2px solid #4682B4;
	font-weight: 900;
}

/* 擬似要素で下三角形を作成 */
.ac-parent:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: 30px;
	width: 10px;
	height: 10px;
	border-right: 3px solid #4682B4;
	border-bottom: 3px solid #4682B4;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

/* オープン時にopenクラスを付与 */
.ac-parent.open:after {
	transform: rotate(225deg);
}

.header_logo{
	display:none;
}
.header_logoSp{
	position:absolute;
	top:1%;
	left:3%;
}
.title_top img{
	width:100%;
	height:30vh;
	object-fit: cover;
}
	.fv{
		background: url("../img/top_img.jpg")30% 30% no-repeat;
		width:100%;
		height:100vh;
		position:relative;
	}
	.fv h1{
		position:absolute;
		top:15%;
		left:10%;
		color:#fff;
		font-size:18px;
		font-family: "Zen Kaku Gothic New", sans-serif;
		letter-spacing: .8rem;
		line-height:2em;
	}

.fv_btn{
	position:absolute;
	top:40%;
	left:35%;
}
.form_btn{
		margin: 60px auto 0;
	}
	.fv_btn a,.form_btn a{
    background: linear-gradient(0deg, rgba(255,130,93,1), rgba(246,211,101,1));
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 250px;
    padding: 15px 35px 15px 28px;
    font-family: "Noto Sans Japanese";
	font-size:18px;
	letter-spacing: .5rem;
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: .5s;
    font-weight: 900;
}
.fv_btn a:hover,.form_btn a:hover {
    background: #ff4500;
    border-radius: 9999px;
    color: #FFF;
}
.fv_btn a:after,.form_btn a:after {
    content: '';
    width: 8px;
    height: 8px;
    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: .5s;
}
.fv_btn a:hover:after,.form_btn a:hover:after {
    border-color: #FFF;
}
.fv_btn a:visited,.form_btn a:visited {
    color: #FFF;
}

	/*.fv_btn,.form_btn{
		width:220px;
		padding:15px;
		background: linear-gradient(0deg, rgba(255,130,93,1), rgba(246,211,101,1));
		border-radius:100px;
		text-align: center;
		font-size:14px;
		letter-spacing: .5rem;
		transition: .5s;
	}
	.fv_btn a,.form_btn a{
		display:block;
		color:#fff;
		text-decoration: none;
	}
	.fv_btn a:visited,.form_btn a:visited{
		color:#fff;
	}
	.fv_btn{
		position:absolute;
		top:40%;
		left:35%;
	}
	.form_btn{
		margin: 60px auto 0;
	}
	.fv_btn:hover,.form_btn:hover{
		transform: scale(1.1,1.1);
	}
	.arrow {
		padding-left:25px;
		position: relative;
		display: inline-block;
		width: 12.5px;
		height: 12px;
	}
	.arrow::before,
	.arrow::after {
		content: "";
		position: absolute;
		top: calc(50% - 2px);
		right: 0;
		width: 12px;
		height: 4px;
		border-radius: 9999px;
		background-color: #ffffff;
		transform-origin: calc(100% - 2px) 50%;
	}
	.arrow::before {
		transform: rotate(45deg);
	}
	.arrow::after {
		transform: rotate(-45deg);
	}*/
	.scroll_down{
		display:none;
	}
	.sec_titile,.pp_titile{
		letter-spacing: .8rem;
		text-align: center;
		margin-bottom: 50px;
		font-size:23px;
	}
	.serv_item1{
		margin-bottom: 80px;
	}
	.serv_img img{
		border-radius: 20px;
	}
	.serv_img{
		width:100%;
		height:auto;
		margin: 0 auto 40px;
	}
	.serv_txt1{
		background:url("../img/serv_no1.png")no-repeat 95% 40%;
		background-size:60px;
		margin-bottom: 20px;
	}
	.serv_txt2{
		background:url("../img/serv_no2.png")no-repeat 95% 40%;
		background-size:60px;
		margin-bottom: 20px;
	}
	.serv_txt1 h3,.serv_txt2 h3{
		text-align: center;
		margin-bottom:50px;
	}
	.serv_txt1 h3 span,.serv_txt2 h3 span{
		font-weight: normal;
		color:#fff;
		background:#4682B4;
		border-radius: 60px;
		padding: 10px 20px;
		font-size:18px;
	}
	.serv_txt1 figure{
		width:200px;
		margin-bottom:20px;
	}
	.serv_txt2 figure{
		width:100px;
		margin-bottom:20px;
		margin-left:10px;
	}

	.flow{
		background:url("../img/bg_dots.png");
		padding:50px 5px;
		border-radius:20px;
	}
	.flow_title{
		text-align: center;
		margin-bottom: 40px;
	}
	.flow_title span{
		background: #fff;
		border-radius: 60px;
		padding:10px 50px;
		letter-spacing: .5rem;
	}
	.flow_item{
		width:90%;
		background:#fff;
		border-radius:20px;
		text-align: center;
		padding:30px 20px;
		margin:0 auto;
		position:relative;
	}
	.flow_item h3{
		font-size:20px!important;
	}
	.flow_No{
		position: absolute;
		top: -25px;
		bottom: 0;
		left:5px;
		width:60px;
		height:60px;
		color:#fff;
		background:#FFA15D;
		border-radius:50%;
		line-height:20px!important;
		padding:10px 5px;
		vertical-align: middle;
	}
	.flow_img{
		margin:30px auto;
	}
	.flow_img img{
		width:auto;
		height:120px;
	}
	.flow_bal{
		width:200px;
		color:#fff;
		text-align: center;
		position: relative;
		padding: 1rem 0;
		margin:0 auto 30px;
	}
	.flow_bal::before,
	.flow_bal::after {
    	position: absolute;
    	top: 1.5rem;
    	height: 2.5rem;
    	content: '';
	}
	.flow_bal::before {
    	border-left: solid 3px;
    	left: 0;
    	transform: rotate(-30deg);
	}
	.flow_bal::after {
    	border-right: solid 3px;
    	right: 0;
    	transform: rotate(30deg);
	}
	.arrow_down {
		display: inline-block;
		vertical-align: middle;
		color: #fff;
		line-height: 1;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent;
		border-width: 1em 1em;
		border-top-color: currentColor;
		border-bottom: 0;
		margin:20px auto;
		
}
	.arrowD_box{
		text-align: center;
	}

	.copyright{
		color:#666;
	}
	.copyright a{
		text-decoration: none;
		transition: .3s;
	}
	.copyright a:hover{
		opacity: .5;
	}

.price_SP {
    border: 0;
    width:100%;
  }
  .price_SP th{
    background-color: #167F92;
    display: block;
    border-right: none;
	  font-size:17px!important;
  }
  .price_SP thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
	.price_SP tr {
  background-color: #e6f2f5;
  padding: .35em;
  border-bottom: 2px solid #fff;
	display: block;
    margin-bottom: .625em;
}
  .price_SP td {
    border-bottom: 1px solid #bbb;
    display: block;
	  font-size:17px;
	  font-weight: bold;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  .price_SP td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167F92;
  }
  .price_SP td:last-child {
    border-bottom: 0;
  }
	.price_SP thead tr{
  background-color: #167F92;
  color:#fff;
}
  .price_SP tbody th {
	background: #78bbc7;
    color: #fff;
	  padding:10px 0;
	  font-size:12px;
}
.price_PC{
	display:none;
}

/*管理士紹介・実績テーブル*/
#table01{
	width:100%;
	max-width: 1220px;
	margin-bottom: 80px;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
	width: 100%;
    display: block;
	text-align: left;
  padding: 24px 0;
  border: none;
}
#table01 th{
	font-size:16px;
}
#table01 td {
	color:#333;
    padding-top: 0;
	font-size:15px;
 }
#table01 li{
	margin-left:1.5em;
	font-size:15px;
	color:#4682B4;
}
#table01 li span{
	color:#333;
}
#table01 li:not(:last-child){
	margin-bottom: 1rem;	
}

.scroll-area {
	width: 100%;
	margin: 0 auto 100px;
	overflow-x: scroll;
}
#table02{
	width:500px;
  border-collapse: separate;
  border-spacing: 0;
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-bottom: 20px;
}

#table02 th,#table02 td{
  text-align: center;
	font-size:16px;
}
#table02 th{
	padding: 20px 0;
	background-color:#4682B4;
	color:#fff;
}
#table02 td{
	padding: 40px 0;
	color:#666;
}
#table02 th:first-child,#table02 td:first-child{
	padding:20px;
	text-align: left;
}
#table02 tr:nth-child(odd){
  background-color: #eee
}
#table02 tr:first-child>*:first-child{
    border-radius: 6px 0 0 0;
}
#table02 tr:first-child>*:last-child{
    border-radius: 0 6px 0 0;
}
#table02 tr:last-child>*:first-child{
    border-radius: 0 0 0 6px;
}
#table02 tr:last-child>*:last-child{
    border-radius: 0 0 6px 0;
}

/*お問い合わせフォーム*/
.c-form {
	max-width: 600px;
	margin: 50px auto;
}
.c-form__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-bottom: 20px;
}
.c-form__label,
.c-form__input {
	padding: 10px;
	font-size:16px;
}
.c-form__label {
	width: 90%;
}
.c-form__input {
	width: 90%;
	font-size: 16px;
	border: solid 1px #333;
	border-radius: 4px;
}
.c-form__input:focus-visible {
	outline: green auto 1px;
}
.c-form__required {
	color: #fff;
	font-size:70%;
	background-color: #f55555;
	border-radius: 4px;
	padding: 2px 5px;
	margin: 0 0 0 18px;
}
textarea.c-form__input {
	height: 160px;
}

.c-form__submit {
	text-align: center;
}

.c-form__submit button {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #4682B4;
	border: solid 1px #4682B4;
	border-radius: 4px;
	padding: 10px 70px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit button:hover {
	color: #4682B4;
	background-color: transparent;
}
.radio-2 {
    display: inline-block;
    flex-wrap: wrap;
    gap: .3em 2em;
    border: none;
	/*margin-right: 20%;*/
}

.radio-2 label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
	line-height: 2.5em;
	font-size:14px;
}

.radio-2 label::before,
.radio-2 label::after {
    border-radius: 50%;
    content: '';
}

.radio-2 label::before {
    width: 18px;
    height: 18px;
    border: 2px solid #dee5eb;
    box-sizing: border-box;
}

.radio-2 label::after {
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #dee5eb;
}

.radio-2 label:has(:checked)::after {
    background-color: #2589d0;
    animation: anim-radio-2 .3s linear;
}

.checkarea{
	margin:40px auto;
	text-align: center;
}
.checkarea span{
	padding-left:1rem;
}
.Customized-Item{
	font-size:13px;
	color:#333;
}
.Customized-Item-Checkbox {
  accent-color: #ff4500;
  transform: scale(1.5);
}

.thanks .pp_titile{
	font-size:24px;
}
.thanks_img{
	width:70%;
	margin:0 auto 20px;
}

@keyframes anim-radio-2 {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #2589d033;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radio-2 input {
    display: none;
}

@keyframes anim-radio-2 {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #2589d033;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radio-2 input {
    display: none;
}

/*フッターの設定*/
footer{
	background-color:#DFDFDF;
	padding:20px 0 10px;
}

footer .inner p{
	text-align: center;
	line-height: 2;
    font-weight: bold;
}

.footerArea{
	margin:10px 0 30px;
}

.footerNav{
	display:none;
}
.footerNav ul{
	display: flex;
	justify-content: space-around;
	list-style: none;
	margin: 0 20px 20px;
}
.footerNav ul li a{
	text-decoration: none;
}
.footerTitle a{
	text-decoration:none;
}

/*トップへ動くスクロールバー*/
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 50px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #5E6A7A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
	filter: drop-shadow(2px 2px 2px rgba(99, 99, 99, 0.8));
	opacity: 0;
  transition: all 0.65s;
}
.pagetop.isActive {
  opacity: 1;
  transition: all 0.65s;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #5E6A7A;
    border-right: 3px solid #5E6A7A;
    transform: translateY(20%) rotate(-45deg);
}


/*
--------------------------
	タブレット / iPad 599px(横)から900pxまでの設定 /
-------------------------- */

/* 599px以上に適応するスタイル */
@media screen and (min-width: 599px) {
	.fv h1{
		top:20%;
		left:12%;
		font-size:22px;
	}
	.fv_btn{
		top:40%;
		left:60%;
	}
	.fv_btn a,.form_btn a{
    font-size:18px;
    padding: 20px 50px 20px 38px;
	max-width: 450px;
}
	.fv_btn a:after,.form_btn a:after {
    width: 10px;
    height: 10px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}
	
	.ac {
  margin: 0 auto 100px;
}
	.ac-parent {
		line-height: 30px;
	padding-left: 5em;
}
		.ac-child {
	padding-left: 6em;
}
	.ac-parent:before,.ac-child:before {
    top: 35%;
    left: 1em;
    width: 40px;
    height: 40px;
    line-height: 35px;
}
#table01{
	margin-bottom: 100px;
}
	#table01 tr{
	display:flex;		
	}
#table01 th {
  width: 35%;
	padding: 30px 0px 30px 80px;
	letter-spacing: 1rem;
	font-size:18px;
}
#table01 td {
  width: 65%;
	padding: 30px;
	font-size:15px;
}
#table01 li{
	font-size:15px;	
}
	
.scroll-area {
	overflow-x: auto;
}
#table02{
	width:100%;
}
	
	.radio-2 {
	margin-right: 55%;
}
	.thanks_img{
	width:50%;
	margin:0 auto 40px;
}
	
	
}


/*
--------------------------
	タブレット / iPad 900px(横)から1025pxまでの設定 /
-------------------------- */

/* 900px以上に適応するスタイル */
@media screen and (min-width: 900px) {
a:link, a:visited, /*a:hover,*/ a:active {
  color:#3E4550;
}
	
li,p{
	line-height: 35px;
}
	
body{
        font-size: 1.6rem;
}	

	.title_top img{
	width:100%;
	height:50vh;
	object-fit: cover;
}
	
/*グローバルナビ*/
.toggleWrap {
	    background: none;
	    height: auto;
	    position: fixed;
	    padding: 20px 0;
	    margin-bottom: 20px;
	    /*background-color: rgba(21,21,21,.7);*/
}

.mainNav {
	    width: 100%;
	    margin: 0 auto;
	    display: flex;
		justify-content: flex-end;
	    /*justify-content: center;　メニュー中央寄せ*/
		position: relative;
}

.mainNav li {
	    /*width: 15%;*/
	    padding: 5px 15px;
	
}
.navItem{
		background:rgba(255,255,255,0.6);
		border-radius: 30px;
		color: #4682B4!important;
        line-height: 2em;
		padding:2px 15px;
		font-size:16px;
}
	.navItem2{
		margin-top:0;
		width:100%;
		font-size:14px!important;
		line-height: 1rem;
		padding:10px 15px;
	}
	
	.header_logo{
		display:block;
		width:280px;
		height: 80px;
		position: absolute;
		top:0;
		left:2%;
	}
	.header_logoSp{
		display:none;
	}
	
	.fv{
		background: url("../img/top_img.jpg") 30% 30% no-repeat;
		width:90%;
		height:95vh;
		border-radius: 0 60px 60px 0;
		margin-top:80px;
	}
	
.animation {
	    transition: none;
}
	
	.flex_fv{
		display:flex;
		justify-content: space-between;
	}
	
	.fv h1{
		top:20%;
		left:20%;
		font-size:22px;
	}
	.fv_btn{
		top:40%;
		left:60%;
	}
	.fv_btn a,.form_btn a{
    font-size:18px;
    padding: 15px 50px 15px 38px;
	max-width: 600px;
}
	
	.ac-parent {
	padding-left: 4em;
}
	.ac-child {
	padding-left: 5em;
}
	.Customized-Item{
	font-size:90%;
}
	
/* ↓↓ FVスクロールダウン ↓↓ */
	@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');
	html {
		scroll-behavior: smooth;
	}
	.scroll_down {
		display: block;
		position: relative;
		height: 80vh;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: cover;
		margin-right:80px;
	}
	.scroll_down:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 80%;
		background: linear-gradient(180deg,rgba(#4682B4, 0) 0, rgba(#4682B4, .8) 80%, rgba(#4682B4, .8) 100%);
	}
	.scroll_down a {
		display: inline-block;
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2;
		width: 13px;
		padding: 10px 15px 110px;
		color: #4682B4;
		font-size: 14px;
		font-family: 'Josefin Sans', sans-serif;
		line-height: 1;
		letter-spacing: .2em;
		text-transform: uppercase;
		text-decoration: none;
		writing-mode: vertical-lr;
		transition: .2s;
		overflow: hidden;
		margin: auto;
	}
	.scroll_down a:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 2px;
		height: 100px;
		background: #ddd;
	}
	.scroll_down a:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 2px;
		height: 100px;
		background: #4682B4;
	}
	.scroll_down a:hover {
		opacity: .5;
	}
	#type01 a:after {
		animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
	}
	@keyframes sdl01 {
		0% {
			transform: scale(1, 0);
			transform-origin: 0 0;
		}
		50% {
			transform: scale(1, 1);
			transform-origin: 0 0;
		}
		50.1% {
			transform: scale(1, 1);
			transform-origin: 0 100%;
		}
		100% {
			transform: scale(1, 0);
			transform-origin: 0 100%;
		}
	}
/* ↑↑ FVスクロールダウン ↑↑ */
	
/* spで非表示にしていたg_navを表示させる */
.hide {
	    opacity: 1;
	    visibility: visible;
}
/*tb/pcでハンバーガーiconを消す*/
#toggle {
	    display: none;
}

    
/*メインの設定 */   
main .inner {
	    padding:20px 40px;
}
main.privacy .inner{
	padding-top:120px;
}
main.about .inner{
	padding-top:100px;
}
main.privacy .inner p,main.privacy .inner li{
	font-size:12px;
	line-height: 2em;
	color:#333;
}
	.sec_titile,.pp_titile{
		font-size:28px;
	}
	.sec_titile{
		margin-top: 80px;
		margin-bottom: 40px;
	}
	
	.price_SP{
		display:none;
	}
	.price_PC{
		display:block;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
	max-width: 900px;
  table-layout: fixed;
		margin-bottom: 120px;
		font-size:110%;
}

.price_PC tr {
  background-color: #e6f2f5;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
.price_PC th,
.price_PC td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
.price_PC th {
	width:20%;
}
.price_PC thead tr{
  background-color: #167F92;
  color:#fff;
}
.price_PC tbody th {
    background: #78bbc7;
    color: #fff;
	width:40%;
}
.price_PC .txt,.price_PC .price{
  text-align: right;
  color: #167F92;
  font-weight: bold;
}
.price_PC .non{
  background:#fff
}
	
.radio-2 {
	margin-right: 40%;
}
.c-form{
	margin: 80px auto;
	}
.c-form__submit button {
	padding: 20px 200px;
}
	
/*フッターの設定*/
footer .inner{
        padding: 20px 0 100px;
        font-size: 2rem;
        line-height: 2;
    }
	
	.footerArea{
		display:flex;
		justify-content: space-between;
	}
	.footerNav{
		display:block;
	}
	.fotNavItem{
		padding:0 30px;
		transition: 0.3s;
	}
	.fotNavItem:hover{
		color:#FFFFFF;
	}
	
}

/*--------------------------
	PC /1025px以上の設定/
-------------------------- */
@media screen and (min-width:1025px) {
	.header{
		height:80px;
	}
	
	/*メインの設定 */
main section {
	padding:40px 40px 0 40px;
	/*border-bottom: solid 1px #ccc;*/
}
	
	main .inner,
	footer .inner,
	.fv .inner{
		width: 80%;
		margin: 0 auto;
	}
	
	main.privacy .inner,main.about .inner{
		width: 60%;
		margin: 0 auto;
	}

	.mainNav li {
	    width: 15%;
	    padding: 5px 15px;
	
	}
	
	.navItem2{
		width:100%!important;
		background:#4682B4;
		padding:13px 20px;
		transition: .5s;
		margin:0!important;
		line-height: 15px;
		font-size: 1.6rem;
	}

	.fv{
		background: url("../img/top_img.jpg") 30% 30% no-repeat;
		width:90%;
		height:95vh;
		border-radius: 0 60px 60px 0;
		margin-top:20px;
	}
	
	.fv h1{
		top:20%;
		right:5%;
		left:35%;
		font-size:26px;
		letter-spacing: 1rem;
		line-height:2em;
	}
	.fv_btn{
		width:280px;
		top:55%;
		left:70%;
	}
	.fv_btn a,.form_btn a{
		font-size:18px;
		transition: .5s;
		font-weight: 500;
	}
	.form_btn{
		margin: 60px auto 0;
	}
	/*.fv_btn,.form_btn{
		width:280px;
		padding:15px;
		background: linear-gradient(0deg, rgba(255,130,93,1), rgba(246,211,101,1));
		border-radius:100px;
		text-align: center;
		font-size:18px;
		letter-spacing: .5rem;
		transition: .5s;
	}
	.fv_btn{
		position:absolute;
		top:55%;
		left:65%;
	}
	.form_btn{
		margin: 60px auto 0;
	}
	.fv_btn:hover,.form_btn:hover{
		transform: scale(1.1,1.1);
	}*/
	.scroll_down {
		margin-right:90px;
	}
	
	.flex{
		display:flex;
		justify-content: space-between;
	}
	.flex2{
		display:flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	
	.pp_titile{
		letter-spacing: 1.2rem;
		margin-bottom: 80px;
	}
	.sec_titile{
		letter-spacing: 2rem;
		margin-bottom: 100px;
	}
	.serv_item2{
		display:flex;
		justify-content: space-between;
		margin-bottom: 60px;
	}
	.serv_item1{
		display:flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		margin-bottom: 120px;
	}
	.serv_img{
		flex-shrink: 0; 
		width:50%;
		height:auto;
	}
	.serv_txt1{
		margin-left:100px;
		background:url("../img/serv_no1.png")no-repeat 95% 20%;
		background-size:90px;
	}
	.serv_txt2{
		margin-right:100px;
		background:url("../img/serv_no2.png")no-repeat 95% 25%;
		background-size:90px;
	}
	.serv_txt1 h3,.serv_txt2 h3{
		text-align: left;
		margin-bottom:50px;
	}
	.serv_txt1 h3 span,.serv_txt2 h3 span{
		padding: 10px 40px;
	}
	.serv_txt1 figure{
		width:250px;
		margin-bottom:20px;
	}
	.serv_txt2 figure{
		width:150px;
		margin-bottom:20px;
	}
	
	.flow{
		padding:80px 10px;
		border-radius:30px;
	}
	.flow_title{
		margin-bottom: 70px;
	}
	.flow_title span{
		padding:10px 80px;
		letter-spacing: 1rem;
	}
	.flow_item{
		width:300px;
		padding:20px;
		margin:0 20px;
		position:relative;
	}
	.flow_item:not(:nth-child(5)):before{
		content: "";
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: -35px;
		width: 0;
		height: 0;
		border-top: 14px solid transparent;
		border-bottom: 14px solid transparent;
		border-left: 16px solid #fff;
	}
	.flow_txt{
		font-size:14px!important;
		line-height:30px;
		text-align: left;
	}
	.flow_No{
		position: absolute;
		top: -35px;
		bottom: 0;
		left:5px;
		width:70px;
		height:70px;
		color:#fff;
		background:#FFA15D;
		border-radius:50%;
		line-height:24px!important;
		padding:10px 5px;
		vertical-align: middle;
	}
	.flow_img{
		margin:30px auto;
	}
	.flow_img img{
		width:auto;
		height:120px;
	}
	.flow_bal{
		width:250px;
		color:#fff;
		text-align: center;
		position: relative;
		padding: 1rem 0;
		margin:0 auto 25px;
	}
	.flow_bal::before,
	.flow_bal::after {
    	position: absolute;
    	top: 1.5rem;
    	height: 2.5rem;
    	content: '';
	}
	.flow_bal::before {
    	border-left: solid 3px;
    	left: 0;
    	transform: rotate(-30deg);
	}
	.flow_bal::after {
    	border-right: solid 3px;
    	right: 0;
    	transform: rotate(30deg);
	}
	.arrow_down{
		display:none;
	}
	
	.ac-parent{
		line-height: 30px;
		font-size:100%;
		padding-left: 5em;
	}
	.ac-child{
		font-size:90%;
		padding-left: 6em;
	}
	.ac-parent:before,.ac-child:before {
    top: 30%;
    left: 1em;
    width: 40px;
    height: 40px;
    line-height: 35px;
}
	
}
	
	
	.footerNav ul{
	display: flex;
	justify-content: space-around;
	list-style: none;
	margin: 0 20px 10px;
	}
	.footerNav ul li a{
		text-decoration: none;
	}
}