@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.nav_content {
	display:none;
}

/* UTILS: Typography & Spacing (Global) */
.u-font-montserrat { font-family: 'Montserrat'; }
.u-font-shipporimincho { font-family: 'Shippori Mincho'; }
.u-text-xxl { font-size: 128px; }
.u-text-title  { font-size: clamp(24px,3.5.vw,64px); }
.u-text-flow-number { font-size: 64px; }
.u-fontsize-floatingbtn { font-size: 32px; }
.u-fontsize-subtitle { font-size: 20px; }
.u-fontsize-description { font-size: 20px; }
.u-fontsize-footernav { font-size: 20px; }

.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-my-auto { margin-top: auto; margin-bottom: auto; }
.u-text-center { text-align: center; }
.u-left-align { margin: 0; }

.u-mx-margin-left{margin-left: 130px!important;}


/*  UTILS: Typography & Spacing (Tablet: <= 1000px) */
@media (max-width: 1000px) {
  .u-text-xxl { font-size: 64px; }
  .u-text-title  { font-size: 48px; }
  .u-fontsize-subtitle { font-size: 20px; }
  .u-fontsize-description { font-size: 15px; }
  .u-mx-margin-left{margin-left: 55px;}
}

/* UTILS: Typography & Spacing (Mobile: <= 450px) */
@media (max-width: 450px) {
  .u-text-xxl { font-size: 48px; }
  .u-text-title { font-size: 24px; }
  .u-fontsize-subtitle { font-size: 11px; }
  .u-fontsize-description { font-size: 15px; }
  .u-mx-margin-left{margin-left: 18px;}
} 
/*  BASE: Layout */
.home {
  background-color: #7a7c79;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

.page-container {
  padding: 0px;
  margin-top: 114px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background-color: #7a7c79;
  box-sizing: border-box;
}

.section-subtitle {
  display: block;
  font-weight: 600;
  margin-bottom: 85px;
  color: #e5c857;
  position: relative;
  background: linear-gradient(to right, #f4d03f, #e4b923);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1000px) {
  .page-container {
    max-width: 834px;
    margin-top: 95px; 
    width: 834px; 
  }
  .section-subtitle {
    margin-bottom: 50px;
  }  
}

@media (max-width: 450px) {
  .page-container {
    max-width: 320px;
    margin-top: 49px;
    width: 320px;
  }

  .section-subtitle {
    margin-bottom: 23px;
  }  
}

.section-title {
  color: #ffffff;
}

.section-center {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center; 
}

.section-description {
  font-size: 20px;
  color: #fff;
  max-width: 684px;
  max-height: 174px;
  width: 100%;
  height: 100%;
}

/* HEADER */
.header {
  background-color: #7a7c79;
  color: #fff;
  width: 100%;
  height: 114px;
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  z-index: 1200;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  justify-content:space-between
}

.header-logo {
  color: #fff;
  font-size: 64px;
  padding-left: 50px;
}

@media screen and (max-width: 1000px) {
  .header {
    height: 95px;
  }    

  .header-logo {
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 450px) {
    .header {
      height: 49px;
    }    
  
    .header-container {
      max-width: 320px;
    }

    .header-logo {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      padding-left: 20px;
    }
  }

/* HAMBURGER MENU */
.hamburger {
  width: 66px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 200;
  padding-right: 40px;
}
.hamburger span {
  display: block;
  width: 66px;
  height: 3px;
  background-color: #fff;
  margin: 1px 0;
  transition: 0.4s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(18px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-18px) rotate(-45deg);
}

/* メニューは初期非表示（スマホ用） */
.header-menu {
  font-size: 40px;
  display: none;
  flex-direction: column;
  color: #fff;
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 1024px;
  z-index: 1300;
  padding: 20px;
  background-color: #7a7c79;
}


.header-menu a {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 44px;
  margin-left: 105px;
}

/* メニュー表示時 */
.header-menu.active {
  display: flex;
  color: #ffffff;
}  
@media screen and (max-width: 1000px) {

  .hamburger {
    width: 60px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin: 1px 0;
    transition: 0.4s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
  /* メニューは初期非表示（スマホ用） */
  .header-menu {
    font-size: 40px;
    top: 100%;
    left: -105px;
    width: 834px;
    max-height: 1024px;
    z-index: 1300;
    padding: 40px;
  }
  .header-menu a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 44px;
    margin-left: 105px;
  }

  /* メニュー表示時 */
  .header-menu.active {
    display: flex;
    color: #ffffff;
  }  
}

@media screen and (max-width: 450px) {
  .hamburger {
    width: 33px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
    padding-right: 20px;
  }
  .hamburger span {
    display: block;
    width: 33px;
    height: 1px;
    background-color: #fff;
    margin: 1px 0;
    transition: 0.4s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* メニューは初期非表示（スマホ用） */
  .header-menu {
    font-size: 16px;
    display: none;
    flex-direction: column;
    color: #fff;
    position: absolute;
    top: 100%;
    left: -125px;
    width: 1440px;
    height: 1024px;
    max-height: 1024px;
    z-index: 100;
    padding: 40px;
    background-color: #7a7c79;
  }
  .header-menu a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 31px;
  }

  /* メニュー表示時 */
  .header-menu.active {
    display: flex;
    color: #ffffff;
  }  
}


/* HERO SECTION */
.lp-hero {
  margin-top: 350px;
  font-size: 64px;
  color: #fff;
  max-width: 510px;
}

.lp-content {
  padding: 0 130px;
  width: 100%;
  box-sizing: border-box;
}  
@media (max-width: 1000px) {
  .lp-hero {
    font-size: 40px;
    margin-top: 242px;
  }

  .lp-content {
    padding-left: 55px;
  }
}

@media (max-width: 450px) {
  .lp-hero {
    max-width: 242px;
    max-height: 46px;
    margin-top: 110px;
    font-size: 16px;
  }

  .lp-content {
    padding-left: 18px;
  }
}

/* FLOATING BUTTON */
/* ENTRYボタンの色 */
.float-btn.entry {
  background-color: #CBB459;
}

/* LINEボタンの色 */
.float-btn.line {
  background-color: #74CC8A;
}

/* メニューアイテムのホバー効果 */
/* フローティングバナーのボタン */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  box-shadow: 0 7px 7px rgba(0,0,0,0.25);
  width: 100%;
  height: 100%;
  writing-mode: vertical-lr;
}
 .floating-banner {
    position: relative;
    display: flex;
    flex-direction: row;
    right: 0;
    gap: 80px;
	justify-content: center;
	z-index: 1000;
  }
  /* フローティングバナーのボタン */
  .float-btn {
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    width: 100%;
    height: 100%;
    writing-mode: horizontal-tb;
    font-size: 32px;
  }

  .float-btn-area {
    width: 288px;
    height: 71px;
    margin-bottom: 0;
  }


@media screen and (max-width: 450px) {
  /* メニューアイテムのホバー効果 */
  .floating-banner {
    max-width: 284px;
    gap: 16px;
    margin-top: 352px;
    margin-bottom: 57px;
    margin-left: auto;
    margin-right: auto;
  }
  /* フローティングバナーのボタン */
  .float-btn {
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    writing-mode: horizontal-tb;
    font-size: 16px;
  }

  .float-btn-area {
    width: 134px;
    height: 33px;
    margin-bottom: 0;
  }
}

/* ===============================
  banner
================================ */
.recruit-banner-area {
  background-color: #B9AD6E;
  color: black;
  font-size: 64px;
  text-align: center;
  width: 661px;
  height: 219px;
  margin-top: 66px;
  margin-bottom: 87px;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.message-banner-area {
  background-color: #B9AD6E;
  color: black;
  font-size: 64px;
  text-align: center;
  width: 661px;
  height: 219px;
  display: flex;
  justify-content: center;
  align-items: center; /* これで縦方向の中央寄せ */
}

.flow-banner-area {
  background-color: #B9AD6E;
  color: black;
  font-size: 64px;
  text-align: center;
  width: 661px;
  height: 219px;
  margin-top: 111px;
  display: flex;
  justify-content: center;
  align-items: center; /* これで縦方向の中央寄せ */
} 

@media (max-width: 1000px) {
  .message-banner-area {
    width: 661px;
    height: 219px;
  }
  .recruit-banner-area {
    width: 661px;
    height: 219px;
    margin-top: 121px;
    margin-bottom: 121px;
  }

  .flow-banner-area {
    font-size: 64px;
    width: 661px;
    height: 219px;
    margin-top: 113px;
  }  
}
  @media (max-width: 450px) {
    .message-banner-area {
      font-size: 20px;
      text-align: center;
      width: 284px;
      height: 107px;
    }
    .recruit-banner-area {
      font-size: 20px;
      text-align: center;
      width: 284px;
      height: 107px;
      margin-top: 40px;
      margin-bottom: 40px;
    }
  
    .flow-banner-area {
      font-size: 20px;
      text-align: center;
      width: 283px;
      height: 107px;
      margin-top: 40px;
    }
} 

/* ABOUT SECTION */
.lp-about {
  background: #7a7c79;
  margin-top: 503px;
  max-width: 684px;
  max-height: 356px;
  margin-left: auto;
  margin-right: auto;
  
}

.about-section-title-area {
  color: #ffffff;
} 

.about-section-title {
  color: #ffffff;
  text-align: center;
} 

.about-section-subtitle-area {
  margin-bottom: 85px;
}

.about-section-subtitle {
  display: block;
  font-weight: 600;
  color: #e5c857;
  position: relative;
  background: linear-gradient(to right, #f4d03f, #e4b923);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.about-section-description {
  color: #fff;
  max-width: 684px;
  max-height: 174px;
  width: 100%;
  height: 100%;
  text-align: center;
}


@media (max-width: 1000px) {
  .lp-about {
    width: 609px;
    height: 248px;
    margin-top: 0;
  }
  .about-section-title-area {
    color: #ffffff;  
  }   

  .about-section-title {
    color: #ffffff;
  } 

  .about-section-subtitle-area {
    color: #ffffff;  
    font-size: 20px;
    margin-bottom: 50px;
  }   

  .about-section-subtitle {
    text-align: center;
  }  

  .about-section-description-area {
    margin-top: 50px;
    width: 609px;
    height: 110px;

  }

  .about-section-description {
    font-size: 15px;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 450px) {
  .lp-about {
    width: 289px;
    height: 163px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;

  }
  .about-section-title-area {
    color: #ffffff;  
  }   

  .about-section-title {
    color: #ffffff;
    text-align: center;
  } 

  .about-section-subtitle-area {
    color: #ffffff;  
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    margin-bottom: 50px;
  }   

  .about-section-subtitle {
    text-align: center;
  }  

  .about-section-description-area {
    margin-top: 19px;
    max-width: 289px;
    max-height: 102px;

  }

  .about-section-description {
    font-size: 12px;
  }
}

.lp-worker {
  background-color: #fff;
  color: red;
  font-size: 48px;
  height: 457px;
  width: 100%;
  margin-top: 124px;
}

.worker-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .lp-worker {
    font-size: 48px;
    width: 100%;
    height: 457px;
    margin-top: 144px;
  }
}

@media (max-width: 450px) {
  .lp-worker {
    font-size: 16px;
    width: 100%;
    height: 102px;
    margin-top: 56px;
  }
}

/* MESSAGE SECTION */
  .lp-message {
    background: #7a7c79;
    text-align: left;
    margin-top: 185px;
    width: 1249px;
    margin-bottom: 205px;
  }

  .message-section-description {
    font-size: 16px;
    color: #fff;
  }
  
  .message-content {
    display: flex;
    align-items: center; /* ← ここで縦中央揃え */
    flex-wrap: wrap;     /* スマホ対応 */
  }

  .message-text-block {
    padding-right: 120px;
  }

  .image-container {
    position: relative;
    width: 398px;
    height: 439px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .message-image-area {
    position: relative;
    align-items: flex-end; /* ← 画像の下端を合わせる */
    z-index: 2; /* 上に表示させるため */
    width: 100%;
    height: 100%;
  }
      
  .message-image-block {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
  }
  
  .image-white-tile {
    position: absolute;
    top: 110px;
    left: 19px;
    width: 360px;
    height: 326px;
    background-color: #fff;
    z-index: 1;
  }
  
  .message-photo {
    width: 100%;
    height: 100%;
  }
  
.message-name {
  text-align: right;
  margin-top: 55px;
  color: #fff;
  align-items: end;
  padding-right: 19px;
}

@media (max-width: 1000px) {
  .lp-message {
    text-align: left;
    margin-top: 185px;
    width: 738px;
    height: 300px;
    margin-bottom: 160px;
  }

    .message-section-description {
      font-size: 15px;
      color: #fff;
    }  
    
    .message-text-block {
      padding-right: 22px;
      width :444px;
    }

    .image-container {
      position: relative;
      width: 272px;
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .message-image-area {
      position: relative;
      align-items: flex-end; /* ← 画像の下端を合わせる */
      z-index: 2; /* 上に表示させるため */
      width: 100%;
      height: 100%;
    }
        
    .message-image-block {
      display: flex;
      justify-content: flex-end;
      flex-direction: column;
      position: relative;
    }
    
    .image-white-tile {
      position: absolute;
      top: 80px;
      left: 19px;
      width: 246px;
      height: 223px;
      background-color: #fff;
      z-index: 1;
    }
    
    .message-photo {
      width: 100%;
      height: 100%;
    }

    .message-name {
    text-align: right;
    margin-top: 23px;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  .lp-message {
    margin-top: 75px;
    width: 284px;
    height: 437px;
    margin-bottom: 71px;
  }

  .message-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* ← ここで縦中央揃え */
    flex-wrap: wrap;     /* スマホ対応 */
  }

  .message-section-description {
    font-size: 12px;
    color: #fff;
    width: 284px;
    height: 153px;
  }  
  
  .message-text-block {
    margin-right: 0px;
    width :284px;
  }

  .image-container {
    position: relative;
    width: 174.07px;
    height: 192px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .message-image-area {
    position: relative;
    align-items: flex-end; /* ← 画像の下端を合わせる */
    z-index: 2; /* 上に表示させるため */
    width: 100%;
    height: 100%;
  }
      
  .message-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .image-white-tile {
    position: absolute;
    top: 49px;
    left: 12px;
    width: 156px;
    height: 143px;
    background-color: #fff;
    z-index: 1;
  }
  
  .message-photo {
    width: 100%;
    height: 100%;
  }

  .message-name {
  text-align: right;
  margin-top: 23px;
  color: #fff;
  font-size: 14px;
}
}


/* FEATURE SECTION */
.lp-feature {
  background-color: #7a7c79;
  color: #fff;
  padding: 0 0;
  margin-top: 194px;
  margin-right: 130px;
}

.feature-item {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-item.reverse {
  flex-direction: row;
}

.feature-image {
  position: relative;
  flex-shrink: 0; /* はみ出し防止 */
}

.feature-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 数字を中央に */
  position: relative;
  max-width: 629px;
}

.feature-title {
  font-weight: bold;
  font-size: 32px;
  color: #fff;
  margin-bottom: 47px;
  flex-basis: 100%;
}

.feature-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.feature-heading {
  display: flex;
  align-items: center;
  font-size: 64px;
  font-weight: bold;
  background-clip: text;
  color: transparent;
  line-height: 1;
  white-space: nowrap;
}

.feature-number {
  line-height: 1;
  font-size: 128px;
  background: linear-gradient(to top, #BCAC64, #F8D761, #F8D761, #F8D761, #BCAC64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-border {
  height: 96px; /* 数字の高さに揃える */
  margin-left: 11px;
  border-left: 1px solid #fff;
}

.feature-description {
  line-height: 20px;
  font-size: 16px;
  width: 420px;
  color: #fff;
  margin-left: 39px;
}

  @media (max-width: 1000px) {

    .lp-feature {
    background-color: #7a7c79;
    color: #fff;
    margin-top: 99px;
    padding: 0px;
    }

    .feature-item {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 51px;
    }

    .feature-item.reverse {
    flex-direction: row;
    }

    .feature-image {
    width: 258px;
    height: 236px;
    position: relative;
    flex-shrink: 0; /* はみ出し防止 */
    }

    .feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    }

  .feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 数字を中央に */
    position: relative;
    max-width: 434px;
  }

  .feature-title {
    flex-basis: 100%;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-bottom: 47px;
  }

  .feature-content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .feature-heading {
    display: flex;
    align-items: center;
    font-size: 64px;
    font-weight: bold;
    background-clip: text;
    color: transparent;
    line-height: 1;
    white-space: nowrap;
  }

    .feature-number {
    line-height: 1;
    font-size: 96px;
    background: linear-gradient(to top, #BCAC64, #F8D761, #F8D761, #F8D761, #BCAC64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .feature-border {
    height: 78px; /* 数字の高さに揃える */
    margin-left: 6px;
    border-left: 1px solid #fff;
    }

    .feature-description {
    width: 294px;
    font-size: 14px;
    color: #fff;
    margin-left: 14px;
    }
  }

  @media (max-width: 450px) {
    .lp-feature {
      background-color: #7a7c79;
      color: #fff;
      margin-top: 51px;
      padding: 0px;
    }
  
    .feature-item {
      display: flex;
      gap: 4px;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 51px;
    }
  
    .feature-item.reverse {
      flex-direction: column-reverse;
    }
  
    .feature-image {
      width: 284px;
      height: 260px;
      position: relative;
      flex-shrink: 0; /* はみ出し防止 */
    }
  
    .feature-image img {
      width: 100%;
      height: 100%;
      display: block;
    }
  
    .feature-text {
      display: flex;
      flex-direction: column;
      justify-content: center; /* 数字を中央に */
      position: relative;
    }
    
    .feature-title {
      max-width: 176px;
      font-weight: bold;
      font-size: 14px;
      color: #fff;
      margin-bottom: 0px;
      margin-left: 13px;
    }
  
    .feature-content-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .feature-number {
      order: 1;
      white-space: nowrap;
    }
    .feature-border {
      order: 2;
    }
    .feature-title {
      order: 3;
    }
    .feature-description {
      order: 4;
    }
  
    .feature-content-row {
      flex-direction: row;
      flex-wrap: wrap;
    }
  
    .feature-heading {
      display: flex;
      align-items: center;
      font-size: 64px;
      font-weight: bold;
      background-clip: text;
      color: transparent;
      line-height: 1;
      white-space: nowrap;
    }
  
    .feature-number {
      font-size: 64px;
    }
  
    .feature-border {
      height: 46px; /* 数字の高さに揃える */
      margin-left: 14px;
      border-left: 1px solid #fff;
     }
  
    .feature-description {
      line-height: 1.8;
      max-width: 283px;
      font-size: 14px;
      flex-basis: 100%;
    }    
        
     .feature-description {
        margin-left: 0;
        padding-top: 8px;
      }
    }
  


/* VOICE & MOVIE SECTION */
.voice-movie-section {
  background-color: #f88686;
  margin: 0 auto;
  color: white;
  width: 100%;
  margin-top: 96px;
  padding-top: 199px;
}

.vm-section {
  margin-top: 199px;
}

.vm-section-title {
  text-align: left;
}

.vm-section-subtitle {
  text-align: left;
}
/* VOICE MOVIE 共通 END*/


/*VOICE START */
.voice-section {
  margin-right: 130px;	
}
.voice-wrapper {
  margin-top: 86px;
  margin-bottom: 55px;
  position: relative;
  padding-right: 130px;
}

/* カード本体 */
.voice-card {
  width: 100%;
  height: 100%;
  background-color: #f0e0e0;
  border-radius: 16px;
  margin-bottom: 141px;
  margin-left: 52px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center; /* テキスト中央 */
}

/* はみ出す画像ラッパー */
.voice-image-wrapper-man {
  width: 373.84px;
  height: 356px;
  position: relative;
  margin: 0 0 0 -112px;
  align-self: flex-end; 
  overflow: hidden;
}

.voice-image-wrapper-woman {
  width: 331px;
  height: 356px;
  position: relative;
  margin: 0 0 0 -70.16px;
  align-self: flex-end; 
  overflow: hidden;
}

.voice-image {
  width: 100%;
  height: 100%;
  display: block;
}

.voice-text {
  flex: 1;
  text-align: left;
  color: #313131;
  width: 100%;
  margin-left: 39px;
  margin-top: 50px;
}

.voice-name {
  margin-top: 38.59px;
  margin-bottom: 59px;
  color: #313131;
}

.voice-title {
  font-size:  24px;
  color: #313131;
  margin-bottom: 29px;
}

.voice-content {
  color: #555;
  margin-bottom: 38px ;
  max-width: 704px;
}
/*VOICE END */

/* MOVIE　START */
.movie-section {
  margin-top: 188px;
}

.movie-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 100%; /* 必要に応じて高さを指定 */
  justify-content: center;
}

.movie {
  width: 100%;
  max-width: 1008px;
  height: 565px;
  position: relative;
  margin-top: 105px;
  margin-bottom: 178px;
} 

.movie-area {
  width: 100%; 
  height: 100%;
}

@media (max-width: 1000px) {
  .voice-movie-section {
    background-color: #f88686;
    margin: 0 auto;
    color: white;
    width: 100%;
    margin-top: 96px;
    padding-top: 199px;
    overflow: hidden;
  }
  
  .vm-section {
    margin-top: 199px;
  }
  
  .vm-section-title {
    text-align: left;
  }
  
  .vm-section-subtitle {
    text-align: left;
  }
  /* VOICE MOVIE 共通 END*/
  
  
  /*VOICE START */
  .voice-section {
    /* margin-bottom: 2rem; */
  }
  
  .voice-wrapper {
    max-width: 693px;
    max-height: 232px;
  }
  
  /* カード本体 */
  .voice-card {
    background-color: #f0e0e0;
    border-radius: 16px;
    margin-bottom: 70px;
    margin-left: 32px;
    max-height: 232px;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center; /* テキスト中央 */
  }
  
  /* はみ出す画像ラッパー */
  .voice-image-wrapper-man {
    width: 281.43px;
    height: 268px;
    position: relative;
    transform: translateX(20px);
    align-self: flex-end; 
  }
  
  .voice-image-wrapper-woman {
    width: 258.48px;
    height: 278px;
    position: relative;
    transform: translateX(10px);
    align-self: flex-end; 
  }
  
  .voice-image {
    width: 100%;
    height: 100%;
    display: block;
  }

  .voice-text {
    margin-left: 0px;
    margin-top: 50px;
  }  
      
  .voice-name {
    font-size: 14px;
    color: #313131;
    margin-top: 29px;
    margin-bottom: 35px;
  }
  
  .voice-title {
    font-size:  20px;
    color: #313131;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  
  .voice-content {
    color: #555;
    margin-bottom: 0px ;
    margin-top: 16px;
    font-size: 14px;
    width: 502px;
  }
  /*VOICE END */
  
  /* MOVIE　START */
  .movie-section {
    margin-top: 73px;
  }
  
  .movie-container {
    display: flex;
    align-items: center;
    margin-left: 0px;
    height: 100%; /* 必要に応じて高さを指定 */
  }
  
  .movie {
    width: 100%;
    height: 100%;
    max-width: 725px;
    max-height: 406.37px;
    position: relative;
    margin-top: 105px;
    margin-bottom: 178px;
  }   

  .movie-area {
    width: 725px; 
    height: 406.37px;
  }
}

  @media (max-width: 450px) {
    .voice-movie-section {
      background-color: #f88686;
      margin: 0 auto;
      color: white;
      width: 100%;
      margin-top: 57px;
      padding-top: 53px;
    }
    
    .vm-section {
      margin-top: 199px;
    }
    
    .vm-section-title {
      text-align: left;
    }
    
    .vm-section-subtitle {
      text-align: left;
    }
    /* VOICE MOVIE 共通 END*/
    
    
    /*VOICE START */    
    .voice-wrapper {
      max-width: 264px;
      max-height: 440px;
    }
    
    /* カード本体 */
    .voice-card {
      background-color: #f0e0e0;
      border-radius: 16px;
      margin-bottom: 70px;
      margin-left: 17px;
      max-height: 440px;
      height: 440px;
      width: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      justify-content: center;
      align-items: center;
      text-align: center; /* テキスト中央 */
    }
    
    /* はみ出す画像ラッパー */
    .voice-image-wrapper-man {
      width: 174.32px;
      height: 166px;
      position: absolute;
      top: 274px;
      left: -50px;
      margin: 0 0 0 0px;
      align-self: flex-end; 
    }
    
    .voice-image-wrapper-woman {
      width: 162.71px;
      height: 175px;
      position: relative;
      position: absolute;
      top: 265px;
      left: -30px;
      margin: 0 0 0 0px;
      align-self: flex-end; 
    }
    
    .voice-image {
      width: 100%;
      height: 100%;
      display: block;
    }
        
    .voice-name {
      font-size: 14px;
      color: #313131;
      margin-top: 72.42px;
      margin-bottom: 35px;
      margin-right: 51px;
      text-align: right;
    }
    
    .voice-title {
      font-size:  14px;
      color: #313131;
      margin-bottom: 0px;
      margin-top: 25px;
      width: 224px;
    }
    
    .voice-content {
      color: #555;
      margin-bottom: 0px ;
      margin-top: 16px;
      font-size: 14px;
      width: 225px;
    }
    /*VOICE END */
    
    /* MOVIE　START */
    .movie-section {
      margin-top: 57px;
    }
    
    .movie-container {
      display: flex;
      align-items: center;
      margin-left: 0px;
      height: 100%; /* 必要に応じて高さを指定 */
    }
    
    .movie {
      width: 100%;
      height: 100%;
      position: relative;
      margin-top: 29px;
      margin-bottom: 57px;
    }   
  
    .movie-area {
      width: 284px; 
      height: 188px;
    }  
}
/* MOVIE　END */

/* ===============================
  FLOW SECTION
================================ */
.lp-flow {
  margin-top: 176px;
  text-align: left;
  color: #fff;
}

.flow-steps {
  max-width: 987px;
  margin-top: 129px;
  margin-bottom: 119px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  flex-direction: row;
}

.step-wrapper {
  display: flex;
  gap: 17px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.step-card {
  height: 218px;
  max-width: 147px; /* これが上限 */
  width: 100%;
  background: #B9AD6E;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  flex-shrink: 0; /* はみ出し防止にも */
}

.step-label {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-top: 19px;
}

.step-number {
  font-size: 64px;
}

.step-underline {
  width: 90.96px;
  height: 3px;
  background-color: #fff;
  margin-top: 5px;
}

.step-title {
  margin-top: 15px;
  font-weight: 800;
  font-size: 24px;
}  

.step-box {
  background: linear-gradient(to top, #B9AD6E, #F3DE74);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
    
.step-arrow {
  border-top: 19.5px solid transparent;   /* 高さの半分 */
  border-bottom: 19.5px solid transparent;
  border-left: 29px solid #B9AD6E;   
}

.step-details {
  display: flex;
  flex-direction: column;
  margin-right: 130px;
}

.step-detail {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 111px;
}

.step-text {
  max-width: 937px;
  height: 152px;
  margin-right: 50px;
}

.step-description {
  max-width: 840px;
  height: 69px;
  margin-top: 29px;
}

.step-index {
  background: linear-gradient(to top, #BCAC64, #F8D761, #F8D761, #F8D761, #BCAC64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 64px;
  margin-right: 68px;
}

.step-title-text {
  font-size: 48px;
  font-weight: 600;
  color: white;
}
  
.step-image {
  /* max-width: 240px;
  max-height: 175px;
  width: 100%;
  height: 100%; */
  width: 240px;
  height: 175px;
  background-color: #ddd;
  margin-top: 4px;
  position: relative;
}

.step-note {
  text-align: center;
  color: #fff;
  margin-top: 31px;
  font-size: 32px;
  font-weight: 800;
}


@media (max-width: 1000px) {
  .lp-flow {
    margin-top: 118px;
    text-align: left;
    color: #fff;
  }
  
  .flow-steps {
    margin-top: 64px;
    margin-left: 0px;
    margin-bottom: 66px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    flex-direction: row;
  }
  
  .step-wrapper {
    display: flex;
    gap: 13px;
  }
  
  .step-card {
    height: 160px;
    width: 107px; /* これが上限 */
    background: #B9AD6E;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    flex-shrink: 0; /* はみ出し防止にも */
  }
  
  .step-label {
    font-size: 16px;
    margin-top: 13.95px;
  }
  
  .step-number {
    font-size: 48px;
  }
  
  .step-underline {
    width: 66.83px;
    height: 3px;
    background-color: #fff;
    margin-top: 6px;
  }
  
  .step-title {
    margin-top: 9px;
    font-weight: 800;
    font-size: 16px;
  }  
  
  .step-box {
    background: linear-gradient(to top, #B9AD6E, #F3DE74);
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
      
  .step-arrow {
    border-top: 14.5px solid transparent;   /* 高さの半分 */
    border-bottom: 14.5px solid transparent;
    border-left: 21px solid #B9AD6E;   
    }
  
  .step-details {
    display: flex;
    flex-direction: column;
    max-width: 727px;
  }
  
  .step-detail {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 43px;
  }
  
  .step-text {
    width: 429px;
    height: 189px;
    margin-right: 55px;
  }
  
  .step-description {
    width: 429px;
    height: 115px;
    margin-top: 16px;
  }
  
  .step-index {
    background: linear-gradient(to top, #BCAC64, #F8D761, #F8D761, #F8D761, #BCAC64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 48px;
    margin-right: 29px;
  }
  
  .step-title-text {
    font-size: 40px;
    font-weight: bold;
    color: white;
  }
    
  .step-image {
    /* max-width: 240px;
    max-height: 175px;
    width: 100%;
    height: 100%; */
    width: 240px;
    height: 175px;
    background-color: #ddd;
    margin-top: 14px;
    border-radius: 6px;
    position: relative;
  }
  
  .step-note {
    margin-top: 101px;
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 47px;
  }
}

  @media (max-width: 450px) {
    .lp-flow {
      margin-top: 57px;
      text-align: left;
      color: #fff;
    }
    
    .flow-steps {
      margin-top: 64px;
      margin-left: 0px;
      margin-bottom: 66px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      flex-direction: column;
    }
    
    .step-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 27px;
    }
    
    .step-card {
      display: flex;
      align-items: center;
      max-width: 284px;
      width: 284px; /* これが上限 */
      height: 103.99px;
    }
    
    .step-label {
      font-size: 16px;
      margin-top: 13.95px;
    }
    
    .step-number {
      font-size: 48px;
    }

    .step-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-left: 29px;
      margin-right: 25px;
      margin-bottom: auto;
    }

    .step-label,
    .step-number {
      display: block;
      text-align: center;
    }
    
    .step-underline {
      width: 3px;
      height: 69.68px; /* 縦線の長さはお好みで */
      background-color: #ffffff; /* 線の色 */
      margin: 0 8px;
    }
    
    .step-title {
      margin-top: 0px;
      margin-left: 46px;
      font-weight: 800;
      font-size: 16px;
    }  
    
    .step-box {
      background: linear-gradient(to top, #B9AD6E, #F3DE74);
      border-radius: 8px;
      padding: 20px 16px;
      text-align: center;
      width: 100%;
      height: 100%;
      color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
        
    .step-arrow {
      border-top: 14.5px solid transparent;   /* 高さの半分 */
      border-bottom: 14.5px solid transparent;
      border-left: 21px solid #B9AD6E;   
      transform: rotate(90deg); /* 縦にするための回転 */1
    }
    
    .step-details {
      display: flex;
      flex-direction: column;
      max-width: 285px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .step-detail {
      display: flex;
      flex-direction: column;
      width: 100%;
      margin-bottom: 43px;
    }
    
    .step-text {
      width: 285px;
      height: 235px;
      margin-right: 55px;
      margin-bottom: 27px;
    }
    
    .step-description {
      width: 285px;
      height: 161px;
      margin-top: 15px;
      font-size: 16px;
    }
    
    .step-index {
      background: linear-gradient(to top, #BCAC64, #F8D761, #F8D761, #F8D761, #BCAC64);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      font-size: 48px;
      margin-right: 29px;
    }
    
    .step-title-text {
      font-size: 32px;
      font-weight: bold;
      color: #ffffff;
    }
      
    .step-image {
      /* max-width: 240px;
      max-height: 175px;
      width: 100%;
      height: 100%; */
      width: 284px;
      height: 175px;
      background-color: #ddd;
      border-radius: 6px;
      position: relative;
      margin-top: 0;
    }
    
    .step-note {
      margin-top: 40.32px;
      font-size: 10px;
      font-weight: 800;
      margin-bottom: 0;
    }
  }  
  


  /* FLOW　END */
  
/* ===============================
  RECRUIT SECTION
================================ */
.lp-recruit {
  margin-top: 163px;
  text-align: left;
  color: #fff;
}

.recruit-info {
  color: white;
  text-align: center;
}

.recruit-heading {
  margin-top: 159px;
  position: relative;
  text-align: center;
  padding: 20px 0;
  font-size: 40px;
}

.recruit-heading::before {
  content: "";
  text-align: center;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #BCAC64, #BCAC64, #F8D761, #F8D761, #BCAC64);
}

.recruit-heading::after {
  content: "";
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #B6A161, #FBCE66, #B6A161);
}

.recruit-image-box {
  background-color: #ddd;
  color: black;
  margin-top: 60px; 
  margin-bottom: 71px;
  width: 100%;
  height: 270px;
  font-weight: bold;
}

.recruit-points {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 130px;
  flex-wrap: nowrap;
}

.recruit-point{
  background-color: transparent;
  max-width: 343px;
  max-height: 191.5px;
  text-align: left;
  position: relative;
}

.recruit-point::after,
.recruit-point::before {
  content: "";
  position: absolute;
  z-index: 1;
}

.recruit-point::after {
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #BCAC64);
}

.recruit-point::before {
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to top, #BCAC64,#F8D761 ,#F8D761, #F8D761, #BCAC64);
}

.point-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.point-index {
  font-size: 64px;
  background: linear-gradient(to top, #B6A161, #FBCE66, #B6A161);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.point-title {
  color: white;
  width:222px;
  height: 70px;
  font-size: 24px;
}

.point-description {
  color: white;
  width: 317px;
  margin-top: 32px;
  margin-bottom: 103px;
}

.margin-bottom-87 {
  margin-bottom: 87px;
}

.margin-bottom-148 {
  margin-bottom: 148px;
}

.recruit-table {
  width: 80%;
  background-color: #f8f7f3;
  text-align: center;
  border-radius: 12px;
}

.recruit-table-content {
  padding-top: 70px;
  padding-left: 30px;
  padding-bottom: 50px;
  color: #313131;
  margin-bottom: 80px;
}


.recruit-table-title {
  font-size: 48px;
  font-weight: bold;
  color: #B9AD6E;
  margin-top: 70px;
  margin-bottom: 61px;
}

.recruit-info-row {
  max-width: 98%;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #B9AD6E;
  flex-wrap: wrap;
  margin-bottom: 41px;
  padding-bottom: 41px;
}
.recruit-label {
  width: 100px;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  margin-left: 68px;
  margin-right:82px;
  flex-shrink: 0;
}

.recruit-value {
  font-size: 20px;
  text-align: left;
  color: #505050;
}

.recruit-role {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.recruit-description-wrapper {
  box-sizing: border-box;
  text-align: left;
  margin-left: 62px;
  margin-top: 54px;
  margin-bottom: 47px;
}
.recruit-description {
  font-size: 20px;
  color: #555;
}

.no-underline {
  border-bottom: 0px solid #B9AD6E !important;
  margin-bottom: 23px !important;
  margin-left: 18px;
}

@media (max-width: 1000px) {
  .lp-recruit {
    margin-top: 148px;
    text-align: left;
    color: #fff;
  }

  .recruit-info {
    color: white;
    text-align: center;
  }

  .recruit-heading {
    margin-top: 59px;
    position: relative;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 32px;
    font-weight: 800;
    text-align: unset;
  }

  .recruit-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 55px;
    max-width: 727px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #BCAC64, #BCAC64, #F8D761, #F8D761, #BCAC64);
  }

  .recruit-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 55px;
    max-width: 727px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #B6A161, #FBCE66, #B6A161);
  }

  .recruit-image-box {
    background-color: #ddd;
    color: black;
    margin-top: 60px; 
    margin-bottom: 71px;
    margin-left: auto;
    margin-right: auto;
    width: 611px;
    height: 231px;
    font-weight: bold;
    padding: 0;
  }

  .recruit-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .recruit-point {
    background-color: transparent;
    width: 343px;
    max-height: 191.5px;
    text-align: left;
    position: relative;
  }

  .recruit-point-01 {
    max-width: 644px;
    width: 100%;
    margin-left: 0px;  
    margin-bottom: 42px;
  }

  .recruit-point-02 {
    max-width: 307px;
    width: 100%;
    margin-left: 0px;  
    margin-right: 0px;
  }

  .recruit-point-03 {
    max-width: 307px;
    width: 100%;
  }

  .recruit-point::after,
  .recruit-point::before {
    content: "";
    position: absolute;
    z-index: 1;
  }

  .recruit-point::after {
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(to right, #BCAC64);
  }

  .recruit-point::before {
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to top, #BCAC64,#F8D761 ,#F8D761, #F8D761, #BCAC64);
  }

  .point-header {
    display: flex;
    align-items: center;
  }

  .point-index {
    font-size: 64px;
    width: 96px;
    background: linear-gradient(to top, #B6A161, #FBCE66, #B6A161);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .point-title-01 {
    color: white;
    width:326px;
    height: 29px;
    font-size: 20px;
  }

  .point-title-02 {
    color: white;
    width:207px;
    font-size: 20px;
    margin-top: auto;
  }

  .point-title {
    color: white;
    width:326px;
    font-size: 20px;
  }

  .point-description-01 {
    color: white;
    width: 644px;
    margin-top: 21px;
    margin-bottom: 52px;
  }

  .point-description-02 {
    color: white;
    width: 272px;
    margin-top: 27px;
    margin-bottom: 29px;
  }

  .point-description-03 {
    color: white;
    width: 272px;
    margin-top: 27px;
    margin-bottom: 29px;
  }

  .point-description {
    color: white;
  }

  .margin-bottom-87 {
    margin-bottom: 87px;
  }

  .margin-bottom-148 {
    margin-bottom: 148px;
  }

  .recruit-table {
    width: 721px;
    background-color: #f8f7f3;
    text-align: center;
    border-radius: 12px;
  }

  .recruit-table-content {
    padding-top: 53px;
    padding-left: 17.59px;
    padding-bottom: 38px;
    color: #313131;
    margin-bottom: 79px;
  }


  .recruit-table-title {
    font-size: 48px;
    font-weight: bold;
    color: #B9AD6E;
    margin-top: 70px;
    margin-bottom: 61px;
  }

  .recruit-info-row {
    width: 683.02px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #B9AD6E;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 27px;
  }
  .recruit-label {
    width: 100px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    margin-left: 39.41px;
    margin-right:37.16px;
    flex-shrink: 0;
  }

  .recruit-value {
    font-size: 14px;
    text-align: left;
    color: #505050;
  }

  .recruit-role {
    font-weight: bold;
    margin-bottom: 0.5em;
  }

  .recruit-description-wrapper {
    width: 620px;
    margin-left: 40.41px;
    margin-top: 25px;
    margin-bottom: 19px;
  }
  .recruit-description {
    font-size: 14px;
    color: #505050;
    line-height: 25px;
  }

  .no-underline {
    border-bottom: 0px solid #B9AD6E !important;
    margin-bottom: 23px !important;
    margin-left: 0px;
  }
}

@media (max-width: 450px) {
  .lp-recruit {
    margin-top: 55px;
    text-align: left;
    color: #fff;
  }

  .recruit-info {
    color: white;
    text-align: center;
  }

  .recruit-heading {
    margin-top: 59px;
    max-width: 320px;
    position: relative;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-left: auto;
    margin-right: auto;
  }

  .recruit-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    max-width: 320px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #BCAC64, #BCAC64, #F8D761, #F8D761, #BCAC64);
  }

  .recruit-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    max-width: 320px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #B6A161, #FBCE66, #B6A161);
  }

  .recruit-image-box {
    background-color: #ddd;
    color: black;
    margin-top: 60px; 
    margin-bottom: 71px;
    margin-left: auto;
    margin-right: auto;
    width: 282px;
    height: 127px;
    font-weight: bold;
    padding: 0;
  }

  .recruit-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0%;
  }

  .recruit-point {
    background-color: transparent;
    width: 343px;
    max-height: 191.5px;
    text-align: left;
    position: relative;
  }

  .recruit-point-01 {
    max-width: 287px;
    width: 100%;
    margin-left: 16px;
    margin-bottom: 18px;
  }

  .recruit-point-02 {
    max-width: 287px;
    width: 100%;
    margin-left: 16px;  
    margin-bottom: 18px;
    margin-right: 0;
  }

  .recruit-point-03 {
    max-width: 287px;
    width: 100%;
    margin-left: 16px;  
  }

  .recruit-point::after,
  .recruit-point::before {
    content: "";
    position: absolute;
    z-index: 1;
  }

  .recruit-point::after {
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #BCAC64);
  }

  .recruit-point::before {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #BCAC64,#F8D761 ,#F8D761, #F8D761, #BCAC64);
  }

  .point-header {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .point-index {
    font-size: 48px;
    width: 76px;
    background: linear-gradient(to top, #B6A161, #FBCE66, #B6A161);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .point-title-03,
  .point-title-02,
  .point-title-01 {
    color: white;
    width:196px;
    height: 20px;
    font-size: 14px;
    margin-top: 0;
  }


  .point-title {
    color: white;
    width:196px;
    font-size: 14px;
  }

  .point-description-01 {
    color: white;
    width: 271px;
    margin-top:20px;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .point-description-02 {
    color: white;
    width: 271px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .point-description-03 {
    color: white;
    width: 272px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14px;

  }

  .point-description {
    color: white;
  }

  .margin-bottom-87 {
    margin-bottom: 87px;
  }

  .margin-bottom-148 {
    margin-bottom: 148px;
  }

  .recruit-table {
    width: 284px;
    background-color: #f8f7f3;
    text-align: center;
    border-radius: 12px;
  }

  .recruit-table-content {
    padding-top: 29px;
    padding-left: 15px;
    padding-bottom: 38px;
    color: #313131;
    margin-bottom: 79px;
  }


  .recruit-table-title {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 37px;
  }

  .recruit-info-row {
    width: 250px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #B9AD6E;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 27px;
  }
  .recruit-label {
    width: 70px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    margin-left: 0;
    margin-right:31px;
    flex-shrink: 0;
  }

  .recruit-value {
    font-size: 14px;
    text-align: left;
    color: #505050;
    flex: 1;
  }

  .recruit-role {
    font-weight: bold;
    margin-bottom: 0.5em;
  }

  .recruit-description-wrapper {
    width: 256px;
    height: 448px;
    margin-left: 0px;
    margin-top: 25px;
    margin-bottom: 0px;
  }
  .recruit-description {
    font-size: 14px;
    color: #505050;
    line-height: 25px;
  }

  .recruit-info-row.no-underline {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
    gap: 8px; /* 行間の調整 */
  }

  .no-underline {
    border-bottom: 0px solid #B9AD6E !important;
    margin-bottom: 23px !important;
    margin-left: 0px;
  }
}


/* ENTRY FORM SECTION */  
.lp-entry {
  text-align: center;
  color: #555;
  background-color: #d9d9d9 !important;
  width: 100%;
  padding-top: 171px;
  margin-top: 142px;
}

.entry-form {
  padding: 37px 0;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.entry-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.form-group {
  text-align: left;
  display: flex;
  flex-direction: column; /* 縦並びにする */
  gap: 12px; 
  margin-bottom: 29px;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}

.label-wrapper {
  display: flex;
  align-items: baseline;
  width: auto; /* ラベル+必須全体の幅 */
  gap: 4px;     /* ラベルと必須の間の隙間 */
  flex-shrink: 0;
}

.form-group label {
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.required {
  background-color: #e3c56d;
  color: #ffffff;
  font-size: 20px;
  margin-left: 23px;
  width: 79px;
  text-align: center;
}

.input-shadow {
  color: #898989;
  width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  background: #f2f2f2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  box-sizing: border-box;
  appearance: none;
  font-size: 20px;
}

.date-input {
  padding: 16px 32px;
}

.select-wrapper {
  position: relative;
  width: 100%;
  display: block; /* ← 追加 */
}
  
.select-wrapper::after {
  content: "";
  position: absolute;;
  top: 50%;
  right: 21px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #D9D9D9;
  transform: translateY(-50%);
  z-index: 1;
}

.select-styled {
  width: 100%; /* 明示的に幅100%指定 */
  font-size: 20px;
  border-radius: 4px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
}

.form-submit {
  margin-top: 149px;
}

.form-submit button {
  background: #fff;
  border: none;
  padding: 1rem 3rem;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 4px;
  width: 400px;
  height: 150px;
} 

@media (max-width: 1000px) {
  .lp-entry {
    text-align: center;
    color: #555;
    background-color: #d9d9d9 !important;
    width: 725px;
    padding-top: 80px;
    padding-left: 55px;
    padding-right: 54px;
    margin-top: 148px;
  }
  
  .entry-form {
    padding: 37px 0;
    text-align: center;
  }

  .entry-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 55px;
    margin-left: auto;
    margin-right: auto;
    width: 499px;
  }
  
  .form-group {
    text-align: left;
    font-size: 14px;
    display: flex;
    flex-direction: column; /* 縦並びにする */
    gap: 12px; 
    margin-bottom: 29px;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .label-wrapper {
    display: flex;
    align-items: baseline;
    width: auto; /* ラベル+必須全体の幅 */
    gap: 4px;     /* ラベルと必須の間の隙間 */
    flex-shrink: 0;
  }
  
  .form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 9px;
  }
  
  .required {
    background-color: #e3c56d;
    color: #ffffff;
    font-size: 14px;
    margin-left: 17px;
    width: 42px;
    text-align: center;
  }
  
  .input-shadow {
    width: 100%;
    color: #898989;
    padding: 16px 28px 15px 28px;
    border: none;
    border-radius: 4px;
    background: #f2f2f2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    box-sizing: border-box;
    appearance: none;
  }
  
  .date-input {
    font-size: 14px;
    padding: 1rem;
    background-size: 1rem;
  }
  
  .select-wrapper {
    position: relative;
    width: 100%;
    display: block; /* ← 追加 */
  }
    
  .select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 15px solid #D9D9D9;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .select-styled {
    width: 100%; /* 明示的に幅100%指定 */
    border-radius: 4px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
  }
  
  .form-submit {
    margin-top: 74px;
  }
  
  .form-submit button {
    background: #fff;
    border: none;
    font-weight: bold;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 4px;
    width: 284px;
    height: 88px;
  } 
}

@media (max-width: 450px) {
  .lp-entry {
    text-align: center;
    color: #555;
    background-color: #d9d9d9 !important;
    width: 284px;
    padding-top: 59px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 59px;
  }
  
  .entry-form {
    padding: 15px 0;
    text-align: center;
  }
  .entry-title {
    font-size: 14px;
    margin-bottom: 36px;
    width: 289px;
  }
  
  .form-group {
    text-align: left;
    font-size: 14px;
    display: flex;
    flex-direction: column; /* 縦並びにする */
    gap: 12px; 
    margin-bottom: 29px;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .label-wrapper {
    display: flex;
    align-items: baseline;
    width: auto; /* ラベル+必須全体の幅 */
    gap: 4px;     /* ラベルと必須の間の隙間 */
    flex-shrink: 0;
  }
  
  .form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 9px;
  }
  
  .required {
    background-color: #e3c56d;
    color: #ffffff;
    font-size: 14px;
    margin-left: 17px;
    width: 42px;
    text-align: center;
  }
  
  .input-shadow {
    width: 100%;
    color: #898989;
    padding: 16px 28px 15px 28px;
    border: none;
    border-radius: 4px;
    background: #f2f2f2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    box-sizing: border-box;
    appearance: none;
  }
  
  .date-input {
    font-size: 14px;
    padding: 16px 28px;
  }
  
  .select-wrapper {
    position: relative;
    width: 100%;
    display: block; /* ← 追加 */
  }
    
  .select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 15px solid #D9D9D9;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .select-styled {
    width: 100%; /* 明示的に幅100%指定 */
    border-radius: 4px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
  }
  
  .form-submit {
    margin-top: 74px;
  }
  .form-submit button {
    background: #fff;
    border: none;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 4px;
    width: 154px;
    height: 50px;
    padding: 0;
    margin-bottom: 79px;
  } 
}


/* Q&A SECTION */
.lp-qa {
  text-align: left;
  margin-top: 116px;
  margin-bottom: 100px;
}

.accordion {
  margin-bottom: 30px;	
}

.accordion-content {
  max-width: 1123px;
  display: none;
}

.accordion-header {
  color: #fff;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  margin-bottom: 29px;
  padding-bottom: 29px;
  border-bottom: 1px solid #fff;
  width: 80%;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:10px;
  right:20px;
  width:34px;
  height:2px;
  margin:auto;
  background:#ffffff;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after {
  transform:rotate(0deg);
}

.accordion-content {
  font-size: 16px;
  color: #fff;
  margin-bottom: 42px;
}

.accordion-header span,
.accordion-content span{
  position: relative;
}

@media (max-width: 1000px) {

  .lp-qa {
    text-align: left;
    margin-bottom: 174px;
    margin: 0 auto;
  }

  .qa-section {
    padding-top: 123px;
  }

  .accordion {
    width:  723px;
  }

  .accordion-content {
    width: 692px;
    display: none;
  }

  .accordion-header {
    color: #fff;
    cursor: pointer;
    position: relative;
    font-size: 15px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #fff;
  }

  .accordion-header::before,
  .accordion-header::after{
    position:absolute;
    content:'';
    top:10px;
    right:2px;
    width:25px;
    height:2px;
    margin:auto;
    background:#ffffff;
  }
  .accordion-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
  }
  .accordion-header.active::after {
    transform:rotate(0deg);
  }

  .accordion-content {
    font-size: 15px;
    color: #fff;
    margin-bottom: 42px;
  }

  .accordion-header span,
  .accordion-content span{
    position: relative;
  }
}

@media (max-width: 450px) {
  .lp-qa {
    text-align: left;
    margin-bottom: 65px;
  }

  .qa-section {
    padding-top: 54px;
  }

  .accordion {
    width:  284px;
  }

  .accordion-content {
    width: 284px;
    display: none;
  }

  .accordion-header {
    color: #fff;
    cursor: pointer;
    position: relative;
    font-size: 10px;
    margin-bottom: 19px;
    padding-bottom: 19px;
    border-bottom: 1px solid #fff;
  }

  .accordion-header::before,
  .accordion-header::after{
    position:absolute;
    content:'';
    top:10px;
    right:2px;
    width:18px;
    height:2px;
    margin:auto;
    background:#ffffff;
  }
  .accordion-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
  }
  .accordion-header.active::after {
    transform:rotate(0deg);
  }

  .accordion-content {
    font-size: 10px;
    color: #fff;
    margin-bottom: 42px;
  }

  .accordion-header span,
  .accordion-content span{
    position: relative;
  }
}
    
/* FOOTER */
.site-footer {
  padding: 70px 0 0 0;
  border-top: 1px solid #ccc;
  width: 100%;
}

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

.footer-logo {
  color: #fff;
  font-size: 64px;
}

.left-footer-menu {
  margin-right: 87px;
}

.right-footer-menu {
  margin-right: 94px;
}

.footer-nav ul li {
  margin-bottom: 79px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 80px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}  

@media (max-width: 1000px) {

  .site-footer {
    padding: 70px 0 0 0;
    border-top: 1px solid #ccc;
    width: 100%;
  }

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

  .footer-logo {
    color: #fff;
    font-size: 64px;
  }

  .footer-nav ul li {
    margin-bottom: 79px;
    font-size: 16px;
  }

  .left-footer-menu {
    margin-right: 23px
  }

  .right-footer-menu {
    margin-right: 60px
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .footer-nav a {
    color: #fff;
    text-decoration: none;
  } 
}

@media (max-width: 450px) {

  .site-footer {
    padding: 25px 0 0 0;
    border-top: 1px solid #ccc;
    width: 100%;
  }

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

  .footer-logo {
    color: #fff;
    font-size: 24px;
  }

  .footer-nav ul li {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .left-footer-menu {
    margin-right: 23px;
  }

  .right-footer-menu {
    margin-right: 18px;
  }

  .footer-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .footer-nav a {
    color: #fff;
    text-decoration: none;
  } 
}

@media (min-width: 600px) {
    .post_content h2 {
        font-size: clamp(24px,3.5.vw,64px)!important; 
    }
}