@charset "utf-8";


.main_area{
  position: relative;
  background: url(../img/entry/header_image.jpg) center top no-repeat;
  background-size: cover;
  height: 450px;
  margin-bottom: 20px;
}
.main_area h2{
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 5px 40px;
  color: #67D407;
  font-size: 38px;
}


@media screen and (max-width: 768px) {
  .main_area {
    position: relative;
    margin-bottom:0;
    background: none;
    height: auto;
  } 
  .main_area .container{
    padding: 0;
  }
  .main_area h2 {
    padding: 5px 10px;
    font-size: 18px;
  }

}


/*entry01*/
#entry01{
  margin-bottom:6em;
}


.tab-group{
	display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 3px solid #67D407;
}
.tab-group li:not(:last-of-type){
 margin-right: 10px;
}
.tab{
	display: inline-block;
	list-style:none;
  border:solid 1px rgba(103, 212, 7, 0.4);
  color: rgba(0, 0, 0, 0.4);
	text-align:center;
  cursor:pointer;
}

.panel{
	display:none;
}
.tab a{
  padding: 5px 26px;
}
.tab a.active{
	background:#67D407;
	color:#FFF;
	transition: all 0.2s ease-out;
}
.panel.is-show{
	display:block;
}

.table{
  width: 100%;
}
.table tr{
  border-bottom: 1px solid #AFAFAF;
}
.table th{
  width: 20%;
  padding: 15px;
  text-align: left;
}
.table td{
  table-layout: fixed;
  padding: 15px;
}

.table td.center{
  text-align: center;
}

div.block{
  padding:0 0 2em 0;
  position: relative;
}

div.block.block_right:after{
  position: absolute;
  content: "";
  left:130px;
  top: 80px;
  width: 200%;
  height: calc(100% - 40px);
  background: #F5FFF0;
  z-index: -1;
}
div.block.block_left:after{
  position: absolute;
  content: "";
  right:80px;
  top: 0;
  width: 200%;
  height: calc(100% - 0px);
  background: #F5FFF0;
  z-index: -1;
}


#entry02{
  margin-bottom: 6em;
}
#entry02 h3{
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 1.3em;
}

#entry02 p.comment{
  margin-bottom: 4em;
}

.entry_nav{
  display: flex;
  justify-content: space-between;
}

.entry_nav li{
  width: 48%;
  border: 1px solid #67D407;
  padding: 1.2em;
  background-color: #fff;
}

.entry_nav li p{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.entry_nav li .entry_logo{
  text-align: center;
  margin-bottom: 20px;
}
.entry_nav li .entry_logo img{
  width: 50%;
}
.entry_nav li p.tel{
  padding-left: 35px;
  background: url(../img/entry/tel_icon.png) left center no-repeat;
  background-size: 30px;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 1em;
}
.entry_nav li p.mail{
  padding-left: 35px;
  background: url(../img/entry/mail_icon.png) left center no-repeat;
  background-size: 30px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: 1.3em;
}


#entry03{
  margin-bottom: 6em;
}
#entry03 div.block {
  padding: 3em 0 5em 0;
  position: relative;
}


#entry03 dl{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2em;
}
#entry03 dl dt{
  width: 20%;
}
#entry03 dl dd{
  flex: 1;
}



@media screen and (max-width: 768px) {
  .tab-group li:not(:last-of-type){
    margin-right: 5px;
  }
  .tab{
    font-size: 14px;
  }
  .tab a{
    padding: 5px;
  }
  .table {
    width: 100%;
    font-size: 12px;
  }
  .table th {
    width: 20%;
    padding: 5px;
    text-align: left;
  }

  .table td {
    table-layout: fixed;
    padding: 5px;
  }
  .panel {
    padding: 0 10px;
  }

  #entry02 h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: .8em;
  }
  #entry02 p.comment {
    margin-bottom: 2em;
    font-size: 14px;
  }

  .entry_nav {
      display: block;
  }

  .entry_nav li {
    width: 100%;
    border: 1px solid #67D407;
    padding: 1em;
    margin-bottom: 2em;
  }
  .entry_nav li p.tel {
    padding-left: 35px;
    background: url(../img/entry/tel_icon.png) left center no-repeat;
    background-size: 24px;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 0;
  }
  .entry_nav li p.mail {
    padding-left: 35px;
    background: url(../img/entry/mail_icon.png) left center no-repeat;
    background-size: 24px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 0;
  }
  div.block.block_right:after {
    position: absolute;
    content: "";
    left: 50px;
    top: 80px;
    width: 200%;
    height: calc(100% - 80px);
    background: #F5FFF0;
    z-index: -1;
  }
  #entry02 {
    margin-bottom: 3em;
  }
  #entry03 dl{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2em;
    flex-wrap: wrap;
  }
  #entry03 dl dt{
    width: 100%;
    font-weight: 500;
  }
  #entry03 dl dd{
    flex: inherit;
    width: 100%;
    padding-left: 1em;
  }
  #entry03 div.block {
    padding: 0 0 5em 0;
    position: relative;
  }
  #entry03 div.block {
    padding: 0 0 0em 0;
    position: relative;
  }
  #entry03 {
    margin-bottom: 3em;
  }
}

.recruit-text{
  margin-top:80px;
}


/* タブ切り替え */
.panel {
  display: none;
}
#motion_area1 {
  display: block;
}

@media screen and (max-width: 768px) {
  .entry_nav li p.mail {
    padding-left: 35px;
    background: url(../img/entry/mail_icon.png) left center no-repeat;
    background-size: 24px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 0;
    }
}