@charset "UTF-8";
/* Sass変数 */
:root {
  --font-header: clamp(0.8125rem, 0.609rem + 0.43vw, 1rem);
  --font-btn:clamp(0.813rem, 0.677rem + 0.29vw, 0.938rem);
  --font-news: clamp(0.75rem, 0.546rem + 0.43vw, 0.9375rem);
  --font-body: clamp(0.9375rem, 0.734rem + 0.43vw, 1.125rem);
  --font-table: clamp(1rem, 0.728rem + 0.58vw, 1.25rem);
  --font-title1: clamp(2rem, 1.457rem + 1.16vw, 2.5rem);
  --font-title2: clamp(1.1875rem, 0.916rem + 0.58vw, 1.4375rem);
  --font-footer: clamp(0.813rem, 0.609rem + 0.43vw, 1rem);
}

/* グローバルスタイル */
body {
  font-family: "Kiwi Maru", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #F7FFEE;
  color: #674C2A;
  margin: 0;
  padding: 0;
  font-size: var(--font-body);
}

main {
  min-height: 70vh;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: var(--font-body);
  color: #674C2A;
  line-height: 1.7;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.4;
}

.scroll-to-top {
  background-color: rgba(126, 189, 120, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
}
.scroll-to-top span {
  width: 20px;
  height: 10px;
  display: block;
  background: url(../assets/images/page_top.svg) no-repeat center center;
  background-size: contain;
}

.pc {
  display: block;
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block;
  }
}

.bg-img {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.bg-white {
  background: white;
  padding: 45px 0;
}

.bg_title {
  background: #E5F6D2;
  font-size: 1.66rem;
  padding: 0.5em 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 750px) {
  .bg_title {
    font-size: 1.38rem;
  }
}

/*
.scroll-fade-in {
   opacity: 0;
   transform: translateY(50px);
   transition: all 0.8s ease; 
}
.scroll-fade-in.is-visible {
   opacity: 1;
   transform: translateY(0); 
}

.js-scrollable{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.js-scrollable::-webkit-scrollbar {
    display: none;
}
*/
/* カスタムボタン */
.btn, .contactform .contactform_inner #contact-form .contact_form_btn input, .Instructions_wrap a, .btn-accent, .btn-secondary, .btn-primary {
  background: #4A9143;
  color: white;
  padding: 0.2em 2em;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-size: var(--font-btn);
}
.btn:hover, .contactform .contactform_inner #contact-form .contact_form_btn input:hover, .Instructions_wrap a:hover, .btn-accent:hover, .btn-secondary:hover, .btn-primary:hover {
  background: rgb(94.2169811321, 176.9386792453, 86.0613207547);
}

.btn-primary {
  background: #4A9143;
  font-size: 1.27rem;
  letter-spacing: 3.45px;
  flex: 1;
}
@media (max-width: 750px) {
  .btn-primary {
    font-size: 1rem;
    width: 100%;
  }
}
.btn-primary:hover {
  background: rgb(94.2169811321, 176.9386792453, 86.0613207547);
}

.btn-secondary {
  background: #7EBD78;
}
.btn-secondary:hover {
  background: rgb(93.2686567164, 172.2537313433, 85.7462686567);
}

.btn-accent {
  background: #CEB351;
}
.btn-accent:hover {
  background: rgb(184.1434977578, 155.5695067265, 51.8565022422);
}

.index_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin: 50px 0;
}
@media (max-width: 750px) {
  .index_btn {
    flex-direction: column;
    margin: 20px auto;
  }
}

/* カード */
.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.3s;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #674C2A;
}
.card-text {
  color: rgb(107, 114, 128);
  line-height: 1.625;
}

/* ヘッダー */
.header {
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
@media (max-width: 750px) {
  .header {
    position: sticky;
  }
}
.header .nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .nav-logo {
  height: 75px;
  width: auto;
  z-index: 52;
  position: relative;
}
@media (max-width: 890px) {
  .header .nav-logo {
    width: 30%;
    height: auto;
  }
}
@media (max-width: 750px) {
  .header .nav-logo {
    width: 50%;
    height: auto;
  }
}
.header .nav-logo img {
  height: 100%;
  width: auto;
}
@media (max-width: 890px) {
  .header .nav-logo img {
    width: 100%;
    height: auto;
  }
}
.header .nav {
  /* ハンバーガーボタン（追加） */
}
.header .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 52;
  position: relative;
}
.header .nav-toggle-bar {
  width: 1.75rem;
  height: 0.1875rem;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}
.header .nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(0.5625rem) rotate(45deg);
}
.header .nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.header .nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-0.5625rem) rotate(-45deg);
}
.header .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav-link {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  transition: color 0.2s;
}
.header .nav-link:hover {
  color: #4A9143;
}

/* タブレット以下のスタイル（追加） */
@media (max-width: 768px) {
  .header .nav-toggle {
    display: flex;
  }
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 20rem;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    gap: 0;
    padding: 6rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .header .nav-links.active {
    right: 0;
  }
  .header .nav-links li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .header .nav-links li:last-child {
    border-bottom: none;
  }
  .header .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  }
  /* オーバーレイ */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
/* MV */
#mv {
  position: relative;
  width: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mv .mv_inner {
  min-height: 100vh;
  width: 90%;
  max-width: 1120px;
  z-index: 1;
  position: relative;
}
@media (max-width: 750px) {
  #mv .mv_inner {
    width: 100%;
  }
}
#mv .mv_inner .mv_catch01, #mv .mv_inner .mv_catch02 {
  max-width: 126px;
  width: 12%;
  aspect-ratio: 125/592;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  #mv .mv_inner .mv_catch01, #mv .mv_inner .mv_catch02 {
    width: 18%;
    max-width: none;
    z-index: 2;
  }
}
#mv .mv_inner .mv_catch01 {
  right: 0;
}
@media (max-width: 750px) {
  #mv .mv_inner .mv_catch01 {
    top: 32%;
    right: 5%;
  }
}
#mv .mv_inner .mv_catch02 {
  left: 0;
}
@media (max-width: 750px) {
  #mv .mv_inner .mv_catch02 {
    top: 60%;
    left: 5%;
  }
}
#mv .mv_inner .mv_image {
  width: 70%;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  #mv .mv_inner .mv_image {
    width: 100%;
  }
}
#mv .mv_inner img {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-body);
}

:target {
  scroll-margin-top: 80px;
}

/* お知らせ */
#news .section-title {
  font-size: var(--font-title2);
  color: #7EBD78;
  text-align: center;
  letter-spacing: 6.21px;
}
#news .news-list {
  max-width: 470px;
  margin: 0 auto 3rem;
  font-size: var(--font-news);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
  list-style: none;
  padding: 0;
}
#news .news-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
#news .news-list li a {
  color: #4A9143;
  text-decoration: underline;
}
#news .btn, #news .contactform .contactform_inner #contact-form .contact_form_btn input, .contactform .contactform_inner #contact-form .contact_form_btn #news input, #news .Instructions_wrap a, .Instructions_wrap #news a, #news .btn-primary, #news .btn-secondary, #news .btn-accent {
  background: #4A9143;
  padding: 0.2em 2em;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50px;
}
#news .btn:hover, #news .contactform .contactform_inner #contact-form .contact_form_btn input:hover, .contactform .contactform_inner #contact-form .contact_form_btn #news input:hover, #news .Instructions_wrap a:hover, .Instructions_wrap #news a:hover, #news .btn-primary:hover, #news .btn-secondary:hover, #news .btn-accent:hover {
  background: rgb(94.2169811321, 176.9386792453, 86.0613207547);
}

/* セクション */
.section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0;
  position: relative;
}
@media (max-width: 750px) {
  .section {
    padding: 20px 0;
  }
}
.section-title {
  font-size: var(--font-title1);
  text-align: center;
  margin-bottom: 3rem;
  color: #674C2A;
  letter-spacing: 6.8px;
}
.section-title span:nth-child(1) {
  color: #4A9143;
}
.section-title span:nth-child(2) {
  color: #7EBD78;
}
.section-title span:nth-child(3) {
  color: #CEB351;
}
.section-title .title-jp {
  display: block;
  font-size: 0.45em;
  margin-top: 0.5rem;
  letter-spacing: 0.69px;
}

.container {
  width: 90%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.point_text {
  font-size: 1.38em;
  text-align: center;
  margin-bottom: 1.2rem;
}

/* about */
#about {
  text-align: center;
}
#about .about_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 37%;
  max-width: 544px;
}
@media (max-width: 750px) {
  #about .about_bg {
    z-index: -1;
    width: 80%;
    opacity: 0.3;
  }
}

.Instructions_wrap {
  width: 100%;
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1em;
}
@media (max-width: 500px) {
  .Instructions_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.Instructions_wrap a {
  display: block;
  margin: 0; /* margin: 0 auto; を削除 */
  width: 100%; /* 親要素いっぱいに広げる */
  box-sizing: border-box; /* paddingを幅に含める */
}

/* business */
#business .business_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.38rem;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  #business .business_inner {
    flex-direction: column;
  }
}
#business .business_inner .business_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 33.3333333333%;
}
@media (max-width: 750px) {
  #business .business_inner .business_item {
    width: 70%;
  }
}
#business .business_inner .business_item h3 {
  position: relative;
  font-size: var(--font-title2);
}
#business .business_inner .business_item h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1em;
  transform: rotate(-20deg);
  width: 3px;
  height: 1.5em;
  background: #674C2A;
}
#business .business_inner .business_item h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1em;
  transform: rotate(20deg);
  width: 3px;
  height: 1.5em;
  background: #674C2A;
}

/* conditions */
#conditions {
  text-align: center;
}
#conditions .conditions_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 29%;
  max-width: 415px;
}
@media (max-width: 750px) {
  #conditions .conditions_bg {
    z-index: -1;
    width: 50%;
    opacity: 0.3;
    top: 0;
  }
}

.swiper {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  /* スライダーのwrapper */
}
.swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper {
  /* スライド */
}
.swiper .swiper-slide {
  aspect-ratio: 1/1;
}
.swiper {
  /* スライド内の画像 */
}
.swiper .swiper-slide img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

/*recruit*/
#recruit .container {
  max-width: 1000px;
}
#recruit .recruit_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 750px) {
  #recruit .recruit_inner {
    flex-direction: column-reverse;
  }
}
#recruit .recruit_inner .section-title, #recruit .recruit_inner .point_text {
  text-align: left;
}
#recruit .recruit_inner .recruit_text {
  flex: 1;
  text-align: left;
}
#recruit .recruit_inner .recruit_img {
  width: 43%;
  max-width: 526px;
}
@media (max-width: 750px) {
  #recruit .recruit_inner .recruit_img {
    width: 80%;
  }
}

/* qa */
#qa .qa_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 660px;
  gap: 24px;
}
@media (max-width: 750px) {
  #qa .qa_inner:nth-child(2) {
    flex-wrap: wrap-reverse;
  }
}
#qa .qa_inner .fukidashi_wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
}
#qa .qa_inner .fukidashi_wrap .qa_fukidashi {
  width: 142px;
}
@media (max-width: 750px) {
  #qa .qa_inner .fukidashi_wrap {
    width: 100%;
  }
}
#qa .qa_inner p {
  flex: 1;
}
@media (max-width: 750px) {
  #qa .qa_inner p {
    width: 80%;
    flex: none;
    margin: 0 auto;
  }
}
#qa .btn, #qa .contactform .contactform_inner #contact-form .contact_form_btn input, .contactform .contactform_inner #contact-form .contact_form_btn #qa input, #qa .btn-primary, #qa .btn-secondary, #qa .btn-accent, #qa .Instructions_wrap a, .Instructions_wrap #qa a {
  margin-top: 30px;
}

/* フッター */
.footer {
  background: url(../assets/images/footer_bg01.svg) no-repeat top center;
  background-size: cover;
  padding: 70px 0 31px;
  text-align: center;
}
@media (max-width: 750px) {
  .footer {
    background: url(../assets/images/sp_footer_bg01.svg) no-repeat top center;
    background-size: cover;
  }
}
.footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}
.footer .footer-inner .footer-logo {
  width: 206px;
}
.footer .footer-inner .footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  border-top: 1px solid #A1C979;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-top: 12px;
}
@media (max-width: 750px) {
  .footer .footer-inner .footer-links {
    flex-wrap: wrap;
    gap: 0.5em 1.5rem;
    padding-top: 1em;
  }
}
.footer .footer-inner a {
  transition: all 0.3s;
}
.footer .footer-inner a:hover {
  color: #4A9143;
}

/*page_about*/
.page_mv {
  max-height: 542px;
  aspect-ratio: 1440/542;
  width: 100%;
  position: relative;
}
@media (max-width: 750px) {
  .page_mv {
    aspect-ratio: 1.5;
  }
}
.page_mv h2 {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  font-size: 1.38rem;
}
@media (max-width: 750px) {
  .page_mv h2 {
    left: 5%;
  }
}
.page_mv h2 .title_en {
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "noto sans jp", sans-serif;
  letter-spacing: 17px;
  display: block;
  position: relative;
  width: fit-content;
}
@media (751px <= width <= 1020px) {
  .page_mv h2 .title_en {
    font-size: 5rem;
    letter-spacing: 14px;
  }
}
@media (max-width: 750px) {
  .page_mv h2 .title_en {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
}
.page_mv h2 .title_en::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 1.3em;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
@media (max-width: 750px) {
  .page_mv h2 .title_en::after {
    width: 180%;
    height: 1em;
  }
}
.page_mv h2 .title_en span:nth-child(1) {
  color: #4A9143;
}
.page_mv h2 .title_en span:nth-child(2) {
  color: #7EBD78;
}
.page_mv h2 .title_en span:nth-child(3) {
  color: #CEB351;
}

#page-about.page_mv {
  background: url(../assets/images/about_mv.png) no-repeat top right;
  background-size: contain;
}
#page-about_intro .container {
  text-align: center;
  max-width: 700px;
  background: url(../assets/images/about_leaf_bg.png) no-repeat center center;
  background-size: contain;
  aspect-ratio: 1/1;
}
#page-about_intro .container p {
  line-height: 2;
  font-size: 1.6rem;
}
@media (max-width: 750px) {
  #page-about_intro .container p {
    font-size: 1.2rem;
  }
}
#page-about_company h3 {
  font-size: 1.6rem;
}
#page-about_company table {
  width: 100%;
  margin: 1em 0 100px;
  box-sizing: border-box;
  border-collapse: collapse;
}
#page-about_company table:last-of-type {
  margin-bottom: 0;
}
#page-about_company table tr:first-child th, #page-about_company table tr:first-child td {
  border-top: solid 1px #A1C979;
}
#page-about_company table tr th {
  border-bottom: solid 1px #A1C979;
  font-weight: 400;
  padding: 1em 0.5em;
  text-align: left;
  margin: 0;
}
@media (max-width: 750px) {
  #page-about_company table tr th {
    width: 25%;
  }
}
#page-about_company table tr td {
  border-bottom: solid 1px #A1C979;
  padding: 1em 0.5em;
  margin: 0;
}

.googlemap {
  display: block;
  position: relative;
  height: 429px;
  overflow: hidden;
  margin: 4.7rem 0;
  width: 100%;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*page_business*/
#page-business.page_mv {
  background: url(../assets/images/business_mv.png) no-repeat top right;
  background-size: contain;
}

.page-business_intro .container {
  text-align: center;
  font-size: 1.27rem;
}
.page-business_section .container {
  flex-direction: row;
  gap: 1rem;
}
.page-business_section .container .business_section_img {
  width: 50%;
}
@media (max-width: 750px) {
  .page-business_section .container .business_section_img {
    width: 35%;
  }
}
.page-business_section .container .business_section_text {
  flex: 1;
}
.page-business_section .container .business_section_text h3 {
  font-size: 1.66rem;
  letter-spacing: 4.5px;
  color: #4A9143;
  border-bottom: solid 1px #CEB351;
  display: flex;
  align-items: center;
  gap: 1em;
}
@media (max-width: 750px) {
  .page-business_section .container .business_section_text h3 {
    font-size: 1.2rem;
  }
}
.page-business_section .container .business_section_text h3 span {
  color: #CEB351;
  font-size: 2em;
  letter-spacing: 0;
  font-family: "noto sans jp", sans-serif;
  font-weight: 700;
}

/*page_conditions*/
#page-conditions.page_mv {
  background: url(../assets/images/conditions_mv.png) no-repeat top right;
  background-size: contain;
}
#page-conditions_intro .container {
  flex-direction: row;
}
@media (max-width: 750px) {
  #page-conditions_intro .container {
    flex-direction: column;
  }
}
#page-conditions_intro .container p {
  flex: 1;
}
#page-conditions_intro .container .intro_img {
  width: 50%;
  max-width: 400px;
}
@media (max-width: 750px) {
  #page-conditions_intro .container .intro_img {
    width: 80%;
  }
}
#page-conditions_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 460px) {
  #page-conditions_list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
}
#page-conditions_list ul li {
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  aspect-ratio: 1/1;
}
@media (max-width: 750px) {
  #page-conditions_list ul li div {
    width: 50%;
  }
}
#page-conditions_list ul li p {
  color: #4A9143;
  letter-spacing: 3.75px;
  font-size: 1.38rem;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 750px) {
  #page-conditions_list ul li p {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
#page-conditions_list ul li .list_s {
  font-size: 1.2rem;
}
@media (max-width: 750px) {
  #page-conditions_list ul li .list_s {
    font-size: 0.9rem;
  }
}
#page-conditions_list ul li span {
  font-size: 0.8em;
  display: block;
  letter-spacing: 0;
}

/*--------------------------------recruit-------------------------------------*/
.recruit_mv {
  background: url(../assets/images/Recruit_MV.png) no-repeat bottom center;
  background-size: cover;
  position: relative;
  width: 100%;
  aspect-ratio: 1440/615;
  max-height: 80vh;
}
@media (max-width: 750px) {
  .recruit_mv {
    aspect-ratio: 1.5;
    background-position: bottom left;
  }
}
.recruit_mv div {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 50%;
}
@media (max-width: 750px) {
  .recruit_mv div {
    transform: none;
  }
}
.recruit_mv div img {
  width: 100%;
}

#recruit_info h2 {
  font-size: 1.38rem;
  text-align: center;
  margin-bottom: 3.9rem;
}
@media (max-width: 750px) {
  #recruit_info h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
#recruit_info h2 .title_en {
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "noto sans jp", sans-serif;
  letter-spacing: 17px;
  display: block;
  position: relative;
  width: fit-content;
}
@media (max-width: 750px) {
  #recruit_info h2 .title_en {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
}
#recruit_info h2 .title_en span:nth-child(1) {
  color: #4A9143;
}
#recruit_info h2 .title_en span:nth-child(2) {
  color: #7EBD78;
}
#recruit_info h2 .title_en span:nth-child(3) {
  color: #CEB351;
}

.recruit_section .container {
  background-color: white;
  padding: 1em;
  margin-bottom: 1em;
}
.recruit_section details {
  width: 100%;
}
.recruit_section details summary {
  display: block;
  cursor: pointer;
}
.recruit_section details summary::-webkit-details-marker {
  display: none;
}
.recruit_section details summary h3 {
  padding-left: 2.5rem;
  color: #4A9143;
  font-size: 1.38rem;
  position: relative;
  margin: 0;
}
.recruit_section details summary h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
  aspect-ratio: 37/27;
  background: url(../assets/images/accordion_icon.svg) no-repeat;
  background-size: contain;
}
.recruit_section details summary h3 .accordion_icon {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background: url(../assets/images/qa_arrow.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.4s;
}
.recruit_section details summary p {
  padding-left: 2.5rem;
  margin: 0 0 1rem;
}
.recruit_section details[open] .accordion_icon {
  transform: rotate(180deg);
}
.recruit_section details .accordion_inner {
  border-top: solid 2px #D6E4C5;
}
.recruit_section details .accordion_inner h4 {
  background: #A1C979;
  border-radius: 10px;
  color: white;
  padding: 0.2em 1em;
  margin: 0.3em 0;
}
.recruit_section details .accordion_inner .recruit_tag {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem auto;
  padding: 0;
}
.recruit_section details .accordion_inner .recruit_tag span {
  width: 100%;
  display: block;
  font-size: 0.9em;
}
.recruit_section details .accordion_inner .recruit_tag li {
  display: inline-block;
  list-style: none;
  border: solid 1px #674C2A;
  border-radius: 10px;
  font-size: 1rem;
  padding: 0.2em 1em;
  margin: 0;
}
@media (max-width: 750px) {
  .recruit_section details .accordion_inner .recruit_tag li {
    font-size: 11px;
  }
}
.recruit_section details .accordion_inner .recruit_job-description {
  width: 90%;
  margin: 0 auto;
}
.recruit_section details .accordion_inner .recruit_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .recruit_section details .accordion_inner .recruit_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 750px) {
  .recruit_section details .accordion_inner .recruit_grid > div:has(img) {
    width: 60%;
    margin: 0 auto;
  }
}
.recruit_section details .accordion_inner .recruit_grid ul {
  margin: 0;
}

#page-recruit_contact .container {
  text-align: center;
}

/*--------------------------------Q&A-------------------------------------*/
#page-faq.page_mv {
  background: url(../assets/images/faq_mv.png) no-repeat top right;
  background-size: contain;
}
#page-faq_intro .container {
  text-align: center;
}
#page-faq_intro .container .btn-primary {
  width: 100%;
  max-width: 416px;
  margin-bottom: 1.2rem;
}

#kyusyokusya_qa p,
#goriyosya_qa p,
#sonohoka_qa p {
  margin: 0;
}
@media (max-width: 750px) {
  #kyusyokusya_qa,
  #goriyosya_qa,
  #sonohoka_qa {
    width: 80%;
    margin: 0 auto;
  }
}
#kyusyokusya_qa .qa_title,
#goriyosya_qa .qa_title,
#sonohoka_qa .qa_title {
  font-size: 1.66rem;
  color: #4A9143;
}

.qa.container {
  width: 100%;
}
.qa dl {
  padding-left: 0;
  max-width: 562px;
  margin: 2em auto 0;
  border: none;
  width: 100%;
  box-sizing: border-box;
}
.qa dl dt {
  background: #E4E2C5;
  border-radius: 50px;
  padding: 1em 0.5em 1em 1.5em;
  color: #674C2A;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.qa dl dt::after {
  position: absolute;
  content: "";
  top: 1.5em;
  right: 99%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 22px solid #E4E2C5;
  border-left: 0;
}
.qa dl dd {
  margin-top: 1em;
  background: #E2FFDF;
  border-radius: 50px;
  text-align: left;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  position: relative;
  transition: all 0.3s;
  width: 100%;
  margin-left: 0;
}
.qa dl dd:has(.open) {
  border-radius: 30px;
}
.qa dl dd::after {
  position: absolute;
  content: "";
  top: 1.5em;
  left: 99%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 22px solid #E2FFDF;
  border-right: 0;
}
.qa dl dd p {
  padding-left: 60px;
  list-style: none;
  position: relative;
  padding: 1rem 4rem 1rem 1.5rem;
  max-height: 4em;
  box-sizing: border-box;
  overflow-y: hidden;
  transition: all 0.3s;
  mask-image: linear-gradient(to bottom, #E2FFDF 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #E2FFDF 60%, transparent 100%);
}
.qa dl dd p::before {
  content: "";
  position: absolute;
  top: 1.5em;
  right: 1em;
  width: 20px;
  height: 10px;
  background: url(../assets/images/qa_arrow.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s;
  transform: rotate(0deg);
}
.qa dl dd p:hover {
  cursor: pointer;
}
.qa dl dd p.open {
  max-height: 600px;
  mask-image: none;
  -webkit-mask-image: none;
}
.qa dl dd p.open::before {
  transform: rotate(180deg);
}

.page_top {
  margin-top: 0.9rem;
  color: #4A9143;
  text-decoration: underline;
}

.qa_wrap {
  position: relative;
  padding: 0 150px; /* 左右にイラスト用のスペースを確保 */
  max-width: 590px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .qa_wrap {
    margin-top: -150px;
  }
}

.q_img,
.a_img {
  position: sticky;
  top: 70vh; /* スクロール時の固定位置(調整してください) */
  width: 110px; /* イラストの幅に合わせて調整 */
  z-index: 10;
}
@media (max-width: 750px) {
  .q_img,
  .a_img {
    width: 40px;
    top: 85vh;
  }
}

.q_img {
  position: sticky;
  float: left;
  margin-left: -150px; /* コンテンツエリアの外側に配置 */
}
@media (max-width: 1020px) {
  .q_img {
    margin-left: -100px;
  }
}
@media (max-width: 750px) {
  .q_img {
    margin-left: 0;
  }
}

.a_img {
  position: sticky;
  float: right;
  margin-right: -170px; /* コンテンツエリアの外側に配置 */
  width: 134px;
}
@media (max-width: 1020px) {
  .a_img {
    margin-right: -100px;
  }
}
@media (max-width: 750px) {
  .a_img {
    margin-right: 0;
    width: 48px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .qa_wrap {
    padding: 0 20px;
  }
}
.contactform {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.06rem;
}
@media (max-width: 750px) {
  .contactform {
    width: 90%;
    margin: 0 auto;
  }
}
.contactform .contactform_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contactform .contactform_inner #contact-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 750px) {
  .contactform .contactform_inner #contact-form {
    width: 95%;
    margin: 0 auto;
  }
}
.contactform .contactform_inner #contact-form p {
  margin: 0;
}
.contactform .contactform_inner #contact-form .w-50_wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.contactform .contactform_inner #contact-form dl {
  width: 100%;
  margin: 0;
  margin-bottom: 1em;
}
.contactform .contactform_inner #contact-form dl dt {
  width: 100%;
  padding-bottom: 7px;
}
.contactform .contactform_inner #contact-form dl dt span {
  font-size: 14px;
  background: #A1C979;
  border-radius: 5px;
  padding: 0 5px;
  color: #fff;
  display: inline-block;
  margin-left: 12px;
}
.contactform .contactform_inner #contact-form dl dd {
  width: 100%;
  margin-left: 0;
}
.contactform .contactform_inner #contact-form dl dd input, .contactform .contactform_inner #contact-form dl dd select {
  width: 100%;
  border: none;
  height: 40px;
  font-size: 1rem;
  border: solid 1px #A1C979;
  border-radius: 10px;
}
.contactform .contactform_inner #contact-form dl dd input::placeholder, .contactform .contactform_inner #contact-form dl dd select::placeholder {
  color: #DCD4CE;
}
.contactform .contactform_inner #contact-form dl dd textarea {
  width: 100%;
  border: none;
  font-size: 1rem;
  height: 144px;
  border: solid 1px #A1C979;
  border-radius: 10px;
}
.contactform .contactform_inner #contact-form .contact_form_btn {
  width: 100%;
  max-width: 321px;
  margin: 1em auto 0;
}
.contactform .contactform_inner #contact-form .contact_form_btn input {
  background: #4A9143;
  width: 100%;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  border-radius: 10px;
}
.contactform .contactform_inner #contact-form .contact_form_btn input:hover {
  background: rgb(94.2169811321, 176.9386792453, 86.0613207547);
}

#page-faq_contact .container p {
  text-align: center;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float {
  animation: float 3s ease-in-out infinite;
}

/* ユーティリティ */
.container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* フォーム */
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #4A9143;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-input.error, .error.form-textarea {
  border-color: #ef4444;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #674C2A;
}

#recruit_info.pryvacy-policy h2 .title_en {
  font-size: 3rem;
}
#recruit_info.pryvacy-policy a {
  color: #4A9143;
  text-decoration: underline;
}

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