@charset "utf-8";
/*
Theme Name: Meiho Recruit Original Theme
*/


:root {
  --font-color: #333333;
  --red: #E62A2A;
  --back-red: #E23F3F;
  --green-blue: #40B4BC;
  --pink: #FA9CC7;
  --yellow: #FFD667;
  --border-color: #40B4BC;
}

html {
  font-style: normal;
  font-size: 62.5%;
  position: relative;
  text-align: justify;
  color: var(--font-color);

}



body {
  font-family: "Noto Sans JP", sans-serif;

  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.robot {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-variation-settings:
    "wdth" 100;
}



img {
  max-width: 100%;
  width: auto;
  height: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border: none;
  border: 1px solid #9EA0A2;
  padding: 5px;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  max-width: 1200px;
  width: calc(100% - 80px);
}

.wrapper.narrow {
  max-width: 100rem;
}



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

h1,h2,h3,h4,h5,h6,p,th,td,li,dt,dd {

}
h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
  line-height: 1.4;
}
h1 {
  font-size: 4rem;
}

h2 {
  font-size: 4rem;
  font-family: "M PLUS 1p", sans-serif;
}

h3 {
  font-size: 3.2rem;
}

h4,h5,h6 {
  font-size: 2.4rem;
}

p,th,td,li,dt,dd,label {
  font-size: 1.6rem;
  line-height: 1.7;
}



a,button {
  cursor: pointer;
}



a {

  transition: all 0.2s ease;
}

section {
  position: relative;
}

strong {
  font-weight: bold;
}

@media screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }

  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;

  }
  
  h3 {
    font-size: 1.6rem;

  }
  
  h4,h5,h6 {
    font-size: 1.6rem;
  }

  p,th,td,li,dt,dd {
    line-height: 1.3;
    font-size: 1.5rem;
  }
  
  .wrapper {
    width: calc(100% - 4rem);
  }
}

@media screen and (min-width: 501px) {
  .minsp {
    display: none;
  }

}


/**common***/
.panlist {
  padding: 30px 0;
}
.panlist .aioseo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.panlist .aioseo-breadcrumbs * {
  font-size: 1.2rem;
}

.original_btn a {
  width: 100%;
  max-width: 40rem;
  height: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #333333;
  color: white;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}

.original_btn a::before {
  content: '→';
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-color);
  font-size: 1.6rem;
  font-weight: bold;
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;

}

.original_btn.center a {
  margin: 0 auto;
}
/***header***/
header {
  display: flex;
  padding: 4.5rem 7rem;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header_logo {
  max-width: 20.2rem;
  position: relative;
}


.header_menu > ul {
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}

.header_menu li {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  font-weight: bold;
  position: relative;
  padding: 10px 0;
}

.header_menu > ul > li:hover > a {
  text-decoration: underline;
}



.header_menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background-color: white;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.header_menu > ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}

.header_menu > ul > li > ul li {
  padding: 0;
}

.header_menu > ul > li > ul li a {
  display: block;
  width: 100%;
    padding: 10px;
}

.header_menu > ul > li > ul li a:hover {
  background-color: var(--back-red);
  color: white;
}

.header_menu li.contact a {
  background-color: var(--red);
  color: white;
  padding: 1.4rem 6rem;
  border-radius: 5rem;
  border: 2px solid white;
}

header .openbtn {
  display: none;
}


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

  header {
    padding: 1rem 1.5rem;
    align-items: center;
  }
  .header_logo {
    z-index: 100;
    position: relative;
    max-width: 18rem;
  }


  .header_navi {
    position: fixed;
    background-color: white;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    padding: 13rem 4rem 2rem;
    z-index: 99;
    display: none;
  }


  .header_menu > ul {
    flex-direction: column;
    gap: 0rem;
    align-items: flex-start;
  }

  

    .header_menu > ul > li {

      width: 100%;
      padding: 20px 10px;
    }

    .header_menu > ul > li:not(:last-of-type) {
      border-bottom: 1px solid var(--border-color);
    }

  .header_menu > ul > li > ul {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    width: 100%;
    visibility:visible;
    opacity: 1;
    margin-top: 10px;
    padding-left: 20px;
  }

  .header_menu > ul > li > ul li {
    padding: 8px 0;
  }

  .header_menu > ul > li > ul li a {
    position: relative;
    padding: 0;
    padding-left: 14px;
    display: inline-block;

  }

    .header_menu > ul > li > ul li a::before {
      content: '';
      position: absolute;
      top: 7px;
      left: 0;
      border-top: 1px solid var(--green-blue);
      border-right: 2px solid var(--green-blue);
      transform: rotate(45deg);
      width: 6px;
      height: 6px;
    }

.header_menu li.contact {
  width: 100%;
}
.header_menu li.contact a {
  display: block;
  margin: 10px auto 0;
  max-width: 200px;
  text-align: center;
}


  header .openbtn{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 40px;
    height: 36px;
    display: block;
    z-index: 100;
    background-color: white;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      height: 3px;
      border-radius: 3px;
    background: var(--green-blue);
      width: calc(100% - 10px);
    }
  
  .openbtn span:nth-of-type(1) {
    top: 10px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:50%;
  }
  
  .openbtn span:nth-of-type(3) {
    top:calc(100% - 10px);
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);

  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);

  }

}





/***footer***/
footer {
  background-color: var(--back-red);
  color: white;
  padding: 60px 0;
}

footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .footer_menu > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 55px;
}


footer .footer_menu li {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}

footer .footer_menu li.contact {
  width: 184px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  border: 3px solid;
}

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

  footer {
  padding: 50px 0;
}

footer .wrapper {
  flex-direction: column;
  gap: 20px;
}

footer .footer_menu > ul {
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;

}

footer .footer_menu li.contact {
  width: 184px;
  margin: 0 auto;
}

}
