@charset "UTF-8";
/*
Theme Name: MASAKI
 */
/* ==============================================
            変数
============================================== */
/* ==============================================
            共通
============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #FFFEF6;
  color: #40812C;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
  line-height: 1.8;
  width: 100%;
  overflow-x: hidden;
  animation: fadeIn 0.5s ease-in forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 599px) {
  body {
    margin: 0;
  }
}
body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
body .sp {
  display: none;
}
@media (max-width: 599px) {
  body .sp {
    display: block;
  }
}
body .pc {
  display: block;
}
@media (max-width: 1025px) {
  body .pc {
    display: none;
  }
}
body a {
  text-decoration: none;
}
body ul {
  list-style: none;
  padding-left: 0;
}
body button {
  outline: none;
}
body p {
  font-size: 16px;
}
@media (max-width: 1025px) {
  body p {
    font-size: 14px;
  }
}
body .fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body .fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
}
@media (max-width: 1025px) {
  h3 {
    font-size: 32px;
    line-height: 1;
  }
}
@media (max-width: 599px) {
  h3 {
    font-size: 9vw;
  }
}

.btn {
  display: block;
  width: 240px;
  height: 50px;
  border-radius: 60px;
  letter-spacing: 0.15em;
  background-color: #40812C;
  color: #FFFEF6;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 40px auto;
  border: solid 2px #40812C;
  transition: 0.3s;
}
.btn:hover {
  background-color: #FFFEF6;
  color: #40812C;
}
@media (max-width: 599px) {
  .btn {
    width: 80%;
    margin: 8% auto;
    font-size: 5vw;
  }
}

/* ==============================================
            header
============================================== */
.header {
  padding: 30px;
  background-color: #FDF5E6;
}
@media (max-width: 1025px) {
  .header {
    padding: 20px;
  }
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header .header_inner .header_logo {
  width: 140px;
}
@media (max-width: 1025px) {
  .header .header_inner .header_logo {
    width: 120px;
  }
}
@media (max-width: 599px) {
  .header .header_inner .header_logo {
    width: 100px;
  }
}
.header .header_inner .header_logo h1 {
  line-height: 1;
}
.header .header_inner .header_logo a {
  display: block;
}
.header .header_inner .header_hamburger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #40812C;
  border: solid 1px #FDF5E6;
  position: fixed;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 1025px) {
  .header .header_inner .header_hamburger {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 599px) {
  .header .header_inner .header_hamburger {
    width: 40px;
    height: 40px;
  }
}
.header .header_inner .header_hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #FFFEF6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  transform-origin: center;
}
@media (max-width: 599px) {
  .header .header_inner .header_hamburger span {
    width: 20px;
  }
}
.header .header_inner .header_hamburger span:nth-child(1) {
  top: 35%;
}
.header .header_inner .header_hamburger span:nth-child(3) {
  top: 65%;
}
.header .header_inner .header_hamburger.is-active span {
  background-color: #FFFEF6;
}
.header .header_inner .header_hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header .header_inner .header_hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .header_inner .header_hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .header_nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  max-width: 1920px;
  height: 100vh;
  background-color: #E1AC51;
  z-index: 90;
  padding: 5%;
  transform: translateX(100%);
}
@media (max-width: 1025px) {
  .header .header_nav {
    width: 100%;
    padding: 10%;
    overflow-y: scroll;
  }
}
.header .header_nav .logo {
  width: 50%;
  margin: 10% auto;
}
@media (max-width: 1025px) {
  .header .header_nav .logo {
    width: 30%;
  }
}
@media (max-width: 599px) {
  .header .header_nav .logo {
    width: 70%;
    margin: 20% auto;
  }
}
.header .header_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}
@media (max-width: 599px) {
  .header .header_nav ul {
    gap: 4%;
  }
}
.header .header_nav ul li {
  width: 31%;
  height: auto;
  aspect-ratio: 1;
  border: solid 2px #FFFEF6;
  margin-bottom: 3.5%;
}
@media (max-width: 599px) {
  .header .header_nav ul li {
    width: 48%;
  }
}
.header .header_nav ul li a {
  color: #FFFEF6;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  font-size: clamp(14px, 2vw, 18px);
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header_nav ul li a .inner {
  height: 80%;
  padding: 0;
}
.header .header_nav ul li a img {
  display: block;
  height: 70%;
  margin: 0 auto 10px;
}
.header .header_nav ul li a p {
  text-align: center;
  line-height: 1;
  color: #FFFEF6;
}
@media (max-width: 599px) {
  .header .header_nav ul li a p {
    font-size: 4.5vw;
  }
}
.header .header_nav ul li a:hover {
  background-color: #FFFEF6;
}
.header .header_nav ul li a:hover p {
  color: #E1AC51;
}

/* ==============================================
            footer
============================================== */
footer .footer_nav {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #40812C;
  border-bottom: solid 1px #40812C;
}
@media (max-width: 1025px) {
  footer .footer_nav {
    display: block;
  }
}
@media (max-width: 599px) {
  footer .footer_nav {
    padding: 20px;
  }
}
footer .footer_nav .logo {
  display: block;
  width: 140px;
}
@media (max-width: 1025px) {
  footer .footer_nav .logo {
    width: 20%;
    margin: 0 auto 20px;
  }
}
@media (max-width: 599px) {
  footer .footer_nav .logo {
    width: 50%;
    margin: 5% auto;
  }
}
footer .footer_nav .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1025px) {
  footer .footer_nav .nav {
    justify-content: center;
  }
}
@media (max-width: 599px) {
  footer .footer_nav .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4%;
    margin: 10% auto 0;
  }
}
footer .footer_nav .nav li {
  margin-left: 20px;
  font-size: 14px;
}
@media (max-width: 599px) {
  footer .footer_nav .nav li {
    width: 48%;
    margin: 0;
    margin-bottom: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.2vw;
    background-color: rgba(253, 245, 230, 0.7);
  }
}
footer .footer_nav .nav li a {
  color: #40812C;
  font-weight: bold;
  transition: 0.3s;
}
footer .footer_nav .nav li a:hover {
  color: #E1AC51;
}
footer small {
  display: block;
  text-align: center;
  background-color: #40812C;
  color: #FFFEF6;
  font-size: 10px;
  padding: 10px;
}

/* ==============================================
            front-page
============================================== */
.front_page .top_area {
  background-color: #40812C;
  width: 100%;
  position: relative;
}
.front_page .top_area #waveCanvas {
  position: absolute;
  height: 20vw;
  width: 110%;
  transform: rotate(180deg);
  bottom: -40%;
  left: -5%;
  z-index: -1;
}
@media (max-width: 1025px) {
  .front_page .top_area #waveCanvas {
    height: 30vw;
  }
}
@media (max-width: 599px) {
  .front_page .top_area #waveCanvas {
    bottom: -15%;
    height: 20vw;
  }
}
.front_page .top_area .top_inner {
  padding: 40px;
  padding-bottom: 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1025px) {
  .front_page .top_area .top_inner {
    display: block;
    padding-bottom: 0;
  }
}
@media (max-width: 599px) {
  .front_page .top_area .top_inner {
    padding: 20px;
    padding-bottom: 10%;
  }
}
.front_page .top_area .text {
  width: 35%;
  color: #FFFEF6;
  margin-left: 12%;
  margin-top: 2%;
  transform: scale(1.1);
}
@media (max-width: 1025px) {
  .front_page .top_area .text {
    width: 100%;
    margin-left: 0;
    margin-top: 56%;
    text-align: center;
    transform: scale(1);
  }
}
@media (max-width: 599px) {
  .front_page .top_area .text {
    margin-top: 73%;
  }
}
.front_page .top_area .text h2 {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
}
@media (max-width: 599px) {
  .front_page .top_area .text h2 {
    font-size: 6vw;
  }
}
.front_page .top_area .text p {
  font-size: clamp(14px, 1vw, 20px);
  line-height: 2;
}
@media (max-width: 599px) {
  .front_page .top_area .text p {
    font-size: 3.8vw;
  }
}
.front_page .top_area .img_area {
  width: 70%;
}
@media (max-width: 1025px) {
  .front_page .top_area .img_area {
    width: 100%;
  }
}
.front_page .top_area .img_area img {
  display: block;
  position: absolute;
  width: 55%;
  height: auto;
  top: -30%;
  right: 0;
}
@media (max-width: 1025px) {
  .front_page .top_area .img_area img {
    width: 100%;
    transform: rotate(-20deg);
    top: -16%;
  }
}
@media (max-width: 599px) {
  .front_page .top_area .img_area img {
    top: 0%;
    transform: rotate(-20deg) scale(1.1);
  }
}
.front_page .top_area .img_area .welcome {
  position: absolute;
  top: -3%;
  right: 7%;
  font-family: "Fredoka", sans-serif;
  color: #FFFEF6;
  display: inline-block;
  font-size: clamp(24px, 3vw, 60px);
  font-weight: bold;
  overflow: hidden;
  transform: rotate(25deg);
}
@media (max-width: 1025px) {
  .front_page .top_area .img_area .welcome {
    transform: rotate(0);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -3%;
  }
}
@media (max-width: 599px) {
  .front_page .top_area .img_area .welcome {
    width: 100%;
    left: 76%;
    top: 2%;
  }
}
.front_page .top_area .img_area .welcome .char {
  display: inline-block;
  white-space: pre;
  margin-right: 10px;
}
.front_page .about_area {
  margin: 6% auto;
  position: relative;
  padding-top: 120px;
}
@media (max-width: 599px) {
  .front_page .about_area {
    padding-top: 20%;
    padding-bottom: 20%;
  }
}
.front_page .about_area .about_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (max-width: 1025px) {
  .front_page .about_area .about_bg {
    display: none;
  }
}
.front_page .about_area .about_bg .dot {
  position: absolute;
  width: 5%;
  height: auto;
  aspect-ratio: 1;
  background: #40812C;
  border-radius: 50%;
}
.front_page .about_area .about_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 599px) {
  .front_page .about_area .about_inner {
    padding: 0 20px;
  }
}
.front_page .about_area .about_inner::before {
  content: "";
  display: block;
  background: url(./img/about.png) no-repeat center center;
  background-size: contain;
  width: 25%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: -15%;
  left: 0%;
}
@media (max-width: 1025px) {
  .front_page .about_area .about_inner::before {
    top: -45%;
  }
}
@media (max-width: 599px) {
  .front_page .about_area .about_inner::before {
    width: 50%;
    top: auto;
    bottom: -60%;
    left: auto;
    right: -2%;
  }
}
.front_page .about_area .about_inner::after {
  content: "";
  display: block;
  background: url(./img/socks_about.png) no-repeat center center;
  background-size: contain;
  width: 20%;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  bottom: -20%;
  right: 0;
}
@media (max-width: 1025px) {
  .front_page .about_area .about_inner::after {
    width: 25%;
    bottom: -30%;
    z-index: 5;
  }
}
@media (max-width: 599px) {
  .front_page .about_area .about_inner::after {
    display: none;
  }
}
.front_page .about_area .about_inner h3 {
  display: block;
  position: relative;
  z-index: -1;
}
.front_page .about_area .about_inner p {
  font-size: 16px;
  line-height: 2.4;
  display: inline-block;
  background-color: #FFFEF6;
}
@media (max-width: 599px) {
  .front_page .about_area .about_inner p {
    font-size: 3.8vw;
  }
}
.front_page .news_area {
  background-color: #FDF5E6;
  position: relative;
  margin: 15% auto 0;
  padding-bottom: 80px;
}
@media (max-width: 599px) {
  .front_page .news_area {
    padding-bottom: 10%;
  }
}
.front_page .news_area #waveCanvas2 {
  transform: rotate(0);
  position: absolute;
  height: 10vw;
  top: -10vw;
  width: 110%;
  left: -5%;
}
@media (max-width: 1025px) {
  .front_page .news_area #waveCanvas2 {
    height: 20vw;
    top: -20vw;
  }
}
.front_page .news_area .news_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner {
    padding: 0 20px;
  }
}
.front_page .news_area .news_inner .news_contents {
  display: flex;
  justify-content: space-between;
  margin: 60px auto;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents {
    margin: 40px auto;
    flex-direction: column;
  }
}
.front_page .news_area .news_inner .news_contents .sdgs_wrap {
  width: 50%;
  background-color: #40812C;
  border-radius: 10px;
  padding: 60px;
  color: #FFFEF6;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .sdgs_wrap {
    width: 100%;
    margin-bottom: 5%;
  }
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .sdgs_wrap {
    padding: 40px 20px;
  }
}
.front_page .news_area .news_inner .news_contents .sdgs_wrap figure {
  width: 30%;
  margin: 0 auto 40px;
  position: relative;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .sdgs_wrap figure {
    margin-bottom: 20px;
  }
}
.front_page .news_area .news_inner .news_contents .sdgs_wrap figure::before {
  content: "";
  display: block;
  background: url(./img/sdgs.svg) no-repeat center center;
  background-size: contain;
  width: 70%;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 15%;
  left: -40%;
}
.front_page .news_area .news_inner .news_contents .sdgs_wrap .ttl {
  font-family: "M PLUS 1", sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .sdgs_wrap .ttl {
    font-size: 5vw;
  }
}
.front_page .news_area .news_inner .news_contents .sdgs_wrap p {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .sdgs_wrap p {
    font-size: 3.4vw;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .news_wrap {
    flex-direction: initial;
    flex-wrap: wrap;
    width: 100%;
    gap: 4%;
  }
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap {
    gap: 2%;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li {
  background-color: #1B769E;
  border: solid 2px #1B769E;
  border-radius: 10px;
  transition: 0.3s;
}
.front_page .news_area .news_inner .news_contents .news_wrap li:nth-of-type(4) {
  display: none;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li:nth-of-type(4) {
    display: block;
  }
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li {
    width: 48%;
    margin-bottom: 4%;
  }
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li {
    width: 49%;
    margin-bottom: 2%;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #FFFEF6;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a {
    display: block;
  }
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a {
    padding: 15px;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_img {
  width: 30%;
  height: auto;
  aspect-ratio: 1;
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_img img {
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_img {
    width: 80%;
    margin: 0 auto 20px;
  }
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_img {
    width: 100%;
    margin-bottom: 5px;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_text {
  width: 65%;
}
@media (max-width: 1025px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_text {
    width: 100%;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_text_detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_text_detail {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_text_detail .news_category {
  border: solid 1px #FFFEF6;
  padding: 5px 10px;
  border-radius: 60px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_text_detail .news_category {
    font-size: 3.2vw;
    margin-top: 10px;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_text_detail .news_date {
  text-align: right;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_text_detail .news_date {
    font-size: 3.2vw;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_ttl {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .front_page .news_area .news_inner .news_contents .news_wrap li a .news_text .news_ttl {
    font-size: 3.6vw;
  }
}
.front_page .news_area .news_inner .news_contents .news_wrap li:hover {
  background-color: initial;
}
.front_page .news_area .news_inner .news_contents .news_wrap li:hover a {
  color: #1B769E;
}
.front_page .news_area .news_inner .news_contents .news_wrap li:hover a .news_text_detail .news_category {
  border: solid 1px #1B769E;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-release {
  background-color: #E1AC51;
  border: solid 2px #E1AC51;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-release:hover a {
  color: #E1AC51;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-release:hover a .news_text_detail .news_category {
  border: solid 1px #E1AC51;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-sdgs {
  background-color: #40812C;
  border: solid 2px #40812C;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-sdgs:hover a {
  color: #40812C;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-sdgs:hover a .news_text_detail .news_category {
  border: solid 1px #40812C;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-recruit {
  background-color: #CD5C35;
  border: solid 2px #CD5C35;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-recruit:hover a {
  color: #CD5C35;
}
.front_page .news_area .news_inner .news_contents .news_wrap .cat-recruit:hover a .news_text_detail .news_category {
  border: solid 1px #CD5C35;
}
.front_page .news_area .news_inner .btn {
  background-color: initial;
  color: #40812C;
}
.front_page .news_area .news_inner .btn:hover {
  background-color: #40812C;
  color: #FFFEF6;
}
.front_page .recruit_area {
  background-color: #40812C;
}
.front_page .recruit_area .recruit_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1025px) {
  .front_page .recruit_area .recruit_inner {
    padding: 10% 40px 0;
  }
}
@media (max-width: 599px) {
  .front_page .recruit_area .recruit_inner {
    flex-direction: column-reverse;
    padding: 10% 20px 0;
  }
}
.front_page .recruit_area .recruit_inner .img_wrap {
  width: 30%;
  margin-right: 5%;
  background-color: #FFFEF6;
  padding-top: 12%;
  border-radius: 500px 500px 0 0;
}
@media (max-width: 1025px) {
  .front_page .recruit_area .recruit_inner .img_wrap {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .front_page .recruit_area .recruit_inner .img_wrap {
    width: 100%;
    padding-top: 35%;
    margin-right: 0;
  }
}
.front_page .recruit_area .recruit_inner .img_wrap figure {
  position: relative;
}
.front_page .recruit_area .recruit_inner .img_wrap figure::before {
  content: "";
  display: block;
  background: url(./img/recruit_text.svg) no-repeat center center;
  background-size: contain;
  width: 50%;
  height: auto;
  aspect-ratio: 3/1;
  position: absolute;
  top: -30%;
  left: 10%;
}
@media (max-width: 599px) {
  .front_page .recruit_area .recruit_inner .img_wrap figure::before {
    width: 45%;
    top: -23%;
  }
}
.front_page .recruit_area .recruit_inner .text_wrap {
  color: #FFFEF6;
}
@media (max-width: 1025px) {
  .front_page .recruit_area .recruit_inner .text_wrap {
    width: 45%;
  }
  .front_page .recruit_area .recruit_inner .text_wrap p {
    font-size: 12px;
  }
}
@media (max-width: 599px) {
  .front_page .recruit_area .recruit_inner .text_wrap {
    width: 100%;
    text-align: center;
    margin-bottom: 8%;
  }
}
.front_page .recruit_area .recruit_inner .text_wrap .btn {
  border-color: #FFFEF6;
  margin: 40px auto 0 0;
}
@media (max-width: 1025px) {
  .front_page .recruit_area .recruit_inner .text_wrap .btn {
    margin-top: 20px;
  }
}
@media (max-width: 599px) {
  .front_page .recruit_area .recruit_inner .text_wrap .btn {
    margin: 5% auto;
  }
}

/* ==============================================
            共通
============================================== */
.home .header {
  background-color: #40812C;
}
.home .header .header_hamburger {
  background-color: #FDF5E6;
}
.home .header .header_hamburger span {
  background-color: #40812C;
}
.home .header .header_hamburger.is-active {
  background-color: #FDF5E6;
}
.home .header .header_hamburger.is-active span {
  background-color: #40812C;
}

.top_area_template {
  background-color: #FDF5E6;
  position: relative;
}
.top_area_template .top_inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 3%;
  text-align: center;
}
@media (max-width: 599px) {
  .top_area_template .top_inner {
    padding: 0 20px 12%;
  }
}
.top_area_template .top_inner figure {
  width: 100px;
  margin: 0 auto 20px;
}
@media (max-width: 599px) {
  .top_area_template .top_inner figure {
    width: 20%;
  }
}
.top_area_template .top_inner h1 {
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .top_area_template .top_inner h1 {
    font-size: 8vw;
  }
}
.top_area_template .top_inner p {
  font-size: 14px;
}
@media (max-width: 599px) {
  .top_area_template .top_inner p {
    font-size: 3.4vw;
  }
}
.top_area_template #waveCanvasPage {
  transform: rotate(180deg);
  position: absolute;
  height: 200px;
  width: 110%;
  left: -5%;
  bottom: -40%;
  z-index: -1;
}
@media (max-width: 1025px) {
  .top_area_template #waveCanvasPage {
    bottom: -40%;
  }
}
@media (max-width: 599px) {
  .top_area_template #waveCanvasPage {
    height: 16vw;
    bottom: -16%;
  }
}

/* ==============================================
           about
============================================== */
.about_wrap {
  margin: 120px auto 0;
}
@media (max-width: 599px) {
  .about_wrap {
    margin: 20% auto 0;
  }
}
.about_wrap h2 {
  font-family: "M PLUS 1", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media (max-width: 1025px) {
  .about_wrap h2 {
    font-size: 26px;
  }
}
@media (max-width: 599px) {
  .about_wrap h2 {
    font-size: 6vw;
    margin-bottom: 5%;
  }
}
.about_wrap p {
  font-size: 16px;
  line-height: 2.4;
}
@media (max-width: 1025px) {
  .about_wrap p {
    font-size: 14px;
  }
}
.about_wrap .ceo_area {
  background-color: #FFFEF6;
  margin-top: 10%;
}
.about_wrap .ceo_area .ceo_inner {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin: 5% auto;
  padding: 0 40px;
}
@media (max-width: 1025px) {
  .about_wrap .ceo_area .ceo_inner {
    display: block;
  }
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner {
    padding: 0 20px;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df {
    flex-direction: column-reverse;
    margin-bottom: 10%;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df .text {
  width: 40%;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df .text {
    width: 100%;
    margin-bottom: 5%;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df .text h2 {
  font-size: 20px;
  font-family: "M PLUS 1", sans-serif;
  margin-bottom: 10%;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df .text h2 {
    font-size: 16px;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df .text h3 {
  font-weight: bold;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df .text h3 {
    font-size: 6vw;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df .text h3 span {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 60px);
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df .text h3 span {
    font-size: 8vw;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df figure {
  width: 55%;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df figure {
    width: 100%;
  }
}
.about_wrap .ceo_area .ceo_inner .ceo_inner_df figure img {
  border-radius: 0px 60px 60px 0;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner .ceo_inner_df figure img {
    border-radius: 0;
  }
}
.about_wrap .ceo_area .ceo_inner .text {
  width: 100%;
}
@media (max-width: 1025px) {
  .about_wrap .ceo_area .ceo_inner .text {
    width: 100%;
  }
}
.about_wrap .ceo_area .ceo_inner .text p {
  margin-bottom: 20px;
}
.about_wrap .ceo_area .ceo_inner .text p span {
  font-weight: bold;
  background-color: #40812C;
  padding: 0 3px;
  color: #FFFEF6;
}
.about_wrap .ceo_area .ceo_inner .text .name {
  text-align: right;
  margin-top: 20px;
  font-size: 18px;
}
.about_wrap .ceo_area .ceo_inner2 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner2 {
    position: initial;
    aspect-ratio: initial;
    display: flex;
    flex-direction: column-reverse;
    margin: 10% auto;
    background-color: #FDF5E6;
    padding: 40px 0;
  }
}
.about_wrap .ceo_area .ceo_inner2 figure {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner2 figure {
    position: initial;
    margin-bottom: 5%;
  }
}
.about_wrap .ceo_area .ceo_inner2 .text {
  width: auto;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 30px;
  background-color: rgba(253, 245, 230, 0.7);
}
@media (max-width: 599px) {
  .about_wrap .ceo_area .ceo_inner2 .text {
    position: initial;
    transform: initial;
    background-color: initial;
    padding: 20px;
  }
}
.about_wrap .ceo_area .ceo_inner2 .text h3 {
  font-weight: bold;
  letter-spacing: normal;
  font-style: italic;
}
@media (max-width: 1025px) {
  .about_wrap .ceo_area .ceo_inner2 .text h3 {
    font-size: 24px;
  }
}
.about_wrap .ceo_area .ceo_inner2 .text p {
  font-weight: bold;
}
@media (max-width: 1025px) {
  .about_wrap .ceo_area .ceo_inner2 .text p {
    font-size: 14px;
  }
}
.about_wrap .philosophy_area {
  background-color: #40812C;
  color: #FFFEF6;
}
.about_wrap .philosophy_area .philosophy_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 599px) {
  .about_wrap .philosophy_area .philosophy_inner {
    padding: 20% 20px 10%;
  }
}
@media (max-width: 599px) {
  .about_wrap .philosophy_area .decoration img {
    width: 200%;
  }
}
.about_wrap .profile_area {
  background-color: #FDF5E6;
  padding-bottom: 5%;
}
.about_wrap .profile_area .profile_inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 40px;
}
@media (max-width: 599px) {
  .about_wrap .profile_area .profile_inner {
    padding: 20% 20px;
  }
}
.about_wrap .profile_area .profile_inner h2 {
  text-align: center;
}
.about_wrap .profile_area .profile_inner table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #40812C;
  font-family: sans-serif;
  margin: 20px 0;
}
.about_wrap .profile_area .profile_inner table th, .about_wrap .profile_area .profile_inner table td {
  border: 1px solid #40812C;
  padding: 10px 20px;
  vertical-align: center;
}
@media (max-width: 599px) {
  .about_wrap .profile_area .profile_inner table th, .about_wrap .profile_area .profile_inner table td {
    padding: 10px;
  }
}
.about_wrap .profile_area .profile_inner table th {
  width: 25%;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 599px) {
  .about_wrap .profile_area .profile_inner table th {
    width: 30%;
    font-size: 3.2vw;
    padding: 10px 0;
  }
}
.about_wrap .profile_area .profile_inner table td {
  width: 75%;
  font-size: 16px;
  font-weight: normal;
}
@media (max-width: 599px) {
  .about_wrap .profile_area .profile_inner table td {
    font-size: 3.5vw;
  }
}
.about_wrap .profile_area .profile_inner table a {
  color: #40812C;
  text-decoration: underline;
  transition: 0.3s;
}
.about_wrap .profile_area .profile_inner table a:hover {
  color: #E1AC51;
}
.about_wrap .office_area {
  background: linear-gradient(to bottom, #6DB656, #40812C);
  color: #FFFEF6;
  position: relative;
  text-align: center;
}
.about_wrap .office_area #waveCanvas3 {
  transform: rotate(0);
  position: absolute;
  height: 10vw;
  top: -10vw;
  width: 110%;
  left: -5%;
}
.about_wrap .office_area .office_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px 40px;
}
@media (max-width: 599px) {
  .about_wrap .office_area .office_inner {
    padding: 15% 20px 20px;
  }
}
.about_wrap .office_area .slider-flow {
  width: 100%;
  overflow: hidden;
}
.about_wrap .office_area .slider-flow .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}
.about_wrap .office_area .slider-flow .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}
.about_wrap .office_area .slider-flow img {
  object-fit: cover;
  display: block;
}
.about_wrap .office_area .office_inner2 {
  padding: 40px;
}
.about_wrap .office_area .office_inner2 .address {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}
.about_wrap .office_area .office_inner2 .btn {
  border: solid 2px #FFFEF6;
  width: 80px;
  height: 40px;
  font-size: 14px;
  margin: 20px auto;
}

/* ==============================================
           recruit
============================================== */
#RecruitWrap.numbers {
  margin: 10% auto 8%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers {
    margin: 15% auto;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers {
    margin: 25% auto;
  }
}
#RecruitWrap.numbers .section-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 24px;
  background-color: #40812C;
  line-height: 1;
  padding: 15px 10px;
  display: inline-block;
  width: 25%;
  background-color: #40812C;
  border-radius: 60px;
  color: #FFFEF6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 500;
  margin: 0 auto 60px;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .section-title {
    width: 50%;
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .section-title {
    width: 90%;
    font-size: 5vw;
  }
}
#RecruitWrap.numbers .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid #40812C;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .section-title::after {
    bottom: -12px;
  }
}
#RecruitWrap.numbers .numbers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 2%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid {
    align-items: initial;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid {
    padding: 0 20px;
  }
}
#RecruitWrap.numbers .numbers-grid .card {
  background-color: #FDF5E6;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: #40812C;
  margin-bottom: 2%;
  min-width: 26%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card {
    padding: 20px;
  }
}
#RecruitWrap.numbers .numbers-grid .card .label {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}
#RecruitWrap.numbers .numbers-grid .card .label span {
  font-size: 14px;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .label {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .label {
    font-size: 5vw;
  }
}
#RecruitWrap.numbers .numbers-grid .card .value {
  font-family: "Fredoka", sans-serif;
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .value {
    font-size: 11vw;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .value {
    font-size: 18vw;
  }
}
#RecruitWrap.numbers .numbers-grid .card .value span {
  font-size: 16px;
  font-weight: normal;
  margin-left: 5px;
}
#RecruitWrap.numbers .numbers-grid .card img {
  max-width: 90%;
  margin: auto;
  display: block;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph {
  list-style: none;
  padding: 0;
  margin: 0;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li {
  width: 100%;
  margin-bottom: 6%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph li {
    margin-bottom: 8%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li:nth-last-of-type(1) {
  margin-bottom: 0;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li p {
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 5px;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph li p {
    font-size: 3.6vw;
  }
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li .bar {
  display: block;
  width: 0;
  height: 28px;
  border-radius: 4px;
  position: relative;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph li .bar {
    height: 20px;
  }
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li .bar span {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  color: inherit;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph li .bar span {
    font-size: 7vw;
    right: -50px;
  }
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li .bar span::after {
  content: "%";
  font-size: 12px;
  margin-left: 2px;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li.level01 .bar {
  background: #E1AC51;
  color: #E1AC51;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li.level02 .bar {
  background: #CD5C35;
  color: #CD5C35;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li.level03 .bar {
  background: #A82E2E;
  color: #A82E2E;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li.level04 .bar {
  background: #40812C;
  color: #40812C;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph li.level05 .bar {
  background: #1B769E;
  color: #1B769E;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph2 li {
  margin-bottom: 14%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph2 li {
    margin-bottom: 8%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph2 li p {
  width: 14%;
  margin: 0;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph2 li p {
    width: 18%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph2 li.level01 .bar {
  background: #A82E2E;
  color: #A82E2E;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph2 li.level02 .bar {
  background: #CD5C35;
  color: #CD5C35;
}
#RecruitWrap.numbers .numbers-grid .card .bar-graph3 li {
  margin-bottom: 14%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .bar-graph3 li {
    margin-bottom: 5%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df {
  display: flex;
  justify-content: space-between;
}
#RecruitWrap.numbers .numbers-grid .card .card_df .detail {
  width: 49%;
  text-align: center;
}
#RecruitWrap.numbers .numbers-grid .card .card_df .detail figure {
  width: auto;
  height: 80px;
  margin: 0 auto 10px;
}
#RecruitWrap.numbers .numbers-grid .card .card_df .detail .detail_label {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
#RecruitWrap.numbers .numbers-grid .card .card_df .detail .number {
  font-size: 60px;
}
#RecruitWrap.numbers .numbers-grid .card .card_df .detail2 {
  color: #E1AC51;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #A82E2E;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df2 .detail {
    display: block;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df2 .detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail figure {
  width: 40%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df2 .detail figure {
    height: 7vw;
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df2 .detail figure {
    height: 18vw;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text {
  width: 60%;
  text-align: center;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text {
    width: 100%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text .detail_label {
  font-size: 14px;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text .number {
  font-size: 40px;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text .fukidashi {
  background-color: #40812C;
  margin-bottom: 20px;
  color: #FFFEF6;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 50px;
  position: relative;
  transform: rotate(-2deg);
  margin-left: 10px;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text .fukidashi::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 12px solid #40812C;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail .text .fukidashi:nth-of-type(2) {
  transform: rotate(4deg);
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail2 {
  color: #CD5C35;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail3 {
  color: #E1AC51;
  width: 30%;
  justify-content: center;
  margin-top: 20px;
}
#RecruitWrap.numbers .numbers-grid .card .card_df2 .detail4 {
  margin-top: 10px;
  justify-content: flex-start;
  width: 70%;
}
#RecruitWrap.numbers .numbers-grid .card .card_df3 .detail {
  color: #FFFEF6;
}
#RecruitWrap.numbers .numbers-grid .card .card_df4 .detail {
  color: #CD5C35;
}
#RecruitWrap.numbers .numbers-grid .card .card_df4 .detail2 {
  color: #A82E2E;
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail {
  width: 50%;
  margin: 0;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df5 .detail {
    display: flex;
    align-items: center;
    margin-bottom: 5%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail figure {
  width: 30%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df5 .detail figure {
    height: auto;
    width: 40%;
    height: 6vw;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df5 .detail figure {
    height: 12vw;
    margin-right: 10%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail .text {
  width: 70%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df5 .detail .text {
    width: 60%;
    margin-left: -10%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail .text .detail_label {
  margin-bottom: 0;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df5 .detail .text .detail_label {
    text-align: left;
  }
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .card_df5 .detail .text .number {
    text-align: left;
  }
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail1 {
  color: #A82E2E;
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail2 .text {
  width: 100%;
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail2 .text .fukidashi {
  font-size: 10px;
  line-height: 1.3;
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail3 {
  color: #CD5C35;
}
#RecruitWrap.numbers .numbers-grid .card .card_df5 .detail4 {
  color: #E1AC51;
}
#RecruitWrap.numbers .numbers-grid .card .chart {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart {
    width: 70%;
    height: auto;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
#RecruitWrap.numbers .numbers-grid .card .chart svg .bg-circle {
  fill: #FDF5E6;
  stroke: #FDF5E6;
  stroke-width: 40;
}
#RecruitWrap.numbers .numbers-grid .card .chart svg .arc {
  fill: none;
  stroke-width: 30;
  stroke-linecap: butt;
  stroke-dasharray: 0 628;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart svg .arc {
    stroke-width: 20;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart svg .arc {
    stroke-width: 30;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart .pie-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: #40812C;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .pie-label {
    font-size: 3vw;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .pie-label {
    font-size: 4.5vw;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart .values {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  text-align: center;
}
#RecruitWrap.numbers .numbers-grid .card .chart .values li {
  position: absolute;
}
#RecruitWrap.numbers .numbers-grid .card .chart .values li p {
  line-height: 1.3;
  font-size: 14px;
  font-weight: bold;
}
#RecruitWrap.numbers .numbers-grid .card .chart .values li p span {
  font-family: "Fredoka", sans-serif;
  font-size: 32px;
}
#RecruitWrap.numbers .numbers-grid .card .chart .values .level01 {
  color: #E1AC51;
  top: -5%;
  right: -5%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level01 {
    top: -2%;
    right: -15%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart .values .level02 {
  color: #CD5C35;
  top: 45%;
  right: -20%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level02 {
    right: -30%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level02 {
    right: -25%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart .values .level03 {
  color: #A82E2E;
  bottom: 0;
  left: -10%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level03 {
    left: -15%;
    bottom: -5%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart .values .level04 {
  color: #1B769E;
  top: 40%;
  left: -20%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level04 {
    left: -30%;
    top: 35%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level04 {
    left: -25%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart .values .level05 {
  color: #40812C;
  top: -5%;
  left: -10%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart .values .level05 {
    top: 0;
  }
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart2 {
    width: 100%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart2 svg .bg-circle {
  fill: #40812C;
  stroke: #40812C;
}
#RecruitWrap.numbers .numbers-grid .card .chart2 svg .arc {
  fill: none;
  stroke-width: 30;
  stroke-linecap: butt;
  stroke-dasharray: 0 628;
}
#RecruitWrap.numbers .numbers-grid .card .chart2 .pie-label {
  color: #FFFEF6;
  text-align: center;
  line-height: 1.3;
}
#RecruitWrap.numbers .numbers-grid .card .chart2 .values li {
  transform: scale(1.1);
}
#RecruitWrap.numbers .numbers-grid .card .chart2 .values .level01 {
  color: #E1AC51;
  top: auto;
  bottom: 0;
  right: -5%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart2 .values .level01 {
    bottom: -30%;
    right: 10%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart2 .values .level01 {
    bottom: 0%;
    right: 0%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .chart2 .values .level02 {
  color: #FFFEF6;
  top: -5%;
  right: auto;
  left: -5%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .chart2 .values .level02 {
    left: 10%;
    top: auto;
    bottom: -30%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .chart2 .values .level02 {
    bottom: auto;
    top: 0%;
    left: 0%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area {
  position: relative;
}
#RecruitWrap.numbers .numbers-grid .card .map_area img {
  display: block;
  width: 80%;
  height: 80%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area img {
    width: 90%;
    height: 90%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values li {
  position: absolute;
  width: 10%;
  height: auto;
  aspect-ratio: 1;
  background-color: #1B769E;
  border: solid 1px #FFFEF6;
  color: #FFFEF6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values li {
    width: 12%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values li {
    width: 15%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values li p {
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values li p span {
  font-size: 28px;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values li p {
    font-size: 12px;
  }
  #RecruitWrap.numbers .numbers-grid .card .map_area .values li p span {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values li p {
    font-size: 11px;
  }
  #RecruitWrap.numbers .numbers-grid .card .map_area .values li p span {
    font-size: 4vw;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .level01 {
  background-color: #A82E2E;
  transform: scale(1.8);
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .level02 {
  background-color: #CD5C35;
  transform: scale(1.5);
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .level03 {
  background-color: #E1AC51;
  transform: scale(1.2);
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area1 {
  bottom: 30%;
  right: 15%;
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area2 {
  bottom: 30%;
  right: 0;
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area3 {
  bottom: 10%;
  right: 5%;
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area4 {
  bottom: 0;
  right: 30%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values .area4 {
    bottom: 0;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area5 {
  bottom: -2%;
  right: 40%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values .area5 {
    bottom: 0;
    right: 45%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area6 {
  top: 35%;
  left: 50%;
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area7 {
  top: 25%;
  left: 35%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values .area7 {
    top: 3%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area8 {
  top: 50%;
  left: 32%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values .area8 {
    left: 25%;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area9 {
  bottom: 20%;
  left: 0%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values .area9 {
    left: 0;
  }
}
#RecruitWrap.numbers .numbers-grid .card .map_area .values .area10 {
  top: 30%;
  left: 10%;
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .card .map_area .values .area10 {
    left: 5px;
  }
}
#RecruitWrap.numbers .numbers-grid .card .item-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
#RecruitWrap.numbers .numbers-grid .card .item-list.list-vertical {
  flex-direction: column;
}
#RecruitWrap.numbers .numbers-grid .card .item-list.list-circle {
  flex-direction: row;
  border-radius: 50%;
}
#RecruitWrap.numbers .numbers-grid .card .item-list.list-pie {
  flex-direction: row;
  justify-content: space-between;
}
#RecruitWrap.numbers .numbers-grid .card .item-list .item {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#RecruitWrap.numbers .numbers-grid .card1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#RecruitWrap.numbers .numbers-grid .card_green {
  background-color: #40812C;
  color: #FFFEF6;
}
#RecruitWrap.numbers .numbers-grid .card2 .label {
  text-align: left;
}
#RecruitWrap.numbers .numbers-grid .card3 {
  border-radius: 12px 12px 80px 12px;
}
#RecruitWrap.numbers .numbers-grid .w01, #RecruitWrap.numbers .numbers-grid .w03, #RecruitWrap.numbers .numbers-grid .w04, #RecruitWrap.numbers .numbers-grid .w06, #RecruitWrap.numbers .numbers-grid .w08, #RecruitWrap.numbers .numbers-grid .w11, #RecruitWrap.numbers .numbers-grid .w14 {
  width: 28.57%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w01, #RecruitWrap.numbers .numbers-grid .w03, #RecruitWrap.numbers .numbers-grid .w04, #RecruitWrap.numbers .numbers-grid .w06, #RecruitWrap.numbers .numbers-grid .w08, #RecruitWrap.numbers .numbers-grid .w11, #RecruitWrap.numbers .numbers-grid .w14 {
    width: 49%;
  }
}
#RecruitWrap.numbers .numbers-grid .w01 .label {
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w01 {
    width: 36%;
  }
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w03 .label {
    height: 8vw;
  }
}
#RecruitWrap.numbers .numbers-grid .w02, #RecruitWrap.numbers .numbers-grid .w05 {
  width: 37.5%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w02, #RecruitWrap.numbers .numbers-grid .w05 {
    width: 62%;
  }
}
#RecruitWrap.numbers .numbers-grid .w04, #RecruitWrap.numbers .numbers-grid .w05 {
  margin-top: -4%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w04, #RecruitWrap.numbers .numbers-grid .w05 {
    margin-top: 0;
  }
}
#RecruitWrap.numbers .numbers-grid .w05 {
  padding-top: 4%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w05 {
    width: 60%;
  }
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w06 {
    width: 38%;
  }
}
#RecruitWrap.numbers .numbers-grid .w07 {
  width: 69%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w07 {
    width: 100%;
  }
}
#RecruitWrap.numbers .numbers-grid .w08 {
  margin-top: -4%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w08 {
    margin-top: 0;
  }
}
#RecruitWrap.numbers .numbers-grid .w09, #RecruitWrap.numbers .numbers-grid .w10, #RecruitWrap.numbers .numbers-grid .w12, #RecruitWrap.numbers .numbers-grid .w13 {
  width: 33.5%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w09, #RecruitWrap.numbers .numbers-grid .w10, #RecruitWrap.numbers .numbers-grid .w12, #RecruitWrap.numbers .numbers-grid .w13 {
    width: 49%;
  }
}
#RecruitWrap.numbers .numbers-grid .w11 {
  margin-top: -22%;
  padding: 8% 30px;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w11 {
    margin-top: 0;
    padding: 20px;
  }
}
#RecruitWrap.numbers .numbers-grid .w12 {
  padding-bottom: 3%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w12 {
    padding-bottom: 30px;
    width: 40%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .w12 {
    padding-bottom: 20px;
  }
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w13 {
    width: 58%;
  }
}
#RecruitWrap.numbers .numbers-grid .w14 {
  margin-top: -10%;
}
@media (max-width: 1025px) {
  #RecruitWrap.numbers .numbers-grid .w14 {
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 599px) {
  #RecruitWrap.numbers .numbers-grid .w01, #RecruitWrap.numbers .numbers-grid .w02, #RecruitWrap.numbers .numbers-grid .w03, #RecruitWrap.numbers .numbers-grid .w04, #RecruitWrap.numbers .numbers-grid .w05, #RecruitWrap.numbers .numbers-grid .w06, #RecruitWrap.numbers .numbers-grid .w07, #RecruitWrap.numbers .numbers-grid .w08, #RecruitWrap.numbers .numbers-grid .w09, #RecruitWrap.numbers .numbers-grid .w10, #RecruitWrap.numbers .numbers-grid .w11, #RecruitWrap.numbers .numbers-grid .w12, #RecruitWrap.numbers .numbers-grid .w13, #RecruitWrap.numbers .numbers-grid .w14 {
    width: 100%;
  }
}

#interview {
  margin-top: 8%;
  padding: 8% 0;
  background-color: #40812C;
}
@media (max-width: 599px) {
  #interview {
    padding: 12% 0;
  }
}
#interview .section-title {
  font-family: "M PLUS 1", sans-serif;
  font-size: 24px;
  background-color: #FFFEF6;
  line-height: 1;
  padding: 15px 10px;
  display: inline-block;
  width: 25%;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 500;
  margin: 0 auto 60px;
  color: #40812C;
}
@media (max-width: 1025px) {
  #interview .section-title {
    width: 50%;
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  #interview .section-title {
    width: 80%;
    font-size: 5vw;
  }
}
#interview .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid #FFFEF6;
}
#interview .swiper {
  padding-bottom: 4%;
}
@media (max-width: 1025px) {
  #interview .swiper {
    padding-bottom: 8%;
  }
}
#interview .swiper-slide {
  text-align: center;
  cursor: pointer;
  background-color: #FFFEF6;
  padding: 40px;
}
#interview .swiper-slide:hover img {
  transform: rotate(5deg);
}
#interview .swiper-slide img {
  height: auto;
  border-radius: 12px;
}
#interview .swiper-slide p {
  font-size: 24px;
  font-weight: bold;
  font-family: "Fredoka", sans-serif;
  line-height: 1.3;
  margin: 20px auto 0;
}
#interview .swiper-slide p span {
  font-size: 14px;
  font-weight: normal;
  display: block;
  color: #40812C;
}
#interview .swiper-pagination {
  bottom: 0;
}
#interview .swiper-pagination-bullet {
  border: solid 1px #FFFEF6;
  background-color: initial;
}
#interview .swiper-pagination-bullet-active {
  background-color: #FFFEF6;
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(64, 129, 44, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#modal.active {
  display: flex;
}
#modal .modal-inner {
  background-color: #FDF5E6;
  padding: 40px;
  max-width: 700px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  max-height: 90vh;
  overflow-y: scroll;
}
@media (max-width: 599px) {
  #modal .modal-inner {
    padding: 10% 20px;
  }
}
#modal .modal-inner .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  background-color: #40812C;
  color: #FFFEF6;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: solid 1px #40812C;
  transition: 0.3s;
}
#modal .modal-inner .modal-close:hover {
  background-color: #FFFEF6;
  color: #40812C;
}
#modal .modal-inner #modal-img {
  display: block;
  width: 40%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto 20px;
}
@media (max-width: 599px) {
  #modal .modal-inner #modal-img {
    width: 80%;
  }
}
#modal .modal-inner #modal-department {
  font-size: 14px;
  color: #40812C;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1;
  text-align: center;
}
#modal .modal-inner #modal-name {
  font-size: 32px;
  margin-bottom: 15px;
  font-family: "Fredoka", sans-serif;
  text-align: center;
  line-height: 1;
}
#modal .modal-inner #modal-description {
  line-height: 1.8;
}
#modal .modal-inner #modal-description .question_wrap {
  margin: 40px auto;
}
#modal .modal-inner #modal-description .question_wrap .question {
  background-color: #40812C;
  color: #FFFEF6;
  padding: 10px;
  margin-bottom: 20px;
}
#modal .modal-inner #modal-description .socks_df {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 599px) {
  #modal .modal-inner #modal-description .socks_df {
    display: block;
  }
}
#modal .modal-inner #modal-description .socks_df figure {
  width: 40%;
}
@media (max-width: 599px) {
  #modal .modal-inner #modal-description .socks_df figure {
    width: 80%;
    margin: 0 auto 20px;
  }
}
#modal .modal-inner #modal-description .socks_df p {
  display: block;
  width: 55%;
}
@media (max-width: 599px) {
  #modal .modal-inner #modal-description .socks_df p {
    width: 100%;
  }
}

.qa_area {
  max-width: 1200px;
  width: 100%;
  margin: 8% auto;
  padding: 0 40px;
}
@media (max-width: 599px) {
  .qa_area {
    padding: 20% auto;
    padding: 0 20px;
  }
}
.qa_area .section-title {
  font-size: 32px;
  text-align: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
}
@media (max-width: 1025px) {
  .qa_area .section-title {
    font-size: 28px;
  }
}
.qa_area .qa_wrap {
  margin: 40px auto 60px;
}
.qa_area .qa_wrap .question {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #40812C;
  padding-bottom: 10px;
}
.qa_area .qa_wrap .question .en {
  font-size: 32px;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-right: 20px;
}
@media (max-width: 1025px) {
  .qa_area .qa_wrap .question .en {
    font-size: 28px;
  }
}
.qa_area .qa_wrap .question p {
  line-height: 1;
  font-size: 24px;
}
@media (max-width: 1025px) {
  .qa_area .qa_wrap .question p {
    font-size: 18px;
  }
}
.qa_area .qa_wrap .answer {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}
.qa_area .qa_wrap .answer .en {
  font-size: 32px;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: 1;
  margin-right: 20px;
}
@media (max-width: 1025px) {
  .qa_area .qa_wrap .answer .en {
    font-size: 28px;
  }
}
.qa_area .qa_wrap .answer p {
  font-size: 18px;
}
@media (max-width: 1025px) {
  .qa_area .qa_wrap .answer p {
    font-size: 16px;
  }
}

.recruit_btn_wrap {
  background-color: #40812C;
  color: #FFFEF6;
  padding: 4% 40px;
}
@media (max-width: 1025px) {
  .recruit_btn_wrap {
    padding: 10% 40px;
  }
}
@media (max-width: 599px) {
  .recruit_btn_wrap {
    padding: 10% 20px;
  }
}
.recruit_btn_wrap .recruit_text {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  font-family: "M PLUS 1", sans-serif;
}
@media (max-width: 599px) {
  .recruit_btn_wrap .recruit_text {
    font-size: 4.5vw;
  }
}
.recruit_btn_wrap .btn {
  border: solid 2px #FFFEF6;
  margin: 40px auto 0;
  background-color: #E1AC51;
  width: auto;
  padding: 10px 40px;
  line-height: 1.5;
  width: 20%;
}
@media (max-width: 1025px) {
  .recruit_btn_wrap .btn {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .recruit_btn_wrap .btn {
    width: 90%;
    padding: 10px 20px;
    margin: 20px auto 0;
  }
}
.recruit_btn_wrap .btn:hover {
  background-color: #FFFEF6;
}
.recruit_btn_wrap .disabled {
  background-color: #40812C;
  border-radius: 0;
  width: auto;
}
.recruit_btn_wrap .disabled:hover {
  background-color: #40812C;
  color: #FFFEF6;
}

/* ==============================================
           achive-news
============================================== */
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 599px) {
  .inner {
    padding: 0 20px;
  }
}

.news_archive {
  margin: 10% auto;
}
@media (max-width: 599px) {
  .news_archive {
    margin: 20% auto;
  }
}
.news_archive .news_wrap {
  width: 100%;
  display: flex;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
}
@media (max-width: 1025px) {
  .news_archive .news_wrap {
    flex-direction: initial;
    flex-wrap: wrap;
    width: 100%;
    gap: 4%;
  }
}
@media (max-width: 599px) {
  .news_archive .news_wrap {
    gap: 2%;
  }
}
.news_archive .news_wrap li {
  width: 48%;
  background-color: #1B769E;
  border: solid 2px #1B769E;
  border-radius: 10px;
  transition: 0.3s;
}
.news_archive .news_wrap li:nth-of-type(4) {
  display: none;
}
@media (max-width: 1025px) {
  .news_archive .news_wrap li:nth-of-type(4) {
    display: block;
  }
}
@media (max-width: 1025px) {
  .news_archive .news_wrap li {
    width: 48%;
    margin-bottom: 4%;
  }
}
@media (max-width: 599px) {
  .news_archive .news_wrap li {
    width: 49%;
    margin-bottom: 2%;
  }
}
.news_archive .news_wrap li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #FFFEF6;
}
@media (max-width: 1025px) {
  .news_archive .news_wrap li a {
    display: block;
  }
}
@media (max-width: 599px) {
  .news_archive .news_wrap li a {
    padding: 15px;
  }
}
.news_archive .news_wrap li a .news_img {
  width: 30%;
  height: auto;
  aspect-ratio: 1;
}
.news_archive .news_wrap li a .news_img img {
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 1025px) {
  .news_archive .news_wrap li a .news_img {
    width: 80%;
    margin: 0 auto 20px;
  }
}
@media (max-width: 599px) {
  .news_archive .news_wrap li a .news_img {
    width: 100%;
    margin-bottom: 5px;
  }
}
.news_archive .news_wrap li a .news_text {
  width: 65%;
}
@media (max-width: 1025px) {
  .news_archive .news_wrap li a .news_text {
    width: 100%;
  }
}
.news_archive .news_wrap li a .news_text .news_text_detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .news_archive .news_wrap li a .news_text .news_text_detail {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.news_archive .news_wrap li a .news_text .news_text_detail .news_category {
  border: solid 1px #FFFEF6;
  padding: 5px 10px;
  border-radius: 60px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 599px) {
  .news_archive .news_wrap li a .news_text .news_text_detail .news_category {
    font-size: 3.2vw;
    margin-top: 10px;
  }
}
.news_archive .news_wrap li a .news_text .news_text_detail .news_date {
  text-align: right;
}
@media (max-width: 599px) {
  .news_archive .news_wrap li a .news_text .news_text_detail .news_date {
    font-size: 3.2vw;
  }
}
.news_archive .news_wrap li a .news_text .news_ttl {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .news_archive .news_wrap li a .news_text .news_ttl {
    font-size: 3.6vw;
  }
}
.news_archive .news_wrap li:hover {
  background-color: initial;
}
.news_archive .news_wrap li:hover a {
  color: #1B769E;
}
.news_archive .news_wrap li:hover a .news_text_detail .news_category {
  border: solid 1px #1B769E;
}
.news_archive .news_wrap .cat-release {
  background-color: #E1AC51;
  border: solid 2px #E1AC51;
}
.news_archive .news_wrap .cat-release:hover a {
  color: #E1AC51;
}
.news_archive .news_wrap .cat-release:hover a .news_text_detail .news_category {
  border: solid 1px #E1AC51;
}
.news_archive .news_wrap .cat-sdgs {
  background-color: #40812C;
  border: solid 2px #40812C;
}
.news_archive .news_wrap .cat-sdgs:hover a {
  color: #40812C;
}
.news_archive .news_wrap .cat-sdgs:hover a .news_text_detail .news_category {
  border: solid 1px #40812C;
}
.news_archive .news_wrap .cat-recruit {
  background-color: #CD5C35;
  border: solid 2px #CD5C35;
}
.news_archive .news_wrap .cat-recruit:hover a {
  color: #CD5C35;
}
.news_archive .news_wrap .cat-recruit:hover a .news_text_detail .news_category {
  border: solid 1px #CD5C35;
}
.news_archive .pagination {
  margin: 60px auto;
}
.news_archive .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.news_archive .pagination a {
  border: solid 2px #40812C;
  color: #40812C;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  transition: 0.3s;
}
.news_archive .pagination a:hover {
  background-color: #40812C;
  color: #FFFEF6;
}
.news_archive .pagination span {
  background-color: #40812C;
  color: #FFFEF6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.news_archive .pagination a .pg-arrow {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFFEF6;
}
.news_archive .pagination a .pg-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #40812C;
  border-right: 2px solid #40812C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.news_archive .pagination a .pg-arrow.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.news_archive .pagination a .pg-arrow.next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.news_archive .pagination a:hover .pg-arrow {
  background-color: #40812C;
}
.news_archive .pagination a:hover .pg-arrow::before {
  border-color: #FFFEF6;
}

.news_single {
  background-color: #FDF5E6;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 599px) {
  .news_single {
    padding: 10px 0 0;
  }
}
.news_single .inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  background-color: #FFFEF6;
  border-radius: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 599px) {
  .news_single .inner {
    padding: 10% 20px;
    border-radius: 0;
  }
}
.news_single .bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 599px) {
  .news_single .bg-dots {
    display: none;
  }
}
.news_single .bg-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #40812C;
  border-radius: 50%;
}
.news_single article h1 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: "M PLUS 1", sans-serif;
}
@media (max-width: 599px) {
  .news_single article h1 {
    font-size: 7vw;
    line-height: 1.5;
  }
}
.news_single article .news_single_meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
.news_single article .news_single_meta .date {
  font-size: 14px;
}
.news_single article .news_single_meta .cat a {
  display: block;
  border: solid 1px #40812C;
  margin: 0 0 0 10px;
  padding: 5px 10px;
  color: #40812C;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  border-radius: 10px;
  transition: 0.3s;
}
.news_single article .news_single_meta .cat a:hover {
  background-color: #40812C;
  color: #FFFEF6;
}
.news_single article p {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 599px) {
  .news_single article p {
    font-size: 4vw;
  }
}
.news_single article figure {
  margin: 20px auto;
}
.news_single article h2, .news_single article h3, .news_single article h4, .news_single article h5 {
  margin: 60px auto 20px;
  font-family: "M PLUS 1", sans-serif;
}
@media (max-width: 599px) {
  .news_single article h2, .news_single article h3, .news_single article h4, .news_single article h5 {
    margin: 10% auto 4%;
  }
}
.news_single article h2 {
  border-bottom: dotted 2px #40812C;
  font-size: 24px;
}
@media (max-width: 599px) {
  .news_single article h2 {
    font-size: 6vw;
  }
}
.news_single article h3 {
  font-size: 22px;
  border-left: solid 7px #E1AC51;
  padding-left: 10px;
}
@media (max-width: 599px) {
  .news_single article h3 {
    font-size: 5vw;
    line-height: 1.5;
  }
}
.news_single article h4 {
  font-size: 20px;
  color: #CD5C35;
}
@media (max-width: 599px) {
  .news_single article h4 {
    font-size: 4.5vw;
  }
}
.news_single article a {
  color: #CD5C35;
  overflow-wrap: break-word;
  font-weight: bold;
  transition: 0.3s;
  display: block;
  margin: 20px auto;
}
@media (max-width: 599px) {
  .news_single article a {
    font-size: 4vw;
  }
}
.news_single article a:hover {
  color: #E1AC51;
}
.news_single article ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 40px auto;
}
.news_single article ul li {
  margin-bottom: 10px;
}
.news_single article .btn {
  color: #FFFEF6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
@media (max-width: 599px) {
  .news_single article .btn {
    font-size: 4vw;
  }
}
.news_single article .btn:hover {
  color: #40812C;
}

/* ==============================================
           contact
============================================== */
.contact-container {
  max-width: 800px;
  width: 100%;
  margin: 8% auto;
  padding: 0 40px;
}
@media (max-width: 1025px) {
  .contact-container {
    margin: 20% auto;
  }
}
@media (max-width: 599px) {
  .contact-container {
    padding: 0 20px;
  }
}

.form-row {
  gap: 20px;
  margin-bottom: 25px;
  width: 100%;
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

p .form-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}
p .form-label .required {
  color: #A82E2E;
  margin-left: 4px;
}
@media (max-width: 600px) {
  p .form-label {
    width: auto;
  }
}

.form-field {
  width: 100%;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: solid 1px rgba(64, 129, 44, 0.3);
  border-radius: 6px;
  font-size: 15px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border: solid 1px #40812C;
  outline: none;
}

.form-select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="%23080808" height="16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M4 6l4 4 4-4z"/></svg>') no-repeat;
  background-position: right 14px center;
  padding-right: 50px;
  border-radius: 6px;
}

.textarea-row .form-field .form-textarea {
  height: 180px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-submit .btn-contact {
  background-color: #40812C;
  border: solid 2px #40812C;
  color: #FFFEF6;
  padding: 12px 60px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: 0.3s;
}
.form-submit .btn-contact:hover {
  background-color: #FFFEF6;
  color: #40812C;
}

/* ==============================================
           404
============================================== */
.error_area {
  min-height: 80vh;
  background-color: #FDF5E6;
  text-align: center;
  padding: 5% 0;
}
.error_area h1 {
  font-size: 120px;
  font-family: "Fredoka", sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}
.error_area h2 {
  font-size: 24px;
}
.error_area p {
  font-size: 18px;
}

/* ==============================================
           thanks
============================================== */
.thanks_area {
  min-height: 80vh;
  background-color: #FDF5E6;
  text-align: center;
  padding-top: 10%;
}
.thanks_area h1 {
  font-family: "M PLUS 1", sans-serif;
  font-size: 40px;
}
@media (max-width: 599px) {
  .thanks_area h1 {
    font-size: 7vw;
  }
}
.thanks_area p {
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 599px) {
  .thanks_area p {
    font-size: 4vw;
  }
}

/* ==============================================
           privacy
============================================== */
.privacy_wrap {
  max-width: 1200px;
  width: 100%;
  margin: 15% auto;
  padding: 0 40px;
}
@media (max-width: 599px) {
  .privacy_wrap {
    padding: 0 20px;
    margin: 25% auto;
  }
}
.privacy_wrap h2 {
  font-size: 24px;
  margin: 40px auto 10px;
}
@media (max-width: 599px) {
  .privacy_wrap h2 {
    font-size: 20px;
  }
}
.privacy_wrap ul li a {
  color: #40812C;
  text-decoration: underline;
}
.privacy_wrap .end {
  text-align: right;
}

/*# sourceMappingURL=style.css.map */
