/* RESET */
	  html{ scroll-behavior: smooth; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{ font-family: ryo-gothic-plusn, sans-serif; font-style: normal; font-weight: 200; color: #222; letter-spacing: 1px; }
/* HEADER */
.site-header {
  top: 0;
  z-index: 1001;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 25px 16px;
  display: flex;
  align-items: center;
}

/* LEFT (LOGO) */
.logo img {
  width: 260px;
}

/* CENTER MENU */
.header-center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* RIGHT */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0 50px 0 0;
  padding: 0;
}

/* remove bullets */
.main-menu li {
  list-style: none;
  font-weight: 500;
}
.main-menu li a:hover{ color: #00AC97; }

/* links */
.main-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.header-cta {
  background: #00AC97;
  color: #fff;
  padding: 8px 15px;
  text-align: center;
  border-radius: 0 0 15px 15px;
  min-width: 244px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.2s;
}
.header-cta:hover {
  opacity: 0.6;
}

/* PHONE */
.header-phone {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}

.phone-number {
  font-size: 30px;
  color: #222;
  text-decoration: none;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  letter-spacing: 2.5px;
}

.header-phone span {
  display: block;
  font-size: 11px;
  color: #222;
  font-family: "Outfit", sans-serif;
}

.header-phone img {
  width: 18px;
  margin-top: 3px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #16a085;
  color: #fff;
  transition: right 0.35s ease;
  padding: 16px;
  z-index: 9999999;
}
.mobile-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #16a085;
  padding: 16px 10px 16px 20px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.3;
  height: 56px;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-cta img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.mobile-links {
  margin-top: 50px;
}

.mobile-links ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.mobile-links li {
  list-style: none;
  max-width: 300px;
  margin: 0 auto;
}

.mobile-links ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 40px;
  padding: 16px 10px 16px 20px;
  margin-bottom: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  line-height: 1.3;
  height: 56px;
}

.mobile-links a::after {
  display: none;
}
.mobile-links a .nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-links a .nav-arrow img {
  width: 35px;
  height: 35px;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-top img {
  height: 40px;
}
.mobile-phone {
  margin-top: 15px;
  text-align: left;
  max-width: 300px;
  margin: 15px auto 0;
}

/* wrap icon + number */
.mobile-phone a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  letter-spacing: 10%;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
}

/* icon */
.mobile-phone img {
  width: 18px;
}

/* subtext */
.mobile-phone span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.9;
}
.mobile-phone::after {
  content: "";
  display: block;
  margin-top: 20px;
}

.mobile-social {
  display: none;
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu {
  background: #fff;
  color: #16a085;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 10px;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.mobile-menu.active {
  right: 0;
}


/* FOOTER PART */
.wrapper{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 15px;
}

.footer-cta {
  background: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 60px 50px;
  margin: 0 auto;
  position: relative;
  transform: translateY(60px);
  z-index: 999;
}

.footer-contact,
.footer-recruit {
  background: transparent;
}
.footer-contact h2,
.footer-recruit h2 {
  margin: 0 0 20px;
  font-size: 43px;
  font-weight: 700;
}

/* LABEL */
.footer-label {
  font-size: 16px;
  color: #16a085;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.footer-label.orange {
  color: #f59e0b;
}

/* PHONE */

.footer-contact .footer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #dce9e7;
  border-radius: 15px;
  padding: 16px;
  min-height: 224px;
}

.footer-phone a {
  font-size: 46px;
  font-weight: 500;
  text-decoration: none;
  color: #222;
  font-family: "Outfit", sans-serif;
}

.footer-phone div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-phone span {
  font-size: 14px;
}

/* BUTTON */
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

.footer-btn.green {
  background: #16a085;
  color: #fff;
  margin-top: 15px;
  width: 420px;
  text-align: center;
  font-size: 18px;
  transition: opacity 0.2s;
}
.footer-btn.green:hover { opacity: 0.6; }
.footer-btn p{ text-align: center; margin: 0; flex: 1; }
.footer-btn-txt { padding-left: 46px; }
.footer-btn.green .footer-btn-txt { padding-left: 15px; }
.footer-btn.green img { width: 38px; height: 38px; }

.footer-btn.orange {
  background: #F08300;
  color: #fff;
  font-size: 18px;
  width: 420px;
  text-align: center;
  transition: opacity 0.2s;
}
.footer-btn.orange:hover { opacity: 0.6; }
.footer-btn.orange img { width: 38px; height: 38px; }


/* RECRUIT */
.recruit-box {
  display: flex;
  align-items: center;
  min-height: 224px;
  background: #efe6da;
  border-radius: 15px;
  padding: 0;
}

.recruit-box img {

}

.recruit-content {

  padding:20px;
  flex: 1;
}
.recruit-content>p{ font-size: 15px; text-align: left; width: 372px; margin: 0 auto; }

/* BOTTOM */
.footer-bottom {
  background: #16a085;
  color: #fff;
  padding: 200px 100px 80px;
  display: flex;
  justify-content: space-between;
  margin-top: -60px;
}
.footer-left{ text-align: center; }

.footer-left p {
  font-size: 15px;
  margin: 5px 0;
}
.footer-left p.ftrttle{ font-size: 32px; line-height: 1.2; font-family: fot-tsukuardgothic-std, sans-serif; font-weight: 700; }

/* LEFT */
.footer-logo {

}

.footer-social {
  /* display: flex; */
  display: none;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

/* MENU */
.footer-menu {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

.footer-menu ul {
  list-style: none;
}

.footer-menu li {
  font-size: 15px;
  line-height: 2.5;
}
.footer-btn.orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.pc{ display: block; }
.sp{ display: none; }



/* RESPONSIVE */
@media (max-width: 900px) {
 html{ margin: 0 !important; padding: 0 !important; }
  .header-center,
  .header-cta,
  .header-phone {
    display: none;
  }

	.site-header { position: sticky; }

  .pc{ display: none !important; }
  .sp{ display: block !important; }

  .menu-toggle {
    display: flex;
  }
  html #wpadminbar{ display: none; }
  .header-inner{ padding: 10px 15px; }
  .logo img{ width: auto; height: 40px; }

  .mobile-burger{
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    background: #16a085;
    color: #eee;
    width: 60px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

/* FOOTER PART */

/* SHOW FOOTER */
  .site-footer {
    display: block;
    padding-top: 0;
  }

  /* CTA WRAPPER */
  .footer-cta {
    border-radius: 50px;
    margin: 20px 0;
    padding: 55px 10% 90px;
    transform: none;
  }

  .footer-bottom{ margin-top: -80px; padding: 90px 20px; flex-direction: column; text-align: center; }
  .footer-contact, .footer-recruit{ text-align: left; }
  .footer-btn p{ text-align: center; padding-left: 10px; font-size: 16px; }
  .recruit-content > p{ font-size: 14px; }
  .footer-phone div{ letter-spacing: 3.5px; }
  .footer-phone div>img{ max-width: 16px; }
  .footer-btn.orange img{ width: auto !important; height: auto !important; }
  .footer-btn.green img{ max-width: 36px; height: auto; }
  .footer-contact .footer-phone{ min-height: unset; padding: 25px; }
  .footer-left p.ftrttle{ font-size: 22px; }
  .footer-left p { font-size: 14px; }


  .footer-recruit { display: none; }
  .recruit { display: none; }
  .wrapper{ grid-template-columns: 1fr; }
  .footer-cta .wrapper{  gap: 50px; }

  /* HEADINGS */
  .footer-contact h2,
  .footer-recruit h2 {
    font-size: 2.3em;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .footer-label {
    font-size: 16px;
  }

  /* CONTACT BOX */
  .footer-phone {
    background: #dce9e7;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-left: -10px;
    margin-right: -10px;
  }

  .footer-phone a {
    font-size: 33px;
  }

  .footer-phone span {
    font-size: 14px;
    line-height: 1;
  }

  /* BUTTON */
  .footer-btn.green,
  .footer-btn.orange {
    width: 100%;
    font-size: 15px;
  }

  .footer-btn.green{ margin-top: 20px; }

  /* RECRUIT BOX */
  .recruit-box {
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
  }

  .recruit-box img {
    width: 100%;
    height: auto;
    display: block;
  }

  .recruit-content {
    padding: 15px 15px 20px;
    text-align: left;
  }

  .recruit-content > p {
    width: 100%;
    font-size: 13px;
    line-height: 1.6;
  }

  /* FOOTER BOTTOM */

  .footer-left {
    margin-bottom: 25px;
  }

  .footer-left .ftrttle {
    font-size: 20px;
  }

  /* SOCIAL */
  .footer-social {
    justify-content: center;
    margin-top: 30px;
  }

  /* MENU STACK */
  .footer-menu {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
  }

  .footer-menu ul {
    padding: 0;
  }

  .footer-menu li {
    font-weight: 500;
    font-size: 13px;
    line-height: 2;
  }
  .footer-menu li:first-child{ font-weight: 700; font-size: 14px; }


}

/* Make text visible on image */
.home-header{
  position: absolute; /* KEY */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  z-index: 10;
}
