	@charset "utf-8";

/* ----------------------------------------------
共有
---------------------------------------------- */

body {
	font-family: 'Zen Maru Gothic',"メイリオ","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","HiraKakuPro-W3",Meiryo,"ＭＳ Ｐゴシック","MS Pgothic","Osaka",sans-serif,Helvetica, Helvetica Neue, Arial, Verdana;
  /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
	background:#ffffff;
	color:#655d60;
	width: 100%;
	letter-spacing: 0.05em;
	box-sizing: border-box;
/*	font-size: 110%;*/
}

body{
	line-height:2em;
}

h2{

}

a{
	/*text-decoration: underline;*/
	color: #313334;
	cursor:pointer;
	display: block;
}

a:hover{
	text-decoration: none;
color: #eb6da5;
}

.center_img{
	text-align: center;
}

.center_img img{
	display: inline-block;
	width: 100%;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.font_m{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.w_1000{
max-width: 1000px;
margin: 0 auto;
}

.pa_40{
	padding: 0 40px;
}

.color_p{
	color: #eb6da5;
}

.c_red{
	color: #e60012;
}

.c_orange{
	color: #e85d08;
}

.pc_none{
	display: none;
}

.sp_none{
	display: initial;
}

.be_1100{
	display: none;
}

/* --------------
共有 @media screen
----------------- */

@media screen and (max-width: 800px) {

.center_img img {
	width: 100%;
	height: auto;
}

.w_1000{

}

.pad_sp40{
	padding-right: 40px;
	padding-left: 40px;
}

.pc_none{
	display: initial;
}

.sp_none{
	display: none;
}

}


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

.be_1100{
	display: initial;
}

}

/* ----------------------------------------------
ハンバーガーメニュー
---------------------------------------------- */

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 150;
  right : 13px;
  top   : 12px;
  width : 100px;
  height: 100px;
  cursor: pointer;
  text-align: center;
/*  background: rgba(255,255,250,0.5);*/
  border-radius:100px;
  background-color: #85c023;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 66px;
  height  : 12px ;
  left    : 17px;
  background : #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  border-radius: 100px;
}
.hamburger span:nth-child(1) {
  top: 24px;
}
.hamburger span:nth-child(2) {
  top: 45px;
}
.hamburger span:nth-child(3) {
  top: 66px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 45px;
    left: 15px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 45px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 120;
  top  : 0;
  left : 0;
  color: #fff;
/*  background: rgb(25 25 25 / 80%);*/
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  display: none;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  display: none;
  line-height: 1.2em;
  border-bottom: dotted 1px #85c023;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
nav.globalMenuSp ul li:last-child {
/*  padding-bottom: 0;*/
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  height: 100%;
  overflow-y: scroll;

}

/* --------------
ハンバーガー @media screen
----------------- */

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


/*		.globalMenuSp{
			display:none;
		}*/
	}


@media screen and (max-width: 800px) {

nav.globalMenuSp ul li {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.hamburger {
    display: block;
    position: fixed;
    z-index: 150;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    /* background: rgba(255, 255, 250, 0.5); */
    border-radius: 100px;
    background-color: #85c023;
}

.hamburger span:nth-child(1) {
    top: 9px;
}

.hamburger span:nth-child(2) {
    top: 24px;
}

.hamburger span:nth-child(3) {
    top: 39px;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 38px;
    height: 12px;
    left: 11px;
    background: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 100px;
}

.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 25px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(1) {
    top: 25px;
    left: 11px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 25px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
}

/* ----------------------------------------------
全体
---------------------------------------------- */

body{
	padding-top: 80px;
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	background-color: #fffffa;
}

.wrapper{
	position: relative;
	box-sizing: border-box;
	max-width: 1366px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

section{
/*	padding-left: 50px;
	padding-right: 50px;*/
}

.flex_box{
	display: flex;
}

.jc_sb{
	justify-content: space-between; 
}

.ai_fe{
	align-items:flex-end;
}

.po_re{
	position: relative;
}

.only_wrapper{
	width: 1366px;
}

.hidden_100{
	width: 100%;
	overflow: hidden;
}


/* --------------
全体 @media screen
----------------- */


@media screen and (max-width: 800px) {

body{
	padding-top: 55px;
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	background-color: #fffffa;
}

.wrapper{
	box-sizing: border-box;
	max-width: initial;
	min-width: initial;
	padding: 0 16px;
}





}

/* ----------------------------------------------
グローバルナビ
---------------------------------------------- */

#logo > div img{
	width: 220px;
	margin-left: 10px;
	margin-bottom: 30px;
}

#logo h1{
	margin-left: 15px;
}

#logo h1 img{
	width: 158px;
}

nav{
/*	background-color: #cccc00;*/
}


#gn{
    align-self: center;
}

#gn ul{
	border: 1px solid #85c023;
	border-radius: 4em;
	display: inline-block;
	background-color: #ffffff;
	padding: 2em 1.5em;
	margin-left: 2em;
}

.globalMenuSp ul:nth-of-type(1){
	border: 1px solid #85c023;
	border-radius: 4em;
	display: inline-block;
	background-color: #ffffff;
	padding: 2em 1.5em;
	margin-left: 0;
}

nav ul:nth-of-type(1) li{
	display: inline-block;
	font-weight: bold;
}

#gn ul li{
	
}

#gn ul li:nth-of-type(2){
	padding: 0 1em;
}



nav #gn ul:nth-of-type(1) li:nth-of-type(1){
	padding-left: 4em;
}

nav #gn ul:nth-of-type(1) li:nth-of-type(3){
	padding-right: 4em;
}

nav ul:nth-of-type(1) li a{
	text-decoration: none;
	color: #85c023;
	display: block;
}

/* --------------
グローバルナビ @media screen
----------------- */

@media screen and (max-width: 800px) {

#logo > div img {
	width: clamp(140px, 30%, 300px);
	margin-left: 5px;
	margin-bottom: 20px;
}

#logo h1 img {
	width: clamp(124px, 30%, 400px);
}

}

@media screen and (max-width: 1190px) {

#gn{
	display: none;
}


}


/* ----------------------------------------------
メインエリア
---------------------------------------------- */

#main_area{
	margin-top: 85px;
}

#main_area_box{
	width: 100%;
	overflow: hidden;
	text-align: center;
}

#main_area img{
	width: 100%;
}

#main_area .flex_box div:nth-of-type(1){
	width: 80%;
/*	background-color: #cccc00;*/
}

#main_area .flex_box div:nth-of-type(2){
	width: 20%;
/*	background-color: #cc0000;*/
}

#main_area .flex_box div:nth-of-type(1) img{
	width: 95%;
}

#main_area .flex_box div:nth-of-type(2) img{
	width: 130%;
	
}


/*--メインイメージ--*/

#main_img{
	margin-top: 35px;
	position: relative;
	height: 68vw;
	margin-top: 80px;
}

#main_img img{
	position: absolute;
}

#main_img img:nth-of-type(2){
    width: 45vw;
    top: -40px;
    right: 60px;
}

.use_img{
	height: clamp(120px, 14vw, 300px);
	background-image: url(../img/main_under-assets/main_under.png);
	background-repeat: repeat-x;
	background-size: contain;
	position: relative;
}

.use_img:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	bottom: -30px;
    height: 30px;
    width: 100%;
    z-index: 100;
}

/* --------------
メインイメージ @media screen
----------------- */


@media screen and (max-width: 800px) {

#main_area {
    margin-top: 44px;
}

#main_img {
    height: 68vw;
    margin-top: 55px;
}

#main_img img:nth-of-type(2) {
    width: 68vw;
    top: -50px;
    right: 5px;
}

#main_area .flex_box div:nth-of-type(1) {
    width: 100%;
}

}

/* ----------------------------------------------
NEWS_BOX
---------------------------------------------- */

#news_b{
	margin-top: 130px;
	padding-bottom: 60px;
}

#news_b img{
	width: 60%;
}

#news_box #news_c li{
  display: flex;
  padding:15px;
  border-bottom:1px solid #000;
}

#news_box #news_c .label{
  background-color:#f1abba;
  border-radius:100vh;
  color:#fff;
  padding:1px 25px;
  margin:0 20px;
  font-size: 0.7em;
  }

#news_box .text{
  
}

/* --------------
NEWS_BOX @media screen
----------------- */


@media only screen and (max-width: 800px) {

#news_box {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
}

#news_box #news_c{
  width: initial;
}

#news_box #news_b{
	width: initial;
	margin-top: 35px;
}

#news_box>div img {
    width: 40%;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    display: block;
}

#news_b {
    margin-top: 0px;
    padding-bottom: 60px;
}

}


/* ----------------------------------------------
news 新規
---------------------------------------------- */

.news{
	width: 75%;
	margin: 0 auto 7vw auto;
	font-size: 0.8em;
}

.news a{
	color: #4a4a4a;;
}

.news img:nth-of-type(1) {
    max-width: 260px;
    margin: 0 auto 5vw auto;
    width: 50%;
    display: block;
}

.inner {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
  padding: 65px 0 100px;
}


.sub_ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}


.news_list {
  margin: 0 2%;
  width: 100%;
}

.news_list_item {
  padding: 1em 0;
  border-bottom: 1px solid #E6E6E6;
  font-size: 0.8em;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}
.news_list_item a,.not_a {
 position: relative;
 display: flex;
 padding-right: 30px;
 text-decoration: none;
}

.news_list_date {
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item{
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.nx_green{
	background: #86c024;
}

.nx_blue{
	background: #5bc4ec;
}

.nx_pink{
	background: #ea8bb6;
}

.news_item_news,.news_item {
  color: #ffffff;
  border-radius: 14px;
  width: 20em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_movie {
  background: #5ed0f5;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_grouphome,.news_item_to {
  background: #f1abba;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_communication,.news_item_ib {
  background: #eba300;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_blog {
  background: #67be18;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_etc {
  background: #f07171;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 5%;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}

.news_title{
	font-weight: bold;
	font-size: 1.2em;
}


/* --------------
news 新規 @media screen
----------------- */

@media screen and (max-width: 1024px) {
    .news_list_item a,.not_a {
        display: block;
    }
}

@media screen and (max-width: 769px) {
    .news_list_item a,.not_a  {
    }

    .arrow {
        display: none;
    }

.news_list {
    margin: 0 2%;
    width: initial;
}

}

@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }
    .news_list_item a,.not_a {
        padding-right: 0;
    }
}


/* ----------------------------------------------
feature
---------------------------------------------- */

#feature{
	position: relative;
}

#feature:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/dot_line.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -80px;
	left: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 80%;
    z-index: 100;
}

#feature .wrapper h2{
	text-align: center;
	margin-top: 100px;
	padding-bottom: 60px;
}

#feature .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#feature ul{
	margin-right: 2rem;

}

#feature li{
	margin-bottom: 120px;
}

#feature .flex_box > div:nth-of-type(1){
	width: 60%;
}

#feature .flex_box > div:nth-of-type(2){
	width: 40%;
}

#feature h3 img{
	height: clamp(20px, 4vw, 58px)
}

#feature .flex_box > div:nth-of-type(2) img{
	width: 100%;
}

#feature h3{
	margin-bottom: 1rem;
}

#feature p{
	margin-left: 1rem;
	
}

#feature span,#schedule span{
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: block;
	line-height: 1.5;
}

#feature span span,#schedule span span{
	color: #ea8ab6;
	display: inline-block;
}

/* --------------
feature @media screen 800
----------------- */

@media screen and (max-width: 800px) {


#feature .wrapper h2 img {
    width: 100%;
}

#feature .flex_box{
	flex-direction: column;
}

#feature .flex_box > div:nth-of-type(1) {
    width: 100%;
}

#feature h3{
	text-align: center;
}

#feature h3 img {
	height: 7vw;
	display: inline-block;
}

#feature li {
    margin-bottom: 55px;
}

#feature .flex_box > div:nth-of-type(2) {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

#feature ul{
	margin-right: 0;

}

#feature p {
     margin-left: 0; 
}

}

/* --------------
feature  @media screen 600
----------------- */

@media screen and (max-width: 600px) {


}


/* ----------------------------------------------
point
---------------------------------------------- */

#point{
	position: relative;
	background-color: #f9f9dd;
}

#point:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	background-size: contain;
	bottom: -30px;
    height: 30px;
    width: 100%;
    z-index: 100;
}

#point_up{
	margin-top: 80px;
}

#point_up img{
	width: 100%;
}

#point .wrapper h2{
	text-align: center;
/*	margin-top: 100px;*/
	padding-bottom: 60px;
}

#point .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#point_fukidashi{
	position: absolute;
	top:-180px;
}

#point_fukidashi img{
	width:clamp(280px, 50%, 500px);
}


#point ul{
	margin-left: 2rem;

}

#point li{
	margin-bottom: 120px;
}

#point .flex_box > div:nth-of-type(1){
	width: 40%;
}

#point .flex_box > div:nth-of-type(2){
	width: 60%;
}

#point h3 img{
	height: clamp(87px, 10vw, 126px);
}

#point .flex_box > div:nth-of-type(1) img{
	width: 100%;
}

#point h3{
	margin-bottom: 1rem;
}

#point p{
	margin-left: 1rem;
	
}

#point span{
	font-size: 0.8rem;
	margin-top: 1rem;
	display: block;
}

#point span span{
	color: #ea8ab6;
	display: inline-block;
}

/* --------------
point @media screen 800
----------------- */

@media screen and (max-width: 800px) {

#point_up {
    margin-top: 120px;
}

#point_fukidashi {
    top: -140px;
}

#point .wrapper h2 img {
    width: 100%;
}

#point .flex_box {
	flex-direction: column; 
}

#point .flex_box > div:nth-of-type(1) {
    width: initial;
}

#point .flex_box > div:nth-of-type(1) img {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

#point .flex_box > div:nth-of-type(2) {
    width: initial;
}

#point h3 img {
    height: 20vw;
}

#point ul{
	margin-left: 0;

}

}

/* --------------
point  @media screen 600
----------------- */

@media screen and (max-width: 600px) {


}


/* ----------------------------------------------
schedule
---------------------------------------------- */


#schedule{
	position: relative;
	background-image: url(../img/main-assets/schedule_back.png);
	background-size: cover;
}

#schedule:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	background-size: contain;
	bottom: -30px;
    height: 30px;
    width: 100%;
    z-index: 100;
}

#schedule .wrapper h2{
	text-align: center;
	margin-top: 100px;
	padding-bottom: 60px;
}

#schedule .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#schedule .wrapper h2 + p{
	text-align: center;
	font-size: 2rem;
	line-height: 1.3em;
}

#schedule ol{
	position: relative;
	margin-top: 124px;
	padding-bottom: 120px;
}

#schedule ol li{
	background-color: #ffffff;
	border: 8px solid #85c023;
    border-radius: 40px;
    padding: 5%;
    width: clamp(300px,50%,620px);
/*    height:clamp(240px,40vw,496px);*/
    position: relative;
}

#schedule ol li:nth-child(odd){
	margin-right: 50%;
}

#schedule ol li:nth-child(even){
	margin-left: 50%;
}


#schedule ol li h3{
	position: relative;
	z-index: 100;
}

#schedule ol li h3 img{
	width: 100%;
	margin-top: -22%;
}

#schedule ol li div img{
	width: 100%;
	margin: 12% 0;
}

#schedule ol li div{
	text-align: center;
}

#schedule ol li div p{
	text-align: left;
	display: inline-block;
}

#schedule ol li:before{
	content: "";
	background-color: #ffffff;
	position: absolute;
    top: -4px;
    width: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	height:8px;
	z-index: 10;
}

#schedule ol li:nth-child(odd):after{
	position: absolute;
    right: -108%;
    top: 100px;
	content: "";
	background:url(../img/main-assets/line_right.png);
	background-repeat: no-repeat;
	background-size: contain;
    height: clamp(120px, 20vw, 300px);
    width: 100%;
    z-index: 100;
}

#schedule ol li:nth-child(even):after{
	position: absolute;
    left: -60%;
    top: 100px;
	content: "";
	background:url(../img/main-assets/line_left.png);
	background-repeat: no-repeat;
	background-size: contain;
	height: clamp(120px, 20vw, 300px);
    width: 100%;
    z-index: 100;
}

#schedule ol li:last-child:after{
	display: none;
}

#schedule ol li p:after{

}

#schedule ol li .sc_img:after{

}

#schedule ol li:nth-child(n+2){

}


/* --------------
schedule @media screen 800
----------------- */

@media screen and (max-width: 800px) {

#schedule .wrapper h2 img {
    width: 100%;
}

#schedule .wrapper h2 + p {
    font-size: 1.2rem;
}

#schedule ol li:nth-child(odd),#schedule ol li:nth-child(even) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

#schedule ol li:nth-child(odd):after,#schedule ol li:nth-child(even):after {
	display: none;
    /*position: absolute;
    right: -108%;
    top: 100px;
    content: "";
    background: url(../img/main-assets/line_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 50%;
    width: 100%;
    z-index: 100;*/
}

#schedule {
    background-size: auto;
}

#schedule ol li h3 img {
    margin-top: -18%;
}

}

/* --------------
schedule @media screen 480
----------------- */

@media screen and (max-width: 480px) {

#schedule ol li:nth-child(odd),#schedule ol li:nth-child(even) {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}
}

/* ----------------------------------------------
step
---------------------------------------------- */

#step{
	position: relative;
	margin-top: 280px;
}

#step .wrapper{
	z-index: 50;
}

#step:before{
    position: absolute;
    content: "";
    background: url(../img/main-assets/step_back.png);
    background-repeat: repeat;
    background-size: cover;
    top: 19px;
    height: 125vh;
    width: 100%;
    z-index: 10;
}


#step:after{
/*    position: absolute;
    content: "";
    background: url(../img/main-assets/step_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -155px;
    height: 40vw;
    width: 100%;
    z-index: 10;*/
}

#step .wrapper h2{
	text-align: center;
	margin-top: 100px;
	padding-bottom: 60px;
	font-size: 2rem;
	line-height: 1.4em;
	color: #ea8cb5;
	font-weight: bold;
}

#step .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#step .wrapper h2 + div img{
	width: 40%;
	display: block;
	margin: 0 auto;
	margin-bottom: 40px;
}

#step ul li{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	margin-bottom: 4rem;
}

#step li div{
	position: relative;
	width: 10%;
	background-color: #f1abba;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#step div span{
	font-size: clamp(14px,3vw,36px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

#step h3 {
	position: relative;
    background-color: #8fd3eb;
    color: #ffffff;
    font-weight: bold;
    width: 70%;
	font-size: clamp(14px,3vw,30px);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	padding: 2rem;
	text-align: left;
}

#step li p{
	margin-left: 22%;
	margin-right: 15%;
	text-align: left;
	width: 100%;
	margin-top: 1rem;
}

#step li p b{
	font-size: 0.8rem;
	display: block;
	position: initial;
	transform: initial;
	margin-top: 1rem;
}

#step ul li:nth-of-type(1) span:before{
	position: absolute;
	z-index: 100;
	content: "";
	background:url(../img/parts-assets/parts_step_1.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -100px;
    left: -140px;
    height: 310px;
    width: 310px;
}

#step ul li span:before{
	position: absolute;
	z-index: 100;
	content: "";
	background:url(../img/parts-assets/parts_step.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -100px;
    left: -140px;
    height: 310px;
    width: 310px;
}

#step li h3:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 43%;
    transform: translateX(-43%);
    border-top: 13px solid #8fd3eb;
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
/*    border-radius: 3px;*/
}

#step_support{
	text-align: center;
	margin: 80px 0 160px 0;
}

#step_support img{
	width: 60%;
	display: inline-block;
}

#step_fukidashi {
    position: absolute;
    top: -180px;
}

#step_fukidashi img {
    width: clamp(280px, 50%, 500px);
}

/* --------------
point  @media screen 800
----------------- */

@media screen and (max-width: 800px) {

#step .wrapper h2 img{
	width: 100%;
}

#step .wrapper h2 + div img {
    width: 60%;
    display: block;
    margin: 0 auto;
    margin-bottom: 100px;
}

#step span {
	width: 15%;
}

#step h3 {
	width: 80%;
	font-size: 1rem;
	padding: 1rem;
}

#step ul li span:before{
	bottom: -68px;
	left: -87px;
	height: 215px;
	width: 239px;
}

#step ul li:nth-of-type(1) span:before {
    position: absolute;
    z-index: 100;
    content: "";
    background: url(../img/parts-assets/parts_step_1.png);
    background-repeat: no-repeat;
    background-size: contain;
	bottom: -68px;
    left: -87px;
    height: 215px;
    width: 239px;
}

#step_support img {
    width: 75%;
}

#step_fukidashi img {
    width: clamp(280px, 50%, 500px);
}

#step li p {
margin-left: 1em;
    margin-right: 1em;
    text-align: left;
    width: 100%;
    margin-top: 3rem;
}

}


/* ----------------------------------------------
faq
---------------------------------------------- */

#faq{
	position: relative;
	background-color: #fdefea;
	padding-top: 80px;
	padding-bottom: 120px;
}

#faq:after{
/*	position: absolute;
	content: "";
	background:url(../img/main-assets/dot_line.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -80px;
	left: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 80%;
    z-index: 100;*/
}

#faq .wrapper h2{
	text-align: center;
    margin-bottom: 80px;
}

#faq .wrapper h2 + p {
    text-align: center;
    font-size: 2rem;
    line-height: 1.3em;
    margin-bottom: 1.5em;
}

#faq .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#faq dl{
	background-color: #ffffff;
	border: 8px solid #81b72c;
	border-radius: 24px;
	margin-bottom: 40px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

#faq dt,#faq dd{
	position: relative;
	padding: 2rem 2rem 2rem 9rem;
}

#faq dt:before{
	position: absolute;
	content: "";
	background:url(../img/main-assets/faq_q.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 10px;
	left: 50px;
    height: 4rem;
    width: 4rem;
    z-index: 100;
}

#faq dt:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/dot_line.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -14px;
	left: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 80%;
    z-index: 100;
}

#faq dd:before{
	position: absolute;
	content: "";
	background:url(../img/main-assets/faq_a.png);
	background-repeat: no-repeat;
	background-size: contain;
	top: 15px;
	left: 50px;
    height: 4rem;
    width: 4rem;
    z-index: 100;
}


/* --------------
faq  @media screen 800
----------------- */

@media screen and (max-width: 800px) {

#faq dl {
    background-color: #ffffff;
    border: 8px solid #81b72c;
    border-radius: 24px;
    margin-bottom: 40px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

#faq .wrapper h2 + p {
    font-size: 1.2rem;
    line-height: 1.3em;
    margin-bottom: 1.5em;
}

#faq .wrapper h2 img {
    width: 100%;
}

#faq dt, #faq dd {
    padding: 2rem 2rem 2rem 6rem;
}

#faq dt:before {
    left: 20px;
}

#faq dd:before {
    left: 20px;
}

}

/* ----------------------------------------------
Mail
---------------------------------------------- */

#mail{
	position: relative;
	padding-top: 60px;
/*	padding-bottom: 120px;*/
}

#mail:after{
/*	position: absolute;
	content: "";
	background:url(../img/main-assets/dot_line.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -80px;
	left: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 80%;
    z-index: 100;*/
}

#mail .wrapper h2{
	text-align: center;
}

#mail .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

	.pri_box {
		border: 1px solid #85c023;
		border-radius: 2em;
		background: #fff;
		padding: 2.5em;
		height: 14em;
		overflow: auto;
		overflow-x: hidden;
		overflow-y: scroll;
		font-size: 0.9em;
		line-height: 1.2em;
		margin-top: 60px;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

/* --------------
mail  @media screen 800
----------------- */

@media only screen and (max-width: 800px) {

#mail {
	margin-right: 0;
	margin-left: 0;
	
}

#mail .wrapper h2 img {
    width: 100%;
}

}

/* ----------------------------------------------
company
---------------------------------------------- */

#company{
	position: relative;
/*	padding-top: 60px;*/
	padding-bottom: 120px;
}

#company ul{
	display: flex;
	flex-wrap: wrap;
}

#company li{
	width: 70%;
	border: solid 8px #81b72c;
	background-color: #ffffff;
	border-radius: 24px;
	padding: 40px;
	margin-bottom: 2%;
	margin-left: auto;
	margin-right: auto;
}

#company li:nth-of-type(even){
	margin-left: 2%;
}

#company h2{
	text-align: center;
	margin-top: 160px;
	margin-bottom: 80px;
}

#company ul h2{
	text-align: center;
	margin-top: 0;
	margin-bottom: 40px;
	position: relative;
}

#company h2 img{
	width: 80%;
	display: inline-block;
}

#company ul li h2 img{
	width: 60%;
	display: inline-block;
}

#company ul h2:after {
    position: absolute;
    content: "";
    background: url(../img/main-assets/dot_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 100%;
    z-index: 100;
}

#company dl{
	display: flex;
	flex-wrap: wrap; 
	line-height: 1.2em;
	margin-top: 85px;
}

#company dt{
	font-weight: bold;
	width: 30%;
	margin-bottom: 1rem;
}

#company dd{
	width: 70%;
	margin-bottom: 1rem;
/*	font-size: 0.8rem;*/
}

.tel{
	text-align: center;
	position: relative;
	padding: 20px 0 60px 0;
}

.tel:after {
    position: absolute;
    content: "";
    background: url(../img/main-assets/dot_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 100%;
    z-index: 100;
}

.tel img{
	width: 65%;
	display: inline-block;
}

.gmap{
	margin-top: 40px;
	text-align: center;
}

.gmap img{
	width: 70%;
	display: inline-block;
}

#kdr{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	border: solid 8px #81b72c;
	background-color: #ffffff;
	border-radius: 24px;
	padding: 40px;
	position: relative;
	margin-top: 40px;
}

#kdr h2{
	text-align: center;
	margin: 0;
}

#company #kdr h2 img{
	width: 65%;
	display: inline-block;
}

#company #kdr dl{
/*	display: flex;
	flex-wrap: wrap; 
	line-height: 1.2em;*/
	margin-top: 70px;
}

#kdr div{
	text-align: center;
	margin-top: 2rem;
}

#kdr div img{
	width: 40%;
	display: inline-block;
}

#kdr div:nth-of-type(1){
	background-color: #81b72c;
	font-size: 1.5rem;
	border-radius: 1em;
/*	font-weight: bold;*/
	color: #ffffff;
	padding: 0.5rem;
	position: absolute;
	width: 80%;
	left: 50%;
    transform: translate(-50%, -50%);
    top:-2rem;
}

#company #kdr h2{
	position: relative;
}

#company #kdr h2:after {
    position: absolute;
    content: "";
    background: url(../img/main-assets/dot_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -52px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 100%;
    z-index: 100;
}


/* --------------
company   @media screen 800
----------------- */

@media only screen and (max-width: 800px) {

#company h2 img {
    width: 100%;
}

#company ul {
    flex-direction: column;
}

#company li {
    width: 100%;
    padding: 40px 1em;
    font-size: 0.9rem;
}

#company li:nth-of-type(2) {
    margin-left: 0%;
    margin-top: 2rem;
}

#kdr {
    width: 100%;
    padding: 40px 1rem;
    margin-top: 40px;
    font-size: 0.8em;
}

#company #kdr h2 img {
    width: 50%;
    display: inline-block;
}

#kdr div img {
    width: 40%;
    display: inline-block;
}

#company li:nth-of-type(even){
	margin-left: 0;
}

#company ul li h2 img{
	width: 60%;
}

}

/* --------------
company @media screen 480
----------------- */

@media screen and (max-width: 480px) {

#company ul li h2 img{
	width: 70%;
}

.tel img {
    width: 100%;
    display: inline-block;
}

}


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

#footer_up{

}

#footer_up img{
	width: 100%;
}

#footer_in{
	position: relative;
	background-color: #f9f9dd;
}

#footer_in .wrapper h2{
	text-align: center;
}

#footer_in .wrapper h2 img {
    width: 80%;
    display: inline-block;
}

#footer_in:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	background-size: contain;
	bottom: -30px;
    height: 30px;
    width: 100%;
    z-index: 100;
}

#footer_in .flex_box div:nth-of-type(1){
	width: 30%;
/*	background-color: #cccc00;*/
}

#footer_in .flex_box div:nth-of-type(1) img{
	width: 100%
}

#footer_in .flex_box div:nth-of-type(2){
	width: 40%;
/*	background-color: #cc0000;*/
}

#footer_in .flex_box div:nth-of-type(2) ul{
	display: flex;
	flex-direction: column;
	padding: 2rem 0 1rem 0;
}

#footer_in .flex_box div:nth-of-type(2) li{
	text-align: center;
	margin-bottom: 1rem;
}

#footer_in .flex_box div:nth-of-type(2) li span{
	background-color: #ffffff;
	padding: 0.8rem 2rem;
	border-radius: 5rem;
	text-align: center;
	display: inline-block;
	border: 1px #85c023 solid;
}

#footer_in .flex_box div:nth-of-type(3){
	width: 30%;
/*	background-color: #0000cc;*/
}

#footer_in .flex_box div:nth-of-type(3) img{
	width: 100%
}

/* --------------
footer @media screen 1120
----------------- */

@media screen and (max-width: 1120px) {


}

/* --------------
footer @media screen 800
----------------- */

@media screen and (max-width: 800px) {

#footer_in .wrapper h2 img {
    width: 100%;
}

#footer_in .flex_box div:nth-of-type(1){
	display: none;
}

#footer_in .flex_box div:nth-of-type(2){
	width: 100%;
}

#footer_in .flex_box div:nth-of-type(3){
	display: none;
}

}

/* --------------
footer @media screen 480
----------------- */

@media screen and (max-width: 480px) {



}


/* ----------------------------------------------
contact_after
---------------------------------------------- */

#contact_after {
    position: relative;
}

#contact_after .wrapper h2 {
    text-align: center;
    margin-top: 100px;
    padding-bottom: 60px;
}

#contact_after .wrapper h2 img {
    width: 80%;
    display: inline-block;
}

#contact_after .wrapper h2 + p {
    text-align: center;
    font-size: 2rem;
    line-height: 1.3em;
    margin-bottom: 4rem;
}

/* --------------
contact_after @media screen 800
----------------- */

@media screen and (max-width: 800px){

#contact_after .wrapper h2 img {
    width: 100%;
}

#contact_after .wrapper h2 + p {
    font-size: 1.5rem;
}

}