 /* :root{
      --main-color:#004fb3;
      --main-color-dark:#003b8a;
      --accent-color:#f2f6fa;
      --border-color:#d9dfe5;
      --text-color:#111;
      --muted:#666;
      --bg-color:#f6f7f9;
      --white:#fff;
    } */

  :root
{
    --black:#000;
    --white:#fff;
    --main-color:#0044A2;
    --sub-color-green:#1EBDCD;
    --sub-color-lb:#40B1E8;
    --accent-color:#FF7F00;
    --bg-color:#F2F7FA;
    --light-gray:#DADFE3;
}

body {
  -webkit-text-size-adjust: 100%;
}

    /* *{
      box-sizing:border-box;
    } */


    img{
      max-width:100%;
      height:auto;
      display:block;
    }

    a{
      color:inherit;
      text-decoration:none;
    }
/* 
    .anchor-nav{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:24px;
      margin-bottom:34px;
      font-size:13px;
      font-weight:700;
    }

    .anchor-nav a{
      display:flex;
      align-items:center;
      gap:8px;
    }

    .anchor-nav a::before{
      content:"";
      width:16px;
      height:16px;
      border-radius:4px;
      background:var(--main-color);
      position:relative;
      flex-shrink:0;
      box-shadow:inset 0 0 0 1px var(--main-color);
      background-image:
        linear-gradient(45deg, transparent 47%, #fff 47%, #fff 57%, transparent 57%),
        linear-gradient(-45deg, transparent 47%, #fff 47%, #fff 57%, transparent 57%);
      background-size:8px 8px, 8px 8px;
      background-position:center center, center center;
      background-repeat:no-repeat;
    } */

    .recruit-hero{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:38px;
      align-items: start;
      margin-bottom:56px;
    }

    .recruit-hero__image img{
      width:100%;
      border-radius:8px;
      object-fit:cover;
    }

    .recruit-hero__copy h1{
      margin:0 0 18px;
      font-size:30px;
      line-height:1.6;
      font-weight:700;
    }

    .recruit-hero__copy p{
      margin:0 0 22px;
      font-size:15px;
      line-height:2.1;
      font-weight:500;
    }

    .recruit-hero__buttons{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      max-width:520px;
      margin-top:28px;
    }

    .recruit-btn{
      position:relative;
      display:flex;
      justify-content:center;
      align-items:center;
      min-height:58px;
      padding:0 24px;
      border-radius:6px;
      background:var(--main-color);
      color:#fff;
      font-size:15px;
      font-weight:700;
      transition:.3s ease;
    }

    .recruit-btn::after{
      content:"";
      position:absolute;
      right:18px;
      top:50%;
      width:8px;
      height:8px;
      border-top:2px solid #fff;
      border-right:2px solid #fff;
      transform:translateY(-50%) rotate(45deg);
    }

    .recruit-btn:hover{
      /* background:var(--main-color-dark); */
      opacity: 0.7;
    }

    .section{
      margin-top:68px;
    }

    .section--bg{
      margin-left:calc(50% - 50vw);
      margin-right:calc(50% - 50vw);
      padding:64px 0;
      background:var(--bg-color);
    }

    .section__inner{
      width:min(1100px, calc(100% - 32px));
      margin:0 auto;
    }

    .section-title{
      margin:0 0 30px;
      text-align:center;
      font-size:30px;
      line-height:1.5;
      font-weight:700;
    }

    .section-lead{
      margin:0 0 25px;
      text-align:center;
      font-size:16px;
      line-height:2;
      font-weight:500;
    }

    .interview-grid{
      display:grid;
      /* grid-template-columns:repeat(3, 1fr); */
      grid-template-columns: 1fr;
      gap:20px;
    }

    

/* 

　　3列用コード

    .interview-card{
      display:block;
      background:#fff;
      border:1px solid var(--light-gray);
      border-radius:8px;
      overflow:hidden;
      transition:transform .3s ease, box-shadow .3s ease;
    }

    .interview-card:hover{
      transform:translateY(-4px);
      box-shadow:0 10px 24px rgba(0,0,0,.08);
    }

    .interview-card__image{
      position:relative;
      overflow:hidden;
      aspect-ratio: 4 / 5;
      background:#ddd;
    }

    .interview-card__image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .4s ease;
    }

    .interview-card:hover .interview-card__image img{
      transform:scale(1.04);
    }

    .interview-card__label{
      position:absolute;
      top:12px;
      left:0;
      z-index:2;
      display:inline-flex;
      align-items:center;
      padding:5px 20px;
      background:var(--main-color);
      color:#fff;
      font-size:18px;
      font-weight:700;
      border-radius: 0 5px 5px 0;
    }

    .interview-card__catch{
      position:absolute;
      left:18px;
      right:18px;
      bottom:18px;
      z-index:2;
      color:#fff;
      font-size:20px;
      line-height:1.8;
      font-weight:500;
    }

    .interview-card__image::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05) 45%, rgba(0,0,0,0));
    }

    .interview-card__body{
      position:relative;
      padding:16px 18px 18px;
    }

    .interview-card__name{
      margin:0 0 4px;
      font-size:24px;
      line-height:1.5;
      font-weight:700;
    }

    .interview-card__meta{
      margin:0;
      font-size:13px;
      color:#555;
      line-height:1.8;
      font-weight:500;
    }

    .interview-card__arrow{
      position:absolute;
      right:14px;
      bottom:14px;
      width:22px;
      height:22px;
      border-radius:4px;
      background:var(--main-color);
    }

    .interview-card__arrow::before{
      content:"";
      position:absolute;
      top:50%;
      left:45%;
      width:5px;
      height:5px;
      border-top:2px solid #fff;
      border-right:2px solid #fff;
      transform:translate(-50%, -50%) rotate(45deg);
    }
 */

 
    /* 1列のデザイン */
/* 
    .interview-card
    {
      display: grid;
      grid-template-columns: 0.9fr 1fr;
    }
    .interview-card__body
    {
      position: relative;
    }
    .interview-card__image{
      position:relative;
      overflow:hidden;
      height: 400px;
      background:#ddd;
      border-radius: 10px 0 0px 10px;
    }

    .interview-card__image img{
      width:100%;
      height:100%;
      object-fit:cover;
      object-position: top;
      transition:transform .4s ease;
    }

    .interview-card:hover .interview-card__image img{
      transform:scale(1.04);
    }

    .interview-card__catch
    {
      font-size: 28px;
      line-height: 1.6;
      padding-bottom: 20px;
      position: relative;
    }
        .interview-card__catch::after
    {
      content: "";
      width: 100px;
      height: 1px;
      background: var(--white);
      position: absolute;
      left: 0;
      bottom: 0;
    }
    .interview-card__name
    {
      padding-top: 10px;
    }


    .interview-card__label{
      position:absolute;
      top:12px;
      left:0;
      z-index:2;
      display:inline-flex;
      align-items:center;
      padding:5px 20px;
      background:var(--main-color);
      color:#fff;
      font-size:18px;
      font-weight:700;
      border-radius: 0 5px 5px 0;
    }
    .interview-card__body
    {
      background: var(--main-color);
      color: var(--white);
      box-sizing: border-box;
      border-radius: 0 10px 10px 0;
      padding: 30px 50px;
      display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    }

        .interview-card__arrow{
      position:absolute;
      right:18px;
      bottom:14px;
      width:40px;
      height:40px;
      border-radius:6px;
      background:var(--white);
    }

    .interview-card__arrow::before{
      content:"";
      position:absolute;
      top:50%;
      left:45%;
      width:12px;
      height:12px;
      border-top:2px solid var(--main-color);
      border-right:2px solid var(--main-color);
      transform:translate(-50%, -50%) rotate(45deg);
    }
 */
 .interview-card--text {
  display: grid;
  grid-template-columns: 150px 1fr;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.interview-card--text:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.interview-card__number {
  background: var(--main-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 24px;
}

.interview-card__number span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.interview-card__number strong {
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
}

.interview-card__body {
  position: relative;
  padding: 32px 56px 32px 32px;
  color: #222;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.interview-card__catch {
  font-size: 28px;
  line-height: 1.6;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
}

.interview-card__catch::after {
  content: "";
  width: 100px;
  height: 1px;
  background: var(--black);
  position: absolute;
  left: 0;
  bottom: 0;
}

.interview-card__name {
  font-size: 24px;
  font-weight: 500;
}

.interview-card__meta {
  color: #757575;
  font-weight: 500;
}


        .interview-card__arrow{
      position:absolute;
      right:18px;
      bottom:14px;
      width:40px;
      height:40px;
      border-radius:6px;
      background:var(--main-color);
    }

    .interview-card__arrow::before{
      content:"";
      position:absolute;
      top:50%;
      left:45%;
      width:12px;
      height:12px;
      border-top:2px solid var(--white);
      border-right:2px solid var(--white);
      transform:translate(-50%, -50%) rotate(45deg);
}

    

    .system-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:18px;
    }

    .system-card{
      background:#fff;
      border:1px solid var(--light-gray);
      border-radius:8px;
      /* padding:40px 20px; */
      padding-bottom: 7px;
      text-align:center;
      min-height:190px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-sizing: border-box;
      overflow: hidden;
    }
    .system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


    /* .system-card__icon{
      width:60px;
      height:60px;
      margin:0 auto 24px;
      border-radius:50%;
      display:flex;
      justify-content:center;
      align-items:center;
      font-size:34px;
    } */

    .system-card__icon{
      width:100%;
      height:200px;
      /* margin:0 auto 24px; */
      margin:0 auto 15px;
      border-radius:50%;
      display:flex;
      justify-content:center;
      align-items:center;
      font-size:34px;
    }
    .system-card__icon img
    {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .system-card h3{
      margin:0 0 8px;
      font-size:20px;
      line-height:1.6;
      font-weight:600;
    }

    .system-card p{
      margin:0;
      font-size:16px;
      line-height:1.8;
      color:#444;
      font-weight:500;
    }

    .recruit-tabs{
      display:flex;
      justify-content:center;
      gap:14px;
      margin-bottom:30px;
    }

    .recruit-tab{
      min-width:220px;
      min-height:54px;
      border-radius:6px;
      border:1px solid var(--main-color);
      background:#fff;
      color:var(--main-color);
      font-size:15px;
      font-weight:700;
      cursor:pointer;
      transition:.3s;
    }

    .recruit-tab.is-active{
      background:var(--main-color);
      color:#fff;
    }

    .recruit-panel{
      display:none;
    }

    .recruit-panel.is-active{
      display:block;
    }

    .recruit-table-wrap{
      border:1px solid var(--light-gray);
      border-radius:8px;
      overflow:hidden;
      background:#fff;
    }

    .recruit-table{
      width:100%;
      border-collapse:collapse;
      /* table-layout:fixed; */
    }

    .recruit-table th,
    .recruit-table td{
      border-bottom:1px solid var(--light-gray);
      padding:18px 18px;
      text-align:left;
      vertical-align:top;
      font-size:16px;
      line-height:2;
      font-weight:500;
    }

    .recruit-table tr:last-child th,
    .recruit-table tr:last-child td{
      border-bottom:none;
    }

    .recruit-table th{
      width:150px;
      background:#f3f7fa;
      font-weight:700;
    }

    .recruit-table ul{
      margin:0;
      /* padding-left:1.2em; */
      font-weight: 500;
    }

    .faq-list{
      margin-top:22px;
      border-top:1px solid var(--light-gray);
    }

    .faq-item{
      border-bottom:1px solid var(--light-gray);
    }

    .faq-question{
      position:relative;
      display:flex;
      align-items:center;
      gap:16px;
      width:100%;
      /* min-height:72px; */
      padding:25px 48px 25px 0;
      background:none;
      border:none;
      text-align:left;
      cursor:pointer;
      font-size:18px;
      font-weight:600;
      color: #000;
    }

    .faq-question__label{
      color:var(--main-color);
      font-weight:700;
      font-size:22px;
      flex-shrink:0;
    }

    .faq-question::after{
      content:"";
      position:absolute;
      right:10px;
      top:50%;
      width:10px;
      height:10px;
      border-right:2px solid #999;
      border-bottom:2px solid #999;
      transform:translateY(-70%) rotate(45deg);
      transition:.3s;
    }

    .faq-item.is-open .faq-question::after{
      transform:translateY(-30%) rotate(-135deg);
    }

    .faq-answer{
      display:none;
      padding:0 0 25px 0px;
      font-size:15px;
      line-height:2;
    }
    .faq-answer span
    {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 22px;
    }

    .faq-answer p
    {
      font-size: 16px;
    }

    .faq-item.is-open .faq-answer{
      display:flex;
      align-items: center;
      gap:16px;
    }



.contact-box {
  margin-top: 64px;
  border-radius: 12px;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 45px 40px;
}

/* 見出し */
.contact-box__lead {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 住所 */
.contact-box__address {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

/* 連絡先エリア */
.contact-box__contact {
  width: 100%;
  max-width: 640px;
  margin: 24px auto 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 12px;
  text-align: left;
  box-sizing: border-box;
}

/* TEL / Email 共通 */
.contact-box__tel,
.contact-box__email {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  line-height: 1.6;
}

/* 2行目との間 */
.contact-box__email {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
}

/* ラベル */
.contact-box__label {
  flex: 0 0 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 値 */
.contact-box__value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  word-break: break-all;
  color: #000;
}

/* 営業時間 */
.contact-box__hours {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}





    .interview-modal{
      position:fixed;
      inset:0;
      z-index:9999;
      display:none;
    }

    .interview-modal.is-open{
      display:block;
    }

    .interview-modal__overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.55);
    }

    .interview-modal__dialog{
      position:relative;
      width:min(1200px, calc(100% - 40px));
      max-height:calc(100vh - 40px);
      margin:20px auto;
      padding:48px 54px 40px;
      background:#fff;
      border-radius:14px;
      overflow-y:auto;
      box-sizing: border-box;

        display: flex;
        flex-direction: column;
    }
    .interview-modal-body
    {
      overflow-y: auto;
      flex: 1;
    }

    .interview-modal__close{
      position:absolute;
      top:14px;
      right:14px;
      width:64px;
      height:64px;
      border:none;
      border-radius:8px;
      background:var(--main-color);
      color:#fff;
      cursor:pointer;
      border: 2px solid var(--white);
      z-index: 10;
    }

    .interview-modal__close::before,
    .interview-modal__close::after{
      content:"";
      position:absolute;
      top:18px;
      left:50%;
      width:28px;
      height:2px;
      background:#fff;
      transform-origin:center;
    }

    .interview-modal__close::before{
      transform:translateX(-50%) rotate(45deg);
    }

    .interview-modal__close::after{
      transform:translateX(-50%) rotate(-45deg);
    }

    .interview-modal__close-text{
      position:absolute;
      left:50%;
      bottom:10px;
      transform:translateX(-50%);
      font-size:12px;
      font-weight:700;
      line-height:1;
    }

    .interview-modal__label{
      display:flex;
      align-items:center;
      gap:18px;
      margin:0 0 26px;
      color:var(--main-color);
      font-size:16px;
      font-weight:700;
    }

    .interview-modal__label::before{
      content:"";
      width:46px;
      height:1px;
      background:var(--main-color);
      flex-shrink:0;
    }

    .interview-modal__layout{
      display:grid;
      grid-template-columns:180px 1fr;
      gap:56px;
      align-items:start;
    }

    .interview-modal__image
    {
      position: sticky;
      top: 0px;
      align-self: start;
    }
    .interview-modal__image img{
      width:100%;
      border-radius:10px;
      object-fit:cover;
    }

    .interview-modal__title{
      margin:0 0 10px;
      font-size:30px;
      line-height:1.6;
      font-weight:700;
    }

    .interview-modal__meta{
      margin:0 0 28px;
      font-size:18px;
      line-height:1.8;
      font-weight:500;
    }

    .interview-modal__qa{
      margin-top:22px;
    }

    .interview-modal__qa-item + .interview-modal__qa-item{
      margin-top:24px;
    }

    .interview-modal__question{
      display:flex;
      align-items:center;
      gap:14px;
      min-height:68px;
      margin:0 0 14px;
      padding:0 18px;
      border-radius:8px;
      background:#edf3f7;
      font-size:22px;
      line-height:1.6;
      font-weight:700;
    }

    .interview-modal__question-label{
      color:var(--main-color);
      flex-shrink:0;
      font-weight: 700;
    }

    .interview-modal__answer{
      font-size:18px;
      line-height:2;
      font-weight:500;
      color:#222;
    }

    /* .interview-modal__answer p{
      margin:0 0 10px;
    } */

    body.is-locked{
      overflow:hidden;
    }


    .welfare-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

.welfare-modal.active {
  display: block;
}

.welfare-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.welfare-modal__content {
  gap: 20px;
  /* width: 100%;
  height: 100%; */
  background: #fff;
  width: min(500px, calc(100% - 40px));
    max-height: calc(100vh - 80px);
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 10px;
  box-sizing: border-box;
  overflow: auto;
}

.welfare-modal__body {
    /* position: relative; */
  /* max-width: 800px; */
  /* margin: 100px auto; */
    /* width: min(1000px, calc(100% - 40px)); */
    /* height: 50%; */
   position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-sizing: border-box;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); */
  box-sizing: border-box;

}
.welfare-modal__body_inner
{
  display: flex;
  align-items: flex-start;
      flex-direction: column;
  /* grid-template-columns: 1fr 1fr; */
  gap: 20px;
}


.welfare-modal__text {
  flex: 1;
}

.welfare-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  background: var(--main-color);
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--white);
  line-height: 1;
  z-index: 10;
  border: 2px solid var(--white);
}

.welfare-modal__image
{
  /* min-width: 30%; */
  /* width: 300px; */
  width: 100%;
  display: flex;
  justify-content: center;
    align-items: center;
    /* padding: 20px; */
}
.welfare-modal__image img {
  /* width: 100px; */
  width: 100%;
  border-radius: 8px;
}

.welfare-modal-title
{
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px dashed #000;
  margin-bottom: 15px;
}

.requirements h3
{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
}
.requirements h3::before
{
  content: "";
  width: 5px;
  height: 25px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}



    @media (max-width: 960px){
      .anchor-nav{
        grid-template-columns:repeat(2, 1fr);
        gap:14px 20px;
      }

      .recruit-hero{
        grid-template-columns:1fr;
      }

      /* .interview-grid,
      .system-grid{
        grid-template-columns:1fr 1fr;
      } */

      /* 3列の場合 */
       .interview-grid
        /* {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
       } 
       .interview-card__name
       {
        font-size: 18px;
       }
       .interview-card__arrow
       {
        display: none;
       }
       .interview-card__catch
       {
        font-size: 14px;
        line-height: 20px;
        left: 10px;
        right: 10px;
        bottom: 10px;
       }
       .interview-card__body
       {
        padding: 13px;
       }
       .interview-card__label
       {
        font-size: 12px;
        padding: 5px 10px;
        top: 0;
        border-radius: 0 0px 5px 0;
       } */

        /* 1列の場合 */
       .interview-grid
       {
        grid-template-columns: 1fr;
        gap: 10px;
       }
       .interview-card__image
       {
        height: 300px;
       }


      .interview-modal__layout{
        grid-template-columns:1fr;
        gap:28px;
      }

      .interview-modal__image{
        max-width:140px;
        position: relative;
      }
    }

    @media (max-width: 767px){
      .recruit-page{
        width:calc(100% - 20px);
        padding:20px 0 48px;
      }

      .anchor-nav{
        grid-template-columns:1fr 1fr;
        font-size:11px;
        gap:12px;
      }

      .recruit-hero{
        gap:24px;
        margin-bottom:40px;
      }
      .recruit-table th
      {
        width: 100px;
      }
      .recruit-table th,
      .recruit-table td
      {
        line-height: 1.5;
      }

      .recruit-hero__copy h1{
        font-size:28px;
      }

      .recruit-hero__copy p{
        font-size:14px;
      }

      .recruit-hero__buttons{
        grid-template-columns:1fr;
      }

      .section{
        margin-top:48px;
      }

      .section--bg{
        padding:44px 0;
      }

      .section-title{
        font-size:28px;
      }

      /* .interview-grid, */
      .system-grid{
        grid-template-columns:1fr 1fr;
        gap: 10px;
      }
        /* .interview-grid
       {
        grid-template-columns: 1fr;
       } */
      .system-card h3
      {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.4;
      }

      .system-card{
        min-height:auto;
        /* padding: 30px 15px; */
        padding: 0 0 7px 0;
      }
      .system-card p
      {
        font-size: 14px;
        line-height: 24px;
      }
      .recruit-table th, .recruit-table td
      {
        font-size: 14px;
        padding: 10px;
      }

   
       .contact-box {
    padding: 36px 20px;
  }

  .contact-box__lead {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-box__contact {
    padding: 18px 16px;
    margin: 20px auto 16px;
  }

  .contact-box__tel,
  .contact-box__email {
    display: block;
    text-align: center;
  }

  .contact-box__email {
    margin-top: 15px;
    padding-top: 0px;
    border: none;
  }

  .contact-box__label {
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 2px 10px;
    font-size: 15px;
  }

  .contact-box__value {
    display: block;
    font-size: 19px;
    line-height: 1.6;
  }


      .recruit-tabs{
        /* flex-direction:column; */
        align-items:center;
        margin-bottom: 20px;
      }

      .recruit-tab{
        width:100%;
        /* max-width:320px; */
        min-width:auto;
        min-height: 40px;
      }

      .recruit-table-wrap{
        overflow-x:auto;
      }

      /* .recruit-table{
        min-width:760px;
      } */

      .faq-question{
        min-height:58px;
        font-size:16px;
      }

      .faq-question__label,
      .faq-answer span
      {
        font-size:18px;
      }

      .faq-answer{
        padding-left:0px;
        font-size:14px;
      }



      .interview-modal__dialog{
        width:calc(100% - 20px);
        margin:40px auto;
        max-height:calc(100% - 80px);
        padding:34px 16px 24px;
      }
     

      .interview-modal__close{
        width:54px;
        height:54px;
      }

      .interview-modal__close::before,
      .interview-modal__close::after{
        top:16px;
        width:24px;
      }

      .interview-modal__label{
        margin-bottom:18px;
        font-size:14px;
      }

      .interview-modal__title{
        font-size:24px;
      }

      .interview-modal__meta{
        margin-bottom:18px;
        font-size:15px;
      }

      .interview-modal__question{
        /* min-height:56px; */
        min-height: auto;
        padding:10px 14px;
        font-size:18px;
      }

      .interview-modal__answer{
        font-size:15px;
      }
      .interview-modal__layout
      {
        justify-items: center;
      }




      .welfare-modal__content
      {
        /* height: 80vh; */
        display: flex;
        flex-direction: column;
        position: relative;
      }
      .welfare-modal__body
      {
        overflow-y: auto;
        padding: 25px;
        flex: 1;           
        overflow-y: auto; 
      }
      .welfare-modal__body_inner
      {
        flex-direction: column;
        gap: 15px;
      }
      .welfare-modal__close
      {
        top: 5px;
        right: 5px;
        /* border-radius: 0 5px 0 5px; */
      }
      .system-card__icon
      {
        aspect-ratio: 4/3;
        height: auto;
        margin: 0 auto 10px;
      }
      .welfare-modal__image
      {
        width: 100%;
      }
      .welfare-modal-title
      {
        font-size: 22px;
        padding-bottom: 10px;
        margin-bottom: 10px;
      }



      /* インタビュー　1列 */
    /* .interview-card
    {
      grid-template-columns: 1fr;
    }
    .interview-card__image
    {
      border-radius: 8px 8px 0 0;
    }
    .interview-card__body
    {
      border-radius: 0 0 8px 8px;
      padding: 20px 30px;
      gap: 5px;
    }
    .interview-card__catch
    {
      font-size: 20px;
      margin-bottom: 10px;
      position: relative;
    }
    .interview-card__image
    {
      height: 250px;
    }
     */

  .interview-card--text {
    grid-template-columns: auto 1fr;
  }

  .interview-card__number {
    padding: 12px;
    writing-mode: vertical-rl;
    flex-direction: inherit;
  }

  .interview-card__number strong {
    font-size: 18px;
    padding-top: 5px;
  }

  .interview-card__body {
    padding: 20px 30px 20px 20px;
    gap: 5px;
  }

  .interview-card__catch {
    font-size: 20px;
  }
    .interview-card__name
    {
      font-size: 20px;
      padding-top: 5px;
    }
    .interview-card__catch
    {
      padding-bottom: 10px;
    }
    .interview-card__arrow
    {
      width: 30px;
      height: 30px;
    }
    .interview-card__arrow::before
    {
      left: 40%;
    }
    
      
    }