@charset "utf-8";
/* CSS Document */
/* ------------------------------
      Reset
    ------------------------------ */
*, *::before, *::after {
  box-sizing: border-box
}
*:not(dialog) {
  margin: 0
}
@media (prefers-reduced-motion:no-preference) {
  html {
    interpolate-size: allow-keywords
  }
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%
}
input, button, textarea, select {
  font: inherit
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word
}
p {
  text-wrap: pretty
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance
}
#root, #__next {
  isolation: isolate
}
/* ------------------------------
      Content
    ------------------------------ */
section {
  padding: 1rem 0 4rem 0;
}
/* ------------------------------
      common
    ------------------------------ */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
ul {
  list-style: none;
}
img {
  vertical-align: middle;
  display: block;
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.7;
}
main {
  margin: 71px auto 0 auto;
  position: relative;
}
#top h1 {
  padding: 0;
}

h2 {
  padding: 2rem 0;
  text-align: center;
}
p {
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}
dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 15px;
}
dt {
  font-weight: 600;
  width: 15%;
}
dd {
  width: 85%;
}
@media (max-width: 767.999px) {
  p {
    font-size: 14px;
    line-height: 160%;
  }
  h1 {
    font-size: 25px;
    padding: 1rem 0 1.5rem 0;
  }
  h2 {
    margin: 0;
    font-size: 20px;
    padding: 1rem 0;
  }
  h3 {
    margin: 1rem 0 0.8rem 0;
    line-height: 130%;
    font-size: 20px;
  }
  dl {
    font-size: 14px;
  }
  dt {
    width: 100%;
  }
  dd {
    width: 100%;
  }
}
/* ------------------------------
      Layout Base
    ------------------------------ */
.container {
  width: 100%;
  margin: 0 auto;
}
.base-width {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.8rem;
}
.wrapper {
  max-width: 990px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
.col {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.col2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.col2 .colbox {
  min-width: 0;
  padding: 1rem;
}
.col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  gap: 1rem;
  width: 100%;
}
.col3 .colbox {
  width: 32%;
}
.col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 1rem 0;
  padding: 2rem;
  gap: 1rem;
  width: 100%;
}
.col4 .colbox {
  width: 23%;
}
/*responsive*/
@media (max-width: 1080px) {
  .base-width {
    width: 95%;
  }
  .col3 .colbox {
    width: 47%;
  }
  .col4 .colbox {
    width: 47%;
  }
}
@media (max-width: 767.999px) {
  .col {}
  .col2 {
    padding: 0;
    flex-wrap: wrap;
  }
  .col2 .colbox {
    width: 100%;
  }
  .colbox.text-box {
    width: 100%;
    line-height: 190%;
    position: relative;
    padding: 0.5rem;
  }
  .colbox.img-box {
    width: 100%;
  }
  .colbox.img-box img {
    width: 100%;
    margin: 0 1rem;
  }
  .col3 {
    padding: 1rem;
    gap: 0.5rem;
  }
  .col3 .colbox {
    width: 100%;
  }
}
@media (max-width: 490px) {
  .col4 .colbox {
    width: 100%;
  }
}
/* ------------------------------
      Header
    ------------------------------ */
header {
  width: 100%;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
}
header a {
  text-decoration: none;
  color: #000;
}
header a:hover {
  text-decoration: none;
  color: #555;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  padding: 0 1rem;
}
.logo_box {
  display: flex;
  align-items: center;
}
.logo {
  width: 125px;
}
.company_name {
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  line-height: 120%;
}
.company_name a {
  font-size: 11px;
  text-decoration: none;
  color: #000;
}
nav {
  margin: 0 1rem 0 auto;
}
nav ul {
  display: flex;
  gap: 30px;
}
.sp-nav {
  display: none;
}
.nav-toggle {
  display: none;
}
@media (max-width: 1080px) {
  /* ハンバーガー */
  .hamburger {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin: 0 0 0 auto;
  }
  .hamburger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  /* SPメニュー */
  .sp-nav {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #403d33;
    z-index: 1000;
    transition: max-height 0.35s ease;
  }
  .sp-nav a {
display: block;
        text-decoration: none;
        color: #fff;
        padding: 15px 10px;
        border-bottom: solid 1px #656565;
  }
  .sp-nav a:hover {
    opacity: 0.85;
    color: #fff;
  }
  .sp-nav ul {
    display: flex;
    flex-direction: column;
  }
  .sp-nav .blank_w {
    background-position: 96% 50%;
    background-size: 18px;
  }
  /* --- ハンバーガーメニューボタン --- */
  #nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  #nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
  /* --- メニューの開閉制御 --- */
  #nav-toggle:checked ~ .sp-nav {
    max-height: 100vh;
  }
  #nav-toggle:checked ~ .nav-overlay {
    display: block;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 500;
  }
  /* チェック時に表示 */
  #nav-toggle:checked ~ .nav-overlay {
    display: block !important;
    margin: 60px 0 0 0;
  }
}
/*エントリー*/
.entry-nav {
  width: 100%;
  display: flex;
}
.entry-nav a {
  width: 100%;
  text-decoration: none;
  background: #e60012;
  padding: 15px 10px;
  border-right: 0;
  border-left: 0;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  display: block;
}
.entry-nav a:hover {
  color: #fff;
}
/* ENTRY 追従ボタン */
.entry-floating {
  position: fixed;
  top: 71px;
  right: 0;
  z-index: 100;
  text-align: right;
  background: #e60012;
  color: #fff;
  border-radius: 0 0 0 20px;
  overflow: hidden;
}
/* ENTRY ボタン */
.entry-btn {
  padding: 12px 20px;
  border: none;
  background: #e60012;
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: auto;
  display: flex;
}
.breadcrumb {
  padding: 10px 1rem;
  font-size: 0.75rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #999;
}
.breadcrumb li a {
  text-decoration: none;
  text-decoration: underline;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li a[aria-current="page"] {
  color: #333;
  pointer-events: none;
}
/* ------------------------------
    Main Visual (全体枠)
------------------------------ */
.mv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #fff;
}
.base-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.base-img:first-of-type {
  position: relative;
}
/* ============================
   ① タイトル画像：フェードイン ＆ 下降
============================ */
.title-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  opacity: 0;
  will-change: opacity, top;
  /* titleFadeIn: 2.0s 
     titleMoveDown: 0.8s (2.0sから開始) */
  animation:
    titleFadeIn 2.0s ease-out 0.2s forwards, titleMoveDown 0.8s ease-in-out 2.0s forwards;
}
@keyframes titleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes titleMoveDown {
  0% {
    top: 50%;
  }
  100% {
    top: 78.6%;
  }
}
/* ============================
   ② 1段階目: main_01, 02
============================ */
.step1-top {
  z-index: 1;
  clip-path: inset(0 0 100% 0);
  animation: curtainDown 0.8s ease-in-out 2.0s forwards;
}
@keyframes curtainDown {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ============================
   ③ 2段階目: main_03（下から上へ）
============================ */
.step2-bottom {
  z-index: 2;
  clip-path: inset(100% 0 0 0);
  animation: curtainUp 1.2s ease-in-out 3.3s forwards;
}
@keyframes curtainUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ============================
   ④ 格子・光エフェクト
============================ */
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  animation: gridFadeOut 1.0s ease-out 6.5s forwards;
}
.grid-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: calc(100% / 15) 100%;
  clip-path: inset(100% 0 0 0);
  animation: drawVertical 1.2s ease-out 3.5s forwards;
}
.grid-lines::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#fff 1px, transparent 1px);
  background-size: 100% calc(100% / 7);
  clip-path: inset(100% 0 0 0);
  animation: drawHorizontal 1.2s ease-out 3.5s forwards;
}
.grid-glow-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  animation: finalGlow 2.5s ease-out 3.5s forwards;
}
/* --- 共通アニメーション定義 --- */
@keyframes drawVertical {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes drawHorizontal {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes finalGlow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  20% {
    opacity: 1;
    transform: scale(1.05);
  }
  40% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes gridFadeOut {
  to {
    opacity: 0;
  }
}
/* ============================
   SP main
============================ */
@media (max-width: 1080px) {
  .mv.sp .grid-lines, .mv.sp .grid-glow-overlay, .mv.sp .grid-container {
    display: none !important;
  }
  .mv.sp .title-img {
    opacity: 1;
    height: auto;
    clip-path: none;
    animation: none;
    z-index: 20;
  }
  .mv.sp .base-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    clip-path: none;
    animation: spSlideshow 12s infinite;
  }
  .mv.sp .base-img:first-of-type {
    position: relative;
    opacity: 1;
  }
  .mv.sp .base-img:nth-of-type(1) {
    animation-delay: 0s;
  }
  .mv.sp .base-img:nth-of-type(2) {
    animation-delay: 4s;
  }
  .mv.sp .base-img:nth-of-type(3) {
    animation-delay: 8s;
  }
  .breadcrumb {
    padding: 5px 10px;
    font-size: 0.75rem;
    display: block;
  }
  @keyframes spSlideshow {
    0% {
      opacity: 0;
      z-index: 10;
    }
    5% {
      opacity: 1;
      z-index: 10;
    }
    33.3% {
      opacity: 1;
      z-index: 10;
    }
    38.3% {
      opacity: 0;
      z-index: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
/* ボタン */
.mv-toggle-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 30;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 一時停止*/
.pause-icon {
  display: block;
  width: 10px;
  height: 12px;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
/* 再生*/
.play-icon {
  display: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
/* 停止中の表示切り替え */
.is-paused .pause-icon {
  display: none;
}
.is-paused .play-icon {
  display: block;
}
/* 停止中のアニメーション制御 */
.is-paused .base-img {
  animation-play-state: paused !important;
}
/* ------------------------------
      Footer
    ------------------------------ */
#footer {
  padding: 2rem 0;
  background: #403d33;
  color: #fff;
  text-align: center;
}
#footer a {
  text-decoration: none;
  color: #fff;
}
.footer_nav {
  margin-bottom: 1rem;
}
.footer_nav li {
  display: inline-block;
}
.footer_nav li a {
  color: #fff;
  text-decoration: none;
}
.footer_nav li:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 1em;
}
/* ------------------------------
      footerエントリー
    ------------------------------ */
.footer_links {
  padding: 0;
}
.footer_links--inner {
  margin: 0 auto;
  background-color: #E6000D;
  padding: 20px 0 2rem 0;
  color: #fff;
}
.footer_links--inner .entrytitle {
  text-align: center;
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.2;
  font-size: 25px;
}
.footer_links--inner--wrap {
  margin: 35px auto 0;
  max-width: 1048px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_links--inner--wrap--banner {
  width: 30.53%;
  height: 69px;
  border: 1px solid #fff;
}
.footer_links--inner--wrap--banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  font-size: 18px;
  transition: all .3s ease-out;
  background-color: #E6000D;
  height: 100%;
  padding-right: 23px;
  background-image: url(../images/blank_w.webp);
  background-repeat: no-repeat;
  background-size: 21px;
  background-position: 5% 45%;
  padding-bottom: 4px;
}
.footer_links--inner--wrap--banner a:hover {
  opacity: 1;
  background-color: #fff;
  color: #E6000D;
  background-image: url(../images/blank_r.webp);
}
.footer_links.top {
  background: none;
  padding: 0;
  margin: 98px 0 0;
  position: relative;
  z-index: 5;
}
.footer_links.top .footer_links--inner {
  max-width: 1130px;
  box-shadow: 14px 14px 20px #b7bbc1;
}
.inner_links {
  max-width: none;
  width: 80%;
  display: block;
}
.inner_links--banner {
  height: 20.8333333333vw;
}
.inner_links--banner a {
  line-height: 1.6;
  font-size: 4.6875vw;
}
.arrow_ent {
  width: 26px;
  position: absolute;
  top: 60%;
  right: 30px;
  height: 12px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, right 0.3s ease;
}
.arrow_ent span::before, .arrow_ent span::after {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.arrow_ent span::before {
  left: 0;
  width: 100%;
}
.arrow_ent span::after {
  right: 0;
  width: 7px;
  transform: rotate(45deg);
  transform-origin: right top;
}
.footer_links--inner--wrap--banner a:hover .arrow_ent {
  right: 20px;
}
.footer_links--inner--wrap--banner a:hover .arrow_ent span::before, .footer_links--inner--wrap--banner a:hover .arrow_ent span::after {
  background-color: #E6000D;
}
@media (max-width: 1080px) {
  .footer_links--inner--wrap--banner a {
    justify-content: flex-start;
    text-align: left;
    font-size: 16px;
    padding: 10px 10px 10px 40px;
  }
  .arrow_ent {
    right: 10px;
  }
}
@media (max-width: 767.999px) {
  .footer_links--inner--wrap--banner {
    width: 100%;
    margin: 0 0 5px 0;
  }
  .footer_links--inner--wrap--banner a {
    justify-content: center;
    padding: 10px;
  }
}
/* ------------------------------
      Go to top
    ------------------------------ */
.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #403d33;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, background-color 0.3s, transform 0.3s;
}
.back-to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: 4px;
}
.back-to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.back-to-top.is-stopped {
  position: absolute;
  bottom: auto;
  top: -60px;
  right: 10px;
}
#footer-placeholder {
  position: relative;
  display: block;
  clear: both;
}
/* ------------------------------
      menu
    ------------------------------ */
.top-menu {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 0 0;
}
.menubox {
  width: 18%;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 0px rgba(120, 120, 120, 0.35);
  height: 200px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: 50% 80%;
  background-color: #fff;
  cursor: pointer;
}
.menubox a {
  text-decoration: none;
  color: #000;
  display: block;
  width: 100%;
  height: 100%;
  transition: color 0.4s ease;
}
.menubox a:hover {
  color: #e60012;
}
.menu_01, .menu_02, .menu_03, .menu_04, .menu_05 {
  transition: background-image 0.4s ease;
}
.menu_01 {
  background-image: url(../images/menuicon_01.webp);
}
.menu_01:hover {
  background-image: url(../images/menuicon_01_on.webp);
}
.menu_02 {
  background-image: url(../images/menuicon_02.webp);
}
.menu_02:hover {
  background-image: url(../images/menuicon_02_on.webp);
}
.menu_03 {
  background-image: url(../images/menuicon_03.webp);
}
.menu_03:hover {
  background-image: url(../images/menuicon_03_on.webp);
}
.menu_04 {
  background-image: url(../images/menuicon_04.webp);
}
.menu_04:hover {
  background-image: url(../images/menuicon_04_on.webp);
}
.menu_05 {
  background-image: url(../images/menuicon_05.webp);
}
.menu_05:hover {
  background-image: url(../images/menuicon_05_on.webp);
}
.menubox img {
  max-width: 200px;
  margin: auto;
}
@media (max-width: 767.999px) {
  .top-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .menubox {
    font-size: 14px;
    width: 29%;
  }
}
@media (max-width: 490px) {
  .top-menu {
    justify-content: flex-start;
  }
  .menubox {
    width: 47%;
    background-size: 100px;
    background-position: 50% 75%;
    height: 130px;
    padding: 10px;
  }
}
@media (max-width: 323px) {
  .menubox {
    width: 90%;
    margin: 0 auto;
  }
}
/* ------------------------------
      count up
    ------------------------------ */
#result1_1 .colbox {
  display: flex;
  flex-wrap: wrap;
}
.numttl {
  font-size: clamp(20px, 2vw, 22px);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 120%;
  height: 70px;
  margin: 15px 0 0 0;
}
.numline {
  margin: 6px 0 16px;
  font-size: clamp(40px, 4.8vw, 55px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: last baseline;
  text-align: center;
  line-height: 0.6;
}
.num, .content.personal .count-up {
  font-family: "Roboto", "Noto Sans JP", "Arial", sans-serif;
  font-weight: bold;
  margin: 10px 0;
  color: #e60012;
}
.numline .numunit {
  font-size: 40%;
  white-space: nowrap;
  font-weight: bold;
}
.aro {
  font-family: "Roboto", "Noto Sans JP", "Arial", sans-serif;
  display: inline-block;
  font-size: 40%;
  font-weight: bold;
}
.ann {
  display: block;
  text-align: right;
  font-size: 20%;
  line-height: 100%;
}
/* ------------------------------
      slide
    ------------------------------ */
.staff_slide {
  position: relative
}
.staff_slide .swiper-slide {
  height: auto;
  display: flex;
}
.staff_slide .colbox {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  flex: 1;
}
.staff_slide .colbox a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.staff_slide .shadow {
  height: 100%;
  padding: 0;
}
.staff_slide .text-box {
  display: flex;
  flex-direction: column;
  line-height: 160%;
  position: relative;
  width: 100%;
  padding: 10px 10px 5px 10px;
  flex-grow: 1;
  margin: 0;
}
.staff_slide .red_icon {
  width: fit-content;
  font-size: 95%;
}
.staff_slide .img-box {
  display: flex;
  width: 100%;
}
.staff_slide .img-box img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.staff_copy {
  flex-grow: 1;
  min-height: 72px;
  font-size: 97%;
  line-height: 150%;
}
:root {
  --swiper-pagination-color: #e60012;
}
.swiper-wrapper {
  align-items: stretch;
}
.swiper-slide {
  height: stretch !important;
}
.swiper-button-next, .swiper-button-prev {
  content: url(/recruit/images/slide_arrow.webp);
  width: 50px !important;
  height: 50px !important;
}
.swiper-button-next {
  rotate: 180deg;
  right: 0 !important;
}
.swiper-button-prev {
  left: 0 !important;
}
.swiper {
  width: calc(100% - 120px);
  padding: 10px 0 45px !important;
}
.swiper-slide {
  min-width: 300px !important;
  width: 30vw;
  transform-origin: center bottom;
}
.swiper-slide.swiper-slide-active {
  box-sizing: border-box;
  transform: scale(1.0) !important;
}
.staff_slide .swiper-slide {
  height: auto;
  display: flex;
  transform: scale(0.8);
  transition: transform 2.0s ease, opacity 2.0s ease;
  transform-origin: center bottom;
}
.staff_slide .swiper-slide-active, .staff_slide .swiper-slide-duplicate-active {
  transform: scale(1.0) !important;
  z-index: 2;
}
.swiper-slide img {
  will-change: transform;
  backface-visibility: hidden;
}
#staff .swiper-wrapper {
  margin-top: -70px;
}
#staff .swiper-wrapper .text-box {
  margin: 0;
}
#staff .swiper-slide {
  transform: scale(0.8) !important;
  transition: transform 2.0s ease, opacity 2.0s ease;
}
.swiper-slide-active {
  transform: scale(1.0);
  z-index: 2;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ボタンの配置調整 */
.swiper-autoplay-controls {
  text-align: center;
  margin-top: 15px; /* ドットからの距離 */
}

#swiper-toggle-autoplay {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

#swiper-toggle-autoplay:hover {
  background: #555;
}

#swiper-toggle-autoplay.start-btn {
  background: #e60012;
}

@media (max-width: 1080px) {
  .swiper-slide {
    min-width: unset !important;
  }
}
@media (max-width: 767.999px) {
  .swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
  .swiper {
    width: calc(100% - 100px);
  }
}
@media (max-width: 490px) {
  .swiper {
    width: calc(100% - 60px);
  }
}
/* --- 実機・スマホ --- */
.staff_slide .swiper-container .swiper-slide, .staff_slide .swiper .swiper-slide {
  transform: scale(0.8) !important;
  transition: transform 2.0s ease, opacity 2.0s ease !important;
  min-width: unset !important;
}
.staff_slide .swiper-container .swiper-slide-active, .staff_slide .swiper-container .swiper-slide-duplicate-active, .staff_slide .swiper .swiper-slide-active, .staff_slide .swiper .swiper-slide-duplicate-active {
  transform: scale(1.0) !important;
  z-index: 2;
}
.staff_slide .swiper-slide img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
/* ------------------------------
      Responsive common
    ------------------------------ */
@media (max-width: 1080px) {
  main {
    margin: 61px auto 0 auto;
  }
  .header-inner {
    height: 60px;
    padding: 0 0.5rem;
  }
  .logo {
    width: 80px;
  }
  .company_name {
    font-size: 12px;
  }
  .company_name a {
    font-size: 10px;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  /* SPメニュー表示 */
  .nav-toggle:checked ~ .sp-nav {
    max-height: 500px;
  }
  /* ハンバーガーボタン */
  .nav-toggle:checked + .header-inner .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle:checked + .header-inner .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .header-inner .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  /*メインビジュアル*/
  .title-img {
    width: 100%;
    height: 100%;
    animation: titleArrival 1.2s ease-out 2.4s forwards;
  }
}
/* ------------------------------
      staff
    ------------------------------ */
.staff-oneday {
  width: 100%;
}
.staff-oneday table {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
  background: #f7f9f8;
}
.staff-oneday table th {
  width: 5em;
  padding: 5px 15px;
  color: #e60012;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  background: #f7f9f8;
  vertical-align: middle;
  border-bottom: solid 2px #fff;
}
.staff-oneday table td {
  padding: 5px 5px 5px 15px;
  background: #f7f9f8;
  vertical-align: middle;
  line-height: 1.5;
  border-bottom: solid 2px #fff;
}
.staff-oneday table tr:last-child th, .staff-oneday table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 767.999px) {
  .staff-oneday table th {
    font-weight: 600;
    font-size: 19px;
    width: 3.5em;
  }
  .staff-oneday table td {
    font-size: 13px;
  }
  .staff_copy {
    flex-grow: 1;
    min-height: auto;
  }
}
/* ------------------------------
      装飾全般
    ------------------------------ */
.categorymenu {
  padding: 2rem 0;
  text-align: center;
  line-height: 150%;
  width: 100%;
}
.categorymenu a:link {
  text-decoration: underline;
}
.categorymenu .here {
  color: #aaa;
  font-weight: 600;
}
.title_icon {
  width: 70px;
  height: auto;
  padding: 0 10px;
  margin: 0 auto;
  display: inline-block;
}
.btnbox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shadow {
  background: #fff;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.21);
  padding: 1.5rem;
}
#staff .shadow {
  padding: 0;
}
.gray {
  background: #fff;
  border-radius: 10px;
  background-color: #f7f9f8;
}
.button {
  margin: 10px -20px 10px 10px;
  max-width: 150px;
  min-width: 100px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: #e60012;
  border: 1px solid;
  cursor: pointer;
  width: 100%;
}
.yazirusi {
  display: inline-flex;
  margin-left: 10px;
  width: 80px;
  height: 10px;
  position: relative;
  right: 20px;
  border-bottom: 1px solid #e60012;
  border-right: 1px solid #e60012;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
  /* 戻る時のアニメーション */
  transition: transform 0.4s ease;
}
.shadow:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}
.shadow:hover .yazirusi {
  transform: skew(45deg) translateX(5px);
  transition: transform 0.4s ease;
}
.link_btn {
  width: 80%;
  max-width: 300px;
  border-radius: 30px;
  border: solid 2px #e1e1e1;
  justify-content: center;
  background: #fff;
  padding: 15px;
  align-items: center;
  background-image: url(/recruit/images/link_arrow.webp);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 35px;
  font-weight: 600;
}
.red_icon {
  padding: 2px 5px;
  line-height: 140%;
  color: #fff;
  background-color: #e60012;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 7px;
  margin: 0 2px 7px 2px;
}
.text_bold {
  font-size: 25px;
  font-weight: 600;
  line-height: 160%;
  padding: 0 0 5px 0;
}
.text_big {
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
}
.al_center {
  align-items: center;
}
.blank_b {
  padding-right: 23px;
  background-image: url(../images/blank_b.webp);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 99% 50%;
  padding-bottom: 4px;
}
.blank_w {
  padding-right: 23px;
  background-image: url(../images/blank_w.webp);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 99% 40%;
  padding-bottom: 4px;
}
.blank_box {
  display: flex;
  background-image: url(../images/blank_b.webp);
  background-repeat: no-repeat;
  background-size: 18px;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  background-position: 96% 97%;
}
.caption {
 display: block;
 width:100%;
 padding: 3px 0;
 font-size: 13px;
 min-height: 26px;
}
.tar {
  text-align: right;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
  justify-content: center;
}
.mts {
  margin-top: 1rem;
}
.mtm {
  margin-top: 3rem;
}
.mtl {
  margin-top: 4rem;
}
.mbs {
  margin-bottom: 3rem;
}
.mbm {
  margin-bottom: 1rem;
}
.mbl {
  margin-bottom: 4rem;
}
.ptm {
  padding-top: 3rem;
}
.pbm {
  padding-bottom: 4rem;
}
.pbl {
  padding-bottom: 5rem;
}
.w1200 {
  display: none;
}
.title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding: 2rem 0;
}
.title span {
  display: block;
  color: #e60012;
  font-size: 15px;
}
.title_m {
  text-align: center;
  font-size: 25px;
  padding: 0 0 3rem 0;
}
.title_s {
  font-weight: 600;
  font-size: 18px;
  padding: 5px 30px;
  border: solid 1px #000;
  display: inline-block;
  border-radius: 20px;
}
.redcircle {
  text-indent: -1em;
  padding: 0 0 0.5rem 1.5em;
  text-align: left;
  font-weight: 600;
  width: 100%;
  font-size: 21px;
  margin-bottom: 0;
}
.redcircle::before {
  content: "●";
  color: #e60012;
  font-size: 15px;
  margin: 0 5px 0 0;
}
.bg {
  background-color: #ffffff;
  background-image:
    linear-gradient(to right, #ffe5e4 1px, transparent 1px), linear-gradient(to bottom, #ffe5e4 1px, transparent 1px);
  background-size: 90px 90px;
}
.gray {
  background-color: #f7f9f8;
}
.aboutus {
  background-color: #f7f9f8;
  background-image: url(/recruit/images/aboutus_bg.webp);
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.white {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 3px 0px rgb(193 190 190 / 35%);
  padding: 1rem;
}
.text-box {
  line-height: 170%;
  position: relative;
  padding: 0 1rem;
}
.img-box {
  display: flex;
  justify-content: center;
 flex-wrap: wrap;
}
.img-box img {
  width: 100%;
  height: auto;
}
.img_br {
  border-radius: 10px;
}
.img_br_t {
  border-radius: 10px 10px 0 0;
  margin: 0 0 1rem 0;
}
.w20 {
  width: 20%;
  height: 100%;
}
.w30 {
  width: 30%;
  height: 100%;
}
.w40 {
  width: 40%;
  height: 100%;
}
.w50 {
  width: 50%;
  height: 100%;
}
.w60 {
  width: 60%;
  height: 100%;
  padding: 0 1rem;
}
.w70 {
  width: 70%;
  height: 100%;
  padding: 0 1rem 0 0;
}
.w80 {
  width: 80%;
  height: 100%;
  padding: 0 1rem;
}
.w100 {
  width: 100%;
}
.message_box {
  width: 100%;
  display: block;
}
.message_txt {
  margin: 15px auto;
  line-height: 170%;
  display: block;
  width: 95%;
}
.message_img {
  width: 26%;
}
.text-box h1 {
 font-size: 16px;
 font-weight: 400;
 line-height: 150%;
 margin: 0.5rem 0;
}
.flr {
  float: right;
  margin: 0.5rem 0 1.5rem 1.5rem;
}
.fll {
  float: left;
  margin: 0.5rem 1.5rem 1.5rem 0;
}
.message_sign {
  font-weight: 600;
  display: block;
  width: 95%;
  text-align: right;
  margin: 2rem auto 1rem auto;
}
.flwx_nw {
  flex-wrap: nowrap;
}
.jc_c {
  justify-content: center;
}
.pd0 {
  padding: 0;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 1200px) {
  .w1200 {
    display: block;
  }
}
@media (max-width: 1080px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .w60 {
    padding: 0;
  }
  .bg {
    background-size: 45px 45px;
  }
  .title {
    font-size: 24px;
    padding: 0.5rem 1rem 1rem 1rem;
  }
  .title_m {
    text-align: center;
    font-size: 22px;
    padding: 0 0 1rem 0;
  }
  .title_s {
    font-size: 16px;
    padding: 5px 20px;
    border: solid 1px #000;
    border-radius: 20px;
  }
  .redcircle {
    padding: 0 1rem 0.5rem 1em;
  }
  .mts {
    margin-top: 0 0.5rem;
  }
  .mtm {
    margin-top: 1.5rem;
  }
  .mtl {
    margin-top: 3rem;
  }
  .col {
    width: 100%;
  }
  .col2 {
    padding: 0;
    flex-wrap: wrap;
  }
  .col2 .colbox {
    width: 100%;
  }
  .colbox.text-box {
    width: 100%;
    line-height: 190%;
    position: relative;
  }
  .colbox.img-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: auto;
  }
  .colbox.img-box img {
    width: 100%;
    margin: 0 1rem;
  }
  .flwx_nw {
    flex-wrap: nowrap;
  }
  .aboutus {
    background-position: 100% 100%;
    background-size: 1200px;
  }
  .title_icon {
    width: 60px;
  }
  .white {
    padding: 1rem;
  }
}
@media (max-width: 767.999px) {
  .col3 {
    padding: 1rem;
    gap: 0.5rem;
  }
  .col3 .colbox {
    width: 100%;
  }
  .message_img {
    width: 90%;
    margin: 10px auto;
    max-width: 400px;
  }
  .message_txt {
    width: 100%;
    margin: 10px 0;
  }
  .fld_r {
    flex-direction: column-reverse;
  }
  .text_bold {
    font-size: 20px;
    padding: 5px 0;
  }
  .categorymenu {
    flex-wrap: wrap;
    padding: 1rem 0;
    line-height: 120%;
  }
  .redcircle {
    font-size: 18px;
    line-height: 120%;
  }
  .message_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .message_txt {
    width: 100%;
  }
  .message_img {
    width: 80%;
    margin: 1.5rem auto;
  }
  .flr {
    float: none;
  }
  .fll {
    float: none;
  }
}

/* ------------------------------
     slide - autoplay button & pagination
   ------------------------------ */

.staff_slide #swiper-toggle-autoplay {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  background: #333;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, opacity 0.3s;
  padding: 0;
}

.staff_slide #swiper-toggle-autoplay:hover {
  opacity: 0.8;
}

/* ボタンの中の共通設定 */
.staff_slide #swiper-toggle-autoplay span,
.staff_slide #swiper-toggle-autoplay span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ーーー 一時停止マーク ーーー */
.staff_slide #swiper-toggle-autoplay.stop-btn span {
  width: 8px;
  height: 10px;
  background: linear-gradient(
    to right,
    #fff 0%,    #fff 30%,
    transparent 30%, transparent 70%,
    #fff 70%,   #fff 100%
  );
}

.staff_slide #swiper-toggle-autoplay.stop-btn span::before {
  display: none;
}

/* ーーー 再生マーク ーーー */
.staff_slide #swiper-toggle-autoplay.start-btn span {
  width: 0;
  height: 0;
  background: transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
  margin-left: 1.5px;
}
.staff_slide #swiper-toggle-autoplay.start-btn span::before {
  display: none;
}