/*
Theme Name:new-ecco-theme
Theme URI:https://cs-sa.jp/recruit/
Description:CS.Incの求人テーマです。
Version:1.0
Author:fc_yanagihara
*/

@charset "utf-8";

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/*-----------------------------------
css変数
-----------------------------------*/
:root {
  --brand-primary: #1a2c34;
  --accent-color-blue: #78c4c8;
  --accent-color-pink: #f3a9c1;
  --accent-color-yellow: #f3ec81;
  --font-color: #3b3b3b;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
}

/*-----------------------------------
common
-----------------------------------*/
body {
  position: relative;
  font-family: var(--font-ja);
  /* font-family: "Zen Old Mincho", serif; */
  /* font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro"; */
  font-size: 16px;
  font-weight: 500;
  color: var(--font-color);
  word-break: break-all;
  margin: 0;
}

p,
span,
li {
  font-weight: 500;
  line-height: 1.7;
}

a {
  color: var(--font-color);
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  opacity: 0.6;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.display-tab {
  display: none;
}

.display-sp {
  display: none;
}

.sect-title-en {
  position: absolute;
  top: -100px;
  right: 3%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 1.5px #e3e3e3;
  text-align: right;
}

.sect-inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}

.link-btn {
  position: relative;
  display: block;
  width: 25%;
  max-width: 400px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-primary);
  text-align: center;
  border-radius: 50px;
  padding: 25px 10px;
  margin: 0 auto;
  box-sizing: border-box;
}

.link-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 25px;
  height: 25px;
  background: url(../img/recruit/link-btn-arrow.png) no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 1024px) {
  .display-tab {
    display: block;
  }

  .sect-title-en {
    top: -70px;
    font-size: 80px;
  }

  .link-btn {
    width: 40%;
  }
}

@media only screen and (max-width: 900px) {
  .display-pc {
    display: none;
  }

  .sect-title-en {
    top: -48px;
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  p,
  span,
  li {
    font-weight: 500;
    line-height: 1.5;
  }

  .display-pc02 {
    display: none;
  }

  .display-sp {
    display: block;
  }

  .sect-inner {
    width: 90%;
  }

  .sect-title-en {
    top: -25px;
    font-size: 40px;
    -webkit-text-stroke: 1px #e3e3e3;
  }

  .link-btn {
    width: 90%;
    font-size: 15px;
    padding: 20px 10px;
  }

  .link-btn::after {
    width: 23px;
    height: 23px;
  }
}

/*-----------------------------------
Move
-----------------------------------*/
/* ページ遷移 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body {
  animation: fadeIn 2.5s forwards;
}

/* 下から上にフェードイン */
.fadeInBottom.visible {
  animation: fadeInBottom 1s ease 0s 1 normal;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
  }
}

/* 左から右にふわっとフェードイン */
.fadeInLeft.visible {
  animation: fadeInLeft 1s ease-in-out 0s 1 normal forwards;
}

/* fadeInLeft */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
  }
}

/* 右から左にふわっとフェードイン */
.fadeInRight.visible {
  animation: fadeInRight 0.8s ease-in-out 0s 1 normal forwards;
}

/* fadeInRight */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
  }
}

/* 透明から表示 */
.opacityFadeIn.visible {
  animation: opacityFadeIn 2s ease 0s 1 normal;
}

@keyframes opacityFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* bounce */
.bounceTrigger.visible {
  animation: bound 1.5s ease-in;
}

@keyframes bound {
  0%,
  40% {
    transform: skew(0deg, 0deg);
  }

  5% {
    transform: skew(5deg, 5deg);
  }

  10% {
    transform: skew(-4deg, -4deg);
  }

  15% {
    transform: skew(3deg, 3deg);
  }

  20% {
    transform: skew(-2deg, -2deg);
  }

  25% {
    transform: skew(1deg, 1deg);
  }

  30% {
    transform: skew(-0.6deg, -0.6deg);
  }

  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}

/* bounce02 */
.bounceTrigger02.visible {
  animation: bound02 1s 0.3s ease-in;
}

@keyframes bound02 {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }

  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }

  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }

  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }

  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

/*-----------------------------------
Entry
-----------------------------------*/
#entry-sect {
  position: relative;
  z-index: 100;
  background: #eee;
  text-align: center;
  padding: 80px 0;
}

.celebration-money {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*
.celebration-money p {
  position: relative;
  font-size: 35px;
  font-weight: 500;
  margin: 5px 15px 0 0;
}
*/
.present-sb {
  position: absolute;
  top: -100px;
  left: 18%;
  width: 180px;
}

/* .celebration-money p::before {
    content: '';
    position: absolute;
    top: -130px;
    left: -200px;
    width: 180px;
    height: 173px;
    background: url(../img/recruit/celebration-img.png);
    background-size: cover;
} */

.celebration-money-title {
  width: 360px;
  padding-top: 30px;
}

.entry-info {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}

.entry-title {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.entry-title::before,
.entry-title::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 30px;
  vertical-align: middle;
  margin-top: -5px;
}

.entry-title::before {
  background: url(../img/recruit/text-deco-line-l.png) no-repeat;
  background-size: contain;
  margin-right: 8px;
}

.entry-title::after {
  background: url(../img/recruit/text-deco-line-r.png) no-repeat;
  background-size: contain;
  margin-left: 8px;
}

.entry-sect-btn {
  position: relative;
  width: 32%;
  background: var(--brand-primary);
  border-radius: 50px;
  margin: 0 auto;
  box-sizing: border-box;
}

.entry-sect-btn a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

.entry-sect-btn img {
  width: 35px;
  height: 37px;
  vertical-align: top;
  margin-right: 10px;
}

.entry-sect-btn p {
  display: inline;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08rem;
  color: #fff;
}

.entry-sect-btn::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -100;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1.5px solid var(--brand-primary);
  border-radius: 50px;
  transition: all 0.3s;
}
.entry-sect-btn:hover::after {
  top: -1px;
  left: -1px;
}

@media only screen and (max-width: 1024px) {
  .present-sb {
    left: 15%;
  }
}

@media only screen and (max-width: 900px) {
  .present-sb {
    top: -150px;
    left: 8%;
    width: 180px;
  }

  .entry-title::before,
  .entry-title::after {
    margin-top: 0;
  }

  .entry-sect-btn {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  #entry-sect {
    padding: 40px 0 60px;
  }

  .celebration-money {
    width: 90%;
    margin: 0 auto;
  }
  .celebration-money-title {
    width: 100%;
  }

  .celebration-money p {
    width: 80px;
    font-size: 24px;
    margin: 0;
  }

  .present-sb {
    top: -110px;
    left: -5%;
    width: 30%;
    min-width: 150px;
  }

  .entry-info {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .entry-title {
    position: relative;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .entry-title::before {
    display: none;
  }

  .entry-title::after {
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 15px;
    background: url(../img/recruit/partition-line02.png) no-repeat;
    background-size: contain;
    margin: 0;
  }

  .entry-sect-btn {
    width: 95%;
  }

  .entry-sect-btn a {
    padding: 10px;
  }

  .entry-sect-btn::after {
    top: 3px;
    left: 3px;
  }

  .entry-sect-btn p {
    font-size: 16px;
  }

  .entry-sect-btn img {
    width: 25px;
    height: 27px;
  }
}

/*-----------------------------------
Maintenance
-----------------------------------*/
.maintenance {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f3f3f3;
  text-align: center;
}

.maintenance-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1080px;
  width: 70%;
  background: #fff;
  border: 2px solid #848484;
  padding: 80px 30px;
  box-sizing: border-box;
}

.m-logo {
  margin-bottom: 40px;
}

.m-logo img {
  width: 180px;
}

.maintenance-block h1 {
  font-size: 24px;
  letter-spacing: 0.08rem;
  margin-bottom: 20px;
}

.maintenance-block p {
  margin-bottom: 60px;
}

.maintenance-block a {
  color: #fff;
  background: #2c2c2c;
  border-radius: 50px;
  padding: 20px 60px;
}

@media only screen and (max-width: 1024px) {
  .maintenance-block {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .maintenance-block {
    width: 90%;
    padding: 30px 15px;
  }

  .m-logo {
    margin-bottom: 20px;
  }

  .m-logo img {
    width: 100px;
  }

  .maintenance-block h1 {
    font-size: 18px;
  }

  .maintenance-block p {
    text-align: left;
    margin-bottom: 30px;
  }

  .maintenance-block a {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/*-----------------------------------
header
-----------------------------------*/
#header {
  position: fixed;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 80px;
  text-align: center;
}

.header-logo {
  position: absolute;
  top: 55%;
  left: 20px;
  transform: translateY(-50%);
  width: 140px;
  margin: 0;
}

.header-logo p {
  font-size: 16px;
  font-weight: 600;
}

#header-menu {
  display: flex;
  align-items: center;
  height: 60px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
  margin: 8px 20px 0 0;
}

#menu-header-recruit {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 0 40px 0;
}

#menu-header-recruit li {
  position: relative;
}

#menu-header-recruit li.has-child::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}

#menu-header-recruit li.has-child ul {
  position: absolute;
  left: -48px;
  top: 35px;
  z-index: 4;
  background: #fff;
  width: 160px;
  border-radius: 0 0 10px 10px;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
  padding: 0 20px 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

#menu-header-recruit li.has-child ul li {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 2px;
  margin-bottom: 2px;
}

#menu-header-recruit li.has-child ul li:last-child {
  border-bottom: none;
}

#menu-header-recruit li.has-child:hover > ul,
#menu-header-recruit li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}

#menu-header-recruit li.has-child ul li a {
  font-size: 15px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

#menu-header-recruit li.has-child ul li:last-child > a {
  border-bottom: none;
}

#menu-header-recruit li.header-top-link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/recruit/top-link-icon.png) no-repeat;
  background-size: contain;
  margin-left: 5px;
}

#menu-header-recruit li > a {
  position: relative;
}

#menu-header-recruit li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 1px;
  background: var(--font-color);
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

#menu-header-recruit li > a:hover::after {
  transform: scale(1, 1);
}

#menu-header-recruit li.has-child > a:hover::after {
  transform: scale(0, 1);
}

.entry-btn-menu {
  display: none;
}

/* .header-line-btn{
    height: 45px;
    background: #06C755;
    border-radius: 10px;
}
.header-line-btn a{
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 45px;
    padding: 0 10px;
}
.header-line-btn a::before{
    content: '';
    display: inline-block;
    width: 32px;
    height: 31px;
    background: url("../img/recruit/LINE-icon-w.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 8px;
} */

/* === Fix Entry Btn ===*/
#entry-btn-fix {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 400;
  width: 12%;
  max-width: 200px;
  opacity: 0;
  transform: translateY(200px);
}

#entry-btn-fix a {
  display: block;
}

#entry-btn-fix-sp {
  display: none;
}

/* 上に上がる動き */
#entry-btn-fix.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下に下がる動き */
#entry-btn-fix.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(200px);
  }
}

@media screen and (max-width: 1024px) {
  /* ハンバーガーメニュー */
  .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 300;
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    border-radius: 0 0 0 15px;
  }

  .hamburger_border {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 50px;
    transition: all 0.6s;
  }

  .hamburger_border_top {
    top: 18px;
  }

  .hamburger_border_center {
    top: 28px;
  }

  .hamburger_border_bottom {
    top: 38px;
  }

  /* /ハンバーガーメニュー */

  #header-menu {
    position: fixed;
    top: 0;
    right: -110%;
    /* 右から出てくる */
    z-index: 200;
    display: block;
    width: 100%;
    height: 100vh;
    background: var(--brand-primary);
    border-radius: 0;
    transition: all 0.6s;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
    margin: 0;
  }

  .header-menu-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  #g-nav-list {
    width: 50%;
  }

  #menu-header-recruit {
    display: block;
    width: 50%;
    padding: 0;
    margin: 0 auto;
  }

  #menu-header-recruit li {
    margin-bottom: 30px;
  }

  #menu-header-recruit li a {
    color: #fff;
  }

  #menu-header-recruit li.header-top-link::after {
    background: url(../img/recruit/transition-icon.png) no-repeat;
    background-size: contain;
  }

  #menu-header-recruit li.has-child::before {
    left: 60px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  #menu-header-recruit li.has-child.active::before {
    transform: rotate(-45deg);
  }

  #menu-header-recruit li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 40%;
    background: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    padding: 0;
    margin: 5px auto 0;
  }

  #menu-header-recruit li.has-child ul li {
    border-bottom: 1px dotted #fff;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  #menu-header-recruit li.has-child ul li a {
    border-bottom: none;
  }

  .entry-btn-menu {
    display: block;
    width: 80%;
    background: var(--accent-color-pink);
    border-radius: 50px;
    padding: 10px;
    margin: 60px auto 0;
  }

  .entry-btn-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #fff;
  }

  .entry-btn-menu img {
    width: 25px;
    height: 27px;
    margin-right: 5px;
  }

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: var(--brand-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* .black_bg {
    position: fixed;
    z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    transform: scale(0);
    right:-50px;
    top:-50px;
    transition: all .6s;
} */
  .nav-open .black_bg {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }

  /* 表示された時用のCSS */
  .nav-open #header-menu {
    right: 0;
  }

  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 30px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 30px;
  }
}

@media screen and (max-width: 900px) {
  #menu-header-recruit li.has-child::before {
    left: 35px;
  }

  #entry-btn-fix {
    bottom: 20px;
    right: 20px;
    width: 130px;
  }
}

@media screen and (max-width: 767px) {
  #header {
    height: 50px;
  }

  .header-logo {
    left: 3%;
    width: 70px;
  }

  .header-logo p {
    font-size: 12px;
  }

  /* ハンバーガーメニュー */
  .hamburger {
    width: 50px;
    height: 50px;
  }

  .hamburger_border {
    left: 14px;
    width: 25px;
  }

  .hamburger_border_top {
    top: 16px;
  }

  .hamburger_border_center {
    top: 24px;
  }

  .hamburger_border_bottom {
    top: 32px;
  }

  /* /ハンバーガーメニュー */

  #g-nav-list {
    width: 95%;
  }

  #menu-header-recruit {
    width: 100%;
  }

  #menu-header-recruit li {
    margin-bottom: 20px;
  }

  #menu-header-recruit li a {
    font-size: 14px;
  }

  #menu-header-recruit li.has-child::before {
    left: 95px;
  }

  .entry-btn-menu {
    margin-top: 40px;
  }

  #entry-btn-fix {
    display: none;
  }

  #entry-btn-fix-sp {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    background: var(--accent-color-pink);
    border-radius: 30px 0 0 0;
  }

  #entry-btn-fix-sp a {
    display: block;
  }

  #entry-btn-fix-sp img {
    width: 65%;
  }
}

/*-----------------------------------
Footer
-----------------------------------*/
#footer-recruit {
  position: relative;
  z-index: 100;
  background: #f5f5f5;
  padding: 100px 0;
}

.page-template-page-recruit #footer-recruit {
  background: #fffdea;
}

#footer-recruit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--brand-primary);
  border-radius: 100px 100px 0 0;
}

.page-template-page-recruit #footer-recruit::after {
  background: var(--brand-primary);
}

#footer_pagetop {
  position: absolute;
  top: 30px;
  right: 10%;
  width: 50px;
  transition: all 0.6s;
}
#footer_pagetop:hover {
  top: 20px;
}
.footer-inner {
  position: relative;
  z-index: 100;
  max-width: 1080px;
  width: 95%;
  display: flex;
  margin: 0 auto;
}

.footer-logo-container {
  width: 45%;
}

.footer-logo {
  width: 160px;
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo p {
  font-size: 18px;
  letter-spacing: 0.03rem;
  color: #fff;
  margin-top: 5px;
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.footer-sns li {
  margin-right: 8px;
}

.footer-youtube-logo {
  width: 90px;
}

.footer-ticktok-logo {
  width: 20px;
}

.footer-instagram-logo {
  width: 25px;
}

.footer-menu-container {
  width: 55%;
}

#footer-menu {
  margin-bottom: 80px;
}

#menu-footer-recruit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 10px;
}

#footer-recruit .sub-menu {
  margin-top: 3px;
}

#footer-recruit .sub-menu li {
  margin-bottom: 2px;
}

#footer-recruit .sub-menu li::before {
  content: "・";
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin-right: 2px;
}

#footer-menu li a {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}

#footer-recruit .entry-sect-btn {
  width: 260px;
  background: var(--accent-color-pink);
  margin: 0 0 40px auto;
}
#footer-recruit .entry-sect-btn::after {
  border: 1.5px solid var(--accent-color-pink);
}
#footer-recruit .entry-sect-btn img {
  width: 25px;
  height: 27px;
  margin-right: 8px;
}

#footer-recruit .entry-sect-btn p {
  font-size: 16px;
}

.home-link-btn {
  display: block;
  width: 160px;
  font-size: 14px;
  color: #fff;
  margin-left: auto;
}

.home-link-btn img {
  width: 15px;
  margin-left: 8px;
}

.footer-copyright {
  display: block;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  color: var(--brand-primary);
  background: #fff;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .footer-inner {
    width: 85%;
  }

  .footer-logo-container {
    width: 40%;
  }

  .footer-menu-container {
    width: 60%;
  }
}

@media only screen and (max-width: 900px) {
  #footer-recruit {
    padding-bottom: 60px;
  }

  #footer-recruit::after {
    border-radius: 80px 80px 0 0;
  }

  .footer-inner {
    display: block;
  }

  .footer-logo-container {
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-logo {
    margin: 0 auto 30px;
  }

  .footer-sns {
    justify-content: center;
    gap: 30px;
  }

  .footer-menu-container {
    width: 100%;
  }

  #footer-recruit .entry-sect-btn {
    margin: 0 auto 30px;
  }
}

@media only screen and (max-width: 767px) {
  #footer-recruit {
    padding: 80px 0;
  }

  #footer-recruit::after {
    border-radius: 60px 60px 0 0;
  }

  #footer_pagetop {
    right: 10%;
    width: 40px;
  }

  .footer-logo {
    width: 50%;
  }

  #footer-menu {
    margin-bottom: 50px;
  }

  #footer-menu ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #footer-menu li a {
    font-size: 13px;
  }

  #footer-recruit .entry-sect-btn p {
    font-size: 15px;
  }

  .footer-copyright {
    font-size: 12px;
    margin-bottom: 70px;
  }
}

/*-----------------------------------
keyvisual
-----------------------------------*/
.keyvisual {
  position: relative;
  height: 100svh;
  background: #f5f5f5;
}

.keyvisual-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 75svh;
}

.slider {
  position: relative;
  z-index: 1;
  height: 95%;
  display: flex;
  justify-content: space-between;
}

.slider-left,
.slider-right {
  width: 49%;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  height: 100%;
}
.slider-item {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.webp .slider-item01 {
  background: url(../img/recruit/cs-recruit-key-img01.webp) center no-repeat;
  background-size: cover;
}
.slider-item01 {
  background: url(../img/recruit/cs-recruit-key-img01.jpg) center no-repeat;
  background-size: cover;
}
.webp .slider-item02 {
  background: url(../img/recruit/cs-recruit-key-img03.webp) center no-repeat;
  background-size: cover;
}
.slider-item02 {
  background: url(../img/recruit/cs-recruit-key-img03.jpg) center no-repeat;
  background-size: cover;
}
.webp .slider-item03 {
  background: url(../img/recruit/cs-recruit-key-img05.webp) center no-repeat;
  background-size: cover;
}
.slider-item03 {
  background: url(../img/recruit/cs-recruit-key-img05.jpg) center no-repeat;
  background-size: cover;
}
.webp .slider-item04 {
  background: url(../img/recruit/cs-recruit-key-img02.webp) center no-repeat;
  background-size: cover;
}
.slider-item04 {
  background: url(../img/recruit/cs-recruit-key-img02.jpg) center no-repeat;
  background-size: cover;
}
.webp .slider-item05 {
  background: url(../img/recruit/cs-recruit-key-img04.webp) center no-repeat;
  background-size: cover;
}
.slider-item05 {
  background: url(../img/recruit/cs-recruit-key-img04.jpg) center no-repeat;
  background-size: cover;
}
.webp .slider-item06 {
  background: url(../img/recruit/cs-recruit-key-img06.webp) center no-repeat;
  background-size: cover;
}
.slider-item06 {
  background: url(../img/recruit/cs-recruit-key-img06.jpg) center no-repeat;
  background-size: cover;
}

.keyvisual-title {
  position: absolute;
  bottom: 37%;
  left: -8%;
  z-index: 100;
  width: 25vw;
}

/*==== recruit-block ====*/
.key-recruit-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1080px;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 6px 40px 30px 40px;
  box-sizing: border-box;
}

.key-recruit-container h2 {
  margin: -37px 0 15px;
}

.key-recruit-container h2 img {
  display: block;
  width: 60%;
  max-width: 500px;
  margin: 0 auto;
}

/* .key-recruit-container h2 {
    position: relative;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    font-size: 26px;
    color: #fff;
} */

/* .key-recruit-container h2::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    display: block;
    width: 580px;
    height: 90px;
    background: url(../img/recruit/key-title-sb.png) no-repeat;
    background-size: contain;
} */

.key-recruit-container ul {
  display: flex;
  justify-content: space-between;
}

.key-recruit-container ul li {
  width: 32%;
  text-align: center;
  padding: 15px 8px;
  border-radius: 15px;
  box-sizing: border-box;
}

.key-recruit-container ul li:first-child {
  background: var(--accent-color-blue);
}

.key-recruit-container ul li:nth-child(2) {
  background: var(--accent-color-pink);
}

.key-recruit-container ul li:last-child {
  background: var(--accent-color-yellow);
}

.key-recruit-container ul li p {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.key-recruit-container ul li img {
  width: 62px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 15px;
}

.key-recruit-container ul li:nth-child(2) img {
  width: 60px;
}

.key-recruit-container div {
  display: flex;
  justify-content: space-between;
}

.key-recruit-container a {
  position: relative;
  display: block;
  width: 48%;
  font-size: 13px;
  letter-spacing: -0.02rem;
  text-align: center;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 50px;
  padding: 8px;
  box-sizing: border-box;
}

/* .key-recruit-container a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    width: 8px;
    height: 13px;
    background: url(../img/recruit/recruit-link-arrow.png) no-repeat;
    background-size: contain;
} */

.key-recruit-container ul li:nth-child(2) a {
  width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .key-recruit-container {
    width: 95%;
  }
  .key-recruit-container a {
    width: 49%;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .keyvisual {
    height: calc(100svh - 80px);
    padding-top: 80px;
  }

  .keyvisual-inner {
    top: 100px;
    width: 95%;
    height: 85svh;
    transform: translate(-50%, 0);
  }

  .keyvisual-title {
    bottom: auto;
    top: 50%;
    left: 0;
    width: 55%;
  }
}

@media only screen and (max-width: 900px) {
  .keyvisual-title {
    top: 45%;
  }
  .key-recruit-container {
    padding: 6px 20px 20px;
  }
  .key-recruit-container ul li p {
    font-size: 16px;
  }
  .key-recruit-container h2 img {
    width: 70%;
  }
  .key-recruit-container div {
    display: block;
  }
  .key-recruit-container a,
  .key-recruit-container ul li:nth-child(2) a {
    width: 90%;
    margin: 0 auto;
  }
  .key-recruit-container div a:first-child {
    margin-bottom: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .keyvisual {
    height: calc(100svh - 130px);
    padding-top: 60px;
  }

  .keyvisual-inner {
    position: static;
    width: 90%;
    height: auto;
    transform: translate(0, 0);
    margin: 0 auto 40px;
  }
  .slider {
    display: block;
  }
  .slider-left,
  .slider-right {
    width: 100%;
    height: 27svh;
  }
  .slider-left {
    margin-bottom: 15px;
  }
  .slider-item {
    border-radius: 15px;
  }
  .keyvisual-title {
    position: static;
    display: block;
    width: 75%;
    margin: 1% auto;
  }

  .key-recruit-container {
    position: static;
    transform: translateX(0);
    width: 90%;
    background: transparent;
    padding: 0;
    margin: 0 auto 40px;
  }
  .key-recruit-container h2 {
    margin: 15px 0;
  }

  .key-recruit-container h2 img {
    width: 100%;
  }

  .key-recruit-container ul {
    display: block;
  }

  .key-recruit-container ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*==== solution section ====*/
#solution-sect {
  position: relative;
  z-index: 100;
  background: url(../img/recruit/top-catch-bg.png) no-repeat;
  background-size: contain;
  padding: 190px 0;
  margin-top: -200px;
}

.webp #solution-sect {
  background: url(../img/recruit/top-catch-bg.webp) no-repeat;
  background-size: contain;
}

#solution-sect h3 {
  text-align: center;
  margin-bottom: 12%;
  /* margin-bottom: 120px; */
}

#solution-sect h3 img {
  width: 50%;
}

#solution-sect div {
  display: flex;
  justify-content: center;
  gap: 5%;
}

#solution-sect div picture {
  width: 38%;
  max-width: 700px;
}

#solution-sect div picture:last-child {
  margin-top: 80px;
}

@media only screen and (max-width: 1024px) {
  #problem-sect {
    padding-bottom: 80px;
  }

  #solution-sect {
    padding: 120px 0;
  }

  #solution-sect h3 {
    margin-bottom: 60px;
  }

  #solution-sect h3 img {
    width: 70%;
  }

  #solution-sect div picture {
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  #solution-sect {
    background: url(../img/recruit/top-catch-bg-sp.png);
    background-size: cover;
    padding: 12% 0 100%;
    margin: -160px 0 200px;
  }

  .webp #solution-sect {
    background: url(../img/recruit/top-catch-bg-sp.webp);
    background-size: cover;
  }

  #solution-sect h3 img {
    width: 90%;
  }

  #solution-sect div {
    position: absolute;
    bottom: -27%;
    left: 5%;
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  #solution-sect div picture {
    display: block;
    width: 70%;
  }

  #solution-sect div picture:last-child {
    margin: 20px 0 0 auto;
  }
}

/*==== feature 01 ====*/
#features-sect {
  position: relative;
  background: #fffdea;
  border-radius: 100px 100px 0 0;
  padding: 100px 0;
}

.features-container {
  max-width: 1200px;
  width: 90%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
  padding: 80px 60px 100px;
  margin: 0 auto 80px;
  box-sizing: border-box;
}

.features-title-block {
  position: relative;
  display: inline-block;
}

#features-sect h4 {
  position: relative;
  display: inline-block;
  font-size: 34px;
  color: #fff;
  background: var(--accent-color-pink);
  border-radius: 10px;
  padding: 15px 30px;
  margin-bottom: 20px;
}

#features-sect h4::before {
  content: "";
  display: block;
  position: absolute;
  top: -70px;
  left: 25px;
  width: 80px;
  height: 81px;
  background: url(../img/recruit/feature01.png) no-repeat;
  background-size: contain;
}

#features-sect .features02 h4::before {
  top: -63px;
  background: url(../img/recruit/feature02.png) no-repeat;
  background-size: contain;
}

#features-sect .features03 h4::before {
  top: -65px;
  background: url(../img/recruit/feature03.png) no-repeat;
  background-size: contain;
}

.features-title-block img {
  position: absolute;
  top: calc(50% + -20px);
  right: -140px;
  transform: translateY(-50%);
  width: 160px;
}

.features03 .features-title-block img {
  top: calc(50% + -26px);
  right: -115px;
  width: 140px;
}

.features-common {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.features-common div {
  width: 50%;
}

.features-common picture {
  width: 47%;
}

.features-common img {
  border-radius: 15px;
}

.features-lead {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.features-text {
  line-height: 1.8;
}

/*==== feature 01(デビューまでの道のり) ====*/
.debut-program {
  position: relative;
  background: url(../img/recruit/note-bg.png) repeat;
  background-size: 80px;
  border: 2px dotted #888;
  border-radius: 10px;
  padding: 65px 20px 30px 30px;
  margin-bottom: 60px;
}

.debut-program h5 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin-top: -35px;
  box-sizing: border-box;
}

.debut-program h5 p {
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  color: var(--accent-color-yellow);
  background: #fff;
  -webkit-text-stroke: 1px var(--brand-primary);
  text-shadow: 2px 2px 0 var(--brand-primary);
  border: 2px solid var(--brand-primary);
  border-radius: 10px;
  padding: 0 25px;
}

.staff-message01 {
  display: none;
  /* position: absolute;
    top: -92px;
    left: 10%;
    width: 150px; */
}

.staff-message02 {
  position: absolute;
  top: -20px;
  right: -7%;
  width: 38%;
}

.debut-program-inner h6 {
  position: relative;
  display: inline-block;
}

.debut-program-inner .db-step01 h6::after {
  content: "";
  position: absolute;
  top: -116px;
  right: -50px;
  width: 70%;
  height: 173px;
  background: url(../img/recruit/staff-img01.png) no-repeat;
  background-size: contain;
}

.debut-program-inner h6 img {
  width: 85px;
  margin-bottom: 10px;
}

.debut-program-inner h6 p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02rem;
  color: #fff;
  background: var(--accent-color-blue);
  border-radius: 10px;
  padding: 5px 15px;
}

.debut-program-inner span {
  position: relative;
  display: inline-block;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--font-color);
  border-radius: 50px;
  padding: 5px 5px 5px 40px;
  margin-left: 30px;
}

.debut-program-inner span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  z-index: 100;
  width: 43px;
  height: 43px;
  background: url(../img/recruit/point-icon.png) no-repeat;
  background-size: contain;
}

.debut-program-inner ul {
  margin-top: 20px;
}

.debut-program-inner ul li p {
  line-height: 1.4;
  margin-bottom: 5px;
}

.debut-program-inner > ul li img {
  margin-top: 1rem;
}

.db-step01 ul {
  display: flex;
  margin: 25px 0 30px;
}

.db-step01 ul li {
  position: relative;
  width: 25%;
  margin-right: 1%;
}

.db-step01 ul li:first-child {
  margin-right: 3%;
}

.db-step01 ul li:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 30px;
  height: 20px;
  background: url(../img/recruit/features-arrow-s.png) no-repeat;
  background-size: contain;
}

.db-step01 ul li:last-child {
  width: 46%;
  margin: -20px 0 0 0;
}

.db-step01 ul li:last-child img {
  margin-top: 15px;
}

.debut-program-wrapper {
  display: flex;
  justify-content: space-between;
}

.db-step02 {
  width: 32%;
}

.debut-program-inner.db-step02 ul,
.db-step03-list {
  height: 105px;
}

.debut-img-s02 {
  width: 95%;
}

.db-step03 {
  position: relative;
  width: 66%;
}

.debut-program-inner.db-step03 span {
  position: absolute;
  top: 0;
  left: 75px;
}

.debut-final {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  background: #f5dfe7;
  border-radius: 50px;
  text-align: center;
  padding: 5px 15px;
  margin: 20px auto 0;
  box-sizing: border-box;
}

.debut-final.display-sp {
  display: none;
}

.db-step03-inner {
  display: flex;
  justify-content: space-between;
}

.db-step03-inner div {
  width: 46%;
}

.db-step03-inner div:first-child {
  position: relative;
}

.db-step03-inner div:first-child::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 60px;
  right: -10%;
  width: 5px;
  height: 67%;
  background: url(../img/recruit/or-line.png);
  background-size: cover;
}

.db-step03-inner div:first-child::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 40%;
  right: -15%;
  width: 40px;
  height: 40px;
  background: url(../img/recruit/or-icon.png) no-repeat;
  background-size: contain;
}

.db-step03-inner div:last-child {
  margin-top: 43px;
}

/*==== feature 01(アイリストの前職) ====*/
.features01-foot {
  position: relative;
}

.features01-subTitle {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.features01-subTitle.st01::before,
.features01-subTitle.st01::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 30px;
  background: var(--font-color);
  border-radius: 50px;
  vertical-align: sub;
}

.features01-subTitle.st01::before {
  margin-right: 20px;
  transform: rotate(-30deg);
}

.features01-subTitle.st01::after {
  margin-left: 20px;
  transform: rotate(30deg);
}

.occupation {
  width: 80%;
  font-size: 18px;
  border: solid 8px var(--accent-color-blue);
  border-radius: 15px;
  padding: 30px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

.features01-subTitle.st02 {
  width: 605px;
  margin: 0 auto 40px;
}

.features01-subTitle.st02::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 49%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: url(../img/recruit/wavy-line.png);
  background-size: cover;
}

.staff-message04 {
  position: absolute;
  bottom: 77px;
  right: -60px;
  width: 25%;
}

.features01-foot-catch {
  position: relative;
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

/*==== feature 02 ====*/
.salary-point {
  display: flex;
  justify-content: center;
  gap: 8%;
  width: 80%;
  margin: 0 auto 90px;
}

.salary-point picture {
  width: 46%;
}

.sect-subTitle {
  width: 50%;
  max-width: 500px;
  margin: 0 auto 15px;
}

.salary-block {
  position: relative;
}

.staff-message05 {
  display: none;
  /* position: absolute;
    top: -88px;
    right: 0;
    width: 250px; */
}

/* .sub-heading {
    position: relative;
    z-index: 100;
    font-size: 28px;
    letter-spacing: 0.08rem;
    color: #fff;
    text-align: center;
} */

/* .salary-block .sub-heading {
    margin: 0 auto 50px;
} */

/* .sub-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -100;
    width: 26rem;
    height: 5rem;
} */

/* .salary-block .sub-heading::after {
    top: -13px;
    width: 30rem;
    background: url(../img/recruit/salary-title-sb.png) no-repeat;
    background-size: contain;
} */

.salary-block ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
  width: 80%;
  margin: 0 auto 40px;
}

.salary-block ul li:last-child::after {
  content: "";
  position: absolute;
  top: -79px;
  right: 0;
  z-index: 100;
  width: 250px;
  height: 168px;
  background: url(../img/recruit/staff-img05.png) no-repeat;
  background-size: contain;
}

.features02-subTitle {
  text-align: center;
}

.features02-subTitle span {
  display: inline;
  font-size: 26px;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  background-image: linear-gradient(rgba(0 0 0 / 0) 65%, #f2cad7 70%);
}

/*==== feature 03 ====*/
.features03 .features-common {
  margin-bottom: 80px;
}

.turnover-content {
  position: relative;
}

.turnover-content .sect-subTitle {
  max-width: 420px;
}

/* .turnover-content .sub-heading {
    margin: 0 auto 40px;
} */

/* .turnover-content .sub-heading::after {
    top: -10px;
    width: 420px;
    height: 68px;
    background: url(../img/recruit/turnover-title-sb.png) no-repeat;
    background-size: contain;
} */

.staff-img06 {
  position: absolute;
  top: -57px;
  right: -20px;
  width: 320px;
}

.reason-container {
  display: flex;
  justify-content: flex-end;
  gap: 5%;
  width: 90%;
  background: url(../img/recruit/note-bg.png) repeat;
  background-size: 80px;
  border: 7px solid #dbdbdb;
  padding: 40px 20px 40px 100px;
  margin: 0 auto 80px;
  box-sizing: border-box;
}

.reason-container ul {
  width: 48%;
}

.reason-container ul li {
  display: flex;
  margin-bottom: 1rem;
}

.reason-container ul li img {
  width: 29px;
  height: 25px;
  margin: 3px 8px 0 0;
}

.reason-container ul li p {
  font-size: 18px;
  font-weight: 600;
}

.reason-container ul li p span {
  display: inline;
  font-size: 20px;
  line-height: 1.4;
  color: var(--accent-color-pink);
  background-image: linear-gradient(rgba(0 0 0 / 0) 60%, #fff9a2 70%);
}

.senior-voice {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .salary-block ul li:last-child::after {
    top: -83px;
    right: -3%;
  }
  .debut-program-inner .db-step01 h6::after {
    top: -107px;
    height: 153px;
  }
  .debut-program-inner .db-step01 ul li p {
    height: 45px;
  }

  .debut-program-inner h6 p {
    padding: 5px 10px;
  }

  .db-step03-inner div:first-child::after {
    width: 35px;
    height: 35px;
  }

  .debut-final {
    padding: 5px 10px;
  }

  .staff-message04 {
    bottom: 68px;
    width: 23%;
  }
}

@media screen and (max-width: 1150px) {
  .debut-program-inner.db-step02 ul,
  .db-step03-list {
    height: 125px;
  }
}

@media screen and (max-width: 1024px) {
  /*==== feature 01 ====*/
  .debut-program h5 p {
    font-size: 32px;
  }

  /* .staff-message01{
        width: 90px;
        top: -25px;
        left: 15%;
    } */
  .debut-program-inner .db-step01 h6::after {
    top: -74px;
    right: -20px;
    width: 55%;
    height: 120px;
  }

  .debut-program-inner ul li p {
    font-size: 16px;
  }

  .db-step01 ul li:last-child {
    margin-top: 0;
  }

  .debut-program-inner.db-step02 ul,
  .db-step03-list {
    height: 150px;
  }

  .debut-program-inner.db-step03 span {
    top: -5px;
  }

  .db-step03-inner div:first-child::after {
    width: 30px;
    height: 30px;
  }

  .debut-final {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
  }

  .staff-message04 {
    bottom: 58px;
    right: -7%;
    width: 23%;
  }

  /*==== feature 02 ====*/
  .salary-block ul {
    width: 100%;
  }

  .staff-message05 {
    top: -53px;
    right: -12%;
    width: 25%;
  }
  .salary-block ul li:last-child::after {
    top: -80px;
    width: 230px;
    height: 154px;
  }

  /*==== feature 03 ====*/
  .reason-container {
    width: 100%;
    padding: 40px 20px;
  }

  .staff-img06 {
    top: -43px;
    right: -4%;
    width: 35%;
  }

  .senior-voice {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .staff-message04 {
    bottom: 56px;
    right: -8%;
    width: 21%;
  }
}

@media screen and (max-width: 900px) {
  #solution-sect {
    padding: 100px 0 120px;
  }

  .features-container {
    padding: 80px 30px 60px;
  }

  #features-sect {
    border-radius: 80px 80px 0 0;
    padding-bottom: 30px;
  }

  .sect-subTitle {
    width: 60%;
  }

  /*==== feature 01 ====*/
  #features-sect h4 {
    font-size: 28px;
  }

  #features-sect h4::before {
    top: -60px;
    width: 70px;
    height: 71px;
  }

  .features-title-block img {
    right: -120px;
    width: 140px;
  }

  .features-common img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .debut-program-inner .db-step01 h6::after {
    top: -81px;
    right: -5px;
  }

  .debut-program {
    padding: 40px 15px 30px;
  }

  .debut-program h5 p {
    font-size: 26px;
  }

  .staff-message01 {
    position: absolute;
    top: 27px;
    left: 34%;
    width: 80px;
  }

  .staff-message02 {
    top: 22px;
    right: 2%;
  }

  .debut-program-inner h6 img {
    width: 70px;
    margin-bottom: 8px;
  }

  .debut-program-inner span {
    display: block;
    width: 66%;
    text-align: center;
    padding: 3px 5px 3px 35px;
    margin: 20px 0 0;
    box-sizing: border-box;
  }

  .debut-program-inner span::before {
    width: 35px;
    height: 35px;
  }

  .debut-program-inner.db-step03 span::before {
    width: 35px;
    height: 35px;
  }

  .debut-program-inner ul li p {
    font-size: 15px;
    line-height: 1.3;
  }

  .db-step01 ul {
    margin-bottom: 10px;
  }

  .debut-program-inner.db-step02 ul,
  .db-step03-list {
    height: 110px;
  }

  .db-step01 ul li:last-child {
    margin-top: 13px;
  }

  .debut-program-inner.db-step03 span {
    width: 65%;
    font-size: 14px;
    margin: 0 0 0 10px;
  }

  .db-step03-inner div:last-child {
    margin-top: 35px;
  }

  .db-step03-inner div:first-child::before {
    bottom: 12px;
    height: 70%;
  }

  .debut-final {
    font-size: 14px;
    padding: 5px;
  }

  .occupation {
    width: 90%;
  }

  .staff-message04 {
    bottom: 53px;
    right: -4%;
  }

  .features01-subTitle.st02 {
    font-size: 20px;
  }

  .features01-subTitle.st02::after {
    width: 83%;
  }

  .features01-foot-catch {
    width: 100%;
  }

  /*==== feature 02 ====*/
  #features-sect .features02 h4::before {
    top: -54px;
  }

  .salary-point {
    width: 100%;
  }

  .salary-block ul li:last-child::after {
    top: -55px;
    right: -7%;
    width: 180px;
    height: 122px;
  }

  .staff-message05 {
    top: -31px;
    right: -10%;
  }

  /* .sub-heading {
        font-size: 24px;
    } */

  /* .salary-block .sub-heading::after {
        top: -12px;
        width: 440px;
        height: 63px;
    } */

  .features02-subTitle span {
    font-size: 24px;
  }

  /*==== feature 03 ====*/
  .features03 .features-common {
    margin-bottom: 60px;
  }

  #features-sect .features03 h4::before {
    top: -58px;
  }

  .staff-img06 {
    top: -26px;
  }

  .turnover-content .sect-subTitle {
    width: 55%;
  }

  /* .turnover-content .sub-heading::after {
        width: 360px;
        height: 58px;
    } */

  .reason-container {
    justify-content: space-between;
  }

  .reason-container ul li img {
    width: 26px;
    height: 22px;
  }

  .reason-container ul li p span {
    font-size: 18px;
  }
}

@media screen and (max-width: 870px) {
  .debut-program-inner.db-step02 ul,
  .db-step03-list {
    height: 135px;
  }
}

@media screen and (max-width: 767px) {
  #solution-sect {
    padding: 15% 0 90%;
  }

  #features-sect {
    top: 30px;
    border-radius: 60px 60px 0 0;
    padding: 60px 0 100px;
  }

  .features-container {
    padding: 60px 15px 40px;
    margin-bottom: 20px;
  }

  .features-common {
    display: block;
    margin-bottom: 40px;
  }

  .features-common div {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .sect-subTitle {
    width: 100%;
  }

  .features-lead {
    font-size: 17px;
  }

  .features-text {
    font-size: 14px;
  }

  .features-common img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  /*==== feature 01 ====*/
  #features-sect h4 {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    padding: 10px 15px;
    box-sizing: border-box;
  }

  #features-sect h4::before {
    top: -43px;
    left: 15px;
    width: 50px;
    height: 51px;
  }

  #features-sect .features03 h4::before {
    top: -40px;
  }

  .features-title-block {
    display: block;
  }

  .features-title-block img {
    top: -32px;
    right: -3%;
    width: 25%;
  }

  .features01-subTitle.st02 {
    width: 90%;
  }

  /*==== feature 01(デビューまでの道のり) ====*/
  .debut-program {
    padding-top: 40%;
    margin-bottom: 30px;
  }

  .debut-program h5 {
    top: 15px;
    width: 85%;
  }

  .debut-program h5 p {
    font-size: 18px;
    letter-spacing: 0.05rem;
    padding: 3px 10px;
  }

  .staff-message01 {
    position: absolute;
    top: 25px;
    left: 6%;
    width: 23%;
    display: block;
  }

  .debut-program-inner .db-step01 h6::after {
    display: none;
  }

  .staff-message02 {
    top: 30px;
    width: 65%;
  }

  .debut-program-inner h6 {
    width: 100%;
  }

  .debut-program-inner h6 img {
    width: 70px;
    margin-bottom: 3px;
  }

  .debut-program-inner h6 p {
    text-align: center;
  }

  .debut-program-inner .db-step01 ul li p {
    height: auto;
    padding: 8px 5px;
    margin-bottom: 15px;
  }

  .debut-program-inner span {
    width: 100%;
    font-size: 13px;
    line-height: 1.2;
    padding: 5px 5px 5px 28px;
  }

  .debut-program-inner.db-step03 span {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 13px;
    padding: 5px 0 5px 25px;
    margin: 0;
  }

  .debut-program-inner.db-step03 span::before {
    left: -12px;
  }

  .debut-program-inner ul {
    margin: 10px 0;
  }

  .debut-program-inner.db-step02 ul {
    margin-bottom: 10px;
  }

  .debut-program-inner ul li {
    margin-bottom: 3px;
  }

  .db-step01 ul {
    display: block;
    margin-top: 20px;
  }

  .debut-program-inner.db-step02 ul,
  .db-step03-list {
    height: auto;
  }

  .db-step01 ul li {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
  }

  .db-step01 ul li:first-child {
    margin-right: 0;
  }

  .db-step01 ul li:nth-child(2) {
    margin-bottom: 0;
  }

  .db-step01 ul li:last-child {
    width: 100%;
  }

  .db-step01 ul li:first-child::after {
    content: "";
    position: absolute;
    left: calc(50% - 15px);
    top: auto;
    bottom: -35px;
    width: 23px;
    height: 30px;
    background: url(../img/recruit/features-arrow-s.png) no-repeat;
    background-size: contain;
    transform: rotate(90deg);
  }

  .db-step01 ul li:last-child img {
    margin-top: 0;
  }

  .debut-program-wrapper {
    display: block;
  }

  .debut-final,
  .debut-program-inner ul li:last-child p .debut-final {
    margin-top: 15px;
  }

  .debut-final.display-sp {
    display: block;
  }

  /*==== feature 02 ====*/
  #features-sect .features02 h4::before {
    top: -39px;
  }

  .features02 .features-title-block img {
    right: -5%;
  }

  .salary-point {
    display: block;
    margin-bottom: 50px;
  }

  .salary-point picture {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  /* .sub-heading {
        font-size: 18px;
    } */

  /* .salary-block .sub-heading {
        margin-bottom: 20px;
    } */

  /* .salary-block .sub-heading::after {
        top: -6px;
    } */

  .staff-message05 {
    display: block;
    width: 60%;
    margin: 0 auto;
  }

  .salary-block ul li:last-child::after {
    display: none;
  }

  .salary-block ul::after {
    display: none;
  }

  .salary-block ul {
    display: block;
    margin: -2px 0 20px;
  }

  .salary-block ul li {
    margin-bottom: 20px;
  }

  .salary-block ul li img {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .features02-subTitle span {
    font-size: 18px;
  }

  .db-step02 {
    width: 100%;
    margin-bottom: 40px;
  }

  /*==== feature 03 ====*/
  .features03 .features-common {
    margin-bottom: 50px;
  }

  .features03 .features-title-block img {
    top: -30px;
    right: -3%;
    width: 25%;
  }

  .db-step03 {
    width: 100%;
  }

  .debut-program-wrapper {
    margin-top: 20px;
  }

  .db-step03-inner {
    display: block;
    margin-bottom: 10px;
  }

  .db-step03-inner div {
    width: 100%;
  }

  .db-step03-inner div:first-child img {
    margin-top: 5px;
  }

  .db-step03-inner div:last-child {
    margin-top: 60px;
  }

  .db-step03-inner div:first-child::before {
    display: none;
  }

  .db-step03-inner div:first-child::after {
    bottom: -48px;
    right: auto;
    left: 50%;
    width: 100%;
    height: 38px;
    transform: translateX(-50%);
    background: url(../img/recruit/or-sp.png) no-repeat;
    background-size: contain;
  }

  .turnover-content .sect-subTitle {
    width: 100%;
  }

  /* .salary-block .sub-heading::after {
        top: -9px;
    } */

  /* .turnover-content .sub-heading {
        margin-bottom: 30px;
    } */

  /* .turnover-content .sub-heading::after {
        top: -15px;
    } */

  .staff-img06 {
    position: static;
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .features01-subTitle {
    font-size: 18px;
  }

  .features01-subTitle.st01::before,
  .features01-subTitle.st01::after {
    width: 1.5px;
    height: 20px;
  }

  .features01-subTitle.st01::before {
    margin-right: 10px;
  }

  .features01-subTitle.st01::after {
    margin-left: 10px;
  }

  .occupation {
    width: 100%;
    font-size: 14px;
    border: solid 5px var(--accent-color-blue);
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .features01-subTitle.st02 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .features01-subTitle.st02::after {
    bottom: -12px;
    left: 50%;
    width: 100%;
  }

  .staff-message04 {
    position: static;
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  .reason-container {
    display: block;
    border: 5px solid #dbdbdb;
    padding: 30px 10px;
    margin-bottom: 40px;
  }

  .reason-container ul {
    width: 100%;
  }

  .reason-container ul:last-child li:last-child {
    margin-bottom: 0;
  }

  .reason-container ul li img {
    width: 20px;
    height: 16px;
    margin-right: 3px;
  }

  .reason-container ul li p {
    font-size: 14px;
    line-height: 1.3;
  }

  .reason-container ul li p span {
    font-size: 16px;
  }
}

/*==== アイリストの魅力とは ====*/
#eyelist-charm-sect {
  position: relative;
  background: #fffdea;
  border-radius: 100px 100px 0 0;
  padding: 100px 0 200px;
  margin-top: 160px;
}

#eyelist-charm-sect .sect-title-en {
  top: -85px;
  font-size: 90px;
  left: -0.08rem;
}

/* #eyelist-charm-sect .sub-heading {
    margin: 0 auto 40px;
} */

/* #eyelist-charm-sect .sub-heading::after {
    top: -10px;
    width: 420px;
    height: 68px;
    background: url(../img/recruit/turnover-title-sb.png) no-repeat;
    background-size: contain;
} */

.sub-heading-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.sub-heading-text::before,
.sub-heading-text::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 19px;
}

.sub-heading-text::before {
  background: url(../img/recruit/quotation-l.png) no-repeat;
  background-size: contain;
  vertical-align: text-top;
  margin-right: 13px;
}

.sub-heading-text::after {
  background: url(../img/recruit/quotation-r.png) no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin-left: 13px;
}

.eyelist-charm-block {
  margin-top: 40px;
}

.eyelist-charm-block > li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.eyelist-charm-block > li:nth-child(odd) {
  flex-direction: row-reverse;
}

.eyelist-charm-block li > div,
.eyelist-charm-block li picture {
  width: 48%;
}

.eyelist-charm-title {
  display: flex;
  border-bottom: 3px dotted #afafaf;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.eyelist-charm-title h6 span {
  font-size: 26px;
  line-height: 1.4;
  color: var(--accent-color-blue);
  background-image: linear-gradient(rgba(0 0 0 / 0) 60%, #fff9a2 70%);
}

.eyelist-charm-title img {
  width: 70px;
  object-fit: contain;
  margin-right: 15px;
}

.charm-point-text {
  margin-top: 1rem;
}
.charm-point-text li {
  display: flex;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
  #eyelist-charm-sect .sect-title-en {
    top: -68px;
    font-size: 80px;
  }
}

@media screen and (max-width: 900px) {
  #eyelist-charm-sect {
    border-radius: 80px 80px 0 0;
  }

  #eyelist-charm-sect .sect-title-en {
    top: -50px;
    font-size: 60px;
    -webkit-text-stroke: 1px #e3e3e3;
  }

  /* #eyelist-charm-sect .sub-heading::after {
        top: -15px;
    } */

  .sub-heading-text {
    font-size: 28px;
  }

  .sub-heading-text::before,
  .sub-heading-text::after {
    width: 20px;
    height: 15px;
  }

  .sub-heading-text::before {
    margin-right: 5px;
  }

  .sub-heading-text::after {
    margin-left: 8px;
  }

  .eyelist-charm-block li:last-child {
    margin-bottom: 0;
  }

  .eyelist-charm-title img {
    width: 65px;
  }

  .eyelist-charm-title h6 span {
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  #eyelist-charm-sect {
    border-radius: 60px 60px 0 0;
    padding: 90px 0 180px;
    margin-top: 80px;
  }

  #eyelist-charm-sect .sect-title-en {
    top: -22px;
    font-size: 40px;
    line-height: 1;
  }

  /* #eyelist-charm-sect .sub-heading {
        margin-bottom: 30px;
    } */
  /* .sub-heading::after{
        width: 20rem;
        height: 3rem;
    } */
  /* #eyelist-charm-sect .sub-heading::after {
        top: -16px;
    } */

  .sub-heading-text {
    font-size: 22px;
    font-weight: bold;
  }

  .sub-heading-text::before,
  .sub-heading-text::after {
    width: 15px;
    height: 10px;
  }

  .eyelist-charm-block {
    margin-top: 30px;
  }

  .eyelist-charm-block > li {
    display: block;
    margin-bottom: 30px;
  }

  .eyelist-charm-block li > div,
  .eyelist-charm-block li picture {
    width: 100%;
  }

  .eyelist-charm-title img {
    width: 50px;
  }

  .eyelist-charm-title h6 span {
    font-size: 20px;
  }

  .charm-point-text {
    margin-bottom: 20px;
  }
  .charm-point-text li {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

/*==== スタッフの声 ====*/
#staff-sect {
  position: relative;
  top: -100px;
  background: #fff;
  border-radius: 100px 100px 0 0;
  padding: 100px 0 40px;
}

#staff-sect h4 {
  width: 300px;
  font-size: 40px;
  text-align: center;
  margin: 0 auto 40px;
}

#staff-sect h4::before,
#staff-sect h4::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 40px;
  vertical-align: bottom;
}

#staff-sect h4::before {
  background: url(../img/recruit/title-deco-l.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
}

#staff-sect h4::after {
  background: url(../img/recruit/title-deco-r.png) no-repeat;
  background-size: contain;
  margin-left: 10px;
}

.staff-subTitle {
  width: 50%;
  max-width: 800px;
  margin: 0 auto 50px;
}
.staff-block {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 60px;
  overflow: hidden;
}

.staff-block:nth-of-type(2) {
  flex-direction: row-reverse;
}

.staff-block:last-of-type {
  margin-bottom: 60px;
}

.staff-introduction,
.staff-interview {
  position: relative;
  z-index: 100;
  width: 48%;
}

.staff-block:nth-of-type(2) .staff-introduction {
  width: calc(48% + 30px);
}

.staff-introduction-inner {
  position: relative;
  z-index: 100;
  padding-left: 40%;
}

.staff-block:nth-of-type(2) .staff-introduction-inner {
  padding: 0 40% 0 0;
}

.staff-number {
  position: absolute;
  top: -40px;
  left: 37%;
  width: 200px;
}

.staff-block:nth-of-type(2) .staff-number {
  left: -2%;
}

.staff-image {
  border-radius: 15px;
  margin-left: 30px;
}

.staff-block:nth-of-type(2) .staff-image {
  margin-left: 0;
}

.staff-catch {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 360px;
}

.staff-block:nth-of-type(2) .staff-catch {
  bottom: 10px;
  left: auto;
  right: 20%;
  width: 340px;
}
.staff-block:last-of-type .staff-catch {
  width: 380px;
}
.staff-name {
  position: relative;
  top: -80px;
  background: #f3c0d1;
  border-radius: 0 0 15px 0;
  padding: 130px 0 50px;
}

.staff-block:nth-of-type(2) .staff-name {
  background: #8dcfd2;
  border-radius: 0 0 0 15px;
  margin-left: 30px;
}

.staff-block:last-of-type .staff-name {
  background: #f3eb78;
}

.staff-name::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: calc(100% + 8px);
  height: 100%;
  border: 2px solid #f3c0d1;
  border-radius: 0 0 15px 0;
}

.staff-block:nth-of-type(2) .staff-name::after {
  right: auto;
  left: -8px;
  border: 2px solid #8dcfd2;
  border-radius: 0 0 0 15px;
}

.staff-block:last-of-type .staff-name::after {
  border: 2px solid #f3eb78;
}

.staff-name dl {
  color: #fff;
  padding-left: 48%;
}

.staff-block:nth-of-type(2) .staff-name dl {
  padding-left: 8%;
}

.staff-name dt {
  font-size: 26px;
  margin-bottom: 15px;
}

.staff-name dd {
  font-size: 18px;
  margin-bottom: 10px;
}

.staff-interview dl {
  border-bottom: 2px dotted #afafaf;
  padding-bottom: 20px;
  margin: 0 30% 3% 0;
}

.staff-block:nth-of-type(2) .staff-interview dl {
  margin: 0 0 3% 30%;
}

.staff-interview dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.staff-interview dt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.staff-interview dd {
  line-height: 1.5;
}

.staff-pv-top,
.staff-pv-bottom {
  position: absolute;
  z-index: -100;
  border-radius: 10px;
  opacity: 0.7;
}

.staff-pv-top {
  top: 80px;
  right: 2%;
  width: 55%;
}

.staff-block:nth-of-type(2) .staff-pv-top {
  right: auto;
  left: 3%;
  opacity: 0.5;
}

.staff-pv-bottom {
  bottom: 0;
  right: -2%;
  width: 45%;
}

.staff-block:nth-of-type(2) .staff-pv-bottom {
  right: auto;
  left: -2%;
}

@media screen and (max-width: 1024px) {
  .staff-introduction,
  .staff-interview {
    width: 47%;
  }

  .staff-introduction-inner {
    padding-left: 20%;
  }

  .staff-subTitle {
    width: 70%;
  }

  .staff-block:nth-of-type(2) .staff-introduction-inner {
    padding-right: 20%;
  }

  .staff-name dl {
    padding-left: 30%;
  }

  .staff-interview dl {
    margin-right: 15%;
  }

  .staff-block:nth-of-type(2) .staff-interview dl {
    margin-left: 15%;
  }

  .staff-pv-top {
    width: 70%;
  }

  .staff-pv-bottom {
    bottom: 100px;
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  #staff-sect {
    border-radius: 80px 80px 0 0;
  }

  #staff-sect h4 {
    font-size: 35px;
    margin-bottom: 30px;
  }

  #staff-sect h4::before,
  #staff-sect h4::after {
    width: 15px;
    height: 35px;
  }
  .staff-block {
    margin-bottom: 30px;
  }
  .staff-subTitle {
    width: 80%;
  }
  .staff-introduction {
    width: 40%;
  }
  .staff-block:nth-of-type(2) .staff-introduction {
    width: 40%;
  }
  .staff-introduction-inner {
    padding-left: 5%;
  }

  .staff-block:nth-of-type(2) .staff-introduction-inner {
    padding-right: 5%;
  }

  .staff-number {
    left: 8%;
  }

  .staff-catch {
    bottom: -30px;
    left: 4%;
    width: 280px;
  }

  .staff-block:nth-of-type(2) .staff-catch {
    right: 17%;
    width: 280px;
  }
  .staff-block:last-of-type .staff-catch {
    bottom: -40px;
    width: 320px;
  }
  .staff-name dl {
    padding-left: 10%;
  }
  .staff-interview {
    width: 54%;
  }
  .staff-block:nth-of-type(2) .staff-interview {
    width: 56%;
  }
  .staff-block:nth-of-type(2) .staff-interview dl {
    margin-left: 8%;
  }

  .staff-interview dl {
    margin-right: 5%;
  }

  .staff-block:last-of-type .staff-catch {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  #staff-sect {
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
  }

  #staff-sect .sect-title-en {
    top: -35px;
    font-size: 45px;
  }

  #staff-sect h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  #staff-sect h4::before,
  #staff-sect h4::after {
    width: 12px;
    height: 28px;
  }

  .staff-subTitle {
    width: 90%;
  }

  .staff-block {
    display: block;
    margin-bottom: 0;
  }
  .staff-block:last-of-type {
    margin-bottom: 0;
  }
  .staff-introduction,
  .staff-interview,
  .staff-block:nth-of-type(2) .staff-introduction {
    width: 100%;
  }

  .staff-introduction-inner,
  .staff-block:nth-of-type(2) .staff-introduction-inner {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }

  .staff-number {
    left: 5%;
    width: 150px;
  }

  .staff-image {
    margin-left: 0;
  }

  .staff-catch {
    left: -3%;
    width: 100%;
  }

  .staff-block:nth-of-type(2) .staff-catch {
    bottom: -30px;
    right: auto;
    left: -3%;
    width: 80%;
  }

  .staff-block:last-of-type .staff-catch {
    left: 2%;
    width: 100%;
  }

  .staff-name {
    width: 85%;
    padding-bottom: 30px;
    margin-right: 30px;
  }

  .staff-block:nth-of-type(2) .staff-name {
    margin: 0 0 0 auto;
  }

  .staff-name dt {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .staff-name dd {
    font-size: 14px;
  }

  .staff-interview {
    top: -30px;
  }
  .staff-block:nth-of-type(2) .staff-interview {
    width: 100%;
  }
  .staff-interview dl,
  .staff-block:nth-of-type(2) .staff-interview dl {
    width: 90%;
    margin: 0 auto 20px;
  }

  .staff-interview dt {
    font-size: 18px;
  }

  .staff-interview dd {
    font-size: 14px;
  }

  .staff-pv-top {
    top: 8%;
    right: auto;
    left: 0;
    width: 75%;
  }

  .staff-pv-bottom {
    bottom: 30%;
    right: 0;
    width: 80%;
  }

  .staff-block:nth-of-type(2) .staff-pv-bottom {
    left: auto;
    right: 0;
  }
}

/*==== よくある質問 ====*/
.section-wrapper {
  background: #fffdea;
  border-radius: 100px 100px 0 0;
  padding: 100px 0 120px;
}

#faq-sect {
  margin-bottom: 100px;
}

.secondary-subTitle {
  text-align: center;
  margin-bottom: 40px;
}

.secondary-subTitle span {
  display: inline-block;
  font-family: "Marck Script", cursive;
  font-size: 26px;
  line-height: 1;
}

.secondary-subTitle p {
  font-size: 32px;
  font-weight: 600;
}

.faq-container {
  background: url(../img/recruit/note-bg.png) repeat;
  background-size: 80px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
  padding: 60px;
}

.faq-container dl {
  border-bottom: 2px dotted #afafaf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.faq-container dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-container dt,
.faq-container dd {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.faq-container dt {
  margin-bottom: 20px;
}

.faq-container dt span,
.faq-container dd span {
  width: 20px;
  height: 20px;
  font-size: 26px;
  line-height: 15px;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  margin-right: 20px;
}

.faq-container dt span {
  background: #6d6d6d;
}

.faq-container dd span {
  background: var(--accent-color-blue);
}

@media screen and (max-width: 900px) {
  .section-wrapper {
    border-radius: 80px 80px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .section-wrapper {
    border-radius: 60px 60px 0 0;
    padding: 60px 0 80px;
  }

  #faq-sect {
    margin-bottom: 60px;
  }

  .secondary-subTitle span {
    font-size: 22px;
  }

  .secondary-subTitle p {
    font-size: 24px;
  }

  .faq-container {
    padding: 40px 15px;
  }

  .faq-container dl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .faq-container dt,
  .faq-container dd {
    align-items: inherit;
    font-size: 16px;
  }

  .faq-container dt span,
  .faq-container dd span {
    font-size: 24px;
    margin-right: 15px;
  }
}

/*==== 入社までの流れ ====*/
#flow-sect {
  position: relative;
  z-index: 100;
  margin-bottom: 120px;
}
#flow-sect .sect-inner {
  position: relative;
}
#flow-sect .secondary-subTitle {
  margin-bottom: 50px;
}

.staff-img07 {
  position: absolute;
  top: -80px;
  right: 0;
  width: 340px;
}

#flow-sect ul {
  position: relative;
  z-index: 100;
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
  padding: 40px 0;
  margin-bottom: 100px;
}

#flow-sect ul li {
  position: relative;
  width: 25%;
  border-right: 2px dotted #afafaf;
  padding: 0 20px;
  box-sizing: border-box;
}

#flow-sect ul li:last-child {
  border-right: none;
}

.flow-step-number {
  position: absolute;
  top: -60px;
  left: 15px;
  width: 100px;
}

.flow-icon {
  display: block;
  width: 80px;
  margin: 0 auto;
}

.flow-block dt {
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-color-blue);
  text-align: center;
  margin: 15px 0 10px;
}

.flow-block dd {
  font-size: 15px;
}

@media screen and (max-width: 1024px) {
  .staff-img07 {
    top: -58px;
    right: 5%;
    width: 30%;
  }
}

@media screen and (max-width: 900px) {
  .staff-img07 {
    top: -12px;
    right: 2%;
  }

  #flow-sect ul li {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  #flow-sect {
    margin-bottom: 80px;
  }
  #flow-sect .secondary-subTitle {
    margin-bottom: 10px;
  }

  .staff-img07 {
    position: static;
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  #flow-sect ul {
    display: block;
  }

  #flow-sect ul li {
    width: 90%;
    border-right: none;
    border-bottom: 2px dotted #afafaf;
    padding: 0 0 20px;
    margin: 0 auto 40px;
  }

  #flow-sect ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .flow-step-number {
    top: -10%;
    left: 0;
    width: 80px;
  }

  .flow-block dt {
    font-size: 18px;
  }

  .flow-block dd {
    font-size: 14px;
  }
}

/*==== recruit info ====*/
.recruit-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.recruit-info-block {
  position: relative;
  width: 48%;
  background: #fff;
  border: 2px solid var(--brand-primary);
  border-radius: 15px;
  padding: 30px;
  box-sizing: border-box;
}

.recruit-info-block::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  z-index: -100;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-primary);
  background: var(--accent-color-yellow);
  border-radius: 15px;
}

.reserve-icon {
  position: absolute;
  top: -50px;
  left: -2%;
  width: 120px;
}

.recruit-info-block h5 {
  font-size: 26px;
  font-weight: bold;
  color: var(--accent-color-yellow);
  -webkit-text-stroke: 1px var(--brand-primary);
  text-shadow: 2px 2px 0 var(--brand-primary);
  text-align: center;
  margin-bottom: 30px;
}

.recruit-info-block h5::after {
  content: "!";
  display: inline-block;
  font-size: 26px;
  color: var(--accent-color-yellow);
  -webkit-text-stroke: 1px var(--brand-primary);
  text-shadow: 2px 2px 0 var(--brand-primary);
  transform: rotate(30px);
  margin-left: 5px;
}

.recruit-info-block div {
  display: flex;
  justify-content: space-between;
}

.recruit-info-block div picture,
.recruit-info-block div p {
  width: 48%;
}

.recruit-info-block div img {
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
#flow-sect .entry-sect-btn {
  width: 40%;
}

@media screen and (max-width: 1024px) {
  .recruit-info {
    width: 98%;
    margin: 0 auto;
  }

  .reserve-icon {
    left: -5%;
    width: 24%;
  }
}

@media screen and (max-width: 900px) {
  .recruit-info {
    display: block;
  }

  .recruit-info-block {
    width: 100%;
    margin-bottom: 50px;
  }

  .recruit-info-block h5 {
    font-size: 28px;
  }

  .reserve-icon {
    top: -60px;
    left: 8%;
    width: 20%;
  }
  #flow-sect .entry-sect-btn {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .recruit-info {
    margin-bottom: 60px;
  }

  .recruit-info-block {
    padding: 30px 15px;
  }

  .reserve-icon {
    top: -70px;
    left: -5%;
    width: 30%;
  }

  .recruit-info-block h5 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.04rem;
    margin-bottom: 20px;
  }

  .recruit-info-block div {
    display: block;
  }

  .recruit-info-block div p {
    width: 100%;
    font-size: 14px;
    margin-top: 20px;
  }
  #flow-sect .entry-sect-btn {
    width: 95%;
  }
}

/*==== LINE info ====*/
.line-info {
  width: 90%;
  background: url(../img/recruit/note-bg.png) repeat;
  background-size: 80px;
  background-color: #fff;
  border: 15px solid #d4d4d4;
  border-radius: 20px;
  padding: 60px;
  margin: 0 auto 100px;
  box-sizing: border-box;
}

.line-info h5 {
  font-size: 28px;
  color: #06c755;
  text-align: center;
  margin-bottom: 30px;
}

.line-info > p {
  font-size: 18px;
  margin-bottom: 30px;
}

.line-info-block {
  display: flex;
  justify-content: space-between;
}

.line-info-block img {
  width: 320px;
  height: 100%;
}

.line-info-block > div {
  width: calc(100% - 330px);
}

.line-info-block dl {
  border-radius: 15px;
  border: 2px dotted #707070;
  padding: 30px;
  margin-bottom: 40px;
}

.line-info-block dt {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.line-info-block dt::after {
  content: "";
  display: block;
  width: 170px;
  height: 12px;
  background: url(../img/recruit/partition-line.png) no-repeat;
  background-size: contain;
  margin: 1rem auto 0;
}

.line-info-block dd {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.line-info-block dd p {
  font-weight: 500;
}

.line-info-block dd img {
  width: 25px;
  margin-right: 10px;
}

.line-btn {
  width: 75%;
  background: #06c755;
  text-align: center;
  border-radius: 50px;
  margin: 0 auto;
}

.line-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 15px;
}

.line-btn img {
  width: 35px;
  margin-right: 10px;
}

@media screen and (max-width: 1024px) {
  .line-btn {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .line-info {
    width: 98%;
    padding: 60px 25px;
  }

  .line-info-block > img {
    width: 280px;
  }

  .line-info-block > div {
    width: calc(100% - 280px);
  }

  .line-info-block dl {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 767px) {
  .line-info {
    border: 8px solid #d4d4d4;
    padding: 40px 15px;
    margin-bottom: 80px;
  }

  .line-info-block {
    display: block;
  }

  .line-info h5 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .line-info > p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .line-info-block > img {
    display: block;
    width: 90%;
    margin: 0 auto 30px;
  }

  .line-info-block > div {
    width: 100%;
  }

  .line-info-block dl {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .line-info-block dt {
    font-size: 18px;
  }

  .line-info-block dt::after {
    width: 80%;
  }

  .line-info-block dd {
    align-items: start;
  }

  .line-info-block dd:last-child {
    margin-bottom: 0;
  }

  .line-info-block dd img {
    width: 20px;
  }

  .line-info-block dd p {
    font-size: 14px;
  }

  .line-btn {
    width: 100%;
  }

  .line-btn a {
    font-size: 15px;
    padding: 10px;
  }

  .line-btn img {
    width: 30px;
    margin-right: 8px;
  }
}

/*==== 募集要項 ====*/
#requirements {
  max-width: 1080px;
  width: 95%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
  padding: 80px 80px 60px;
  margin: 0 auto;
  box-sizing: border-box;
}

#requirements dl {
  display: flex;
  align-items: center;
  border-bottom: 2px dotted #afafaf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

#requirements dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#requirements dt {
  width: 25%;
  font-weight: 600;
  margin-left: 5%;
}

#requirements dd {
  width: 70%;
  line-height: 1.8;
}

#requirements dd p {
  margin-bottom: 5px;
}
.recruitment-list-new {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}
.recruitment-list-new p {
  padding-left: 8px;
}

@media screen and (max-width: 767px) {
  #requirements {
    width: 90%;
    padding: 50px 20px 50px;
  }

  #requirements dl {
    display: block;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  #requirements dt {
    display: block;
    width: 100%;
    line-height: 1.2;
    margin: 0 8px 10px 0;
  }

  #requirements dd {
    width: 100%;
    line-height: 1.6;
  }
}

/*==== Shoplist ====*/
#shoplist-sect {
  position: relative;
  background: url(../img/recruit/shoplist-bg.jpg);
  background-size: cover;
  padding: 100px 0 200px;
}

.webp #shoplist-sect {
  background: url(../img/recruit/shoplist-bg.jpg);
  background-size: cover;
}

.shoplist-heading {
  display: block;
  width: 65%;
  max-width: 1080px;
  margin: 0 auto 20px;
}

.shoplist-block {
  position: relative;
  width: 70%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 30px 60px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}

.shoplist-block::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -13%;
  width: 200px;
  height: 151px;
  background: url(../img/recruit/shoplist-info_10.png) no-repeat;
  background-size: contain;
}

.shoplist-block .secondary-subTitle p {
  position: relative;
  font-size: 28px;
}

.shoplist-block .secondary-subTitle p::before,
.shoplist-block .secondary-subTitle p::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 40%;
  height: 10px;
  background: url(../img/recruit/title-s-line.png);
  background-size: cover;
}

.shoplist-block .secondary-subTitle p::before {
  left: 0;
}

.shoplist-block .secondary-subTitle p::after {
  right: 0;
}

.salon-list > li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.salon-list li > p {
  width: 160px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-color-blue);
  border-radius: 50px;
  text-align: center;
  padding: 5px;
  margin-right: 20px;
  box-sizing: border-box;
}

.salon-list li ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 160px);
}

.salon-list li ul li {
  margin-right: 10px;
}

.salon-list li ul li::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background: var(--brand-primary);
  vertical-align: middle;
  margin-left: 5px;
}

/* .shoplist-info {
    position: absolute;
    top: 230px;
    right: 5%;
    width: 200px;
} */

@media screen and (max-width: 1024px) {
  .shoplist-heading {
    width: 90%;
  }

  .shoplist-block {
    width: 80%;
  }

  .shoplist-block::after {
    top: -30px;
    right: -3%;
  }

  /* .shoplist-info {
        top: 300px;
        right: 2%;
        width: 20%;
    } */
}

@media screen and (max-width: 900px) {
  #shoplist-sect {
    padding: 60px 0 140px;
  }

  .shoplist-block {
    width: 85%;
    padding: 30px;
  }

  /* .shoplist-info {
        top: 200px;
        right: 5%;
        width: 23%;
    } */

  .secondary-subTitle {
    margin-bottom: 20px;
  }

  .shoplist-block .secondary-subTitle p::before,
  .shoplist-block .secondary-subTitle p::after {
    width: 37%;
  }

  .salon-list li > p {
    padding: 8px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .shoplist-heading {
    margin-bottom: 60px;
  }

  .shoplist-block {
    width: 90%;
    padding: 30px 15px;
    margin-bottom: 50px;
  }

  .shoplist-block::after {
    top: -85px;
    right: -1%;
    width: 150px;
    height: 115px;
  }

  /* .shoplist-info {
        top: 280px;
        width: 40%;
    } */

  .shoplist-block .secondary-subTitle p {
    font-size: 22px;
  }

  .shoplist-block .secondary-subTitle p::before,
  .shoplist-block .secondary-subTitle p::after {
    width: 27%;
    background: url(../img/recruit/title-s-line-sp.png);
  }

  .salon-list > li {
    display: block;
  }

  .salon-list li > p {
    width: 100%;
    margin: 0 auto 15px;
  }

  .salon-list li ul {
    width: 100%;
  }

  .salon-list li ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/*==== 他の募集職種 ====*/
#other-recruit-sect {
  position: relative;
  z-index: 100;
  top: -100px;
  background: #fff;
  border-radius: 100px 100px 0 0;
  padding: 100px 0 20px;
}

.other-recruit-heading {
  margin-bottom: 60px;
}

.other-recruit-heading p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.other-recruit-heading p span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  background-image: linear-gradient(rgba(0 0 0 / 0) 60%, #f3c3d3 70%);
}

.other-recruit-heading p:last-child {
  width: 75%;
  font-size: 18px;
  margin: 0 auto;
}

.other-recruit-list {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: 0 auto;
}

.other-recruit-list li {
  position: relative;
  width: 47%;
  background: #fff;
  border: 2px solid var(--brand-primary);
  border-radius: 15px;
}

.other-recruit-list li:first-child::after,
.other-recruit-list li:last-child::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  z-index: -100;
  width: 100%;
  height: 100%;
  border: 1px solid var(--brand-primary);
  border-radius: 15px;
}

.other-recruit-list li:first-child::after {
  background: var(--accent-color-blue);
}

.other-recruit-list li:last-child::after {
  background: var(--accent-color-yellow);
}

.other-recruit-list li img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.other-recruit-list li div {
  border-radius: 0 0 15px 15px;
  padding: 20px 20px 40px;
}

.other-recruit-list p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.other-recruit-list p::after {
  content: "";
  display: block;
  width: 140px;
  height: 15px;
  background: url(../img/recruit/partition-line02.png) no-repeat;
  background-size: contain;
  margin: 20px auto 0;
}

.other-recruit-list .link-btn {
  width: 70%;
  padding: 15px;
}

.other-recruit-list .link-btn::after {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 900px) {
  #other-recruit-sect {
    border-radius: 80px 80px 0 0;
  }

  .other-recruit-heading p:last-child {
    width: 90%;
  }

  .other-recruit-list {
    width: 90%;
  }

  .other-recruit-list .link-btn {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #other-recruit-sect {
    top: -60px;
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
  }

  .other-recruit-heading {
    margin-bottom: 40px;
  }

  .other-recruit-heading p {
    font-size: 20px;
    text-align: left;
  }

  .other-recruit-heading p span {
    font-size: 21px;
  }

  .other-recruit-heading p:last-child {
    width: 100%;
    line-height: 1.6;
  }

  .other-recruit-list {
    display: block;
  }

  .other-recruit-list li {
    width: 100%;
    margin-bottom: 30px;
  }

  .other-recruit-list li div {
    padding-bottom: 30px;
  }

  .other-recruit-list p {
    font-size: 18px;
  }

  .other-recruit-list p::after {
    width: 160px;
    height: 16px;
    margin-top: 15px;
  }

  .other-recruit-list .link-btn {
    width: 100%;
    padding: 10px;
  }

  .other-recruit-list .link-btn::after {
    width: 23px;
    height: 23px;
  }
}

/*==== 求人ニュース ====*/
#recruit-news {
  margin-bottom: 100px;
}

.r-news-list {
  width: 90%;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
  margin: 0 auto 60px;
}

.r-news-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted #e5e5e5;
  padding: 0 40px 20px;
  margin-bottom: 20px;
}

.r-news-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.r-news-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  width: 20px;
  height: 20px;
  background: url(../img/recruit/post-link-btn.png) no-repeat;
  background-size: contain;
  transition: all 0.6s;
}
.r-news-list .post-title {
  width: 70%;
}
.post-cate-block {
  display: flex;
  width: 28%;
}

.post-time {
  width: 85px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.recruit-category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recruit-category a {
  display: inline-block;
  font-size: 13px;
  line-height: 25px;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 5px;
  padding: 0 8px;
}

.post-title {
  font-weight: bold;
}

.post-title a {
  display: block;
  line-height: 1.4;
}

.post-title:hover + .r-news-list li::after {
  right: 2%;
}

#recruit-news .post-title {
  width: 70%;
}

#recruit-news .link-btn {
  width: 35%;
}

@media screen and (max-width: 900px) {
  .r-news-list {
    width: 95%;
    padding: 30px;
  }

  .r-news-list li {
    padding: 0 20px 20px;
  }
  .post-cate-block {
    width: 30%;
  }
  .post-time {
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  #recruit-news {
    margin-bottom: 60px;
  }

  .r-news-list {
    border-radius: 15px;
    padding: 30px 20px;
  }

  .r-news-list li {
    display: block;
    padding: 0 0 10px;
    margin-bottom: 10px;
  }
  .r-news-list .post-title {
    width: 100%;
  }
  .post-cate-block {
    display: block;
    width: 100%;
  }

  .post-time {
    font-size: 13px;
  }

  .recruit-category {
    margin-bottom: 5px;
  }
  .recruit-category a {
    font-size: 12px;
    line-height: 20px;
    padding: 0 5px;
  }
  .post-title {
    font-size: 14px;
  }
  .r-news-list li::after {
    right: -5px;
    width: 15px;
    height: 15px;
  }
  #recruit-news .post-title {
    width: 100%;
  }
}

/*==== 求人ブログ ====*/
#recruit-blog {
  margin-bottom: 100px;
}

.r-blog-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-radius: 20px;
  margin: 40px 0 60px;
}

.r-blog-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
}

.r-blog-list li figure {
  overflow: hidden;
}

.r-blog-list li img {
  border-radius: 15px 15px 0 0;
  vertical-align: bottom;
  transition-duration: 0.5s;
}

.r-blog-list li:hover .r-blog-list li img {
  transform: scale(1.2);
}

.post_detail {
  padding: 10px 20px 10px;
}

.r-blog-list .recruit-category {
  margin-bottom: 8px;
}

.r-blog-list .post-time {
  display: block;
  text-align: right;
  color: #9d9d9d;
  margin-left: auto;
}

#recruit-blog .link-btn {
  width: 30%;
}

@media screen and (max-width: 900px) {
  .r-blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .r-blog-list {
    display: block;
    margin-bottom: 40px;
  }

  .r-blog-list li {
    margin-bottom: 30px;
  }

  .post_detail {
    padding: 10px 15px 15px;
  }

  .r-blog-list .recruit-category {
    margin-bottom: 5px;
  }
}

/*==== SNS ====*/
#sns-sect h4 {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.sns-block {
  margin-bottom: 60px;
}

.sns-block.youtube h4 img {
  width: 150px;
}

.sns-block.ticktok h4 img {
  width: 42px;
  margin-right: 10px;
}

#sns-sect h4 p {
  font-size: 32px;
  font-weight: bold;
}

.sns-block.Instagram h4 img {
  width: 38px;
  margin-right: 10px;
}
.instagram-gallery-feed {
  margin-bottom: 60px;
}
.instagram-gallery-modal__button-close:hover {
  color: #fff;
}
#sns-sect .link-btn {
  width: 30%;
}

@media screen and (max-width: 900px) {
  #sns-sect .link-btn {
    width: 40%;
  }
  #recruit-news .link-btn {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  #recruit-news .link-btn {
    width: 90%;
  }

  .sns-block.youtube h4 img {
    width: 120px;
  }

  .sns-block.ticktok h4 img {
    width: 30px;
  }

  .sns-block.Instagram h4 img {
    width: 30px;
  }
  .instagram-gallery-feed {
    margin-bottom: 30px;
  }
  #instagram-gallery-feed-0 .instagram-gallery-item {
    padding: 5px !important;
  }
  .instagram-gallery-item__icon--views {
    font-size: 14px !important;
  }
  #sns-sect h4 {
    margin-bottom: 30px;
  }
  #sns-sect h4 p {
    font-size: 28px;
  }

  #sns-sect .link-btn,
  #recruit-blog .link-btn {
    width: 90%;
  }

  #sns-sect .link-btn::after {
    right: 8px;
  }
}

/*==== 自動カルーセル    ====*/
.loop-slide-container {
  margin-top: 160px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

.scroll-infinity_wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 5px;
}

.scroll-infinity_list {
  display: flex;
}

.scroll-infinity_list-left {
  animation: infinity-scroll-left 70s infinite linear 0.5s both;
}

.scroll-infinity_list-right {
  animation: infinity-scroll-right 70s infinite linear 0.5s both;
}

.scroll-infinity_list li {
  width: calc(100vw / 7);
  padding-left: 8px;
}

.scroll-infinity_list li > img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .scroll-infinity_list li {
    width: calc(100vw / 5);
    padding-left: 8px;
  }
}

@media screen and (max-width: 767px) {
  .loop-slide-container {
    margin-top: 80px;
  }

  .scroll-infinity_list li {
    width: calc(100vw / 3);
  }
}

/*-----------------------------------
lower-common
-----------------------------------*/
.page-bg {
  position: absolute;
  top: 220px;
  left: 0;
  z-index: -100;
  width: 100%;
  height: calc(100% - 220px);
  background: #f5f5f5;
  border-radius: 100px 0 0 0;
}

.page-template-page-recruit .page-bg {
  display: none;
}

#lower_keyvisual {
  position: relative;
  height: 300px;
  margin-bottom: 40px;
}

#lower_keyvisual img {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 40px;
}

#lower_keyvisual p {
  position: absolute;
  bottom: -80px;
  right: 3%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 100px;
  color: transparent;
  -webkit-text-stroke: 1px #e3e3e3;
}

.lower_keyvisua_inner {
  position: relative;
  max-width: 1080px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

#lower_keyvisual h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 30px;
}

#lower_keyvisual h1 span {
  display: block;
  font-family: "Marck Script", cursive;
  font-size: 24px;
}

.recruit-breadcrumb {
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
}
.recruit-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.recruit-breadcrumb ol li {
  font-size: 14px;
}
.recruit-breadcrumb ol li + li::before {
  content: ">";
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 16px;
  margin: -3px 8px 0;
}

.lower-single {
  max-width: 1080px;
  width: 90%;
  margin: 100px auto 120px;
}

.flex-container {
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 60px 20px 60px 60px;
}

.flex-block {
  flex-grow: 1;
  padding-right: 3%;
}

/*==== ページネーション(一覧) ====*/
/* .navigation.pagination {
    text-align: center;
} */
.pagenation {
  text-align: center;
}
.page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
  line-height: 36px;
  background: #ddd;
  border-radius: 5px;
  vertical-align: middle;
  margin-right: 10px;
}
.page-numbers.current {
  background: var(--brand-primary);
}
.prev.page-numbers,
.page-numbers.next {
  width: auto;
  height: auto;
  color: var(--font-color);
  background: transparent;
}

/*==== ページネーション(single) ====*/
.post_pagenavi {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.post-prev a::before,
.post-next a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-top: -3px;
}
.post-prev a::before {
  background: url(../img/recruit/post-prev-icon.png) no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.post-next a::after {
  background: url(../img/recruit/post-next-icon.png) no-repeat;
  background-size: contain;
  margin-left: 8px;
}

@media screen and (max-width: 1024px) {
  .lower_keyvisua_inner {
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  .lower_keyvisua_inner {
    width: 85%;
  }

  #lower_keyvisual p {
    font-size: 80px;
    bottom: -75px;
  }

  #lower_keyvisual h1 {
    font-size: 24px;
  }

  #lower_keyvisual h1 span {
    font-size: 18px;
  }
  .flex-container {
    display: block;
    padding: 40px;
  }

  .flex-block {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .page-bg {
    top: 120px;
    height: calc(100% - 120px);
    border-radius: 60px 0 0 0;
  }

  #lower_keyvisual {
    height: 160px;
    margin-bottom: 40px;
  }

  #lower_keyvisual img {
    width: 70%;
    border-radius: 0 0 0 30px;
  }

  #lower_keyvisual p {
    bottom: -35px;
    font-size: 45px;
  }

  .lower_keyvisua_inner {
    width: 90%;
  }

  #lower_keyvisual h1 {
    font-size: 20px;
  }

  #lower_keyvisual h1 span {
    font-size: 16px;
  }

  .recruit-breadcrumb {
    width: 90%;
  }
  .recruit-breadcrumb ol li {
    font-size: 12px;
    line-height: 1.3;
  }
  .recruit-breadcrumb ol li + li::before {
    margin: -3px 5px 0;
  }
  .lower-single {
    margin: 40px auto 100px;
  }

  .flex-container {
    padding: 40px 15px;
  }
  .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 26px;
    margin-right: 5px;
  }
  .post_pagenavi {
    width: 100%;
  }
  .post-prev a::before {
    margin-right: 3px;
  }
  .post-next a::after {
    margin-left: 3px;
  }
  .post_pagenavi a {
    font-size: 14px;
  }
}

/*-----------------------------------
side-bar
-----------------------------------*/
#r-sidebar {
  flex-shrink: 0;
  flex-basis: 300px;
}

.sidebar-content {
  margin-bottom: 60px;
}

#r-sidebar h2 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}

#r-sidebar h2 p::before,
#r-sidebar h2 p::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 46px;
  vertical-align: middle;
  margin-top: -2px;
}

#r-sidebar h2 p::before {
  background: url(../img/recruit/side-title-deco-l.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
}

#r-sidebar h2 p::after {
  background: url(../img/recruit/side-title-deco-r.png) no-repeat;
  background-size: contain;
  margin-left: 10px;
}

#termlist {
  cursor: pointer;
  margin-bottom: 30px;
}

#termlist li span {
  position: relative;
  display: block;
  font-size: 14px;
  padding: 8px;
  background: #e7e7e7 url(arrow.png) no-repeat 96% 50%;
  transition: all 0.5s ease;
}

#termlist li span::before,
#termlist li span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #787878;
  transition: all 0.5s ease;
}

#termlist li span::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}

#termlist li span::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}

#termlist li span.active {
  display: block;
  border-bottom: none;
  background: #666 url(arrow_on.png) no-repeat 96% 50%;
  color: #fff;
}

#termlist li span.close::before {
  transform: rotate(45deg);
}

#termlist li span.close::after {
  transform: rotate(-45deg);
}

#termlist li div {
  display: none;
  overflow: auto;
  padding: 0;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  background: #fff;
}

#termlist li div ul li a {
  display: block;
  font-size: 14px;
  padding: 8px;
}

select.postform {
  width: 100%;
  font-family: "Yu Gothic", "游ゴシック", "游ゴシック体",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro";
  font-size: 14px;
  font-weight: 600;
  color: var(--font-color);
  border: 1.5px solid #ddd;
  padding: 8px;
  cursor: pointer;
}

/*==== news ====*/
#r-sidebar .r-news-list {
  width: 100%;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}

#r-sidebar .r-news-list li {
  display: block;
  padding: 0 0 10px;
  margin-bottom: 10px;
}

#r-sidebar .r-news-list li:last-child {
  border-bottom: 2px dotted #e5e5e5;
}

#r-sidebar .post-cate-block {
  width: 100%;
}

#r-sidebar .post-time {
  width: 80px;
}

#r-sidebar .recruit-category a {
  font-size: 12px;
  line-height: 22px;
}

#r-sidebar .post-title {
  width: 100%;
  font-size: 14px;
  text-align: left;
  margin-bottom: 5px;
}

/*==== blog ====*/
#r-sidebar .r-blog-list {
  display: block;
  margin-bottom: 0;
}

#r-sidebar .r-blog-list li {
  display: flex;
  border-radius: 10px;
  margin-bottom: 20px;
}

#r-sidebar .r-blog-list li > a {
  width: 40%;
}

#r-sidebar .r-blog-list li a figure {
  height: 100%;
}

#r-sidebar .r-blog-list li img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

#r-sidebar .post_detail {
  width: 60%;
  padding: 15px 10px 10px;
  box-sizing: border-box;
}

#r-sidebar .r-blog-list .recruit-category {
  margin-bottom: 3px;
}

@media screen and (max-width: 900px) {
  /*==== blog ====*/
  #r-sidebar .r-blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #r-sidebar .r-blog-list li {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  #r-sidebar h2 {
    margin-bottom: 30px;
  }

  #r-sidebar h2 p::before,
  #r-sidebar h2 p::after {
    width: 10px;
    height: 36px;
  }
  #r-sidebar .post_detail {
    padding: 10px;
  }
  .sidebar-content {
    margin-bottom: 30px;
  }

  #termlist {
    margin-bottom: 0;
  }

  #termlist li span::before,
  #termlist li span::after {
    width: 12px;
  }

  /*==== news ====*/
  #r-sidebar .r-news-list {
    padding: 20px 0;
  }

  /*==== blog ====*/
  #r-sidebar .r-blog-list {
    display: block;
  }

  #r-sidebar .r-blog-list li {
    margin-bottom: 20px;
  }
}

/*-----------------------------------
news-single
-----------------------------------*/
.post-title-block h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.4;
  border-bottom: 2px solid var(--font-color);
  padding-bottom: 20px;
  margin-bottom: 1rem;
}

.post-title-block h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--font-color);
}

.category-block {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.post_body {
  margin-bottom: 60px;
}

.post_body p {
  line-height: 1.8;
}

.post_body h3 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 10px;
  padding: 15px 15px 20px;
  margin: 40px 0 30px;
}

.post_body h4 {
  font-size: 20px;
  line-height: 20px;
  border-bottom: 2px solid var(--brand-primary);
  padding: 0 0 0.8rem 1rem;
  margin: 20px 0;
}

.post_body h5 {
  font-size: 18px;
  margin: 20px 0;
}

.post_body h6 {
  font-size: 16px;
  margin: 20px 0;
}

.post_body a {
  color: #0000ee;
  text-decoration: initial;
}
.wp-block-image img {
  margin-bottom: 30px;
}
.post_body ul li,
.post_body ol li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
table {
  line-height: 1.4;
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .post-title-block h2 {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .post-title-block h2::after {
    bottom: -5px;
  }

  .category-block {
    display: block;
    margin-bottom: 20px;
  }

  .category-block .recruit-category {
    margin: 3px 0 0;
  }

  .post_body {
    margin-bottom: 40px;
  }

  .post_body p {
    font-size: 14px;
    line-height: 1.7;
  }

  .post_body h3 {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 10px 12px;
    margin: 20px 0;
  }

  .post_body h4 {
    font-size: 16px;
    padding: 5px 5px 10px;
    margin-bottom: 15px;
  }

  .post_body h5 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .post_body h6 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .post_body ul li,
  .post_body ol li {
    font-size: 14px;
  }
  table {
    font-size: 14px;
  }
}

/*-----------------------------------
column-single
-----------------------------------*/
.post_image {
  margin: 60px 0;
}

.post_image img {
  display: block;
  width: 90%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .post_image img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .post_image {
    margin: 30px 0;
  }
}

/*-----------------------------------
column-ショートコード
-----------------------------------*/
.entry-banner {
  position: relative;
  z-index: 100;
  width: 95%;
  background: #ececec;
  border-radius: 15px;
  padding: 40px 20px;
  margin: 60px auto 60px;
  box-sizing: border-box;
}

.entry-banner .celebration-money {
  margin-bottom: 20px;
}

.entry-banner .celebration-money p {
  font-size: 24px;
  margin: 8px 10px 0 0;
}
.entry-banner .present-sb {
  top: -80px;
  left: 5%;
  width: 140px;
}

.entry-banner .celebration-money-title {
  width: 150px;
}

.entry-banner .entry-title::before,
.entry-banner .entry-title::after {
  margin-top: 10px;
}

.entry-banner .entry-info {
  font-size: 16px;
  margin-bottom: 20px;
}

.entry-banner .entry-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.entry-banner .entry-sect-btn {
  width: 40%;
}

.entry-banner .entry-sect-btn a {
  padding: 10px;
}

.entry-banner .entry-sect-btn img {
  width: 25px;
  height: 27px;
}

.entry-banner .entry-sect-btn p {
  font-size: 18px;
}

.entry-banner .entry-sect-btn::after {
  top: 3px;
  left: 3px;
}

@media screen and (max-width: 1024px) {
  .entry-banner .present-sb {
    left: -10%;
  }
  .entry-banner .entry-sect-btn {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .entry-banner {
    width: 100%;
    margin-bottom: 40px;
  }

  .entry-banner .celebration-money p {
    width: 50px;
    font-size: 20px;
    margin-right: 0;
  }
  .entry-banner .present-sb {
    top: -90px;
    left: -20%;
    width: 100px;
  }
  .entry-banner .celebration-money-title {
    width: 120px;
  }

  .entry-banner .entry-info {
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
  }

  .entry-banner .entry-title {
    position: relative;
    font-size: 16px;
    margin-bottom: 35px;
  }

  .entry-banner .entry-title::before {
    display: none;
  }

  .entry-banner .entry-title::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 15px;
    background: url(../img/recruit/partition-line02.png) no-repeat;
    background-size: contain;
    margin: 0;
  }

  .entry-banner .entry-sect-btn {
    width: 100%;
  }

  .entry-banner .entry-sect-btn p {
    font-size: 16px;
  }

  .entry-banner .entry-sect-btn img {
    width: 23px;
    height: 25px;
  }
}

/*-----------------------------------
taxonomy page
-----------------------------------*/
.taxonomy-title {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin: 0 0 30px 60px;
}

#r-news .taxonomy-title {
  margin-left: 10px;
}

.taxonomy-title p {
  font-weight: 600;
  margin-right: 10px;
}

.taxonomy-title p::after {
  content: ":";
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin-left: 10px;
}

@media screen and (max-width: 900px) {
  .taxonomy-title {
    margin: 0 0 30px 30px;
  }
}

@media screen and (max-width: 767px) {
  .taxonomy-title {
    font-size: 18px;
    margin: 0 0 20px 20px;
  }

  .taxonomy-title p {
    margin-right: 5px;
  }

  .taxonomy-title p::after {
    font-size: 18px;
    margin-right: 5px;
  }
}

/*-----------------------------------
Privacy Policy
-----------------------------------*/
.privacyPolicy-container {
  width: 90%;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.103);
  margin: 0 auto 60px;
  box-sizing: border-box;
}
.privacyPolicy-container ul {
  margin-bottom: 30px;
}
.privacyPolicy-container li {
  display: flex;
  margin-bottom: 8px;
}
.privacyPolicy-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.privacyPolicy-container span {
  margin-right: 5px;
}
.privacyPolicy-container p {
  line-height: 2;
}

@media screen and (max-width: 900px) {
  .privacyPolicy-container {
    width: 95%;
    padding: 60px 40px;
  }
}

@media screen and (max-width: 767px) {
  .page-template-page-recruit-privacyPolicy #lower_keyvisual p {
    bottom: -28px;
    font-size: 40px;
  }
  .privacyPolicy-container {
    padding: 40px 15px;
  }
  .privacyPolicy-container h2 {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .privacyPolicy-container p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*-----------------------------------
maintenance
-----------------------------------*/
.page-template-wpmm-page-template {
  background: var(--brand-primary);
}
#wp-block-themeisle-blocks-advanced-column-7a21d599 {
  border: solid 10px #ddd !important;
  background: #fff !important;
  padding: 60px !important;
}
#wp-block-themeisle-blocks-advanced-heading-84bfa495 {
  font-size: 40px !important;
}

@media screen and (max-width: 900px) {
  #wp-block-themeisle-blocks-advanced-column-7a21d599 {
    padding: 60px 40px !important;
  }
  #wp-block-themeisle-blocks-advanced-heading-84bfa495 {
    font-size: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  #wp-block-themeisle-blocks-advanced-column-7a21d599 {
    padding: 40px 15px !important;
  }
  #wp-block-themeisle-blocks-advanced-heading-84bfa495 {
    font-size: 18px !important;
    font-weight: bold !important;
    margin-bottom: 0 !important;
  }
}

/*-----------------------------------
404 2025/06/09 yoshioka 修正
-----------------------------------*/
.NF-link-btn {
  position: relative;
  display: block;
  width: 300px;
  font-family: var(--title-font-en);
  letter-spacing: 0.04rem;
  color: #fff;
  background: var(--font-color);
  text-align: center;
  padding: 20px;
  margin: 5px auto;
  box-sizing: border-box;
}
.NF-link-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 13px;
  background: url("img/link-btn-arrow.png") no-repeat;
  background-size: contain;
  transition: all 0.6s;
}
.NF-link-btn:hover::after {
  right: 8px;
}

@media screen and (max-width: 900px) {
  .NF-link-btn {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .NF-link-btn {
    width: 100%;
    padding: 15px;
  }
}
#notfound {
  text-align: center;
  padding: 200px 0 ;
  margin-top: 145px;
}
.notfound-inner {
  position: relative;
}
.NF-lower-wrapper {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.NF-sect-heading{
  position: absolute;
  top: -20px;
  left: -3%;
  z-index: -1;
  font-family: "Karla", sans-serif;
  font-size: 140px;
  font-weight: 500;
  letter-spacing: -0.2rem;
  color: #f1f1f1;
}
#notfound .NF-sect-heading {
  top: -110px;
  left: 15%;
  font-size: 80px;
}
#notfound h2 {
  font-size: 24px;
  margin: 30px 0;
}
#notfound p {
  display: inline-block;
  text-align: left;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  #notfound {
    margin-top: 80px;
  }
}

@media screen and (max-width: 900px) {
  #notfound {
    padding: 200px 0;
  }
  #notfound .NF-sect-heading {
    left: 0;
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  #notfound {
    padding: 160px 0;
    margin-top: 60px;
  }
  #notfound .NF-sect-heading {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 50px;
    letter-spacing: 0.01rem;
  }
  #notfound h2 {
    font-size: 18px;
    line-height: 1.4;
  }
  #notfound p {
    margin-bottom: 40px;
  }
}
/*-----------------------------------
404 header 2025/06/09 yoshioka 追加
-----------------------------------*/
.NF-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 90px;
  background: #fff;
  padding-top: 30px;
  box-sizing: border-box;
}
.NF-header-logo {
  width: 120px;
  margin: 0 auto 24px;
}

@media screen and (max-width: 1024px) {
  .NF-header {
    display: flex;
    align-items: center;
    height: 80px;
    padding-top: 0;
  }
  .header-logo {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .NF-header {
    height: 60px;
  }
  .NF-header-logo {
    width: 80px;
  }
}
/*-----------------------------------
404 footer 2025/06/09 yoshioka 追加
-----------------------------------*/
.NF-footer {
  position: relative;
  background: #777777;
  padding: 100px 0 120px;
  height: 50px;
}
#NF-footer_pagetop {
  position: absolute;
  top: 30px;
  right: 5%;
}
#NF-footer_pagetop img {
  width: 45px;
}
.NF-footer-top {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 100;
  max-width: 400px;
  width: 20%;
}
.NF-footer-logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3b3a3a;
  aspect-ratio: 1 / 1;
}
.NF-footer-logo {
  width: 50%;
  min-width: 120px;
}
.NF-copyright {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 8px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .NF-footer-top {
    width: 30%;
  }
}
@media screen and (max-width: 900px) {
  .NF-footer {
    padding: 25% 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .NF-footer {
    padding: 35% 0 30px;
  }
  #NF-footer_pagetop img {
    width: 35px;
  }
  .NF-footer-top {
    width: 50%;
  }
}

/* 20240906 yoshioka start */
.attention {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding-bottom: 5px;
}
.attention-01{
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .attention {
    /*bottom: 80px;*/
  }
}
/* プライバシーマーク非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

/* 20240906 yoshioka end */
/* 20250214 yoshioka start */
.attention-02 {
  text-align: center;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  }
  /* 20250214 yoshioka end */

/* 20250528 yoshioka start */
/* 求人ブログ詳細ページ改修 */
  /*---目次---*/
#ez-toc-container {
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px !important;
  box-sizing: border-box;
}
.ez-toc-title-container {
  text-align: center;
  border-bottom: 2px solid #8c8c8b;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
div#ez-toc-container ul li {
  margin-bottom: 10px;
}
div#ez-toc-container ul.ez-toc-list a {
  font-weight: 600;
}
div#ez-toc-container ul.ez-toc-list a:hover {
  text-decoration: none;
}

  /*---関連記事追加---*/

.related-articles h2{
  font-size: 18px;
  text-align: center;
  margin-top: 60px;
}
.related-articles h2::before {
    background: url(../img/recruit/side-title-deco-l.png) no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.related-articles h2::after {
    background: url(../img/recruit/side-title-deco-r.png) no-repeat;
    background-size: contain;
    margin-left: 10px;
}
.related-articles h2::before, 
.related-articles h2::after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 46px;
    vertical-align: middle;
    margin-top: -2px;
}
/* 20250528 yoshioka end */