@charset "utf-8";
/* CSS Document */
html {
  margin: 0 auto;
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  scroll-behavior: smooth;
}
body {
  color: #2F2F2F;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  background-color: #F0F8EA;
}
/*header*/
.c-header {
  width: 100%;
  height: 60px;
  align-items: center;
  /*background-color: #FFFFFF;*/
  background-color: #86B81B;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.c-header__logo {
  color: #FFF; 
  /*min-width: 80px;*/ 
  text-decoration: none;
}
.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}
.c-header__list-item {
  list-style: none;
  text-decoration: none;
}
.c-header__list-link {
  display: block;
  margin-right: 20px;
  padding: 10px 0px;
  /*color: #86B81B;*/
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}
.c-header__list-link:hover {
  filter: opacity(0.6); 
}
.c-hamburger-menu {
  /*position: relative;*/
  position: fixed;
  z-index: 99;
}
@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background-color: #F0F8EA;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; 
    position: absolute;
    transform: translateX(100%); /*左右調整*/
    transition: 0.3s;
    top: 100%;
    width: 100%;
    z-index: 99;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  .c-header__list-link{
    color: #86B81B;
  }
}
.c-hamburger-menu__input {
  display: none;
}
.c-hamburger-menu__bg {
  background-color: #000;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 60px; /*元は0*/
  width: 100%;
  z-index: -1;
}
#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}
.c-hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px;
    justify-content: center;
    width: 32px; 
  }
}
.c-hamburger-menu__button-mark {
  width: 25px;
  height: 3px;
  /*background-color: #86B81B;*/
  background-color: #FFF;
  display: block;
  transition: 0.3s; 
  border-radius: 20px;
}
@media screen and (max-width: 750px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%; 
  }
}
/*固定ボタン*/
.fixed_button {
  display: flex;
}
.fixed_button img {
  width: 30px;
}
a.recruit-button, a.contact-button {
  width: 50%;
  height: 80px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: 0.5s;
  position: fixed;
  bottom: 0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
a.recruit-button {
  background-color: #FFB238;
  left: 0;
}
a.contact-button {
  background-color: #006989;
  right: 0;
}
@media(min-width:960px) {
  .fixed_button img{
    margin-bottom: 10px;
  }
  a.recruit-button,a.contact-button{
    width: 60px;
    height: 200px;   
    right: 0;
    display: block;
    writing-mode: vertical-lr;
    line-height: 60px;  
  }
  a.recruit-button{
    top: 200px;
    left: inherit;
  }
  a.recruit-button:hover{
    background-color: #FFFFFF;
    color: #FFB238;
  }
  a.contact-button{
    top: 400px;
    left: inherit;  
  }
  a.contact-button:hover{
    background-color: #FFFFFF;
    color: #006989;   
  }
}
/*section-top img*/
.section-top img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}
@media(min-width:960px) {
  .section-top img{
    height: 400px;
  }
}
/*section_tittle*/
.section_tittle {
  padding-left: 15px;
  text-align: left;
  border-left: 4px solid #FFB238;
}
.section_tittle h2 {
  font-size: 2.0rem;
  font-weight: 600;
}
.section_tittle h3 {
  margin-bottom: 30px;
  color: #FFB238;
  font-size: 1.4rem;
  font-weight: 500;
}
@media(min-width:960px) {
  .section_tittle h2,.section_tittle h3{
  text-align: center;
  }
  .section_tittle h2 {
    font-size: 3.0rem;
  }
  .section_tittle h3 {
  margin-top: 20px;
    font-size: 2.0rem;
  }
  .section_tittle {
    border: none;
    padding: 0;
  }
}
/*button*/
.more-button, .form-button,.form-button2 {
  width: 270px;
  height: 60px;
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 60px;
  border-radius: 50px;
  color: #FFFFFF;
  transition: 0.5s;
}
a.more-button {
  margin: 30px auto 0;
  background-color: #86B81B;
}
a.more-button:hover {
  color: #86B81B;
  background: #FFFFFF;
  border: 3px solid #86B81B;
}
a.form-button {
  margin: 20px auto 30px;
  background-color: #006989;
}
a.form-button:hover {
  color: #006989;
  background: #FFFFFF;
  border: 3px solid #006989;
}
a.form-button2{
  margin: 30px auto 20px;
  background-color: #FFB238;
}
a.form-button2:hover {
  color: #FFB238;
  background: #FFFFFF;
  border: 3px solid #FFB238;
}
.hidden-sp {
  display: none;
}
@media(min-width:960px) {
  a.pc {
    margin-top: 60px;
  }
  .hidden-pc {
    display: none;
  }
  .hidden-sp {
    display: block;
  }
}
/*section_frow*/
.section-frow ul li {
  margin-bottom: 45px;
  display: flex;
  justify-content: space-between;
}
.section-frow ul li:last-child {
  margin-bottom: 0;
}
.section_frow_number {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: #86B81B;
  text-align: center;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 20px;
}
.section_frow_number span {
  font-size: 1.2rem;
}
.section_frow_list {
  width: 240px;
  height: 60px;
  background-color: #FFFFFF;
  border: solid 3px #86B81B;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 60px;
}
.triangle {
  background: #86B81B;
  height: calc(30px / 2);
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 20px auto 0;
}
@media(min-width:960px) {
  .section-frow ul li {
    margin: 0 auto 45px;
    max-width: 880px;
    justify-content: center;
    gap: 30px;
  }
  .section_frow_list {
    width: 500px;
  }
}
/*section-contact*/
.section-contact {
  padding: 30px 24px;
  background-color: #006989;
}
.section-contact h2, .section-contact p {
  color: #FFFFFF;
}
.section-contact p {
  margin-bottom: 10px;
}
.section-contact_info {
  padding: 30px 0 30px;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.section-contact_info p {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600;
  color: #2F2F2F;
}
.section-contact_info span {
  font-size: 2.2rem;
  color: #FFB238;
}
@media(min-width:960px) {
  .section-contact {
    padding: 60px 24px; 
    font-size: 2.0rem;
  }
  .section-contact p {
    text-align: center;
  }
  .section-contact_info {
    max-width: 880px;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .section-contact_info {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    column-gap: 90px;
  }
}
/*footer*/
footer {
  margin: 60px 0;
}
footer ul {
  margin-bottom: 60px;
}
footer ul li {
  padding: 0 24px;
  list-style: none;
  line-height: 40px;
  font-weight: 600;
  font-size: 1.8rem;
}
footer ul li a {
  color: #2F2F2F;
  text-decoration: none;
}
small {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 80px;
  background-color: #86B81B;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.4rem;
  line-height: 60px;
}
@media(min-width:960px) {
  footer ul {
    display: flex;
    margin: 0 auto 60px;
    max-width: 880px;
    justify-content: space-around;
  }
  a.footer_button {
    position: relative;
    text-decoration: none;
    color: #2F2F2F;
    transition: 0.3s;
  }
  a.footer_button::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: #86B81B;
    transition: 0.3s;
  }
  a.footer_button:hover::before {
    left: 0;
    width: 100%;
  }
  small {
    margin-bottom: 0;
  }
}