@charset "UTF-8";
/* -----------------------------
  変数定義
----------------------------- */
:root {
  /* カラー */
  --color-primary: #F7FA37;
  --color-secondary: #02163E;
  --color-accent: #D9D9D9;
  --color-text: #000;
  --color-link: #006ad6;
  --color-white: #fff;
  --color-gray: #D9D9D9;
  --color-footer: #02163E;

  /* レイアウト */
  --width-content: 1200px;
  --width-narrow: 770px;
  --space-unit: 15px;
  --space-section: 45px;

  /* その他 */
  --duration: 0.7s;
}

/* -----------------------------
  ベース
----------------------------- */
body {
  font-family: "YuGothic", "游ゴシック Medium", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
}
.krona-one {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* -----------------------------
  レイアウト
----------------------------- */
.wrapper {
  width: var(--width-content);
  margin: 0 auto;
  position: relative;
  padding: 0 var(--space-unit);
  box-sizing: border-box;
}

/* -----------------------------
  共通コンポーネント
----------------------------- */
#luxy {
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.sec-ttl {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  padding-bottom: var(--space-section);
}

.lead {
  font-size: 17px;
  line-height: calc(26 / 17);
  text-align: center;
  padding-bottom: var(--space-section);
}

/* ボタン */
a.btn_13 {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 380px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #F7FA37;
  color: #000;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}

a.btn_13::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 2em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #000;
}

a.btn_13::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #000;
}

a.btn_13:hover {
  background: #D9D9D9;
  color: #000;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  a.btn_13 {
    width: 280px;
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  a.btn_13 {
    width: 100%;
  }
}

/* ページトップボタン */
.pagetop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 1;
}

.pagetop:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  translate: 0 20%;
  rotate: -45deg;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
}

.pagetop:hover {
  transition: all var(--duration);
}

/* ホバー制御 */
@media (hover: hover) and (pointer: fine) {

  .btn-primary:hover,
  .btn-secondary:hover,
  .pagetop a:hover {
    opacity: 0.7;
  }
}

@media (hover: none) or (pointer: coarse) {

  /* タッチデバイスでの即時反応 */
  .btn-primary:active,
  .btn-secondary:active,
  .pagetop a:hover {
    opacity: 1;
  }
}
/* -----------------------------
  ヘッダー
----------------------------- */
  header {
    background-color: #D9D9D9;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
  }
  .logo img {
    width: auto;
    height: 60px;
  }
  .top-ttl {
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4cc 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 8px;
  }

  .logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
    margin: 0 40px;
  }

  .nav-item {
    position: relative;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-item:hover {
    color: #00c4cc;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .cta-button {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: #555;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1001;
  }

  .menu-button:hover {
    background-color: #555;
  }

  .menu-button.open {
    background-color: #333;
  }

  .menu-line {
    width: 20px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s;
  }

  .menu-button.open .menu-line:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }

  .menu-button.open .menu-line:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open .menu-line:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }

  .mobile-menu {
    position: fixed;
    top: 50%;
    /* 上から50% */
    left: 50%;
    /* 左から50% */
    transform: translate(-50%, -50%) scale(0);
    /* 中央配置 + 最初は縮小 */
    width: 900px;
    max-width: 90%;
    height: 80vh;
    background-color: #fff;
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    /* 角丸にするとオシャレ */
  }

  .mobile-menu.open {
    transform: translate(-50%, -50%) scale(1);
      /* 開いた時は通常サイズ */
  }

  .mobile-menu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    display: none;
    /* この1行だけ残す */
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    z-index: 1002;
  }

  .mobile-menu.open .mobile-menu-header {
    display: flex;
  }

  .mobile-menu-content {
    padding: 100px 60px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px 30px;
  }

  .menu-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .menu-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
  }

  .menu-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
  }
  .menu-section-title:hover::after {
    width: 100%;
  }

  .menu-section-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
    display: block;
  }

  .menu-section-link:hover {
    color: #00c4cc;
  }

  .menu-section-sublink {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    display: block;
    padding-left: 16px;
  }

  .menu-section-sublink:hover {
    color: #00c4cc;
  }

  .menu-section-sublink::before {
    content: '－';
    margin-right: 8px;
  }

  /* .menu-cta {
    margin-top: 20px;
  } */

  .menu-cta-link {
    color: #fff;
    background-color: #333;
    border-radius: 6px;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .cta-button i {
    color: white;
    margin-left: 6px;
    vertical-align: middle;
  }

  .menu-cta-link:hover {
    color: #00c4cc;
  }

  @media (max-width: 1100px) {
    .nav-center {
      gap: 20px;
    }

    .nav-item {
      font-size: 15px;
      padding: 8px 8px;
    }
  }

  @media (max-width: 900px) {
    .nav-center .nav-item:nth-child(n+4) {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: 12px 20px;
    }

    .nav-center {
      display: none;
    }

    .mobile-menu-content {
      grid-template-columns: 1fr;
      padding: 100px 30px 60px;
    }
    .logo {
      flex-direction: column;
      gap: 5px;
      margin-left: 0;
    }
    .top-ttl {
      margin-left: 0;
    }
  }
/* -----------------------------
  メインビジュアル
----------------------------- */
.mv {
  padding: 120px 0;
  width: 100%;
}

.mv-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-copy {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.6;
}

.highlight {
  background: #fff200;
  padding: 0.1em 0.3em;
}
/* .mv-images {
  position: relative;
  height: 500px;
}
.mv-images .img {
  position: absolute;
  overflow: hidden;
}

.mv-images img {
  width: 100%;
  height: 100%;
}
.img-left {
  left: 0;
  top: -10px;
  width: 55%;
  height: auto;
  border-radius: 70px;
}

.img-top {
  right: 0;
  top: -30px;
  width: 40%;
  height: auto;
  border-radius: 60px;
}

.img-bottom {
  right: 5%;
  bottom: -45px;
  width: 50%;
  height: auto;
  border-radius: 60px;
} */


/* -----------------------------
  セクション01
----------------------------- */
/* .first-box {
  padding-top: 100px;
} */
.box-content {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--color-text);
}
.box-ttl {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 30px;
  line-height: calc(50 / 24);
}
.sec01_btn {
 margin-left: 80%;
}
.sec-01 {
  padding-bottom: var(--space-section);
}
.recruit-images {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 800px;
}

/* 以下は現状のままでOK */
.recruit-images img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-images .img-center {
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: 0px;
}

.recruit-images .img-left {
  position: absolute;
  width: 25%;
  left: 0;
  top: 100px;
  z-index: 2;
}

.recruit-images .img-right {
  position: absolute;
  width: 25%;
  right: 0;
  top: 100px;
  z-index: 2;
}

.recruit-images .luxy-el {
  will-change: transform;
}

/* -----------------------------
  セクション02
----------------------------- */
.sec-02 {
  padding-bottom: var(--space-section);
}
.section-ttl {
  position: relative;
  background: var(--color-accent);
  padding: 40px 60px 5px;
  min-height: 150px;
}

.section-ttl .jp {
  position: absolute;
  right: 150px;
  bottom: 10px;
  font-size: 22px;
  font-weight: bold;
}

.section-ttl .en {
  position: absolute;
  left: 60px;
  bottom: 0;
  color: #fff200;
  font-size:50px;
}
.krona-one-regular {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.section-en-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.right-text {
  margin-top: 100px;
  margin-left: auto;
  max-width: 50%;
}
.right-text .lead {
  text-align: left;
}



/* -----------------------------
  セクション03
----------------------------- */
.sec-03 .section-ttl .jp {
  left: 150px;
  right: auto;
}

.sec-03 .section-ttl .en {
  position: absolute;
  left: auto;
  right: 60px;
  bottom: 0;
}

.sec-03sub-ttl {
  margin: 70px 0 50px;
  font-size: 18px;
  font-weight: 600;
}

/* 左の黄色い四角 */
.sec-03sub-ttl .square {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  margin-right: 10px;
}

.work-box {
  max-width: 800px;
  margin: 0 auto;
}

.content-text {
  width: 100%;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 17px;
  line-height: calc(24 / 17);
}
.oneArea {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* 吹き出し本体 */
.fukidasi,
.fukidasi2 {
  position: relative;
  padding: 20px;
  font-size: 16px;
  color: #000;
  border-radius: 10px;
}
.fukidasi {
  background: linear-gradient(to right, #e7f5f5, #97d4eb);
}
.fukidasi2 {
  background: linear-gradient(to right, #b1e1ee, #def0f1);
}

/* 色付きの半円 */
.fukidasi::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  right: -15px;
  top: 22px;
  border-left: 25px solid transparent;
  border-top: 25px solid #97d4eb;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

/* 白い半円 */
.fukidasi::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  right: -25px;
  top: 40px;
  border-left: 25px solid transparent;
  border-top: 25px solid #ffffff;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.fukidasi2::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  left: -15px;
  top: 22px;
  border-left: 25px solid #b1e1ee;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

/* 白い半円 */
.fukidasi2::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  left: -25px;
  top: 40px;
  border-left: 25px solid #ffffff;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}


.content-text h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.work-box {
  margin-bottom: 50px;
}

.work-box2 {
  background-color: var(--color-primary);
  padding: 50px 0;
}

.work-box2 .wrapper {
  display: flex;
}

.work-box2 .wrapper .btn_13 {
  background: var(--color-secondary);
  color: #fff;
}

.work-box2 .wrapper a.btn_13::before {
  background-color: #fff;
}

.work-box2 .wrapper a.btn_13::after {
  background-color: #fff;
}

.work-box2 .wrapper a.btn_13:hover {
  background: #D9D9D9;
  color: #000;
}

.work-box2 .wrapper a.btn_13::after:hover {
  background-color: #000;
}

.job-text {
  width: 50%;
}

.job-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.job-text .lead {
  text-align: left;
  padding-bottom: 0;
}

.job-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.job-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ↓↓↓ ここから追加 ↓↓↓ */

/* スライダー用の追加CSS */
.sec-03 {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-bottom: 0;
}

.slider-ctr {
  position: relative;
  z-index: 10;
  width: 700px;
  height: 440px;
  margin: 60px auto;
  box-sizing: border-box;
  border: 10px solid white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 15px 3px rgba(0, 0, 0, .15), 0 5px 20px 3px rgba(0, 0, 0, .1);
}

.slider-ctr:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 9;
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: .45s all cubic-bezier(0.65, 0.05, 0.36, 1);
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .125);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-box2 {
  position: relative;
  z-index: 1;
}

/* -----------------------------
  セクション04
----------------------------- */
.sec-04 {
  padding-bottom: var(--space-section);
}
.welcome-box {
  margin-top: 80px;
  
}
.welcome-box .content-inner .content-text h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 80px;
}
.content-inner {
  padding-bottom: 20px;
  display: flex;
  flex-direction: row-reverse;
}
.welcome-box .content-img {
  width: 50%;
}
.welcome-box .content-text {
  width: 50%;
}


/* -----------------------------
  セクション05
----------------------------- */
.sec-05 {
  padding-bottom:100px;
}
.sec-05 .section-ttl .jp {
  left: 150px;
  right: auto;
}

.sec-05 .section-ttl .en {
  position: absolute;
  left: auto;
  right: 100px;
  bottom: 0;
}
.sec-05 .office-box {
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
}
.recruit-box img {
  padding: 5%;
}
.image-container {
  overflow: hidden;
  position: relative;
  height: 400px;
  margin: 30px 0;
}

.image-container .luxy-el {
  height: 150%;
  position: relative;
  top: -25%;
}

.image-container .luxy-el img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit-accordion {
  max-width: 800px;
  margin: 0 auto;
}
/* ここからアコーディオンメニュー */
.accordion-item {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-header {
  width: 100%;
  border: none;
  padding: 20px;
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
}

.accordion-content {
  display: none;
  padding: 0 20px 20px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.icon {
  font-size: 20px;
}

/* 表 */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-table th,
.recruit-table td {
  padding: 12px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.recruit-table th {
  width: 25%;
  background: #f7f7f7;
}
 
/* -----------------------------
  セクション06
----------------------------- */
.sec-06 .contact-box {
  margin: 100px 0;
}
.Contact-txt {
  text-align: center;
  font-size: 18px;
  /* padding-bottom: var(--space-section); */
}

.sec-06 .wrapper {
  max-width: 800px;
}

/* -----------------------------
  footer
----------------------------- */
.footer {
  background: var(--color-footer);
}

.footer .wrapper {
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  padding-bottom: 40px;
}
.footer-logo img {
  margin: 0;
  width: auto;
  height: 50px;
}
.sns-box {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
  gap: 20px;
}
/* 線 */
.sns-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  opacity: 0.8;
  background-color: #fff;
  transition: width 0.3s ease;
}

/* ホバー */
.sns-box:hover::after {
  width: 100%;
}
.sns-txt {
  color: #fff;
  width: 134px;
  text-align: center;
  padding: 10px 0;
}
.sns-img img{
  max-width: 90%;
}
/* .address {
  width: 200px;
  font-size: 15px;
  color: var(--color-white);
} */

/* .address address {
  line-height: calc(24 / 15);
} */

.footer-nav {
  display: flex;
  width: 870px;
  justify-content: flex-end;
}

.footer-nav ul+ul {
  margin-left: 30px;
}

.footer-nav li {
  font-size: 16px;
  line-height: 1.4;
}

.footer-nav li+li {
  margin-top: 12px;
}

.footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-nav a:hover::after {
  transform: scaleX(1);
}

.copyright {
  height: 30px;
  line-height: 30px;
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  font-size: 12px;
}


/* -----------------------------
  レスポンシブ - タブレット
----------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wrapper {
    width: 768px;
  }
    .mv {
      padding: 100px 0;
      width: 100%;
    }
  
    .mv-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
  
    /* .mv-copy {
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 700;
      line-height: 1.6;
      margin: 0 0 0 40px;
    } */
  
    .highlight {
      background: #fff200;
      padding: 0.1em 0.3em;
    }
  
    .mv-images {
      position: relative;
      height: 400px;
    }
  
    .mv-images .img {
      position: absolute;
      overflow: hidden;
    }
  
    .mv-images img {
      width: 100%;
      height: 100%;
    }
  
    .img-left {
      left: 0;
      top: 50px;
      width: 58%;
      height: auto;
      border-radius: 50px;
    }
  
    .img-top {
      right: 0;
      top: 0px;
      width: 40%;
      height: auto;
      border-radius: 30px;
    }
  
    .img-bottom {
      right: 5%;
      bottom: -45px;
      width: 50%;
      height: auto;
      border-radius: 40px;
    }
/* -----------------------------
  セクション01(TB)
----------------------------- */
.box-content {
  width: 100%;
  padding: 0;
}
.first-box {
  padding-top: 0px;
}
.recruit-images {
  max-width: 700px;
  min-height: 600px;
}
.recruit-images img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-images .img-center {
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: -150px;
}

.recruit-images .img-left {
  position: absolute;
  width: 25%;
  left: 0;
  top: -100px;
  z-index: 2;
}

.recruit-images .img-right {
  position: absolute;
  width: 25%;
  right: 0;
  top: -150px;
  z-index: 2;
}

/* -----------------------------
  セクション02(TB)
----------------------------- */

.section-ttl .jp {
  right: 30px;
}

.section-ttl .en {
  left: 30px;
}

.right-text {
  margin-top: 100px;
  margin-left: auto;
  max-width: 60%;
}

.right-text .lead {
  text-align: left;
}
 
  /* -----------------------------
  セクション03(TB)
----------------------------- */

    .sec-03 .section-ttl .jp {
      left: 40px;
      right: auto;
    }
  
    .sec-03 .section-ttl .en {
      left: auto;
      right: 40px;
    }
  
  .content-inner {
    padding-bottom: 0;
  }
  
   
  /* -----------------------------
  セクション04(TB)
----------------------------- */
  .welcome-box {
    margin-top: 50px;
  }
    /* -----------------------------
  セクション05(TB)
----------------------------- */
.sec-05 {
  padding-bottom: 50px;
}

.sec-05 .section-ttl .jp {
  left: 50px;
  right: auto;
}

.sec-05 .section-ttl .en {
  position: absolute;
  left: auto;
  right: 30px;
  bottom: 0;
}
.recruit-accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* ここからアコーディオンメニュー */
.accordion-item {
  max-width: 800px;
  margin: 0 auto;
}
/* -----------------------------
  セクション06(TB)
----------------------------- */
.sec-06 .section-ttl .jp {
  top: 20px;
  left: auto;
  right: 50px;
}
.sec-06 .section-ttl .en {
  left: 50px;
  right: auto;
}

}

/* -----------------------------
  レスポンシブ - スマートフォン
----------------------------- */
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
  .sec-ttl {
        font-size: 24px;
        padding-bottom: var(--space-unit);
   }
  .nav-right {
    gap: 10px;
  }

  .menu-section-title {
    font-size: 16px;
    margin-bottom: 0;
  }

  .mobile-menu-content {
    gap: 40px;
  }

  .menu-pc {
    display: none;
  }
  .logo img {
    width: auto;
    height: 50px;
  }
  /* -----------------------------
メインビジュアル(SP)
----------------------------- */
.mv {
  padding: 60px 0;
}

.mv-inner {
  max-width: 100%;
}

/* .mv-copy {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 0 40px;
} */

.mv-images {
  position: relative;
  height: 500px;
}


.mv-images img {
  width: 100%;
  height: 100%;
}

.img-left {
  left: 10px;
  top: -10px;
  width: 80%;
  height: auto;
  border-radius: 30px;
}

.img-top {
  right: 0;
  top:180px;
  width: 60%;
  height: auto;
  border-radius: 30px;
}

.img-bottom {
  left: 0%;
  bottom: 10px;
  width: 50%;
  height: auto;
  border-radius: 30px;
}
  /* -----------------------------
  セクション01(SP)
----------------------------- */
.first-box {
  padding-top: 0;
}

.box-content {
  flex-direction: column;
}

.box-ttl {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 30px;
  line-height: calc(34 / 20);
}


.sec-01 {
  padding-bottom: var(--space-section);
}

.recruit-images {
  max-width: 95%;
  min-height: 400px;
}

/* 以下は現状のままでOK */
.recruit-images img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-images .img-center {
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: -80px;
}

.recruit-images .img-left {
  position: absolute;
  width: 30%;
  left: 0;
  top: -200px;
  z-index: 2;
}

.recruit-images .img-right {
  position: absolute;
  width: 30%;
  right: 0;
  top: -200px;
  z-index: 2;
}

.recruit-images .luxy-el {
  will-change: transform;
}

/* -----------------------------
  セクション02(SP)
----------------------------- */
.sec-02 {
  padding-bottom: var(--space-section);
}

.section-ttl {
  position: relative;
  background: var(--color-accent);
  padding: 40px 60px 5px;
  min-height: 180px;
}

.section-ttl .jp {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 22px;
  font-weight: bold;
}

.section-ttl .en {
  position: absolute;
  left: 10px;
  bottom: 0;
  color: #fff200;
  font-size: 36px;
  line-height: 46px;
}

.krona-one-regular {
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.right-text {
  max-width: 100%;
}
.right-text .lead {
  font-size: 16px;
}
/* -----------------------------
  セクション03(SP)
----------------------------- */
.sec-03 .section-ttl {
  min-height: 150px;
}
.sec-03 .section-ttl .jp {
  left: 20px;
  right: auto;
}

.sec-03 .section-ttl .en {
  position: absolute;
  left: auto;
  right: 20px;
  bottom: 0;
}

.content-inner {
  flex-direction: column;
}

.content-img {
  width: 100%;
}

.content-text {
  width: 100%;
  padding: 20px;
}

.reverse {
  flex-direction: column;
}

.work-box {
  margin-bottom: 50px;
  max-width: 95%;
}

.work-box2 {
  background-color: var(--color-primary);
  padding: 30px 0 50px 0;
}

.work-box2 .wrapper {
  flex-direction: column-reverse;
  gap: 30px;
}

.job-text {
  width: 100%;
  padding: 20px;
}


/* -----------------------------
  セクション04(SP)
----------------------------- */
.sec-04 {
  padding-bottom: var(--space-section);
}
.sec-04 .section-ttl {
  min-height: 150px;
}
.sec-04 .content-inner {
  flex-direction: column-reverse;
  gap: 20px;
}
.welcome-box {
  margin-top: 50px;
}

.welcome-box .content-inner .content-text h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 50px;
}

.content-inner {
  padding-bottom: 20px;
}
.content-inner {
  flex-direction: column-reverse;
}

.welcome-box .content-img {
  width: 100%;
}

.welcome-box .content-text {
  width: 100%;
  padding: 0;
}
/* -----------------------------
  セクション05(SP)
----------------------------- */
.sec-05 {
  padding-bottom: var(--space-section);
}
.sec-05 .section-ttl {
  min-height: 150px;
}
.sec-05 .section-ttl .jp {
  left: 20px;
  right: auto;
}

.sec-05 .section-ttl .en {
  position: absolute;
  left: auto;
  right: 20px;
  bottom: 0;
}

.sec-05 .office-box {
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
}
.image-container {
  overflow: hidden;
  position: relative;
  height: 200px;
  margin: 20px 0;
}

.image-container .luxy-el {
  height: 150%;
  position: relative;
  top: -25%;
}

.image-container .luxy-el img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* -----------------------------
  セクション06(SP)
----------------------------- */
.sec-06 .section-ttl {
  min-height: 150px;
}
.Contact-txt {
  padding-bottom:0;
}

/* -----------------------------
  footer(SP)
----------------------------- */
.footer .wrapper {
  padding-left: var(--space-unit);
  padding-right: var(--space-unit);
  flex-direction: column;
  gap: 20px;
}

.sns {
  display: flex;
  flex-direction: column;
}
.address {
  margin: 0 auto 0 30px;
}

.footer-nav {
  width: 100%;
  justify-content: flex-start;
  margin: 0 auto 0 30px;
}
}
/* 小さめスマホ向け */
@media screen and (max-width: 399px) and (max-height: 700px) {
.mv-area {
    height: 90vh;
  }
  .mv-ttl {
    font-size: 20px;
    width: 100%;
    padding: 0 10px 0 40px;
    top: 250px;
  }

.mv-area .top-img {
    width: 100%;
    top: 120px;
  }

  /* //奥にあるくっきりとした葉 */
  .leaves {
    position: absolute;
    width: 30vw;
    max-width: 600px;
  }

  .leaves01 {
    left: -10px;
    bottom: 50vw;
  }

  .leaves02 {
    right: 0px;
    top: 35vw;
  }

  /* 手前にあるぼかしのかかった葉 */
  .leaves-b {
    position: absolute;
    width: 50vw;
    max-width: 600px;
    z-index: 2;
  }

  .leaves-b01 {
    left: -20px;
    bottom: 45px;
  }

  .leaves-b02 {
    right: -25px;
    bottom: 0px;
  }

  .leaves-b03 {
    left: -30px;
    top: 20px;
  }

  .leaves-b04 {
    right: 0px;
    top: 0px;
  }
    
}

.pc {
  display: block;
}

.sp {
  display: none;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
