html {
  scroll-padding-top: 95px;
}

:root {
  --c-text: #000000;
  --c-main: #399CCD;
  --c-blue: #205790;
  --c-white: #FFF;
  --c-gray: #909191;
}

.c-blue {
  color: var(--c-blue);
}
.c-gray{
    color: var(--c-gray);
  }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--c-text);
  line-height: 1.8;
}

a {
  color: var(--c-text);
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

section {
  padding: 70px 0;
}

/* 共通見出し */
.sub-h2 {
  font-size: 1.5rem;
}

.main-h2 {
  position: relative;
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 50px;
  z-index: 1;
}

.text-h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

.text-h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.sub-h4 {
  font-size: 1rem;
  color: #909191;
}

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 95px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.7);
}

.header-logo img {
  width: 300px;
  height: auto;
  position: relative;
  top: 10px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .navbar-brand {
  margin-right: auto;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link {
  white-space: nowrap;
  /* 採用情報が縦に折れないように */
}

@media (max-width: 992px) {
  .navbar-nav {
    display: none;
  }
}

/* ハンバーガーメニュー */
.navbar-toggler {
  border: none;
  background: #A2F6FF;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #399CCD 0%, #A2F6FF 100%);
  color: #fff;
  z-index: 2000;
  flex-direction: column;
  padding: 0.5rem 2rem;
  display: flex;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.full-screen-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.full-screen-menu .logo {
  margin-bottom: 2rem;
}

.full-screen-menu .close-btn {
  position: absolute;
  top: 0.9rem;
  right: 1.5rem;
  font-size: 2rem;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
}

.full-screen-menu nav a {
  display: block;
  font-size: 1.5rem;
  margin: 1rem 0;
  text-decoration: none;
  color: #fff;
}

.full-screen-menu .footer-info {
  margin-top: auto;
  font-size: 0.9rem;
  text-align: center;
}

.nav-item {
  margin-right: 5%;
}

.nav-item .dropdown-menu {
  width: 700px;
  min-height: 220px;
  box-shadow: 0 0 20px #A2F6FF;
  border: none;
  border-radius: 20px;
  left: -300px;
  right: 0;
}

.btn-main {
  background: var(--c-main);
  color: var(--c-white);
  width: 200px;
  height: 50px;
  line-height: 37px;
  border-radius: 30px;
}

.btn-main:hover {
  background: var(--c-white);
  color: var(--c-main);
  border: 1px solid var(--c-main);
}

/* hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 95px;
  left: 5%;
  width: 100%;
  height: 100%;
  background: url('../images/top/hero_bg.jpg') no-repeat center center/cover;
  border-radius: 40px 0 0 0;
  filter: blur(8px);
  transition: filter 0.8s ease;
  z-index: 0;
}

.hero-bg.active {
  filter: blur(0);
}

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #D9F4FF 100%);
  z-index: 10;
}

.hero-rect {
  position: absolute;
  opacity: 0;
  animation: fadeInUp 1s forwards;
  z-index: 20;
}
.hero-rect div {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.6;
  animation: floatUpDown 4s ease-in-out infinite;
}

.hero-rect.rect1 {
  width: 330px;
    height: 160px;
    bottom: 3%;
    left: -3%;
    animation-delay: 0s;
}
.hero-rect.rect2 {
  width: 280px;
    height: 140px;
    bottom: 20%;
    left: 13%;
    animation-delay: 0.3s;
}
.hero-rect.rect3 {
  width: 240px;
    height: 120px;
    bottom: 35%;
    left: 28%;
    animation-delay: 0.6s;
}
.hero-rect.rect4 {
  width: 190px;
    height: 100px;
    bottom: 48%;
    left: 43%;
    animation-delay: 0.9s;
}
.hero-rect.rect5 {
  width: 160px;
    height: 85px;
    bottom: 58%;
    left: 58%;
    animation-delay: 1.2s;
}
.hero-rect.rect6 {
  width: 140px;
    height: 70px;
    bottom: 68%;
    left: 70%;
    animation-delay: 1.5s;
}
.hero-rect.rect7 {
  width: 120px;
    height: 55px;
    bottom: 80%;
    left: 80%;
    animation-delay: 1.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-title {
  text-align-last: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 6rem;
  position: absolute;
  top: 15%;
  left: 5%;
  color: var(--c-text);
  text-shadow: 0 0 10px #fff;
  z-index: 50;
}

.hero-sub {
  font-size: 2rem;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-text);
  text-shadow: 0 0 10px #fff;
  z-index: 50;
}

@media (max-width: 768px) {
  .header-logo img {
    width: 80%;
    top: -15px;
  }

  .hero-title {
    font-size: 3.5rem;
    top: 25%;
  }

  .hero-sub {
    width: 90%;
    font-size: 1.2rem;
  }

  .hero-rect.rect1 {
    width: 180px;
    height: 95px;
  }
  .hero-rect.rect2 {
    width: 160px;
    height: 85px;
  }
  .hero-rect.rect3 {
    width: 140px;
    height: 75px;
  }
  .hero-rect.rect4 {
    width: 120px;
    height: 65px;
  }
  .hero-rect.rect5 {
    width: 100px;
    height: 55px;
  }
  .hero-rect.rect6 {
    width: 80px;
    height: 45px;
  }
  .hero-rect.rect7 {
    width: 60px;
    height: 35px;
  }
}

/* about */
#about {
  position: relative;
  padding: 70px 0 300px 0;
  background: linear-gradient(to bottom, #D9F4FF, #FFFFFF);
  margin-bottom: 100px;
}

#about h2,
#service h2 {
  margin-bottom: 20px;
}

#about img {
  position: absolute;
  top: 5%;
  right: 0;
  max-height: 420px;
  border-radius: 20px 0 0 20px;
}

@media (max-width: 768px) {
  #about img {
    position: static !important;
    margin-top: 1rem;
    display: block;
    max-width: 100%;
  }
}

/* service */
#service {
  position: relative;
  padding: 40px 0 100px 0;
  border-radius: 50% 50% / 5% 5%;
  background: linear-gradient(180deg, #399CCD 0%, #A2F6FF 100%);
  margin-bottom: 100px;
  color: var(--c-white);
}

#service:before {
  position: absolute;
  top: -200px;
  left: 0;
  height: 200px;
  background-color: #46A7D3;
  clip-path: ellipse(100% 100% at 15% 100%);
  content: "";
  display: block;
  -webkit-transform: scaleY(2) translateY(25%);
  transform: scaleY(2) translateY(25%);
  width: 100%;
}

.service-left {
  z-index: 10;
}

.service-left img {
  margin: 70px 0;
  max-width: 100%;
}

.service-box {
  background: var(--c-white);
  color: var(--c-text);
  border-radius: 20px;
  padding: 40px 80px 40px 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 0 20px #A2F6FF;
}

.service-icon {
  width: 60px;
  margin-right: 20px;
}

.btn-arrow {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: #A2F6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
}

.service-box .btn-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.btn-arrow:hover {
  background: #E0FFED;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.service-floating div {
  position: absolute;
  background: #A2F6FF;
  opacity: 0.7;
  border-radius: 20px;
  animation: floatUpDown 6s ease-in-out infinite;
}

.service-floating .rect1 {
  top: -10%;
  right: 10%;
  width: 305px;
  height: 150px;
}
.service-floating .rect2 {
  bottom: 7%;
  left: 5%;
  width: 305px;
  height: 150px;
}
.service-floating .rect3 {
  bottom: 14%;
  left: 15%;
  width: 205px;
  height: 105px;
  background: #C3F3FF;
}

@media (max-width: 768px) {
  #service {
    border-radius: 50% 50% / 2% 2%;
  }
  #service:before {
    clip-path: ellipse(115% 100% at 15% 100%);
  }

  .service-box {
    padding: 20px 20px 60px 20px;
  }

  .service-floating .rect1 {
    top: -10%;
    right: 2%;
    width: 205px;
    height: 105px;
  }
  .service-floating .rect2 {
    bottom: -4%;
    left: -15%;
    width: 250px;
    height: 130px;
  }
  .service-floating .rect3 {
    bottom: -1%;
    left: 15%;
    width: 205px;
    height: 105px;
  }
}

/* footer */
footer {
  background: #5A5A5A;
  color: var(--c-white);
}

.footer-top-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-top: 70px;
  padding-bottom: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #909191;
}

.footer-top-wrap a {
  flex: 1 1 200px;
  /* レスポンシブ対応 */
  text-decoration: none;
  color: inherit;
}

.footer-top-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #909191;
  color: #fff;
  min-height: 250px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform .3s ease;
}

.footer-top-box h3 {
  position: relative;
  z-index: 2;
  margin: 0;
}

.footer-top-box .btn-arrow {
  position: relative;
  z-index: 2;
}

/* 背景エフェクト */
.footer-top-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--c-blue);
  transition: left .4s ease;
  z-index: 1;
}

.footer-top-box:hover::before {
  left: 0;
}

@media (max-width: 768px) {
  .footer-top-wrap {
    flex-direction: column;
    gap: 15px;
  }

  .footer-top-box {
    min-height: 180px;
  }
}

a .footer-top-box h3 {
  border-left: 5px solid #FFF;
  padding-left: 15px;
  font-size: 1.5rem;
  color: var(--c-white);
}

.footer-logo-block img {
  height: 130px;
  margin-bottom: 20px;
}

.footer-logo-block p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-nav {
  margin: 1.2rem 0;
}
.footer-nav a {
  font-size: 14px;
  display: block;
  margin-left: 20px;
  margin-top: 15px;
  color: var(--c-white);
}

.footer-bottom {
  font-size: 14px;
  padding: 20px 0;
}

/* ============================================================================
=
下層ページ共通
========================================================================== */
/* First View */
#fv {
  position: relative;
  background-color: #EEF9FE;
  background-image: url('../images/common/img_page_bg.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 1316px 584px;
  padding-top: 200px;
  z-index: 20;
}

#fv img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.breadcrumb-custom {
  position: absolute;
  top: 75px;
  right: 20px;
  font-size: 14px;
}

.breadcrumb-custom a {
  color: var(--c-text);
  text-decoration: none;
}

.breadcrumb-custom span.current {
  color: var(--c-blue);
}

.fv-floating div {
  position: absolute;
  background: #A2F6FF;
  opacity: 0.7;
  border-radius: 20px;
  animation: floatUpDown 6s ease-in-out infinite;
  overflow: hidden;
}

.fv-floating .rect1 {
  top: 23%;
  right: 10%;
  width: 130px;
  height: 67px;
}
.fv-floating .rect2 {
  top: 37%;
  right: 13%;
  width: 255px;
  height: 128px;
}
.fv-floating .rect3 {
  bottom: 5%;
  left: 5%;
  width: 305px;
  height: 150px;
}
.fv-floating .rect4 {
  bottom: -5%;
  left: 15%;
  width: 205px;
  height: 105px;
  background: #C3F3FF;
}

#intro {
  position: relative;
  background: var(--c-main);
  color: var(--c-white);
  min-height: 670px;
  padding-top: 200px;
}
#intro::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  border-radius: 50%;
  background-color: #EEF9FE;
  z-index: 10;
}

#intro img {
  position: absolute;
  top: 200px;
  right: 0;
  max-height: 420px;
  border-radius: 20px 0 0 20px;
}

/* サイドナビ */
.side-nav {
  position: absolute;
  width: 220px;
  margin-left: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 9999;
}
.side-nav .nav-link {
  width: 100%;
  color: var(--c-gray);
  padding: .5rem 1rem;
  font-weight: 500;
}

.side-nav .nav-link.active,
.side-nav .nav-link:hover {
  color: var(--c-main);
  border-left: 3px solid var(--c-main);
  background: #f9f9f9;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  
  .fv-floating .rect1 {
      top: 30%;
      right: 1%;
      width: 130px;
      height: 67px;
    }
    .fv-floating .rect2 {
      top: 38%;
      right: 7%;
      width: 155px;
      height: 88px;
    }
    .fv-floating .rect3 {
      bottom: -3%;
      left: -5%;
      width: 205px;
      height: 100px;
    }
    .fv-floating .rect4 {
      bottom: -8%;
      left: 32%;
      width: 155px;
      height: 75px;
      background: #C3F3FF;
    }

    .breadcrumb-custom {
      top: -75px;
    }

    #intro::before {
      border-radius: 30%;
    }

    #intro img {
      position: static !important;
      margin-top: 1rem;
      display: block;
      max-width: 100%;
    }

}

/* =============================================================================
事業部
========================================================================== */

#c_service {
  background: linear-gradient(180deg, #399CCD 0%, #A2F6FF 100%);
  color: var(--c-white);
}

.c_service-box {
  margin-bottom: 60px;
}

.c_service-box {
  background: var(--c-white);
  color: var(--c-text);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 0 20px #A2F6FF;
}

.c_service-box img {
  border-radius: 20px;
  width: 100%;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.service-header img {
  width: 140px;
  height: auto;
  opacity: 0.2;
  border-radius: 0;
}

/* =============================================================================
トップメッセージ
========================================================================== */

#message {
  background: var(--c-white);
}

.message-box {
  margin-bottom: 60px;
}

.message-box img {
  width: 100%;
  margin-bottom: 1rem;
}

/* =============================================================================
会社概要
========================================================================== */

/* Overview */
#overview {
  position: relative;
  background: linear-gradient(180deg, #399CCD 0%, #A2F6FF 100%);
  min-height: 670px;
  padding-top: 200px;
}
  
#overview::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  border-radius: 50%;
  background-color: #EEF9FE;
  z-index: 10;
}

#overview .container{
  background: rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  padding: 70px;
}

.overview-table td {
  padding: 20px 20px;
  vertical-align: top;
}

.overview-table td:first-child {
  font-weight: bold;
  width: 30%;
  border-right: 1px solid var(--c-gray);
}

@media (max-width: 768px) {
  #overview .container {
    padding: 70px 20px;
  }
}

  /* =============================================================================
研修プログラム作成支援
========================================================================== */
.container-2col {
  flex-grow: 1;
  max-width: 853px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Policy --- */
#policy {
  position: relative;
  background: var(--c-main);
  color: var(--c-white);
  border-bottom-left-radius: 50% 100px;
  border-bottom-right-radius: 50% 100px;
  padding-bottom: 150px;
}

/* Member */
.member-role {
  font-size: 0.9rem;
  color: var(--c-gray);
  margin-top: 1rem;
}

.member li {
  margin-left: 20px;
  list-style: disc;
}

/* --- Project --- */
#project {
  position: relative;
  background: #F7F7F7;
  z-index: -1;
}

.project-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
}

.project-text {
  flex: 1;
  margin-top: 20px;
}

.project-text li::before {
  content: "✔";
  color: var(--c-main);
  margin-right: 10px;
}

.project-img {
  flex: 1;
}

.project-img img {
  width: 116px;
  height: 116px;
  object-fit: cover;
}

.circle-num {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-main);
  color: var(--c-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 30px;
  position: relative;
  line-height: 40px;
}
.circle-num span {
  border-bottom: 1px solid var(--c-white);
}
.circle-num.v-line::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 200px;
  background: var(--c-main);
}
.circle-num.v-line2::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 90px;
  background: var(--c-main);
}

@media (max-width: 768px) {

#policy {
    border-bottom-left-radius: 100% 100px;
    border-bottom-right-radius: 100% 100px;
  }

.project-text {
    flex: 1;
    margin-top: 60px;
  }
.circle-num {
    margin: 0 10px;
  }
.circle-num::after {
  bottom: -320px;
  height: 320px;
}
}

.term {
  display: inline-block;
  background: var(--c-main);
  color: var(--c-white);
  border-radius: 20px;
  padding: 3px 15px;
  font-size: 0.9rem;
}

/* --- Flow Grid --- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, auto);
  /* PC時は flow-box3 + icon2 */
  gap: 30px 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.flow-grid .flow-box {
  width: 217px;
  height: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 20px #A2F6FF;
}

.flow-grid .flow-box img {
  max-width: 80%;
  max-height: 100px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.flow-grid .icon {
  color: #D9D9D9;
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .flow-grid {
    grid-template-columns: 1fr;
    /* 1列 */
    justify-items: center;
    gap: 0;
  }

  .flow-grid .icon {
    transform: rotate(90deg);
    /* 矢印を縦向きに */
    margin: 10px 0;
  }
}

/* --- Q&A --- */
#qa {
  background: #F5F5F5;
}

.qa-question {
  padding: 50px 0;
}

.qa-item {
  border-bottom: 1px solid var(--c-gray);
  padding: 20px 0;
  cursor: pointer;
}
.qa-item i{
  font-size: 2rem;
}

.q-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-main);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 36px;
  font-family: 'Montserrat',
    sans-serif;
}

.qa-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}

.qa-answer {
  display: none;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}

.qa-answer .a-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-main);
  color: var(--c-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 36px;
  font-family: 'Montserrat',
    sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

/* --- Voice --- */
#voice {
  background: #EFFDFF;
}

#voice .voice-text {
  padding: 20px;
}

  /* =============================================================================
採用情報
========================================================================== */
  /* ボックス */
  .recruit-h2 {
    font-size: 2.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 40px;
  }
  .recruit-h3 {
    font-size: 1.3rem;
    color: var(--c-blue);
    margin-bottom: 0px;
    font-weight: bold;
  }

  .feature-box {
    border: 1px solid var(--c-blue);
    background: #EFFDFF;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
  }

  .feature-box .text-h2 {
    color: var(--c-blue);
    margin-bottom: 10px;
  }

  .job-box {
    border: 1px solid var(--c-blue);
    background: #FFF;
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .job-box img {
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
  }

  .job-box li::before {
    content: "✔";
    color: var(--c-main);
    margin-right: 10px;
  }

  /* 選考プロセス */
    .process-flow {
      display: flex;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 0;
      /* ボックスをピッタリ繋げる */
      overflow-x: auto;
    }
  
    .arrow-box {
      position: relative;
      min-width: 200px;
      height: 240px;
      background: #EEF9FE;
      clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: 'Noto Sans JP', sans-serif;
      position: relative;
      margin-right: 10px;
    }
  
    .arrow-box .circle-num {
      position: absolute;
      top: 0;
      left: 15%;
    }
    .arrow-box .recruit-h3 {
      padding-top: 40px;
    }
  
    /* 最後だけ矢印を外す */
    .arrow-box.last {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  
    @media(max-width: 767px) {
      .process-flow {
        flex-direction: column;
        align-items: center;
      }
  
      .arrow-box {
        min-width: 300px;
        height: 200px;
        margin-right: 0;
        margin-bottom: 10px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
      }

      .arrow-box .circle-num {
        position: absolute;
        top: 0;
        left: 34%;
      }
  
      .arrow-box.last {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      }
    }

  /* エントリー方法 */
  .entry-table {
    width: 100%;
    border-top: 1px solid var(--c-gray);
    border-bottom: 1px solid var(--c-gray);
  }

  .entry-table th,
  .entry-table td {
    padding: 15px;
    border-top: 1px solid var(--c-gray);
  }

 /* =============================================================================
お問い合わせ
========================================================================== */
/* フォーム全体 */
.contact-form .form-group {
  border-top: 1px solid var(--c-gray);
  padding: 18px 0;
}

.contact-form .form-group:last-of-type {
  border-bottom: 1px solid var(--c-gray);
}

/* 必須マーク */
.required {
  background: var(--c-main);
  color: var(--c-white);
  font-size: 0.8rem;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
}

/* インプット・テキストエリア */
.contact-form .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #f8f8f8;
  padding: 10px 14px;
}

.contact-form .form-control:focus {
  border-color: var(--c-main);
  box-shadow: 0 0 0 2px rgba(57, 156, 205, 0.2);
}

/* ラベル調整 */
.contact-form .col-form-label {
  font-weight: bold;
  padding-top: 18px;
  padding-bottom: 18px;
}

.contact-form .form-check {
  margin-bottom: 10px;
}

.contact-form .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  transform: scale(1.3);
  vertical-align: middle;
}

.contact-form .form-check-label {
  font-size: 1rem;
  margin-left: 5px;
}

/* ボタン */
.btn-main.btn-contact {
  width: 400px;
  max-width: 90%;
}