@charset "UTF-8";
/* CSS Document */
body{
	background-color: #FFFFFF;
	font-family: "noto-sans-cjk-jp", sans-serif;
	/* font-family: "游ゴシック", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, sans-serif; */
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	color: #111B46;
	position: relative;
}
html {
	scroll-behavior: smooth;
}



html,body,h1,h2,h3,h4,ul,ol,li,p,span,iframe,footer,address,h1,h2,h3,h4,h5,dl,dt,dd{
  margin: 0;
  padding:0;
}
@media screen and (max-width: 575px){
	.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
		padding-right: var(--bs-gutter-x,1.75rem);
		padding-left: var(--bs-gutter-x,1.75rem);
	}
}
@media (prefers-reduced-motion: no-preference) {
	:root {
	  scroll-behavior: auto;
	}
}
a{
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
a:focus {
	outline: none;
}
a:hover{
	/* text-decoration: underline; */
	color: #6f6f6f;
}

a img{
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.link_under:hover{
	text-decoration: underline;
}
.underline{
	text-decoration: underline;
}

/*ホバーエフェクト
------------------------------*/
.zoom-out-img {
	overflow: hidden;
}
.zoom-out-img img {
	display: block;
	transition-duration: 0.5s;
}
.zoom-out-img:hover img {
	transform: scale(1.5);
	transition-duration: 0.5s;
	opacity: 0.6;
}

.resizableIframe {
	overflow: hidden;
}
figure {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
figure {
    margin: 0 0 0;
}
figure:hover {
	opacity: .5;
}



/* list
------------------------------*/
li {
	list-style-type: none;
}

ul.circle_list,
ul.common_list,
.note_list {
	/* padding-left: 1em; */
	text-indent: -1em;
}


ul.triangle_list li,
ol.number_list li,
ul.circle_list li,
ul.common_list li{
	margin-bottom: 5px;
}

ul.common_list li{
	position: relative;
	padding-left: 1em;
}
ul.common_list li a{
	position: relative;
}
.common_list li::before {
	content: "・";
	/* position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) ;
	-webkit-transform: translateY(-50%); */
}

.note_list {
	margin-left: 15px;
}
.note_list li::before {
	content: "※";
}
.circle_list li::before {
	content: "● ";
}




/* space
------------------------------*/

.contents_space{
	padding-top: 60px;
}
.contents_space.second{
	padding-top: 30px;
}
.contents_space.last{
	padding-bottom: 50px;
}
.color-inner{
	padding: 40px 0 ;
}

/* font
------------------------------*/
.marker{
	background:linear-gradient(transparent 60%, #FFEF8A 60%);
}

 

/* text
------------------------------*/

.lead_text{
	font-size: 18px;
}



/* section
------------------------------*/
/* button
------------------------------*/
.grad_button {
	display: inline-block;
	max-width: 100%;
	width: 668px;
	padding: 20px 10px;
	border-radius: 100vh;
	/* border-radius: 20px; */
	background: linear-gradient(90deg, #2e9b62 0%, #2c5f8f 100%);
	color: #fff;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
}
/* メインテキスト */
.grad_button .main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  gap: 10px;
}

/* 上の小さいテキスト */
.grad_button .sub-text {
  display: block;
  font-size: 16px;
  align-items: center; /* 線を上下中央 */
  display: flex; /* 文字と線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}

.grad_button .sub-text::before,
.grad_button .sub-text::after {
    background-color: #ffffff;
    border-radius: 5px;
    content: "";
    height: 2px;
    width: 23px;
}
.grad_button .sub-text::before {
  margin-right: 5px; /* 文字との余白 */
  transform: rotate(60deg); /* 傾ける */
}
.grad_button .sub-text::after {
  margin-left: 5px; /* 文字との余白 */
  transform: rotate(-60deg); /* 傾ける */
}


/* ホバー */
.grad_button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #FFF;
}
.contact_area .grad_button{
	width: 380px;
	font-weight: 600;
}
.contact_area .grad_button i{
	margin-right: .3em;
}

.sample_button{
	display: inline-block;
	width: 100%;
	max-width: 668px;
	padding: 15px 10px;
	border-radius: 100vh;
	background: linear-gradient(90deg, #2e9b62 0%, #2c5f8f 100%);
	color: #fff;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	line-height: 1;
}

.sample_button::before{
	font-family: 'Font Awesome 6 Free';
	font-size: 21px;
	font-weight: 900;
	/* padding-left: .3em; */
	content: '\f0a9';
	color: #FFF;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%) ;
	-webkit-ransform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	
}
a:hover .sample_button::before{
	right: .8em;
}
/* .sample_button span{
	padding-right: 21px;
} */
.grad_button.form_submit,.grad_button.form_reset{
	max-width: 100%;
	width: 220px;
	font-weight: 600;

	padding: 15px 30px;
	border: none;
	outline: none;
	box-shadow: none;
}
.grad_button.form_submit{
 letter-spacing: 1.5em;
  text-indent: 1.5em;

}
.grad_button.form_submit:disabled{
	opacity: 0.6;
}
.grad_button.form_submit:disabled:hover{
    transform: translateY(0px);
}
.grad_button.form_reset{
	background-color: #111B46!important;
background: none;
}

/* bg
------------------------------*/
.kv_bg{
	background-image: url(./img/kv_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 95px;
	position: relative;
}
.bg_gray{
	background-color: #EEEEEE;
}
.header-shape {
	position: relative;
	background-color: #EEEEEE;
	min-height: 120px;
}
.header-shape::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 60px solid transparent;
	border-right: 60px solid transparent;
	border-top: 30px solid #EEEEEE; /* 下の背景色に合わせる */
}
.bg_sky{
	background-color: #ECF4F8;
}
.bg_img01{
	background-image: url(./img/bg_img01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.contact_area_grad{
	background: #6DBCD9;
	background: linear-gradient(90deg, rgba(109, 188, 217, 1) 0%, rgba(137, 190, 164, 1) 100%);
}
.contact_area{
		color: #FFF;
}

.bg_grid{
	background-image: url(./img/bg_grid.png);
	background-repeat: repeat;
	background-position: center;
	background-size: 18px 18px;
}
.bg_img02{
	background-image: url(./img/bg_img02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

}

.consult-section {
  position: relative;
  background: url("./img/bg_img03.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px;
  min-height: 500px;
  font-family: "uddigikyokasho-pro", sans-serif;
font-weight: 400;
font-style: normal;
}

/* 斜め */
.consult-section::before,
.consult-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  background: #fff;
  transform: skewY(-3deg);
  z-index: 2;
}

.consult-section::before {
  top: -80px;
}

.consult-section::after {
  bottom: -80px;
}

.consult-section .inner {
  position: relative;
  z-index: 3;
  max-width: 800px; /* ★横はみ出し防止 */
  margin: 0 auto;
}
.consult-section p {
  color: #fff;
  /* margin-bottom: 30px; */
  line-height: 1.5;
  font-size: clamp(1.375rem, -286.25rem + 600vw, 1.75rem);
  letter-spacing: 0.05em;
}

.consult-section .inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* bottom: -60px; */
  width: 2px;
  /* height: 80px; */
  background: #fff;
  opacity: 0.8;
   bottom: -100px;
  height: 120px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}
/* color
------------------------------*/
.red{
	color: #D43444;
}
.green{
	color: #1F9259;
}

/* title
------------------------------*/

.tit{
	font-size: 21px;
	font-weight: 600;
}
.tit_sub{
	font-size: 18px;
		font-weight: 600;
}
.tit span{
	font-size: 120%;
}
.tit_nayami{
	font-size: 24px;
}
.tit_nayami span{
	font-size: 120%;
}
.tit_border_d{
	border-bottom: 2px dashed #111B46;
	padding-bottom: 15px;
}
.tit_slash {
	font-size: 21px;
	align-items: center; /* 線を上下中央 */
	display: flex; /* 文字と線を横並び */
	justify-content: center; /* 文字を中央寄せ */
	font-weight: bold;
}
.tit_slash::before,
.tit_slash::after {
	background-color: #111B46;
	border-radius: 5px;
	content: "";
	height: 2px;
	width: 25px;
}
.tit_slash::before {
  margin-right: 4px;
  transform: rotate(60deg); /* 傾ける */
}
.tit_slash::after {
  margin-left: 4px; 
  transform: rotate(-60deg); /* 傾ける */
}

.tit_slash::after {
    margin-left: 4px;
}

.contact_area .tit_slash {


}

.cta-banner {

	align-items: center; /* 線を上下中央 */
	display: flex; /* 文字と線を横並び */
	justify-content: center; /* 文字を中央寄せ */
	font-weight: bold;
}
.cta-banner::before,
.cta-banner::after {
	background-color: #FFF;
	border-radius: 5px;
	content: "";
	height: 2px;
	width: 70px;
}

.cta-banner::before {
  margin-right: 4px;
  transform: rotate(60deg); /* 傾ける */
}
.cta-banner::after {
  margin-left: 4px; 
  transform: rotate(-60deg); /* 傾ける */
}

.cta-banner h2 {
  font-size:clamp(1.375rem, -382.125rem + 800vw, 1.875rem);
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: clamp(1rem, -94.875rem + 200vw, 1.125rem);
  font-weight: 400;
  opacity: 0.9;
}


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


/* space
------------------------------*/








/* box
------------------------------*/
.logo{
	position: absolute;
	top: 15px;
	left: 15px;
	width: 192px;
	max-width: 40%;
}
.kv_bg .features{
	background-color: #FFF;
	padding: 20px;
	border-radius: 10px;
	color: #125634;
	font-weight: bold;
}
.features ul li::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding-left: .3em; /*文字とアイコンの間に隙間*/
	content: '\f14a';
	color: #1F9259;
	margin-right: .4em;
}
.logo_img{
	width: 330px;
	margin: 0 10px 5px;
	max-width: 40%;
}
.nayami_list .card{
	border: none;
	border-radius:0;
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
	text-align: center;
	color: #111B46;
}
.nayami_list .card h5{
    font-size: clamp(1.125rem, -246.625rem + 400vw, 1.375rem);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nayami_list .card-img, .nayami_list .card-img-top{
	border-radius:0;
}
.nayami_list .card-body{
	padding: 30px 15px;
}
.features_box{
	background-color: #FFF;
	box-shadow: 0px 3px 9px 0px rgba(31, 146, 89, 0.6);
}
.features_box h3{
	background-color: #D8F2E5;
	font-size: 21px;
	font-weight: 600;
	padding: 15px;
	text-align: center;
}
.features_box h3 span{
	font-size: 132%;
    background-color: #1F9259;
    color: #FFF;
    padding: 4px 0;
    border-radius: 10px;
    margin: 2px 10px;
    line-height: 1.5;
	display: inline-block;
}
.inner_box{
	max-width: 1110px;
	margin: 0 auto;
}
.features_box .inner{
	padding: 20px;
}
.features_box .inner_box_l{
	background-color: #F0F0F0;
	border-radius:10px 10px;
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.features_box .inner_box_l .inner,
.features_box .inner_box_r .inner{
	padding: 20px;
}

.features_box .inner_box_l .inner,
.features_box .inner_box_r .inner{
	font-size: clamp(1.25rem, -494.25rem + 800vw, 1.75rem);
	font-weight: 600;
}
.features_box .inner_box_l .inner ul li:not(:last-child),
.features_box .inner_box_r .inner ul li:not(:last-child){
	margin-bottom: 20px;
}
.features_box .inner_box_l h4,
.features_box .inner_box_r h4{
	font-weight: 600;
	font-size: clamp(1.625rem, -493.875rem + 800vw, 2.125rem);
	padding: 15px 15px;
    text-align: center;
	border-radius: 9px 9px 0 0;
}
.features_box .inner_box_l h4{
	background: #2F71A8;
	background: linear-gradient(90deg, rgba(47, 113, 168, 1) 0%, rgba(24, 57, 84, 1) 100%);
	color: #FFF;
}
.features_box .inner_box_r{
	border-radius:10px 10px;
	border: 1px solid #1F9259;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
}
.features_box .inner_box_r h4{
	background: #1F9259;
	background: linear-gradient(90deg, rgba(31, 146, 89, 1) 0%, rgba(171, 196, 34, 1) 100%);
	color: #FFFF5D;
}
.inner_box_l .icon{
	width: 88px;
}
.inner_box_r .icon{
	width:94px;
}
/* .section-wrapper {
  height: 400px;
  background: linear-gradient(135deg, #dfe9f3, #cfd9df);
} */

/* メイン円 */
.circle-box {
	width: 202px;
	height: 202px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	position: relative;
	text-align: center;
}

/* テキスト */
.circle-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-content p {
    font-weight: bold;
    font-size: clamp(1.125rem, -308.563rem + 500vw, 1.438rem);
	line-height: 1.3;
}
.circle-content p span{
	font-size: 122%;
}

/* 左上のアイコン円 */
.icon-circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 56px;
	height: 56px;
	background: #1d2a57;
	border-radius: 50%;
	color: #fff;
	font-size: 1.5rem;
}


.features_list .box{
	background-color: #D8F2E5;
	box-shadow: 0px 2px 4px 0px rgba(31, 146, 89, 0.35);
	padding: 30px 15px;
	text-align: center;
}
.features_list .box img{
	/* max-width: 179px; */
	max-width: 299px;
}
.features_list .box h3{
	margin: 20px 0;
	font-size:clamp(1.75rem, -381.75rem + 800vw, 2.25rem);
  font-weight: bold;
  color: #e4ff4d; /* 中の色（黄緑） */

  /* 縁取り（ネイビー系） */
  -webkit-text-stroke: 1px #1b2a5a;

  /* 影（少しズレた濃い青） */
  text-shadow: 
    1px 1px 0 #1b2a5a;
    /* 5px 5px 0 rgba(0, 0, 0, 0.2); */

  /* フォントを少し丸くしたい場合 */
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.after_list img{
	width: 90px;
}
.after_list .box{
	background-color: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(31, 146, 89, 0.35);
    padding: 30px 15px;
    text-align: center;
}

.after_list .box h3 {
    margin: 20px 0;
    font-size: clamp(1.375rem, -190.375rem + 400vw, 1.625rem);
    font-weight: bold;
}










.step-item {
	position: relative;
	text-align: center;
}
.step-circle {
	width: 180px;
	height: 180px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: #f2f2f2;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.step-circle img {
	width: 90px;
}	
.circle:before {
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7em;
  height: 1em;
  margin-top: -.5em;
  margin-left: -3.5em;
  content: '疑似要素で表示';
  color: #fff;
}

.step-title {
	position: absolute;
	top: -15%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	color: #6aa382;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 20px;
	line-height: 1;
	z-index: 1;
}
.step-number {
	display: block;
	font-size: 225%;
	color: #6aa382;
	line-height: 1;
}













.bg_img03 .inner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
.sample_list img{
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.sample_list a:hover img{
	opacity: 0.6;

}
.overview_list li dt,.overview_list li dd{
	padding: 20px;
}
.overview_list li dt{
	border-top: 1px solid #111B46;
	/* font-weight: 500; */
}
.overview_list li dd{
	border-top: 1px solid #D4D4D4;
	color: #264A6E;
}

.personal_info{
	height: 195px;
	overflow-y: scroll;
	border-top: #D2D2D2 1px solid;
	border-bottom: #D2D2D2 1px solid;
	padding: 20px;
}
.personal_info h5{
	font-size: 1rem;
	font-weight: 600;
}
.achievements{
	width: 850px;
	margin: 4rem auto;
	display: block;
}
/* footer
------------------------ */
footer{
	padding: 30px 0 15px;
	background-color: #111B46;
	text-align: center;
}
#footer{
	position: relative;
}
.copy{
	color: #FFF;
	font-size: 14px;
}
#page-top {
  bottom: 15px;
  position: fixed;
  right: 15px;
  z-index: 10;
}
#page-top a {
  background-color: #1cb4d3;
  color: #fff;
  padding: 10px 20px;
}


/* topBtn
------------------------ */


/* tab
------------------------ */


.form_submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


#form-tbl .table th{
	background-color: #eee;
	width: 30%;
}

.thanks-page h1 img{
width: 250px;
margin: 0 auto;
display: block;
}

@media (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none!important;
	}
	/* header
	------------------------------*/


	/* slick
	------------------------------*/
	.main-area {
		padding-left: 15%;
		padding-right: 2%;
	}
	/* space
	------------------------------*/

	/* bg
	------------------------------*/
	.contact_area{
		background-image:url(./img/bg_contact_l.png),url(./img/bg_contact_r.png);
		background-repeat: no-repeat,no-repeat;
		background-position: top left, top right;
		background-size: 310px auto,310px auto;
	
	}
	/* button
	------------------------------*/
	.grad_button {
		padding: 20px 30px;
	}
	.grad_button .main-text {
		font-size: 24px;
	}
	.grad_button.form_submit,.grad_button.form_reset{
			font-size: 18px;
	}
	/* section
	------------------------------*/


	/* text
	------------------------------*/

	.lead_text{
		font-size: 21px;
	}

	/* title
	------------------------------*/
	.tit_slash{
		font-size: 36px;
	}
	.tit_slash::before, .tit_slash::after{
		width: 42px;
	}
	.tit_slash::before {
		margin-right: 10px; 
	}
	.tit_slash::after {
		margin-left: 10px;
	}
	/* slick
	------------------------------*/

	/* box
	------------------------ */
	.features_box .inner{
		padding: 40px;
	}
	.after_list img{
		width: 150px;
	}
	/* 固定メニュー
	------------------------ */


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



}

@media (max-width: 767px) {
	/* box
	------------------------------*/
	.features_box .inner_box_l{
		border-radius: 10px 10px 0 0;
	}
	.inner_box_r{
		margin-top: -1%;
	}
	.step-circle {
		width: 140px;
		height: 140px;
	}
	.step-title{
		font-size: 16px;
	}
	.step-circle img {
		width: 60px;
	}
	.step-circle{
		margin: 0 auto 5px;
	}
	 .logo_img{
		max-width: 65%;
	}
	/* button
	------------------------------*/
	.sample_button::before{
		font-size: 16px;
	}
	.sample_button span{
		padding-right: 16px;
	}
	#form-tbl .table th,#form-tbl .table td{
	display: block;
    width: 100%;
}
#form-tbl .table th{
	border-bottom: 1px solid #cccccc; 
}
}
@media (max-width: 991px) {
	.step-item:after{
		font-family: 'Font Awesome 6 Free';
		font-size: 30px;
		font-weight: 900;
		content: '\f0d7';
		color: #7980A1;
		position: absolute;
		bottom: -40px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform:translateX(-50%);
	}
	/* .step-circle{
		margin: 0 auto 0;
	} */
	.step-item{
		margin-bottom: 50px;
	}
	.step-item.sp_last{
		margin-bottom: 0;
	}
	.step-item.sp_last:after{
		content: "";
	}
}
@media (min-width: 992px) {
	/* header
	------------------------------*/

	/* text
	------------------------------*/
	.top_lead{
		font-size: 35px;
	}

	/* section
	------------------------------*/
	.color-inner{
		padding: 110px 0 ;
	}

	/* space
	------------------------------*/

	/* bg
	------------------------------*/
	.bg_contact{
		padding: 67px 0;
		background-size: 30% auto, 30% auto;
	}
	/* title
	------------------------------*/
	.tit{
		font-size: 40px;
	}
	.tit_nayami{
		font-size: 40px;
	}
	.tit_sub{
		font-size: 20px;
	}
	/* box
	------------------------ */
	.features_box h3{
		font-size: 31px;
	}
	.inner_box_l .icon{
	width: 98px;
	}
	.inner_box_r .icon{
		width: 104px;
	}
	/* .step-item{
		margin-bottom: 50px;
	} */
	.step-item:after{
		font-family: 'Font Awesome 6 Free';
		font-size: 30px;
		font-weight: 900;
		content: '\f0da';
		color: #7980A1;
		position: absolute;
		top: 50%;
		right: -1.5rem;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	.step-item.second-row1::before{
		font-family: 'Font Awesome 6 Free';
		font-size: 30px;
		font-weight: 900;
		content: '\f0da';
		color: #7980A1;
		position: absolute;
		top: 50%;
		left: -1.5rem;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	.step-item.no-arrow:after{
		content: '';
	}
	/* 固定メニュー
	------------------------ */

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


}
@media (min-width: 1200px) {
	/* header
	------------------------------*/


	/* bg
	------------------------------*/

	/* section
	------------------------------*/


	/* space
	------------------------------*/
	
	.contents_space{
		padding-top: 110px;
	}
	.contents_space.second{
		padding-top: 70px;
	}
	.contents_space.last{
		padding-bottom: 52px;
	}
	.second_tit_area{
		padding-top: 84px;
		padding-bottom: 40px;
	}
	/* box
	------------------------ */
	.step-item{
		margin: 0 20px 50px;
	}
	.step-circle {
		width: 220px;
		height: 220px;
	}
	/* .step-item:after{
		right: -1.5rem;
	} */
	
	/* title
	------------------------------*/

	/* slick
	------------------------------*/
	/* footer
	------------------------ */

}
@media (max-width: 1199px) {

	
}
@media (min-width: 768px) and (max-width: 1199px) {
	/* title
	------------------------------*/

}
@media (min-width: 992px) and (max-width: 1199px) {
	/* section
	------------------------------*/


	/* space
	------------------------------*/
	.contents_space{
		padding-top: 80px;
	}
	.contents_space.second{
		padding-top: 50px;
	}
	.contents_space.last{
		padding-bottom: 28px;
	}
	.second_tit_area{
		padding-top: 64px;
	}
	/* box
	------------------------------*/
	.step-item{
		margin: 0 20px 50px;
	}
	.step-item:after{
		right: -1.5rem;
	}
	.step-circle img {
		width: 80px;
	}
	.step-title {
		font-size: 18px;
	}
}
@media (min-width: 1400px){
	/* header
	------------------------------*/


	/* box
	------------------------------*/

}
@media (min-width: 768px) and (max-width: 1399px) {


}

@media (min-width: 768px) and (max-width: 991px) {
	/* section
	------------------------------*/
	.color-inner{
		padding: 70px 0 ;
	}


	/* text
	------------------------------*/

	/* slick
	------------------------------*/

	/* title
	------------------------------*/
	.tit{
		font-size: 28px;
	}
	.tit_nayami{
		font-size: 32px;
	}
	.tit_sub{
		font-size: 18px;
	}
	/* space
	------------------------------*/
	.contents_space{
		padding-top: 60px;
	}
	.contents_space.second{
		padding-top: 40px;
	}
	.contents_space.last{
		padding-bottom: 60px;
	}
	.second_tit_area{
		padding-top: 40px;
	}
	/* box
	------------------------ */
	.features_box h3{
		font-size: 28px;
	}
	/* bg
	------------------------ */
	

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

}

@media screen and (min-width: 576px) and (max-width: 1399px) {


}

@media screen and (min-width: 576px) and (max-width: 767px) {
	/* title
	------------------------------*/


}
@media screen and (min-width: 576px) {


}
@media screen and (max-width: 575px){
	/* header
	------------------------------*/


	/* box
	------------------------ */

	/* button
	------------------------------*/

	/* footer
	------------------------------*/
}



@media print{
}
