@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/* W3 - Regular */
@font-face {
  font-family: 'Hiragino Kaku Gothic Pro';
  src: url('/common/fonts/HiraginoKakuGothicProW3.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* W6 - Bold */
@font-face {
  font-family: 'Hiragino Kaku Gothic Pro';
  src: url('/common/fonts/HiraginoKakuGothicProW6.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('/common/fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;  /* Boldウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('/common/fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: 300;  /* Lightウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('/common/fonts/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: 500;  /* Mediumウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('/common/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;  /* Regular/Romanウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Palmore';
  src: url('/common/fonts/Palmore.otf') format('opentype');
  font-weight: 400;  /* 拡張子がotfのものはRegularとして扱います */
  font-style: normal;
}

@font-face {
  font-family: 'Palmore';
  src: url('/common/fonts/Palmore Bold.ttf') format('truetype');
  font-weight: 700;  /* Boldウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Palmore';
  src: url('/common/fonts/Palmore Semibold.ttf') format('truetype');
  font-weight: 600;  /* Semiboldウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Palmore';
  src: url('/common/fonts/Palmore Regular.ttf') format('truetype');
  font-weight: 400;  /* Regularウェイト用 */
  font-style: normal;
}

@font-face {
  font-family: 'Palmore';
  src: url('/common/fonts/Palmore Light.ttf') format('truetype');
  font-weight: 300;  /* Lightウェイト用 */
  font-style: normal;
}

/*  全体 font  */
html {
  /* font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
    /* font-family: neue-haas-grotesk-display,"Hiragino Kaku Gothic Std","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ",Meiryo,Helvetica,Arial,sans-serif; */
    /* font-family: neue-haas-grotesk-display,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","notosansjp","游ゴシック",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ",Meiryo,Helvetica,Arial,sans-serif; */
    font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","notosansjp",Meiryo,Helvetica,Arial,sans-serif;
}

.my-font01 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base-color01 {
  /*--メイン文字カラー--*/
  color: #000;
}
.base-back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.point-color01 {
  /*--ポイント文字カラー ブルー --*/
  color: #2f6aab;
}
.point-color02 {
  /*--ポイント文字カラー 水色 --*/
  color: #2fbbdc;
}
.point-back01 {
  /*--ポイント背景カラー ブルー --*/
  background: #2f6aab;
}
.point-back02 {
  /*--ポイント背景カラー イエロー--*/
  background: #ffb200;
}
.point-back03 {
  /*--ポイント背景カラー ブラック--*/
  background: #000;
}
.accent-back01 {
  /*--アクセント背景カラー 薄グレー--*/
  background: #f3f6f9;
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
/* 無料相談ボタン */
.btn01 {
  display: inline-block;
  text-align: center;
  min-width: 320px;
  letter-spacing: 0.05em;
  border-radius: 80px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .btn01 {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    border-radius: 100px;
  }
}

/* 青枠丸ボタン */
.btn02 {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
  min-width: 330px;
  border-radius: 140px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .btn02 {
    width: 100%;
    min-width: 100%;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}
.ul-wrap.mywidth {
  max-width: 1980px;
}
#main.clear_top {
  margin-top: 0;
}
.head_title {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.head_title span.en {
  font-size: 54px;
  /* font-family: "Neue Haas Display","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ","Meiryo",Helvetica,Arial,sans-serif;; */
  font-family: Neue Haas Display,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","notosansjp",Meiryo,Helvetica,Arial,sans-serif;
  font-weight: 500;
}
.head_title .ja {
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 18px;
  padding: 4px 16px;
  margin-left: 18px;
  margin-bottom: 5px;
}
.head_title .ja svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
br.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .mywidth {
    /* padding-left: 5vw;
    padding-right: 5vw; */
    padding-top: 0;
  }
  .head_title {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }
  .head_title span.en {
    font-size: 36px;
  }
  .head_title .ja {
    font-size: 12px;
    padding: 5px 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    line-height: 100%;
  }
  .head_title .ja svg {
    width: 12px;
    height: 12px;
  }
  br.sp_only {
    display: block;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}

/* title */
.content-title01 {
  color: #000;
  position: relative;
  z-index: 1;
}
.content-title01 .title-english {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .content-title01 .title-english {
    font-size: 40px;
  }
}

/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
/* fv */
.fv {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.fv .ttl {
  padding: 0 3%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: none;
  height: auto;
  margin-bottom: 70px;
}
.fv .ttl img {
  width: 100%;
}
.fv2 {
  display: flex;
  justify-content: space-between;
}
.fv2 .left {
  width: 50%;
  z-index: 99;
}
.fv2 .left h1 {
  font-size: 2.35rem;
  display: flex;
  flex-flow: column;
  margin-bottom: 20px;
}
.fv2 .left h1 span {
  font-size: 26px;
}
.fv2 .left .copy {
  display: flex;
  align-items: center;
}
.fv2 .left .copy.c2 {
  margin-top: -5px;
}
.fv2 .left .copy span {
  line-height: unset;
  letter-spacing: unset;
  font-size: unset;
}
.fv2 .left .copy span svg {
  width: 30px;
  height: 30px;
  text-align: unset;
  margin-top: 3px;
}
.fv2 .left .copy p {
  font-size: 18px;
  font-weight: bold;
}
.fv2 .left .cta_wrap {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  gap: 20px;
}
.fv2 .left .cta_wrap a.cta01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  background: #FF4D00;
  padding: 17px 25px;
  font-size: 23px;
  font-weight: bold;
  border: 2px solid #000;
}
.fv2 .left .cta_wrap a.cta02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  background: #fff;
  padding: 17px 25px;
  font-size: 23px;
  font-weight: bold;
  border: 2px solid #000;
}
.fv2 .left .cta_wrap a img {
  width: 15px;
  height: 15px;
}
.fv2 .right {
  width: 40%;
  text-align: unset;
}
.right .logos {
  padding: 0;
  width: 100vw;
  margin-left: calc(0vw + 0%);
  max-width: none;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.right .logos div {
  width: 100%;
  height: 97px; /* 高さを既存仕様に合わせる */
  background-repeat: repeat-x; /* 横方向にリピート */
  background-size: auto 100%; /* 高さに合わせて画像をリサイズ */
  background-position: 0 0;
  animation-duration: 35s; /* アニメーションの速度を調整 */
  animation-timing-function: linear; /* 一定速度で動作 */
  animation-iteration-count: infinite; /* 無限ループ */
}

/* 各ロゴのスタイル */
.right .logos .logo01,
.right .logos .logo02,
.right .logos .logo03,
.right .logos .logo04 {
  background-repeat: repeat-x; /* 横方向に繰り返し */
  animation-duration: 20s; /* アニメーションの時間 */
  animation-timing-function: linear; /* 一定速度で動作 */
  animation-iteration-count: infinite; /* 無限に繰り返し */
  will-change: background-position; /* パフォーマンス最適化 */
  backface-visibility: hidden; /* ちらつき防止 */
}
.right .logos .logo01 {
  background-image: url('/common/images/logo01.png');
  animation-name: slide-right-to-left;
}
.right .logos .logo02 {
  background-image: url('/common/images/logo02.png');
  animation-name: slide-left-to-right;
}
.right .logos .logo03 {
  background-image: url('/common/images/logo03.png');
  animation-name: slide-right-to-left;
}
.right .logos .logo04 {
  background-image: url('/common/images/logo04.png');
  animation-name: slide-left-to-right;
}
/* 右から左へのアニメーション */
@keyframes slide-right-to-left {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200% 0;
  }
}

/* 左から右へのアニメーション */
@keyframes slide-left-to-right {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}
.fv .model_img {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-34%);
}
.fv .model_img img {
  margin: 0 auto;
  width: 100%;
}
.fv .border {
  position: absolute;
  bottom: -10%;
  width: 100vw;
  border-bottom: 1px solid #000;
  margin-left: calc(-50vw + 50%);
}
.border.pc_none {
  display: none;
}
.fv .cta_wrap.sp_only {
  display: none;
}

/* fv_sp */
@media screen and (max-width: 768px) {
  .fv .ttl {
    display: none;
    /* margin-bottom: 30px; */
  }
  .fv2 {
    flex-direction: column;
    justify-content: unset;
    /* margin-top: 97%; */
    margin-top: 0;
    gap: 10px;
  }
  .fv2 .left {
    width: 100%;
  }
  .fv2 .left h1 {
    /* font-size: 36px; */
    /* font-size: 2.1rem; */
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
  .fv2 .left h1 span {
    font-size: 18px;
  }
  .fv2 .left .copy {
    line-height: 1;
  }
  .fv2 .left .copy.c1 {
    margin-bottom: 10px;
  }
  .fv2 .left .copy span svg {
    width: 20px;
    height: 20px;
    text-align: unset;
    margin-top: 0;
  }
  .fv2 .left .copy p {
    /* font-size: 15px; */
    font-size: 0.9rem;
    margin-left: 0;
  }
  .fv2 .left .cta_wrap {
    display: none;
  }
  .fv2 .left .cta_wrap a.cta01 {
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .fv2 .left .cta_wrap a img {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .fv2 .left .cta_wrap a.cta02 {
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .fv2 .right {
    /* width: 100%;
    margin-top: 30px; */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 12px;
    position: relative;
  }
  .right .logos {
    /* margin-left: calc(-50vw + 50%); */
    margin-left: calc(-60vw + 50%);
    gap: 10px;
  }
  .right .logos div {
    /* height: 48.5px; */
    height: 60px;
    /* height: 6.4vh; */
    animation-duration: 25s;
  }
  .fv .model_img.pc_only {
    display: none;
  }
  .fv .model_img {
    transform: translateX(10%);
    width: 90%;
    position: absolute;
    bottom: 0;
  }
  .fv .border {
    display: none;
  }
  .border_sp.pc_none {
    /* display: block; */
    display: none;
    border: 1px solid #000;
    position: unset;
    width: 100vw;
    margin: 0 auto;
    margin-left: calc(-55vw + 55%);
  }
  .right .logos .logo01,
  .right .logos .logo02,
  .right .logos .logo03,
  .right .logos .logo04 {
    animation-duration: 30s; /* アニメーションの時間 */
  }
  .fv .cta_wrap.sp_only {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 20px;
  }
  .fv .cta_wrap.sp_only a.cta01 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #FF4D00;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #000;
    position: relative;
  }
  .fv .cta_wrap.sp_only a img {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .fv .cta_wrap.sp_only a.cta02 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #FFF;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #000;
    position: relative;
  }
}

/* section */
main.top section:not(.fv) {
  width: 90vw;
  max-width: 1280px;
  margin: 80px auto 0;
}
main.top section:nth-child(2) {
  margin-top: 120px;
}

/* support */
main section.support {
  margin-top: calc(80px + 30px);
}
ul.grid {
  display: flex;
  border: 1px solid #000;
}
ul.grid li {
  /* height: 100%; */
  width: 33.333%;
  height: auto;
  border-right: 1px solid #000;
  padding: 1.5% 3%;
  background: #F1F2f3;
}
ul.grid li:last-child {
  border-right: unset;
}
.sp_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sp_ttl p {
  font-family: "Palmore","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ","Meiryo",Helvetica,Arial,sans-serif;;
  font-weight: 600;
  font-size: 98px;
  line-height: 1;
  color: #FF4D00;
}
.sp_ttl img {
  width: 50px;
}
.sp_ttl h3 {
  font-size: 1.45rem;
  margin-left: 10px;
}
/* ul.grid li:first-child .sp_ttl h3 {
  margin-left: -5px;
} */
p.sp_dtl {
  color: #333;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}

@media screen and (max-width: 1250px) {
  .sp_ttl p {
    font-size: 5rem;
  }
  .sp_ttl h3 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1050px) {
  .sp_ttl p {
    font-size: 4rem;
  }
  .sp_ttl h3 {
    font-size: 1rem;
  }
}

/* support_sp */
@media screen and (max-width: 768px) {
  main.top section:not(.fv) {
    width: 100%;
    margin: 40px auto 0;
  }
  main.top section:nth-child(2) {
    margin-top: 40px;
  }
  ul.grid {
    flex-direction: column;
  }
  ul.grid li {
    border-right: unset;
    border-bottom: 1px solid #000;
  }
  ul.grid li:last-child {
    border-bottom: unset;
  }
  ul.grid li {
    width: 100%;
    border-right: unset;
    border-bottom: 1px solid #000;
    padding: 4% 5% 4%;
  }
  .sp_ttl h3 .pc_only {
    /* display: none; */
  }
  .sp_ttl p {
    font-size: 5rem;
  }
  .sp_ttl h3 {
    font-size: 20px;
  }
  .sp_ttl img {
    width: 14%;
  }
}

/* CA */
section.ca .ca_list {
  padding: 0;
  width: 100vw;
  /* margin-left: calc(-50vw + 50%); */
  max-width: none;
  height: auto;
}
section.ca .ca_list ul {
  flex-flow: nowrap;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-right: 50px;
}
section.ca .ca_list ul::-webkit-scrollbar {
  height: 7px;
}
section.ca .ca_list ul::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 50px;
}
section.ca .ca_list ul::-webkit-scrollbar-track {
  background: #f1f2f3;
  border-radius: 50px;
}
section.ca .ca_list ul::after {
  /* content: '';
  display: block;
  height: 100%;
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none; */
}
section.ca .ca_list li {
  min-width: 232px;
  margin-bottom: 1%;
}
section.ca .ca_list li:last-child {
  margin-right: 120px;
}

/* CA_1980 */
@media screen and (min-width: 1450px) {
  section.ca .ca_list li:last-child {
    margin-right: 18vw;
  }
}

/* CA_sp */
@media screen and (max-width: 768px) {
  section.ca .ca_list li:last-child {
    /* margin-right: 60px; */
    margin-right: 10px;
  }
}

/* steps */
.step_wrap {
  display: flex;
  justify-content: space-between;
}
.step_wrap .step_container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: 1px solid #000;
  width: 20%;
  max-width: 250px;
  height: 200px;
  background: #F1F2F3;
}
.step_wrap .step_container p.step_num {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #FF4D00;
}
.step_wrap .step_container .step_dtl {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
p.step_txt {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
.step_wrap .step_container img {
  width: 30%;
  max-width: 70px;
  margin: 0 auto;
}
.step_wrap .step_container p {
  font-family: "Palmore","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ","Meiryo",Helvetica,Arial,sans-serif;;
  font-weight: 600;
  text-align: center;
  font-size: 22px;
}
.step_wrap svg {
  width: 5%;
  max-width: 40px;
}

/* steps_sp */
@media screen and (max-width: 768px) {
  .step_wrap {
    width: 100%;
    flex-direction: column;
  }
  .step_wrap .step_container {
    width: 100%;
    max-width: unset;
    height: fit-content;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 4%;
    gap: 10%;
  }
  .step_wrap .step_container p {
    margin-top: 20px;
    font-size: 18px;
  }
  .step_wrap .step_container p.step_num {
    margin: 0;
    font-size: 30px;
  }
  .step_wrap .step_container .step_dtl {
    flex-direction: row;
    align-items: center;
    justify-content: unset;
    gap: 6%;
    margin: 0;
  }
  .step_wrap .step_container img {
    width: 20%;
    height: 100%;
    max-width: unset;
    margin: 0;
  }
  .step_wrap .step_container p.step_txt {
    margin-top: 0;
    font-size: 20px;
  }
  .step_wrap svg {
    width: 10%;
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

/* pickup */
.joblist_wrap {
  width: 100vw;
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-right: 50px;
}
.joblist_wrap::-webkit-scrollbar {
  height: 7px;
}
.joblist_wrap::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 50px;
}
.joblist_wrap::-webkit-scrollbar-track {
  background: #f1f2f3;
  border-radius: 50px;
}
.joblist_wrap .job_item {
  margin-bottom: 50px;
}
.joblist_wrap article {
  max-width: 330px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  background: #f1f2f3;
  border: 1px solid #000;
  position: relative;
  margin-bottom: 1%;
}
.joblist_wrap article:last-child {
  margin-right: 120px;
}
.cassette {
  position: relative;
  padding: 5%;
}
.cassette img.thumb {
  border: 1px solid #000;
  aspect-ratio: 16 / 9;
}
.cassette img.logo {
  position: absolute;
  width: 30%;
  left: 9%;
  /* top: 26%; */
  top: 27%;
  border: 1px solid #000;
  aspect-ratio: 14 / 9;
}
.cassette h3 {
  /* height: 75px; */
  height: 50px;
  font-size: 18px;
  letter-spacing: 0.08rem;
  word-break: break-all;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 3; */
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* margin: 3% 0; */
  margin: 6% 0 3%;
}
.cassette ul {
  padding: 3% 0;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.cassette ul li {
  display: flex;
  gap: 3%;
  align-items: center;
  font-size: 13px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.cassette ul li.hidden {
  display: none;
}
.cassette ul li img.icon {
  width: 16px;
  margin-right: 10px;
}
.cassette ul li img.icon.brand {
  width: 18px;
}
.cassette ul li img.icon.cate {
  margin-bottom: 2px;
}
.joblist_wrap article .cta_wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-flow: row;
  border-top: 1px solid #000;
}
a.v_dtl {
  position: relative;
  width: 50%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DCDDDF;
  border-right: 1px solid #000;
  font-weight: bold;
  font-size: 15px;
}
a.apply {
  position: relative;
  width: 50%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF4D00;
  font-weight: bold;
  font-size: 15px;
}
.joblist_wrap article .cta_wrap a img {
  position: absolute;
  right: 15px;
  width: 12px;
  height: 12px;
}
/* pickup_1980 */
@media screen and (min-width: 1450px) {
  .joblist_wrap article:last-child {
    margin-right: 18vw;
  }
}

/* pickup_sp */
@media screen and (max-width: 768px) {
  .joblist_wrap article:last-child {
    margin-right: 10px;
  }
}

/* interview */
.column_wrap ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.column_wrap li {
  width: 25%;
  max-width: 320px;
  position: relative;
  /* 右と下のボーダーのみ設定 */
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #f1f2f3;
}

/* 左端の列にのみ左ボーダーを追加 */
.column_wrap li:nth-child(4n+1) {
  border-left: 1px solid #000;
}

/* 最上段の要素にのみ上ボーダーを追加 */
.column_wrap li:nth-child(-n+4) {
  border-top: 1px solid #000;
}

.column_wrap a.column_link {
  position: relative;
  display: block;
  height: 100%;
}

p.big_num {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 66px;
  height: 60px;
  font-size: 44px;
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f2f3;
  border: 1px solid #000;
  z-index: 2;
  font-family: "Palmore","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ","Meiryo",Helvetica,Arial,sans-serif;;
  font-weight: 600;
}
p.big_num span {
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0); /* translateYの代わりにtranslate3dを使用 */
  height: 100%;
  display: flex;
  align-items: center;
  /* 追加のプロパティ */
  backface-visibility: hidden; /* レンダリングの問題を防ぐ */
  -webkit-font-smoothing: antialiased;
}
/* Windowsの場合 */
@supports (-ms-ime-align: auto) {
  p.big_num span {
    top: 40%;
  }
}
a.column_link .img_wrap {
  padding: 5%;
  position: relative;
  display: flex;
  justify-content: center;
}

a.column_link .img_wrap p {
  position: absolute;
  bottom: 8%;
  word-break: break-all;
  font-size: 1.2em;
  font-weight: bold;
  padding: 0 10%;
  color: #fff;
  line-height: 1.6;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 1280px) {
  a.column_link .img_wrap p {
    font-size: 1.5em;
  }
}

/* 960px以下で3カラムレイアウト */
@media screen and (max-width: 960px) {
  .column_wrap li {
    width: 33.333%;
  }
  
  /* 3列レイアウトの場合のボーダー調整 */
  .column_wrap li:nth-child(4n+1) {
    border-left: none;
  }
  
  .column_wrap li:nth-child(3n+1) {
    border-left: 1px solid #000;
  }
  
  .column_wrap li:nth-child(-n+4) {
    border-top: none;
  }
  
  .column_wrap li:nth-child(-n+3) {
    border-top: 1px solid #000;
  }
}

/* 768px以下で1カラムレイアウト */
@media screen and (max-width: 768px) {
  .column_wrap li {
    width: 100%;
    max-width: unset;
  }
  /* 1列レイアウトの場合のボーダー調整 */
  .column_wrap li:nth-child(3n+1) {
    border-left: 1px solid #000;
  }
  .column_wrap li:nth-child(2n+1) {
    border-left: 1px solid #000;
  }
  .column_wrap li:nth-child(-n+3) {
    border-top: none;
  }
  .column_wrap li:nth-child(-n+2) {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
  }
  .column_wrap li:nth-child(5n+1) {
    border-left: 1px solid #000;
  }
  a.column_link .img_wrap p {
    font-size: 22px;
  }
}

/* location */
.location_main ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.location_main li {
  max-width: 220px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.area_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.area_box img {
  filter: brightness(0.7);
}
a.area_box p {
  position: absolute;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
a.area_box p span {
  font-size: 18px;
  color: #fff;
}
a.area_box + a.view_list {
  position: absolute;
  bottom: 20%;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}
.location_list {
  margin-top: 30px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
dl.region {
  display: flex;
  width: 100%;
}
.region_name {
  width: 12%;
}
.region_name dt {
  font-size: 13px;
  font-weight: bold;
}
.region_name dt a:hover {
  text-decoration: underline;
}
.pref_list {
  display: flex;
  width: 88%;
  gap: 3%;
}
.pref_list dd {
  font-size: 13px;
}
.pref_list dd a:hover {
  text-decoration: underline;
}

/* location_sp */
@media screen and (max-width: 768px) {
  .location_main ul {
    gap: 0;
    width: 100%;
    flex-flow: wrap;
  }
  .location_main li.main {
    width: 48%;
  }
  .location_main li.sub {
    width: 31%;
    margin-top: 20px;
  }
  .location_main li.main a.main p {
    font-size: 24px;
    margin-top: -20px;
  }
  .location_main li.sub a.sub p {
    font-size: 18px;
    margin-top: -15px;
  }
  .location_main li.sub a.sub p span {
    font-size: 12px;
  }
  .location_main li.main a.main + a.view_list {
    bottom: 25%;
  }
  .location_main li.sub a.sub + a.view_list {
    bottom: 25%;
    font-size: 12px;
  }
  dl.region {
    flex-direction: column;
    padding-bottom: 5px;
  }
  .region_name {
    width: 100%;
  }
  .pref_list {
    width: 100%;
    flex-wrap: wrap;
    gap: 5%;
  }
  .pref_list dd {
    font-size: 13px;
    padding: 5px 0;
  }
}

/* jobtype */
.jobtype_main ul {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  width: 100%;
}
.jobtype_main ul li {
  position: relative;
  width: 24%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  margin-right: 1px;
  margin-top: -1px;
}
.jobtype_main ul li a.main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: calc(17 / 1440* 100vw);
  padding-bottom: calc(17 / 1440* 100vw);
  padding-left: calc(20 / 1440* 100vw);
  padding-right: calc(15 / 1440* 100vw);
}
.jobtype_main a.main p.job_txt {
  font-size: 1.2em;
  letter-spacing: -0.02rem;
  font-weight: bold;
  line-height: 2.6;
}
.jobtype_main ul li a.main .sub {
  width: fit-content;
  display: flex;
  flex-flow: column;
  gap: 2px;
}
.jobtype_main ul li a.main .sub p.en {
  display: flex;
  font-size: 0.8em;
  font-weight: normal;
}
.jobtype_main ul li a.main .sub p.en+img {
  width: 36px;
  margin-left: 4px;
}
.jobtype_main ul li a.main .sub p.en span {
  color: #ff4d00;
  font-weight: bold;
}
span.border {
  border: 1px solid #000;
  width: 0;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.jobtype_other {
  margin: 30px 0;
}
.jobtype_other ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  font-size: 0.8em;
}
.jobtype_other ul li {
  margin-bottom: 10px;
}
.jobtype_other ul li a:hover {
  text-decoration: underline;
}
.jobtype_other ul li a {
  font-size: 0.8rem;
}
/* jobtype_sp */
@media screen and (max-width: 768px) {
  .jobtype_main ul li {
    width: 100%;
  }
  .jobtype_main ul li a.main {
    gap: 15px;
  }
  .jobtype_main a.main p.job_txt {
    font-size: 26px;
    line-height: 2;
  }
  span.border {
    border: unset;
  }
  .jobtype_other {
    margin: 20px 0 0;
  }
  .jobtype_other ul {
    margin-top: 20px;
    text-decoration: underline;
    gap: 5%;
  }
}

/* faq */
.faq_wrap details {
  position: relative;
  border-top: 1px dashed #000;
  padding: 10px;
}
.faq_wrap details:last-child {
  border-bottom: 1px dashed #000;
  margin-bottom: 80px;
}
summary {
  display: flex;
  align-items: center;
  padding-right: 30px;
  font-size: 18px;
  font-weight: bold;
  counter-increment: unset;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-family: "Palmore","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ","Meiryo",Helvetica,Arial,sans-serif;;
  font-weight: 600;
  font-size: 50px;
  margin-right: 10px;
}
.faq_wrap span.icon {
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
}
.faq_wrap span.icon::before, .faq_wrap span.icon::after {
  content: '';
  position: absolute;
  background-color: #000;
  transition: all 0.25s ease-in-out;
}
.faq_wrap span.icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq_wrap span.icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq_wrap details[open] span.icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.summary_text {
  margin: 20px 0;
}
.summary_text p {
  display: flex;
  align-items: center;
}
.summary_text span {
  font-family: "Palmore","notosansjp","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","メイリオ","Meiryo",Helvetica,Arial,sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin-right: 10px;
  padding-top: 5px;
  line-height: 0;
}
.summary_text p a {
  color: #ff4d00;
  text-decoration: underline;
  display: contents;
}
/* faq_sp */
@media screen and (max-width: 768px) {
  summary span {
    font-size: 36px;
  }
  summary p {
    font-size: 14px;
  }
  .faq_wrap span.icon {
    width: 16px;
    height: 16px;
    right: 0px;
    top: 20px;
  }
  .summary_text {
    margin: 10px 0;
  }
  .summary_text p {
    align-items: flex-start;
    font-size: 14px;
  }
  .summary_text span {
    font-size: 36px;
    line-height: 0.5;
  }
  .faq_wrap details:last-child {
    margin-bottom: 40px;
  }
}

/* detail.html */
section.section_wrap.recruit_info {
  padding: 40px 0;
}
.recruit_info .conpany_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10%;
}
.recruit_info .conpany_info .logo_wrap {
  width: 25%;
}
.recruit_info .conpany_info .logo_wrap .logo {
  padding: 5%;
  border: 1px solid #000;
  background: #f1f2f3;
}
.recruit_info .conpany_info .logo_wrap .logo img {
  border: 1px solid #000;
  mix-blend-mode: multiply;
}
.recruit_info .conpany_info .job_info {
  width: 75%;
}
.recruit_info .conpany_info .job_info .job_details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.job_kodawari1 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
ul.job_kodawari1 li {
  padding: 2px 4px;
  border: 1px solid #000;
  font-size: 12px;
  background: #f1f2f3;
}
.recruit_info .conpany_info .job_info .job_details h1 {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
}
.recruit_info .conpany_info .job_info .job_details .detail_container {
  padding: 2%;
  background: #f1f2f3;
  border: 1px solid #000;
  display: flex;
  justify-content: space-between;
}
.recruit_info .conpany_info .job_info .job_details .detail_container ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.recruit_info .conpany_info .job_info .job_details .detail_container ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}
.recruit_info .conpany_info .job_info .job_details .detail_container ul li a {
  padding: 2px 5px;
  color: #404d5d;
  background-color: #dadce7;
  font-weight: bold;
}
.recruit_info .conpany_info .job_info .job_details .detail_container .detail_cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
  position: relative;
}
.recruit_info .conpany_info .job_info .job_details .detail_container .detail_cta a {
  position: relative;
  background-color: #ff4d00;
  width: 180px;
  height: 60px;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #000;
}
.detail_cta a img {
  position: absolute;
  right: 15px;
  width: 15px;
  height: 15px;
}
.jobdetail_image_container {
  margin: 30px 0;
}
.jobdetail_image_container .jobdetail_image {
  padding: 2%;
  border: 1px solid #000;
  background: #f1f2f3;
}
.jobdetail_image_container .jobdetail_image img {
  width: 100%;
  border: 1px solid #000;
  aspect-ratio: 16 / 9;
}
p.up_date {
  position: absolute;
  right: 0;
  font-size: 12px;
  font-weight: normal;
  margin: auto 0;
}
.guideline_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.guideline_wrap .left {
  width: 70%;
}
.guidelines {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.guidelines tbody {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.guidelines tr {
  width: 100%;
  border-bottom: 1px dashed #000;
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.guidelines tr.first {
  padding-top: 30px;
}
.guidelines tr.last {
  border-bottom: unset;
}
.guidelines tr.hidden {
  display: none;
}
.guidelines tr th {
  width: 15%;
  font-size: 14px;
}
.guidelines tr td {
  width: 85%;
  font-size: 14px;
}
a.g_maps {
  color: #3979e1;
  font-weight: bold;
  line-height: 3;
  border-bottom: 1px solid #3979e1;
  padding-bottom: 5px;
}
.guideline_wrap .right.sidebar {
  width: 22%;
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 3%;
}
.guideline_wrap .right.sidebar .sidebar_logo {
  padding: 5%;
  border: 1px solid #000;
  background: #f1f2f3;
}
.guideline_wrap .right.sidebar .sidebar_logo img {
  border: 1px solid #000;
  mix-blend-mode: multiply;
  aspect-ratio: 14 / 9;
}
.guideline_wrap .right.sidebar .sidebar_apply {
  margin-top: 10%;
  width: 100%;
}
.guideline_wrap .right.sidebar .sidebar_apply a.cta01 {
  background-color: #ff4d00;
  width: 100%;
  height: 70px;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #000;
  position: relative;
}
.guideline_wrap .right.sidebar .sidebar_apply a.cta01 img {
  position: absolute;
  right: 20px;
  width: 15px;
  height: 15px;
}
.guideline_wrap .right.sidebar .sidebar_apply a.cta02 {
  background-color: #f1f2f3;
  width: 100%;
  height: 70px;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #000;
  position: relative;
  margin-top: 20px;
}
.guideline_wrap .right.sidebar .sidebar_apply a.cta02 img {
  position: absolute;
  right: 20px;
  width: 15px;
  height: 15px;
}
.other_joblist {
  width: 100%;
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.other_joblist::-webkit-scrollbar {
  height: 7px;
}
.other_joblist::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 50px;
}
.other_joblist::-webkit-scrollbar-track {
  background: #f1f2f3;
  border-radius: 50px;
}
.other_joblist article {
  max-width: 330px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  background: #f1f2f3;
  border: 1px solid #000;
  position: relative;
  margin-bottom: 1%;
}
.other_joblist article a.job_item {
  margin-bottom: 50px;
}
.other_joblist article .cassette {
  position: relative;
  padding: 5%;
}
.other_joblist article .cta_wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-flow: row;
  border-top: 1px solid #000;
}
.other_joblist article .cta_wrap a img {
  position: absolute;
  right: 15px;
  width: 12px;
  height: 12px;
}
.other_conditions dl dt {
  background: #f1f2f3;
  color: #000;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 5px 10px;
}
.other_conditions dl dd ul li a {
  font-size: 14px;
}
/* detail.html_スライダー */
article.slider_wrap {
  margin-top: 30px;
}
article.slider_wrap .slider-container {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
article.slider_wrap .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
article.slider_wrap .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
article.slider_wrap .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
article.slider_wrap .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
article.slider_wrap .slick-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
article.slider_wrap .slick-initialized .slick-slide {
  display: flex;
}
article.slider_wrap .slick-detail .slick-track .slick-slide {
  padding: 15px;
  border: 1px solid #000;
}
article.slider_wrap .slick-loading .slick-slide {
  visibility: hidden;
}
article.slider_wrap .slick-prev:before, article.slider_wrap .slick-next:before {
  content: "";
  display: block;
  background: url(/common/images/arrow_right.svg) no-repeat center center;
  background-size: 18px;
  width: 50px;
  height: 50px;
}
article.slider_wrap .slick-prev:before {
  transform: rotate(180deg);
}
/* .left .slick-prev,
.left .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: background-color 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
} */
article.slider_wrap .slick-prev, article.slider_wrap .slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  z-index: 3;
  color: transparent;
  background: none;
  border-radius: 50px;
  background: #f1f2f3;
}
article.slider_wrap .slick-prev {
  left: -25px;
}
article.slider_wrap .slick-next {
  right: -25px;
}
article.slider_wrap .slick-prev:hover,
article.slider_wrap .slick-next:hover {
  opacity: 0.7;
}
article.slider_wrap .slick-prev:focus,
article.slider_wrap .slick-next:focus {
  outline: none;
  background: #f1f2f3;
}
article.slider_wrap .thumbnail-slider {
  margin-top: 10px;
  padding: 0 20px;
}
article.slider_wrap .thumbnail-wrap {
  padding: 5px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
article.slider_wrap .thumbnail-wrap.slick-current {
  opacity: 1;
}
article.slider_wrap .thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article.slider_wrap .img-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
article.slider_wrap .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
article.slider_wrap .slick-initialized .slick-track .slick-slide img {
  border: 1px solid #000;
  aspect-ratio: 16 / 9;
}
article.slider_wrap .thumbnail-slider .slick-track {
  transform: none !important;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
article.slider_wrap .thumbnail-slider .slick-slide {
  transition: transform 0.3s linear;
  margin: 0 5px;
}
article.slider_wrap .thumbnail-slider.slick-initialized {
  overflow: visible;
}
article.slider_wrap .thumbnail-slider .slick-list {
  overflow: visible;
  margin: 0 -5px;
}
section.section_wrap.relation_wrap {
  margin: 30px 0px;
}
/* jobdetail_sp */
@media (max-width: 768px) {
  div#wrapper.detail_page {
    overflow-x: hidden;
  }
  section.section_wrap.recruit_info {
    padding: 30px 0;
  }
  .recruit_info .conpany_info {
    flex-direction: column;
    gap: 30px;
  }
  .recruit_info .conpany_info .logo_wrap {
    width: 100%;
  }
  .recruit_info .conpany_info .logo_wrap .logo {
    width: 50%;
    padding: 0;
    margin: 0 auto;
    border: unset;
  }
  .recruit_info .conpany_info .job_info {
    width: 100%;
  }
  ul.job_kodawari1 {
    /* white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll; */
    margin: 5px 0 10px;
  }
  ul.job_kodawari1::-webkit-scrollbar {
    height: 5px;
  }
  ul.job_kodawari1::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 50px;
  }
  ul.job_kodawari1::-webkit-scrollbar-track {
    /* background: #f1f2f3; */
    border-radius: 50px;
  }
  .recruit_info .conpany_info .job_info .job_details h1 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 0;
  }
  .recruit_info .conpany_info .job_info .job_details .detail_container {
    flex-direction: column;
    border: unset;
    width: 100%;
    padding: 4% 4%;
  }
  .recruit_info .conpany_info .job_info .job_details .detail_container ul {
    gap: 10px;
  }
  .recruit_info .conpany_info .job_info .job_details .detail_container ul li {
    font-size: 14px;
  }
  .recruit_info .conpany_info .job_info .job_details .detail_container ul li img.icon {
    width: 14px;
    height: auto;
    margin-bottom: 2px;
  }
  .recruit_info .conpany_info .job_info .job_details .detail_container .detail_cta {
    width: 100%;
    justify-content: center;
    margin: 6% 0 0;
    padding-top: 6%;
    border-top: 1px dashed #000;
  }
  .recruit_info .conpany_info .job_info .job_details .detail_container .detail_cta a {
    width: 100%;
    height: 55px;
  }
  .jobdetail_image_container .jobdetail_image {
    padding: 0;
    border: unset;
    background: unset;
  }
  .jobdetail_image_container .jobdetail_image img {
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    height: auto;
    border: unset;
  }
  .guideline_wrap {
    flex-direction: column;
  }
  .guideline_wrap .left {
    width: 100%;
  }
  p.up_date {
    position: absolute;
    bottom: 5px;
    font-size: 10px;
  }
  .guidelines tbody {
    gap: 20px;
  }
  .guidelines tr {
    flex-direction: column;
    padding-bottom: 20px;
  }
  .guidelines tr th, .guidelines tr td {
    width: 100%;
  }
  .guideline_wrap .right.sidebar {
    width: 100%;
  }
  .guideline_wrap .right.sidebar .sidebar_logo {
    display: none;
  }
  .guideline_wrap .right.sidebar .sidebar_apply {
    margin: 0;
  }
  article.slider_wrap .slider-container {
    margin-bottom: 15px;
  }
  article.slider_wrap .slick-prev,
  article.slider_wrap .slick-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  article.slider_wrap .slick-prev {
    left: 10px;
  }
  article.slider_wrap .slick-next {
    right: 10px;
  }
  article.slider_wrap .slick-prev:before, article.slider_wrap .slick-next:before {
    width: 30px;
    height: 30px;
    background-size: 12px;
  }
  article.slider_wrap .slick-detail .slick-track .slick-slide {
    padding: 0;
    border: unset;
  }
  article.slider_wrap .thumbnail-slider {
    margin-top: 5px;
    padding: 0 10px;
  }
  article.slider_wrap .thumbnail-slider.slick-slider {
    display: none;
  }
  article.slider_wrap .thumbnail-wrap {
    padding: 3px;
  }
  section.section_wrap.relation_wrap {
    margin: 30px 0;
  }
  h3.under-title-01 {
    font-size: 16px;
  }
  section.other_conditions {
    margin: 30px 0;
  }
  .other_joblist {
    width: 100vw;
    padding-right: 50px;
  }
  .other_joblist article:last-child {
    margin-right: 80px;
}
  .other_conditions .tit {
    font-size: 16px;
  }
}

/* search.html */
.search_wrap {
  display: flex;
  justify-content: space-between;
}
.search_wrap .left {
  width: 25%;
}
.search_wrap .search_result_wrap.right {
  width: 70%;
  text-align: initial;
}
.s_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.s_ttl {
  font-size: 20px;
  font-weight: bold;
  overflow-x: scroll;
  white-space: nowrap;
  padding-right: 20px;
}
.s_ttl::-webkit-scrollbar {
  height: 7px;
}
.s_ttl::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 50px;
}
.s_ttl::-webkit-scrollbar-track {
  /* background: #f1f2f3; */
  border-radius: 50px;
}
.s_ttl-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* overflow-x: scroll;
  white-space: nowrap; */
}
.s_ttl-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, #DCDDDF, rgba(220,221,223,0));
  z-index: 1;
}
.search_result {
  margin: 0 auto 20px;
  font-size: 11px;
  white-space: nowrap;
}
.hit_info span.num {
  font-size: 20px;
  color: #ff4d00;
}
.search_result_message {
  font-size: 14px;
  line-height: 1;
}
.search_result_message p {
  text-align: left;
}
article.section_wrap.recruit_info {
  width: 100%;
  min-height: 295px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2%;
  border: 1px solid #000;
  margin-bottom: -1px;
  background: #f1f2f3;
}
.recruit_container {
  display: flex;
  height: 100%;
}
.left_content {
  /* max-width: 360px; */
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
a.job_link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brands_img {
  position: relative;
  display: flex;
  flex-direction: column;
}
img.thumb {
  border: 1px solid #000;
  aspect-ratio: 16 / 9;
}
img.logo {
  position: absolute;
  width: 30%;
  left: 4%;
  bottom: 5%;
  border: 1px solid #000;
  aspect-ratio: 14 / 9;
}
.right_content {
  position: relative;
  width: 50%;
  margin-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.right_content a.job_link h3 {
  font-size: 1.2rem;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.right_content .detail_container {
  /* position: relative; */
  width: 100%;
  height: 180px;
  padding: 0;
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  margin-bottom: 0px;
}
.right_content .detail_container ul {
  width: 100%;
  padding: 3% 0;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.right_content .detail_container ul li {
  position: relative;
  height: 20px;
  display: flex;
  gap: 3%;
  align-items: center;
  font-size: 13px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.right_content .detail_container ul li.hidden {
  display: none;
}
.right_content .detail_container ul li img.icon {
  width: 16px;
  margin-right: 10px;
}
.right_content .detail_container ul li img.icon.brand {
  width: 18px;
}
.right_content .detail_container ul li img.icon.cate {
  margin-bottom: 2px;
}
.right_content .detail_container ul li img.icon.brand+a {
  padding: 5px 5px;
  color: #404d5d;
  background-color: #dadce7;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.right_content .detail_cta {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.right_content .detail_cta a.apply {
  position: relative;
  background-color: #ff4d00;
  width: 48%;
  height: 60px;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #000;
}
.right_content .detail_cta a.v_dtl {
  position: relative;
  background-color: #f1f2f3;
  width: 48%;
  height: 60px;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #000;
}
.right_content .detail_cta a img {
  position: absolute;
  right: 15px;
  width: 12px;
  height: 12px;
  /* width: 15px;
  height: 15px; */
}
.recommend_info {
  margin-top: 20px;
}
.recommend_info .ttl_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.recommend_info .ttl_wrap img {
  width: 28px;
}
p.recommend_ttl {
  font-size: 14px;
  font-weight: bold;
}
.search_wrap .recommend_info .recommend_point {
  height: 100px;
  font-size: 12px;
  letter-spacing: 0.08rem;
  border: 1px dashed #000;
  padding: 1.5%;
  overflow-y: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.search_wrap .recommend_info .recommend_point::-webkit-scrollbar {
  width: 5px;
}
.search_wrap .recommend_info .recommend_point::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 50px;
}
.search_wrap .recommend_info .recommend_point::-webkit-scrollbar-track {
  background: #d4d4d4;
  border-radius: 50px;
}
section.search_form_wrap.default {
  position: sticky;
  top: 3%;
  margin: 0;
  padding: 8% 8%;
  border: 1px solid #000;
  background: #f1f2f3;
}
.search_form_wrap.default dl.item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.search_form_wrap.default dl dt {
  width: 100%;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
}
.search_form_wrap.default .openModal {
  width: 100%;
  min-width: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: unset;
  padding: 5% 0;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.search_form_wrap.default .openModal svg {
  width: 20px;
  position: absolute;
  right: 10%;
  margin: auto 0 4px;
}
.search_form_wrap.default dl dd .list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 10px;
}
.search_form_wrap.default dl dd .list li {
  width: 100%;
}
.search_form_wrap.default dl dd .list li label input,
#modal-occupation > div > div > div.modal-body > ul > li > div > label > input {
  margin-right: 5px;
}
#modal-occupation > div > div > div.modal-body > ul > li > div > label > input {
  margin-bottom: -2px;
}
/* 検索フォームのチェックボックス */
.search_form_wrap.default dl dd .list li label input[type="checkbox"],
/* モーダル内のチェックボックス */
#modal-occupation > div > div > div.modal-body > ul > li > label > input[type="checkbox"],
#modal-occupation > div > div > div.modal-body > ul > li > div > label > input[type="checkbox"],
#form-modal-search[name="form_sp"] > dl > dd > ul > li > label > input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.search_form_wrap.default dl dd .list li label input[type="checkbox"]:checked,
#modal-occupation > div > div > div.modal-body > ul > li > label > input[type="checkbox"]:checked,
#modal-occupation > div > div > div.modal-body > ul > li > div > label > input[type="checkbox"]:checked,
#form-modal-search[name="form_sp"] > dl > dd > ul > li > label > input[type=checkbox]:checked {
  background-color: #000;
  border-color: #000;
}
/* チェックマークのスタイル */
.search_form_wrap.default dl dd .list li label input[type="checkbox"]:checked::before,
#modal-occupation > div > div > div.modal-body > ul > li > label > input[type="checkbox"]:checked::before,
#modal-occupation > div > div > div.modal-body > ul > li > div > label > input[type="checkbox"]:checked::before,
#form-modal-search[name="form_sp"] > dl > dd > ul > li > label > input[type=checkbox]:checked::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.search_form_wrap.default .search_form__more-btn {
  position: unset;
  transform: unset;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  color: #000;
  padding: 5% 0;
  background: #fff;
}
span.active-hidden, span.active-only {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
span.active-hidden svg, span.active-only svg {
  position: absolute;
  right: 10px;
  margin: auto 0;
  width: 15px;
  height: 15px;
}
.search_form_wrap.default input.btn {
  min-width: 100%;
  width: 100%;
  background: #ff4d00;
  border: 3px solid #ff4d00;
  border-radius: unset;
  color: #000;
  font-size: 14px;
  margin-top: 20px;
}
.search_form_wrap dl.keyword .text {
  width: 100%;
  min-width: 100%;
  background: #f1f2f3;
  border: 1px solid #000;
  border-radius: unset;
  padding: 5% 3%;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.search_form_wrap dl.keyword dt {
  margin-bottom: 10px;
}
.search_form_wrap dl.keyword .text:focus {
  border: 1px #ff4d00 solid;
}
.search_form_wrap dl.keyword .text:-webkit-autofill:focus {
  caret-color: #ff4d00 !important;
}
.search_form_wrap dl.keyword .text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #f1f2f3 inset !important;
  background-color: #f1f2f3;
}
/* search_sp */
@media screen and (max-width: 768px) {
  .search_wrap .left {
    width: 0;
  }
  section.search_form_wrap.default {
    display: none;
  }
  .search_wrap .search_result_wrap.right {
    width: 100%;
  }
  .recruit_container {
    flex-direction: column;
    width: 100%;
  }
  article.section_wrap.recruit_info {
    padding: 4% 4% 0;
    margin: 0 0 30px;
  }
  .left_content {
    width: 100%;
  }
  .right_content {
    width: 100%;
    margin-left: 0;
  }
  .right_content .detail_cta {
    padding: 0;
    width: 86vw;
    margin-left: calc(-43vw + 50%);
    max-width: none;
    height: auto;
  }
  .right_content .detail_cta a.v_dtl {
    width: 50%;
    border-bottom: unset;
  }
  .right_content .detail_cta a.apply {
    width: 50%;
    border-left: 0;
    border-bottom: unset;
  }
  body.page-search #main #conditions {
    padding: 0;
    background: unset;
  }
  body.page-search #main #conditions .conditions-box {
    border: 1px solid #000;
    border-radius: 0;
    /* height: 40px; */
    height: auto;
  }
  body.page-search #main #conditions .conditions-box.nothing {
    height: 45px;
  }
  body.page-search #main #conditions .conditions-box__left {
    width: 80%;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: auto-phrase;
  }
  body.page-search #main #conditions .conditions-box__left span.item {
    font-size: 13px;
  }
  body.page-search #main #conditions .conditions-box__left span.nochange {
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-top: 4px;
  }
  body.page-search #conditions .conditions-box__right {
    border-left: 1px solid #000;
  }
  body.page-search #main #conditions .conditions-box__right a {
    color: #000;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
  }
  body.page-search #main #conditions .conditions-box__right a span {
    font-size: 12px;
    color: #ff4d00;
  }
  body.page-search #main #conditions .conditions-box__right a svg {
    width: 18px;
    height: 18px;
    margin: 0 auto;
  }
  .search_wrap .search_result_wrap.right .paging ul {
    display: flex;
    justify-content: space-between;
  }
  .search_wrap .search_result_wrap.right .paging ul li {
    padding: 0;
  }
  .search_wrap .search_result_wrap.right .paging ul li a {
    padding: 0 5px;
  }
  .search_wrap .search_result_wrap.right .paging ul li span.active {
    padding: 0;
  }
  /* 検索モーダル */
  #modal-conditions.sp-slide-v.open .modal-header,
  .sp-slide-h.open .modal-header {
    position: relative;
    background: #000;
    padding: 15px;
  }
  #modal-conditions.modal-container.sp-slide-v.open .closeModal,
  .modal-container.sp-slide-h.open .closeModal {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
  }
  #modal-conditions.modal-container.sp-slide-v.open .icon,
  .modal-container.sp-slide-h.open .icon {
    background: #fff;
  }
  #modal-conditions.modal-container.sp-slide-v.open .closeModal .icon::before,
  #modal-conditions.modal-container.sp-slide-v.open .closeModal .icon::after,
  .modal-container.sp-slide-h.open .closeModal .icon::before,
  .modal-container.sp-slide-h.open .closeModal .icon::after {
    background: #000;
  }
  .modal-container.sp-slide-v.open .modal-header__title,
  .modal-container.sp-slide-h.open .modal-header__title {
    color: #fff;
    margin-bottom: 0;
  }
  .sp-slide-v.open dl.keyword dt {
    border-left: unset;
    padding: 0;
  }
  #modal-conditions.sp-slide-v.open .modal-body {
    padding: 30px 0;
  }
  .search_form_wrap dl.border_sp {
    border-top: 1px solid #a0a4a6;
    margin-bottom: 0;
    padding: 15px 0;
  }
  .search_form_wrap.modal-container.sp-slide-v.open dl dt {
    margin: 0 20px 10px;
    padding: 0;
    border-left: unset;
    display: flex;
    align-items: center;
  }
  .search_form_wrap.modal-container.sp-slide-v.open dl dt svg {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
  .search_form_wrap dl dd {
    padding: 0 20px;
  }
  .search_form_wrap .openModal.spModal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .search_form_wrap .openModal.spModal span {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .search_form_wrap .openModal.spModal svg.cat-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
  }
  .search_form_wrap .openModal.spModal svg.arrow01 {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }
  .search_form_wrap .openModal.spModal svg.arrow01 use {
    color: #a0a4a6;
  }
  #modal-conditions.sp-slide-v .modal-body .list {
    grid-template-columns: unset;
  }
  #modal-conditions.sp-slide-v .modal-footer {
    padding: 20px;
  }
  #modal-conditions.sp-slide-v .modal-footer__button.submit {
    background: #ff4d00;
    color: #000;
    font-size: 16px;
  }
  #modal-conditions.sp-slide-v .modal-footer__button.submit::before{
    border: 3px solid #000000;
  }
  #modal-conditions.sp-slide-v .modal-footer__button.submit::after {
    background: #000;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
  }
  #modal-area.sp-slide-h .modal-body {
    padding: 20px;
  }
  #modal-conditions .modal-body .list li {
    margin-top: 10px;
  }
  #modal-conditions .modal-body .list label {
    font-size: 14px;
  }
  #modal-conditions .modal-body .list label input {
    margin-right: 5px;
  }
  #modal-area.modal-container.width-narrow .modal-body {
    overflow-y: scroll !important;
  }
  #modal-area.modal-container.sp-slide-h.open .modal-list {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
  body.modal-open .modal-container {
    height: 100%;
  }
  body.modal-open #modal-occupation .modal-footer {
    padding-bottom: 20px;
  }
}

/* apply */
body.apply {
  width: 780px;
  box-shadow: unset;
  background: #f1f2f3;
}
body.apply #header {
  background: #f1f2f3;
}
body.apply div#wrapper {
  background: #f1f2f3;
  overflow: clip;
}
body.apply header {
  margin-top: 0;
}
body.apply #header .inner {
  width: 100%;
}
body.apply #header .fixed-wrap {
  height: 100%;
}
body.apply .fixed-wrap.flex-middle {
  justify-content: center;
}
body.apply #header .logo-wrap a {
  padding: 30px 0 20px;
}
body.apply #header .logo-wrap a h1 {
  border-bottom: unset;
  margin-left: 0;
  padding: 5% 0;
  width: 100%;
}
body.apply #header .menu.flex-middle.flex-space-b {
  display: none;
}
body.apply #main {
  padding: 0;
  margin-top: 94px;
}
body.apply #main section.section_wrap {
  border: 1px solid #000;
  background: #fff;
}
body.apply div#topics.bottom {
  /* width: 100%;
  margin: 0 auto; */
}
body.apply #footer {
  margin-top: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
body.apply #footer .foot-content nav.right {
  width: 100%;
  margin: 20px 0 0;
  position: unset;
  min-height: unset;
  padding: 0;
  background: unset;
  display: flex;
  align-items: center;
}
body.apply .ul-wrap {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
}
.apply_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background: #fff;
  padding: 10px;
  border: 1px solid #000;
}
.apply_ttl span {
  background: #96a0a4;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
}
p.apply_job {
  margin-left: 10px;
  font-weight: bold;
  font-size: 14px;
}
/* apply_sp */
@media screen and (max-width: 768px) {
  body.apply {
    width: 100%;
  }
  body.apply #header .fixed-wrap {
    height: 66px;
  }
  body.apply #header .logo-wrap a {
    padding: 0;
  }
  body.apply #header .logo-wrap a img {
    margin: 0 auto;
  }
  body.apply #header .logo-wrap a h1 {
    margin-left: -1px;
    text-align: center;
    padding: 0;
  }
  body.apply #header .logo-wrap .sp-only {
    display: none !important;
  }
  body.apply #main {
    border: unset;
    margin-top: 66px;
    padding: 0;
  }
  body.apply #main section.section_wrap {
    border: unset;
  }
  .privacy-wrap p {
    font-size: 11px;
  }
  .apply_ttl {
    margin: 0px;
    padding: 10px 20px;
    border: unset;
    border-bottom: 1px solid #000;
  }
  .apply_ttl span {
    width: 20%;
    font-size: 12px;
    letter-spacing: 0.1rem;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #000;
  }
  p.apply_job {
    width: 80%;
    margin-top: 2px;
    font-size: 13px;
    letter-spacing: 0.08rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

/* thanks */
section.section_wrap.thankyou {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 90%;
  height: 100%;
}
section.section_wrap.thankyou img {
  width: 120px;
  margin: 0 auto;
  animation: shake 0.5s ease-in-out 3;
  animation-delay: 0.3s;
}
@keyframes shake {
  0%, 100% {
      transform: rotate(0deg);
  }
  25% {
      transform: rotate(-10deg);
  }
  50% {
      transform: rotate(10deg);
  }
  75% {
      transform: rotate(-5deg);
  }
}
.thankyou_title {
  font-size: 2rem;
  font-weight: bold;
  margin: 30px auto 0;
}
.thankyou_text {
  font-size: 14px;
  margin: 10px auto;
  width: 600px;
  text-align: center;
  /* margin: 10px auto 0; */
}
.notice {
  background: #fff;
  font-size: 0.8rem;
  margin: 0 auto;
  padding: 20px 40px;
  width: 600px;
}
.notice p {
  font-size: 14px;
}
.notice ul {
  margin: 20px 0;
}
.notice ul span {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.notice ul span svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.notice ul li {
  margin-bottom: 4px;
  font-size: 14px;
}
.notice ul li:last-child {
  margin-bottom: 0;
}
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.button-group .btn-primary {
  min-width: unset;
  width: 48%;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  background: #000;
  color: #fff;
  border-radius: 0;
}
.button-group .btn-secondary {
  min-width: unset;
  width: 48%;
  padding: 0;
  font-size: 15px;
  font-weight: bold;
  background: #ffffff;
  color: #000;
  border-radius: 0;
  border: 2px solid #000;
}
/* 年末年始休業のお知らせ */
p.news {
  width: 600px;
  font-size: 14px;
  margin: 10px auto;
}

/* apply_sp */
@media screen and (max-width: 768px) {
  section.section_wrap.thankyou {
    margin-top: 0px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    padding: 2% 7% 0;
  }
  section.section_wrap.thankyou img {
    width: 80px;
  }
  .thankyou_title {
    font-size: 18px;
    margin: 20px auto 0;
  }
  .thankyou_text {
    width: 100%;
    text-align: left;
    font-size: 12px;
    margin: 10px auto;
  }
  .notice {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    padding: 5% 7%;
    margin-top: 10px;
  }
  .notice p {
    font-size: 12px;
    margin: 0 auto;
  }
  .notice ul {
    margin: 15px 0;
  }
  .notice ul span {
    font-size: 13px;
  }
  .notice ul span svg {
    width: 13px;
    height: 13px;
  }
  .notice ul li {
    font-size: 12px;
  }
  .button-group .btn-primary {
    font-size: 12px;
  }
  .button-group .btn-secondary {
    font-size: 13px;
  }
  /* 年末年始休業のお知らせ */
  p.news {
    width: 100%;
    font-size: 12px;
  }
}

/*  content01  */
.content01 {
  padding-top: 70px;
  padding-bottom: 85px;
}
.content01 .content-title01 .title-english {
  padding-left: 3px;
}
.content01 .area {
  width: 620px;
  height: 491px;
  position: relative;
}
.content01 .area .map {
  width: 541px;
  height: 491px;
  background: url(../images/map.png) no-repeat center / cover;
  position: absolute;
  top: 6px;
  left: 32px;
}
.content01 .area .map a {
  display: inline-block;
  min-width: max-content;
  color: #2fbbdc;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: solid 1px #2fbbdc;
  border-radius: 18px;
  padding: 9px 20px 10px;
}
.content01 .area .map li {
  position: absolute;
}
.content01 .area .map .hokkaido {
  top: 46px;
  right: 117px;
}
.content01 .area .map .tohoku {
  top: 252px;
  right: 83px;
}
.content01 .area .map .hokuriku {
  top: 248px;
  right: 193px;
}
.content01 .area .map .kanto {
  top: 341px;
  right: 95px;
}
.content01 .area .map .tokai {
  top: 384px;
  right: 187px;
}
.content01 .area .map .kansai {
  top: 351px;
  left: 178px;
}
.content01 .area .map .chugoku {
  top: 308px;
  left: 76px;
}
.content01 .area .map .shikoku {
  top: 415px;
  left: 120px;
}
.content01 .area .map .kyushu {
  top: 370px;
  left: -32px;
}
.content01 .area .map .okinawa {
  top: 479px;
  left: 0;
}
.content01 .job {
  width: 640px;
}
.content01 .job li {
  width: 200px;
  margin-left: 20px;
  margin-top: 20px;
}
.content01 .job li:nth-child(3n + 1) {
  margin-left: 0;
}
.content01 .job li:nth-child(-n + 3) {
  margin-top: 0;
}
.content01 .job li a {
  display: block;
  height: 50px;
  border-radius: 25px;
  background-color: #ebedee;
  position: relative;
}
.content01 .job li a .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 15px;
  color: #000;
  letter-spacing: -0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content01 {
    padding: 60px 0;
  }
  .content01 .area {
    width: 100%;
    height: auto;
  }
  .content01 .area .map {
    width: 100%;
    height: auto;
    margin: 20px 0 0;
    background: none;
    position: static;
  }
  .content01 .area .map li {
    position: static;
    margin-top: 10px;
    margin-left: 10px;
    width: calc((100% - 10px) / 2);
  }
  .content01 .area .map a {
    display: block;
    height: 44px;
    border-radius: 25px;
    padding-top: 13px;
  }
  .content01 .area .map li:nth-child(-n + 2) {
    margin-top: 0;
  }
  .content01 .area .map li:nth-child(2n + 1) {
    margin-left: 0;
  }
  .content01 .job {
    width: 100%;
  }
  .content01 .job li {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .content01 .job li:nth-child(-n + 3) {
    margin-top: 10px;
  }
  .content01 .job li:first-of-type {
    margin-top: 0;
  }
  .content01 .job li a {
    height: 50px;
    border-radius: 25px;
  }
}

/*  content02  */
.content02 {
  padding-top: 50px;
  padding-bottom: 80px;
}
.content02 .box,
.content03 .box {
  width: 290px;
  margin-left: 40px;
  margin-top: 55px;
}
.content02 .box:nth-child(-n + 4),
.content03 .box:nth-child(-n + 4) {
  margin-top: 0;
}
.content02 .box:nth-child(4n + 1),
.content03 .box:nth-child(4n + 1) {
  margin-left: 0;
}
.content02 .box a,
.content03 .box a {
  display: block;
}
.content02 .box .image,
.content03 .box .image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.content02 .box .image img,
.content03 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.content02 .box .tag,
.content03 .box .tag {
  min-width: 130px;
  text-align: center;
  border-radius: 15px;
  border: solid 1px #000;
  margin-top: 25px;
  padding: 4px 10px;
  display: inline-block;
}
.content02 .box .text,
.content03 .box .text {
  margin-top: 9px;
  line-height: 1.73;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .content02 {
    padding: 50px 0 60px;
  }
  .content02 .box,
  .content03 .box {
    width: 90vw;
    margin-left: 0;
    margin-top: 45px;
  }
  .content02 .box:nth-child(-n + 4),
  .content03 .box:nth-child(-n + 4) {
    margin-top: 45px;
  }
  .content02 .box:nth-child(4n + 1),
  .content03 .box:nth-child(4n + 1) {
    margin-top: 45px;
  }
  .content02 .box:first-of-type,
  .content03 .box:first-of-type {
    margin-top: 0;
  }
  .content02 .box .image img,
  .content03 .box .image img {
    border-radius: 30px;
  }
}

/*  content03  */
.content03 {
  padding-top: 60px;
  padding-bottom: 70px;
}
.content03 .box .text {
  line-height: 1.44;
}
@media screen and (max-width: 768px) {
  .content03 {
    padding: 50px 0 60px;
  }
}

/*  content06  */
.content04 {
  padding-top: 100px;
  padding-bottom: 60px;
}
.content04 .out-wrap {
  text-align: center;
  display: table;
  table-layout: auto;
  margin-bottom: -24px;
}
.content04 .list-wrap li {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 0 24px;
}
.content04 .list-wrap li .date {
  min-width: 120px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.content04 .list-wrap li .text {
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.44;
  overflow: hidden;
}
.content04 .list-wrap li a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .content04 {
    padding: 50px 0 60px;
  }
  .content04 .out-wrap {
    width: 100%;
  }
  .content04 .list-wrap li {
    display: block;
    padding: 0 0 30px;
  }
  .content04 .list-wrap li .date {
    display: block;
    border-bottom: #ccc 1px solid;
    padding-bottom: 10px;
  }
  .content04 .list-wrap li .text {
    display: block;
    padding: 10px 0 0;
  }
}

/*  content05  */
.content05 {
  background: url("../images/footer-bg.jpg") no-repeat 85% center / cover;
  padding-top: 80px;
  padding-bottom: 50px;
}
.content05 .inner {
  /* width: 1080px; */
  margin-left: auto;
  margin-right: auto;
}
.content05 .tel-btn {
  display: block;
  background: url("../images/footer-tel.png") no-repeat left calc(50% + 3px);
  padding-left: 28px;
  font-size: 32px;
  letter-spacing: 0.04em;
}
.content05 .contact-btn {
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .content05 {
    padding: 60px 0 60px;
  }
  .content05 .inner {
    width: 100%;
  }
  .content05 .tel-btn {
    font-size: 34px;
  }
  .content05 .contact-btn {
    margin-left: 0;
    width: 100%;
  }
}
