@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  color: #000;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fffabc;
  margin: 0px;
}
a {
  color: #121212;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.site-title {
  line-height: 1px;
  width: 200px;
  z-index: 100;
}
@media (max-width: 969px) {
  .site-title {
    margin: 0;
  }
}
.site-title a {
  display: block;
}
.sec-title {
  font-size: 2.25rem;
  margin-bottom: 30px;
  text-align: center;
}
/*
フェード表示させる要素に使用するためのクラス
*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/

#header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 9999;
  position: fixed;
  width: 100%;
}
/*
ハンバーガーメニュー
解説は、「中級編：ストアサイト（インテリア）」のCSS参照
*/
#navi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  color: #fff;
  padding: 80px 15px;
  background-color: #ff9000;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
#navi a {
  color: #fff;
}
.open #navi {
  left: 0;
  opacity: 1;
}
#navi ul {
  margin: 0;
  padding: 0;
}
#navi ul.nav-menu {
  margin-bottom: 60px;
  border-top: solid 1px #fff;
}
#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 1px #fff;
}
#navi ul.nav-sns li {
  padding: 5px 0;
}
.toggle_btn {
  display: block;
  position: relative;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all 0.5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 10;
  cursor: pointer;
}

.fixed-line {
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 99;
  width: 89px;
  height: 178px;
}
.fixed-line img {
  width: 100%;
  height: 100%;
}
.fixed-line.--sp {
  bottom: 0;
  width: 70px;
  height: 102px;
}
/*-------------------------------------------
FV
-------------------------------------------*/
.fv {
  background-color: #fffabc;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* 例: 16:9比率にする */
  overflow: hidden;
  margin-bottom: 40px;
}

/* 背景 */
.bg-blue {
  width: 75%;
  z-index: 2;
  right: 0;
  position: absolute;
  bottom: 0;
  max-width: 1450px;
}
.bg-red {
  top: 50px;
  right: 0;
  width: 50%;
  z-index: 2;
  position: absolute;
  max-width: 1200px;
}
/* 人物 */
.people {
  width: 80%;
  z-index: 5;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 1600px;
}

/* ロゴ */
.logo {
  top: 20px;
  left: 20px;
  width: 120px;
  z-index: 3;
}

/* テキスト */
.title {
  top: 130px;
  right: 20%;
  width: 40%;
  z-index: 4;
  position: absolute;
}
.recruit-text {
  top: 50px;
  right: 0;
  width: 180px;
  z-index: 4;
  position: absolute;
}
.catchcopy {
  bottom: 0px;
  left: 40px;
  width: 40%;
  z-index: 6;
  position: absolute;
  max-width: 700px;
}

.circle {
  z-index: 8;
  position: relative;
  width: 200px;
  left: 50px;
  top: 100px;
}
#circle-animation {
  animation: 13s linear infinite rotation1;
}
.follow {
  width: 150px;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(360deg);
  }
}
@keyframes rotation3 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@media screen and (max-width: 969px) {
  .follow {
    margin-top: 30px;
    width: 200px;
  }
  .pc {
    display: none !important;
  }
  #header {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    z-index: 9000;
    position: fixed;
  }
  .fv {
    background-color: #fffabc;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 0px;
  }
  .recruit-text {
    display: none;
  }
  .title {
    top: 110px;
    right: 3%;
    width: 70%;
    z-index: 4;
    position: absolute;
  }
  .bg-red {
    top: 100px;
    right: 0;
    width: 70%;
    z-index: 2;
    position: absolute;
  }
  .bg-blue {
    width: 95%;
    z-index: 2;
    right: 0;
    position: absolute;
    bottom: 0;
  }
  .circle {
    z-index: 8;
    position: relative;
    width: 80px;
    left: 20px;
    top: 100px;
  }

  .people {
    width: 100%;
    z-index: 5;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .catchcopy {
    bottom: 30px;
    left: 0px;
    width: 70%;
    z-index: 6;
    position: relative;
  }
}
@media screen and (min-width: 969px) {
  .sp {
    display: none !important;
  }
  .toggle_btn {
    display: none;
  }
  .video {
    width: 1000px;
    height: auto;
    height: 500px;
  }
}
/*-------------------------------------------
Main
-------------------------------------------*/
.main {
  width: 100%;
  margin: 0 auto;
  padding: 210px 40px;
  position: relative;
  display: flex;
  justify-content: center; /* 横方向中央 */
  align-items: center;
  min-height: 100vh;
  padding-bottom: 150px; /* 縦方向中央 */ /* 画面いっぱいの高さにする */
}
.main-video {
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 8;
}
.main-video-item {
  aspect-ratio: 1200/675;
  width: calc(1200 / 1440 * 100vw);
  border-radius: 30px;
  box-shadow: 30px 30px 0px #f64f22;
  border: solid 6px #f64f22;
  object-fit: cover;
}
@media screen and (max-width: 969px) {
  .main-video-item {
    aspect-ratio: 343/195;
    width: calc(343 / 393 * 100vw);
    border-radius: 15px;
    box-shadow: 10px 10px 0px #f64f22;
  }
}
.back-img {
  position: absolute;
  top: -80px;
  width: 100%;
  left: 0;
  z-index: -1;
}
.nailitpv {
  width: 900px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -170px;
  z-index: 10;
}

.top-svg {
  position: absolute;
  top: 0;
  z-index: 7;
  width: 100%;
  left: 0;
}
.top-yellow {
  position: absolute;
  left: 0;
  top: -10px;
}
.wave-yellow,
.wave-white {
  stroke-dasharray: 2000; /* パス全体の長さに近い大きめ数値を指定 */
  stroke-dashoffset: 0;
  animation: wave-move 6s linear infinite;
}

.wave-white {
  animation-delay: -3s; /* ずらすと2本がずれて動く */
}

@keyframes wave-move {
  to {
    stroke-dashoffset: -2000;
  }
}
@media screen and (max-width: 969px) {
  .main {
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    display: flex;
    justify-content: center; /* 横方向中央 */
    align-items: center;
    min-height: auto; /* 縦方向中央 */ /* 画面いっぱいの高さにする */
  }
  .nailitpv {
    width: 300px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -60px;
    z-index: 10;
  }
}
/*-------------------------------------------
Message
-------------------------------------------*/

/* セクション背景 */
.message-section {
  padding: 60px 20px;
  padding-top: 0px;
}

/* 白い大枠 */
.message-container {
  background-image: url(../images-recruit/message-back@4x.webp);
  border-radius: 20px;
  display: flex;
  align-items: end;
  padding: 3px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 左側 */
.message-left {
  position: relative;
  padding-right: 20px;
  width: 55%;
}

.message-title {
  font-weight: 900;
  color: #f64f22;
  margin-bottom: 30px;
  margin-top: 80px;
  font-size: 145px;
  font-weight: 900;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
}

.message-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.highlight img {
  width: 60%;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* 右側 */
.message-right {
  padding: 25px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 45%;
}

/* ボタン群 */
.message-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 25px;
  background: #fff;
  border: 2px solid #ddd;
  font-size: 16px;
  color: #000;
  position: relative;
}

/* カラーバリエーション */
.btn-orange {
  border-color: #ff9900;
}
.btn-orange::after {
  content: "➔";
  color: #ff9900;
  font-size: 18px;
  margin-left: 10px;
}

.btn-blue {
  border-color: #00aaff;
}
.btn-blue::after {
  content: "➔";
  color: #00aaff;
  font-size: 18px;
  margin-left: 10px;
}

.btn-pink {
  border-color: #ff3399;
}
.btn-pink::after {
  content: "➔";
  color: #ff3399;
  font-size: 18px;
  margin-left: 10px;
}

/* テキスト部分 */
.message-text {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  font-weight: 600;
  font-feature-settings: "palt" on;
}

.message-text .highlight {
  font-size: 20px;
  font-weight: 900;
  color: #000;
  margin-top: 20px;
  padding: 0;
  background: none;
}

.slider {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.slider__track {
  display: flex;
  width: calc(100%); /* 複製しているので2倍幅 */
  animation: scroll 10s linear infinite; /* ゆっくり無限ループ */
}

.slider__item {
  flex: 0 0 25%; /* PC: 4枚表示 (100 ÷ 4 = 25%) */
}

.slider__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* スマホ時: 2.5枚表示 */
@media screen and (max-width: 969px) {
  #navi .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  #navi .footer-inner {
    gap: 20px;
  }
  #navi .footer-buttons {
    justify-content: center;
    display: block;
    margin-bottom: 10px;
  }
  .message-container {
    background-color: #fff;
    border: solid 2px #f49e02;
    box-shadow: 8px 8px 0px #f49e02;
    background-image: none;
    border-radius: 15px;
    display: block;
    align-items: end;
    padding: 3px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
  }
  .message-figure {
    display: none;
  }
  .message-title {
    font-size: 67px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .message-left {
    position: relative;
    padding-right: 0px;
    width: 100%;
  }
  .message-right {
    padding: 0px;

    width: 100%;
  }
  .message-text .highlight {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    margin-top: 20px;
    text-align: right;
    margin-left: auto;
    display: block;
  }
  .highlight img {
    width: 181px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .slider__item {
    flex: 0 0 40%; /* 100 ÷ 2.5 = 40% */
  }
}

/* アニメーション */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* 複製分だけ動かす */
}

/*-------------------------------------------
Story
-------------------------------------------*/

.recruit {
  width: 80%;
  position: relative;
  z-index: 4;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
  top: -110px;
}
.story-section {
  background-color: #f49e02;
  padding: 70px 0px;
  position: relative;
}
.business-section {
  background-color: #42c6f5;
  padding: 70px 0px;
  position: relative;
}
.recruit-section {
  background-color: #f18ad9;
  padding: 70px 0px;
  position: relative;
}
@media (max-width: 969px) {
  .recruit-section {
    padding-bottom: 0;
  }
}
.story-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 30px;
}
@media (max-width: 969px) {
  .story-container {
    padding-bottom: 70px;
  }
}

.story-image img {
  width: 100%;
  max-width: 590px;
  border-radius: 20px;
  z-index: 3;
  position: relative;
}

.story-content {
  color: #fff;
  position: relative;
  width: 50%;
}

.story-label {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  text-shadow: 3px 3px 0px #f64f22;
  z-index: 3;
  position: relative;
  letter-spacing: 1px;
}
.business-label {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  text-shadow: 3px 3px 0px #b88af1;
  z-index: 3;
  position: relative;
  letter-spacing: 1px;
}
.recruit-label {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  text-shadow: 3px 3px 0px #ff7777;
  z-index: 3;
  position: relative;
  letter-spacing: 1px;
}

.story-title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.5;
  display: inline-block;
  text-indent: 0;
  z-index: 3;
  color: #fff;
  position: relative;
  letter-spacing: 1px;
}

.story-textbox {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 8px 8px 0px #f64f22;
  border: solid 2px #f64f22;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  z-index: 3;
  position: relative;
}
.business-textbox {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 8px 8px 0px #b88af1;
  border: solid 2px #b88af1;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  z-index: 3;
  position: relative;
}
.recruit-textbox {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 8px 8px 0px #ff7777;
  border: solid 2px #ff7777;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  z-index: 3;
  position: relative;
}

.recruit-btn {
  position: relative;
  z-index: 1;
}

.storypath {
  width: 80%;
  position: absolute;
  right: 0;
  top: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.businesspath {
  width: 80%;
  position: absolute;
  right: 0;
  top: 30px;
  bottom: 0;
}
.recruitpath {
  width: 80%;
  position: absolute;
  right: 0;
  top: 30px;

  bottom: 0;
}
.recruit-btn img {
  width: 330px;
}

/* レスポンシブ対応 */
@media (max-width: 969px) {
  a.recruit-btn {
    text-align: center;
  }
  .recruit {
    width: 90%;
    position: relative;
    z-index: 4;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    top: -100px;
  }
  .story-container {
    flex-direction: column;
    text-align: center;
  }
  .story-image img {
    max-width: 100%;
    padding-right: 50px;
    left: 0;
    border-radius: 0 30px 30px 0;
  }
  .storypath {
    width: 100%;
    position: absolute;
    right: 0;
    top: 60px !important;
    z-index: 1;
    bottom: 0;
    margin: 0;
  }
  .businesspath {
    width: 100%;
    position: absolute;
    right: 0;
    top: 60px !important;
    z-index: 1;
    bottom: 0;
    margin: 0;
  }
  .recruitpath {
    width: 100%;
    position: absolute;
    right: 0;
    top: 60px !important;
    z-index: 1;
    bottom: 0;
    margin: 0;
  }
  .story-sp {
    padding: 10px;
  }
  .story-label {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 3px 3px 0px #f64f22;
    z-index: 3;
    position: relative;
  }
  .business-label {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 3px 3px 0px #b88af1;
    z-index: 3;
  }
  .story-content {
    color: #fff;
    position: relative;
    width: 90%;
    text-align: left;
    justify-content: center;
    display: grid;
    z-index: 0;
  }
  .story-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.5;
    display: inline-block;
    text-indent: 0;
    z-index: 3;
    color: #fff;
    position: relative;
  }
  .story-btn {
    display: inline-block;
    padding: 10px 60px;
    background: #fff;
    color: #f64f22;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    box-shadow: 5px 5px 0px #f64f22;
    border: solid 2px #f64f22;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .business-btn {
    display: inline-block;
    padding: 10px 60px;
    background: #fff;
    color: #b88af1;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    box-shadow: 5px 5px 0px #b88af1;
    border: solid 2px #b88af1;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .story-textbox {
    background: #fff;
    color: #333;
    font-feature-settings: "palt" on;
    font-size: 15px;
    font-weight: 500;
    line-height: 26.3px;
    padding: 60px 20px 35px;
    border-radius: 8px;
    box-shadow: 8px 8px 0px #f64f22;
    border: solid 2px #f64f22;
    margin-bottom: 20px;
    line-height: 1.8;
    margin-bottom: 0px;
    z-index: 2;
    position: relative;
    top: -80px;
  }
  .business-textbox {
    background: #fff;
    color: #333;
    font-weight: 500;
    font-feature-settings: "palt" on;
    padding: 60px 20px 35px;
    border-radius: 8px;
    box-shadow: 8px 8px 0px #b88af1;
    border: solid 2px #b88af1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
    top: -80px;
  }
  .recruit-textbox {
    background: #fff;
    color: #333;
    font-weight: 500;
    font-feature-settings: "palt" on;
    padding: 60px 20px 35px;
    border-radius: 8px;
    box-shadow: 8px 8px 0px #ff7777;
    border: solid 2px #ff7777;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
    top: -80px;
  }
}

/* ENTRY セクション */
.entry-section {
  text-align: center;
  background: #ffd447;
  position: relative;
  color: #fff;
  padding: 70px 30px;
}

.entry-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  z-index: 100;
}

.entry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 600px;
  z-index: 10;
}

.entry-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

.entry-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
}

.entry-shinsotsu {
  background: #ff6600;
}

.entry-chuto {
  background: #0044cc;
}
.entry-section {
  overflow: hidden; /* 流れる部分のはみ出し隠す */
}

.entry-title-wrap {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0px;
}

.entry-title {
  font-size: 160px;
  font-weight: 900;
  background-color: #ff9000;
  color: #fff;
  text-shadow: 8px 8px 0px #ffa32b;
  flex-shrink: 0;
  padding-right: 2rem;
  animation: marquee 35s linear infinite;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
}
.entry-card1 {
  position: relative;
}
.entry-card2 {
  position: relative;
}
.entry-path {
  position: absolute;
  width: 40%;
  left: 0;
}
.entrypath {
  position: absolute;
  right: 0;
  width: 400px;
  bottom: 30px;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* SNS セクション */
.sns-section {
  background: #ffd447;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  padding-bottom: 350px;
}
.sns-logo {
  width: 250px;
}

.sns-title {
  font-weight: 900;
  color: #f64f22;
  margin-bottom: 30px;
  font-size: 160px;
  font-weight: 900;
  font-family: "Roboto Condensed", sans-serif;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
}

.sns-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 8px 8px 0px #f49e02;
  border: solid 2px #f49e02;
}

.sns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: bold;
}

.sns-follow {
  background: #ff9900;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: bold;
  cursor: pointer;
}

.sns-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sns-cards {
  display: flex;
  transition: transform 0.5s ease;
  gap: 15px;
}

.sns-card {
  flex: 0 0 25%; /* PCで4枚表示 */
  border-radius: 12px;
  overflow: hidden;
}

.sns-card img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .sns-card {
    flex: 0 0 100%; /* SPで1枚表示 */
  }
}

.sns-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.sns-slider .prev {
  left: 10px;
}
.sns-slider .next {
  right: 10px;
}

@media (max-width: 768px) {
  .sns-card {
    flex: 0 0 100%; /* SPでは1枚表示 */
  }
}

.sns-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.sns-slider .prev {
  left: 10px;
}
.sns-slider .next {
  right: 10px;
}

/* 矢印ボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
}
.slider-btn.prev {
  left: 0;
}
.slider-btn.next {
  right: 0;
}

.sns-slider {
  position: relative; /* 矢印を載せるため */
}

/* レスポンシブ対応 */
@media (max-width: 969px) {
  .entry-title {
    font-size: 70px;
    font-weight: 900;
    background-color: #ff9000;
    color: #fff;
    text-shadow: 8px 8px 0px #ffa32b;
    flex-shrink: 0;
    padding-right: 2rem;
    animation: marquee 35s linear infinite;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.2;
  }

  .entry-section {
    text-align: center;
    background: #ffd447;
    position: relative;
    color: #fff;
    padding: 50px 15px;
  }
  .entry-cards {
    justify-content: center;
    display: grid;
    z-index: 1;
    position: relative;
  }
  .entry-card {
    width: 95%;
    justify-self: center;
  }
  .entry-path {
    position: absolute;
    width: 80%;
    left: 0;
    top: 10px;
  }

  .sns-title {
    font-weight: 900;
    color: #f64f22;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 900;
    font-family: "Roboto Condensed", sans-serif;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  }
  .sns-section {
    background: #ffd447;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    padding-bottom: 150px;
    padding-top: 0px;
  }
}

.footer {
  background: #ff9000;
  color: #fff;
  padding: 60px 40px;
  position: relative;
  padding-top: 100px !important;
}
.footer-title {
  position: absolute;
  left: 0;
  width: 100%;
  top: -200px;
  max-width: 1600px;
  right: 0;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

/* 左側 */
.footer-left {
  width: 45%;
}

.footer-logo img {
  max-width: 180px;
  display: block;
}

.footer-logo p {
  font-weight: bold;
  margin: 10px 0 30px;
}

.footer-info p {
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-corporate-btn img {
  margin: 30px 0;
  width: 300px;
}

.footer-copy {
  font-size: 14px;
  margin-top: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  margin: 0;
}

/* 右側 */
.footer-right {
  width: 55%;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.footer-menu-block {
  width: 46%;
}
.footer-menu-block1 {
  width: 100%;
}
.footer-menu-block a {
  color: #fff;
}

.footer-menu-block h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;

  padding-bottom: 5px;
}

.footer-menu-block-a {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.footer-menu-block-a span {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}

.footer-menu-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-block ul li {
  margin-bottom: 8px;
}

.footer-menu-block ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-menu-block ul li a:hover {
  text-decoration: underline;
}

.footer-submenu {
  display: flex;
  gap: 40px;
  width: 100%;
}
.footer-submenu1 {
  width: 50%;
}
.footer-submenu2 {
  width: 50%;
}

.footer-submenu h5 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-buttons {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.footer-buttons img {
  height: auto;
  width: 90%;
}
.footer-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.footer-info th {
  text-align: left;
  font-weight: 00;
  width: 100px;
  vertical-align: top;
  font-size: 12px;
  padding: 6px 0;
  letter-spacing: 1px;
}
.footer-info td {
  font-size: 12px;
  padding: 6px 0;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 1px;
}
.footer-menu-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-block ul li {
  padding-left: 15px; /* 画像分の余白 */
  background: url("../images-recruit/arrow-footer.webp") no-repeat left center; /* 矢印画像を指定 */
  background-size: 5px auto; /* 矢印のサイズ調整 */
  margin: 6px 0;
}

.footer-menu-block ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.footer-menu-block ul li a:hover {
  text-decoration: underline;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .footer {
    background: #ff9000;
    color: #fff;
    padding: 80px 20px 30px;
    position: relative;
    padding-top: 40px !important;
  }
  .footer-title {
    position: absolute;
    left: 0;
    width: 100%;
    top: -50px;
  }
  .footer-left {
    width: 100%;
  }
  .footer-right {
    width: 100%;
  }
  .footer-corporate-btn img {
    width: 100%;
  }

  .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-menu-block {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column-reverse;
  }
  .footer-menu {
    flex-direction: column;
  }
  .footer-submenu {
    flex-direction: column;
  }
  .footer-buttons {
    justify-content: center;
    display: block;
    margin-bottom: 50px;
  }
  .footer-submenu1 {
    width: 100%;
  }
  .footer-submenu2 {
    width: 100%;
  }
  .footer-buttons img {
    width: 100%;
    margin-bottom: 10px;
    height: auto;
    margin-bottom: 25px;
  }
}

.bounce {
  opacity: 0;
  transform: translateY(50px);
}

.bounce.show {
  animation: bounceInUp 0.8s forwards;
}

/* 時間差 */
.bounce-1.show {
  animation-delay: 0s;
}
.bounce-2.show {
  animation-delay: 0.3s;
}
.bounce-3.show {
  animation-delay: 0.6s;
}
.bounce-4.show {
  animation-delay: 0.8s;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(350px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1; /* ここで opacity を明示 */
    transform: translateY(0);
  }
}

.curtain {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.curtain > img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* 共通アニメーション */
.curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(0%);
  z-index: 2;
  animation: curtain-open 0.8s ease forwards;
  animation-play-state: paused;
}

/* 色の指定（クラスで分ける） */
.pink-curtain::after {
  background: #f18ad9;
}

.blue-curtain::after {
  background: #42c6f5;
}

.orange-curtain::after {
  background: #f49e02;
}

.black-curtain::after {
  background: #000;
}
/* 開始トリガー */
.curtain.is-open::after {
  animation-play-state: running;
}

/* 下から上に開く */
@keyframes curtain-open {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}

.background-2 {
  max-width: 450px;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.background-1 {
  max-width: 450px;
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.story-section {
  position: relative;
}

.message-section {
  position: relative;
}
