/*追加CSS*/
/* =====================================================
   共通
===================================================== */
/* テキスト（大きさ/太さ/色） */
.main p {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 20px;
}
.main .fwB01 {
    font-weight: bold;
    color: #0041B1;
}
.main .fwB02 {
    font-weight: bold;
    color: #CF112A;
}
.main .note {
  font-size: 1.5rem;
}
.main .bgBox01 {
    background: #F2F2F2;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 10px;
}
.main .bgBox02 {
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 10px;
    border: #989898 1px solid;
}
.main .bgBox01 p:last-child, .main .bgBox02 p:last-child {
    margin: 0;
}
@media (max-width: 767px) {
    .main p {
        font-size: 1.6rem;
        line-height: 1.8;
      margin-bottom: 15px;
    }
    .main .note {
    font-size: 1.3rem;
    }
  .main .bgBox01, .main .bgBox02 {
      padding: 15px 15px;
      margin: 16px 0;
      border-radius: 6px;
  }
}

/* 見出し */
.main .heading-lv1-detail {
  font-size: 3.2rem;
}
.main .heading-lv2 {
  font-size: 2.4rem;
  padding: 14px 20px;
  background: #EAF2FF;
  border-left: 4px solid #0041B1;
  margin: 80px 0 24px;
  color: #0041B1;
}
.main .heading-lv3 {
  font-size: 2.2rem;
  margin: 30px 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px #111111 solid;
}
.main .heading-lv4 {
  font-size: 2rem;
  margin: 24px 0 10px;
  border-left: 2px #111111 solid;
  padding-left: 12px;
}
.main .heading-lv5 {
  font-size: 2rem;
  margin: 20px 0 10px;
}
@media (max-width: 767px) {
    .main .heading-lv1-detail {
    font-size: 2.4rem;
  }
    .main .heading-lv2 {
    font-size: 2rem;
    padding: 10px 12px 10px 15px;
    margin: 60px 0 15px;
  }
  .main .heading-lv3 {
    font-size: 1.9rem;
    margin-top: 24px;
    padding-bottom: 12px;
  }
  .main .heading-lv4 {
    font-size: 1.8rem;
  }
  .main .heading-lv5 {
    font-size: 1.6rem;
  }
}

/* 見出し　条件下のマージン */
.main .container > .heading-lv2:first-child {
  margin: 20px 0;
}
.main .col2 .heading-lv3:first-child, .main .col2 .heading-lv4:first-child, .main .col2 .heading-lv5:first-child {
  margin: 0 0 8px;
}

/* リスト */
.main .list {
  padding-left: 24px;
  margin: 0 0 24px;
  font-size: 1.8rem;
}
.main .list li {
  margin-bottom: 10px;
  list-style: disc;
}
.main .list-number {
  padding-left: 24px;
  margin: 0 0 24px;
  font-size: 1.8rem;
}
.main .list-number li {
  margin-bottom: 10px;
}
.main .list-note {
  list-style: none;
  margin: 16px 0;
}
.main .list-note li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.main .list-note li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}
.main .list-square {
  list-style: none;
  margin: 6px 0;
}
.main .list-square li {
  position: relative;
  padding-left: 1.2em;
  margin: 2px 0;
}
.main .list-square li::before {
  content: "\25A0"; /* ■ */
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}
.main .list-highlight li {
  position: relative;
  padding-left: 32px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 12px;
  background: url("/common/img/icon_check-circle.svg") no-repeat left 2px;
  background-size: 24px 24px;
}
.main .list-link {
  margin: 0 0 24px;
}
.main .list-link li{
  margin-bottom: 10px;
}
.main .list-link li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: url("/common/img/icon_arrow.svg") no-repeat;
  background-size: 100% auto;
  width: 20px;
  height: 20px;
}
.main .list-link li a {
  position: relative;
  display: inline-block;
  padding-left: 1.4em;
  color: #0041B1;
  font-size: 1.8rem;
  text-decoration: underline;
  word-break: break-all;
}
.main .list-link li a:hover {
  text-decoration: none;
}
.main .list-thumbLink {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 48px;
  margin: 15px auto;
}
.main .list-thumbLink h3{
  color: #0041B1;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 16px 0 6px;
  text-decoration: underline;
}
.main .list-thumbLink p{
  font-size: 1.6rem;
}
.main .list-thumbLink h3::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  background: url("/common/img/icon_arrow.svg") no-repeat center / contain;
  vertical-align: middle;
  margin-bottom: 4px;
}
.main .list-thumbLink a:hover h3{
  text-decoration: none;
}
.main .list-thumbLink p{
  line-height: 1.8;
}
@media (max-width: 767px) {
    .main .list, .main .list-number {
    padding-left: 24px;
    margin: 0 0 20px;
    font-size: 1.6rem;
  }
    .main .list-square li {
    font-size: 1.4rem;
    }
    .main .list-highlight li {
    padding-left: 26px;
    background-size: 22px 22px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .main .list-link {
      margin: 0 0 20px;
  }
  .main .list-link li a::before {
    top: 2px;
  }
  .main .list-link li a {
  font-size: 1.6rem;
  }
  .main .list-thumbLink {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .main .list-thumbLink h3{
    font-size: 1.6rem;
    margin: 12px 0 2px;
  }
    .main .list-thumbLink p{
    font-size: 1.4rem;
  }
}

/* カラム */
.main .layout-C{
  text-align: center;
}
.main .layout-R{
  text-align: right;
}
.main .col2 {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 30px auto;
}
.main .col2 .image {
  width: 400px;
  flex-shrink: 0;
}
.main .col2.sizeSS .image {
  width: 160px;
}
.main .col2.sizeS .image {
  width: 240px;
}
.main .col2.sizeSM .image {
  width: 320px;
}
.main .col2.sizeL .image {
  width: 585px;
}
.main .col2 .image img {
  width: 100%;
  height: auto;
  display: block;
}
.main .col2 .content {
  display: flex;
  flex-direction: column;
}
.main .col2.half .content {
  width: 50%;
}
.main .full-img {
  margin: 30px auto;
}
.main .full-img img{
  margin: auto;
}
.main .flex-row{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
}
.main .flex-row p{
  margin: 0;
}
@media screen and (max-width: 768px) {
  .main .col2 {
    flex-direction: column;
    gap: 16px;
  }
  .main .col2.sizeSS .image,.main .col2.sizeS .image {
    margin: auto;
  }
  .main .col2 .image, .main .col2.sizeSM .image, .main .col2.sizeL .image {
    width: 100%;
  }
  .main .col2 .content {
    gap: 6px;
  }
.main .col2.half .content {
  width: 100%;
}
.main .flex-row{
  flex-direction: column;
  gap: 0;
  margin: 20px auto;
}
}

/* リンク・ボタン */
.main p a,.main li a {
    color: #0041B1;
    text-decoration: underline;
}
.main p a:hover,.main li a:hover {
    text-decoration: none;
}
.main .blank::after{
    content: "";
    background: url("/common/img/icon_blank.svg") no-repeat 4px -1px;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.main .pdf::after{
    content: "";
    background: url("/common/img/icon_pdf.svg") no-repeat 6px -3px;
    width: 30px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.main .bottom-btn {
    margin: 60px auto 0;
    text-align: center;
}
.main .btn{
    background: #111;
    color: #ffffff;
    padding: 10px 44px 10px 34px;
    border: #111 1px solid;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    line-height: 1.6;
}
.main .btn::after{
    content: "";
    background: url("/common/img/icon_arrow-white.svg") no-repeat 4px;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
}
.main .btn.long{
    width: 480px;
}
.main .btn:hover{
    background: #fff;
    color: #111;
}
.main .btn:hover::after{
    background: url("/common/img/icon_arrow-black.svg") no-repeat 4px;
}
.main .btn.back{
    border: 1px #989898 solid;
    padding: 10px 34px;
    background: #fff;
    color: #111;
    font-weight: normal;
}
.main .btn.back:hover{
    background: #DCDCDC;
}
.main .btn.back::after {
    display: none;
}
.main .btn.primary{
  font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 2;
    background: linear-gradient(90deg, #e51f41, #810104);
    border: none;
}
.main .btn.primary:hover{
    background: #7E0002;
    color: #fff;
    transition: none !important;
}
.main .btn.primary:hover::after{
    background: url("/common/img/icon_arrow-white.svg") no-repeat 4px;
}
.main .btn.contact{
    background-color: #0041B1;
    border: #0041B1 1px solid;
}
.main .btn.contact:hover{
    background-color: #fff;
    border: #0041B1 1px solid;
    color: #0041B1;
}
.main .btn.contact:hover::after{
    background: url("/common/img/icon_arrow.svg") no-repeat 4px;
}
.main .btn.blank, .main .btn.pdf{
    padding: 10px 50px 10px 30px;
}
.main .btn.blank::after{
    content: "";
    background: url("/common/img/icon_blank-white.svg") no-repeat;
    width: 22px;
    height: 22px;
    margin-right: 0;
    background-size: 94%;
}
.main .btn.blank:hover::after{
    background: url("/common/img/icon_blank.svg") no-repeat;
    background-size: 94%;
}
.main .btn.pdf::after{
    content: "";
    background: url("/common/img/icon_pdf-white.svg") no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 0;
    background-size: 94%;
}
.main .btn.pdf:hover::after{
    background: url("/common/img/icon_pdf.svg") no-repeat;
    background-size: 92%;
}
.main .btn.back.blank::after{
    background: url("/common/img/icon_blank.svg") no-repeat;
    display: inline-block;
    background-size: 94%;
}
.main .back.back.pdf::after{
    background: url("/common/img/icon_pdf.svg") no-repeat;
    display: inline-block;
    background-size: 92%;
}
.main .btn-anchor {
  display: flex;
  gap: 16px;
}
.main .btn-anchor li {
  flex: 1 1 0;
  min-width: 240px;
}
.main .btn-anchor li a {
  width: 100%;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #111;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #111;
  text-decoration: none;
}
.main .btn-anchor li a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/common/img/icon_drop.svg");
}
.main .btn-anchor li a:hover {
  background: #DCDCDC;;
}
@media (max-width: 767px) {
  .main .blank::after{
    width: 22px;
    height: 22px;
    margin-right: 6px;
    background-size: 20px;
}
.main .pdf::after{
    width: 28px;
    height: 20px;
    margin-right: 8px;
    background-size: 22px;
}

  .main .bottom-btn {
      margin: 30px auto 0;
  }
  .main a.btn.long{
      width: 100%;
  }
  .main .btn-anchor {
    gap: 8px;
  }
  .main .btn-anchor li {
    min-width: 0;
  }
  .main .btn-anchor li a {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 0;
    font-size: 1.4rem;
    padding: 10px 0;
  }
  .main .btn-anchor li a::after {
    width: 16px;
    height: 16px;
  }
}


/* テーブル */
.main .job-table {
  margin-top: 36px;
}
.main .job-table table {
  border: 1px solid #BCBCBC;
  margin: 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.main .job-table table th {
    border: 1px solid #c8c8c8;
    background: #F2F2F2;
    padding: 20px;
    vertical-align: middle;
    text-align: left;
}
.main .job-table table th:first-child{
    width: 160px;
}
.main .job-table.sizeM table th:first-child{
    width: 240px;
}
.main .job-table.sizeL table th:first-child{
    width: 320px;
}
.main .job-table table td {
    border: 1px solid #c8c8c8;
    padding: 20px;
    vertical-align: middle;
}
.main .job-table table td p, .main .job-table table td li {
  font-size: 1.6rem;
}
.main .job-table table .list-note li {
  font-size: 1.4rem;
}
.main .job-table table td p:last-child {
  margin-bottom: 0;
}
.main .job-table table td p.bold {
  font-weight: bold;
}
@media (max-width: 767px) {
  .main .job-table {
    margin-top: 16px;
  }
  .main .job-table table {
    width: 100%;
    border: none;
    border-top: 1px solid #c8c8c8;
    display: table;
  }
  .main .job-table table th {
    display: block;
    padding: 10px;
    border: none;
    border-left: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    font-size: 1.4rem;
    padding: 6px 14px;
  }
  .main .job-table table th:first-child, .main .job-table.sizeM table th:first-child, .main .job-table.sizeL table th:first-child{
    width: 100%;
  }
    .main .job-table table td {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-left: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    padding: 8px 14px 16px;
  }
  .main .job-table table td p, .main .job-table table td li {
    font-size: 1.4rem;
  }
  .main .job-table table .list-note li {
  font-size: 1.2rem;
}
  /* ===== PCレイアウト固定テーブル ===== */
  .main .pcfix table {
    display: table;
    width: 100%;
    border: 1px solid #c8c8c8;
    table-layout: fixed;
  }
  .main .pcfix table thead {
    display: table-header-group;
  }
  .main .pcfix table tbody {
    display: table-row-group;
  }
  .main .pcfix table tr {
    display: table-row;
  }
  .main .job-table.pcfix table th:first-child{
    width: 80px;
  }
  .main .job-table.sizeM.pcfix table th:first-child{
    width: 100px;
  }
  .main .job-table.sizeL.pcfix table th:first-child{
    width: 120px;
  }
  .main .pcfix table th,
  .main .pcfix table td {
    display: table-cell;
    width: auto;
    padding: 12px 10px;
    font-size: 1.4rem;
    border: 1px solid #c8c8c8;
    white-space: normal;     /* 自然改行 */
    word-break: break-all;   /* 日本語折り返し */
    vertical-align: middle;
  }
}


/* 下層H1 */
.page-hero {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  background-color: #4f3c1e;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2000px auto;
  margin-top: 104px;
}
.page-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 3.4rem;
  line-height: 1.6;
  max-width: 640px;
  color: #fff;
  word-break: break-word;
}
@media (max-width: 767px) {
  .page-hero {
    height: 200px;
    background-size: cover;
    margin-top: 60px;
  }
  .page-hero__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-hero h1 {
    font-size: 2.2rem;
    max-width: 235px;
  }
}

/* 下層H1　画像指定 */
.hero-news {
  background-image: url("/common/img/news/h1-news.jpg");
}
@media (max-width: 767px) {
  .hero-news {
    background-image: url("/common/img/news/h1-news-sp.jpg");
  }
}
.hero-information {
  background-image: url("/common/img/information/h1-information.jpg");
}
@media (max-width: 767px) {
  .hero-information {
    background-image: url("/common/img/information/h1-information-sp.jpg");
  }
}
.hero-working {
  background-image: url("/common/img/working/h1-working.jpg");
}
@media (max-width: 767px) {
  .hero-working {
    background-image: url("/common/img/working/h1-working-sp.jpg");
  }
}
.hero-flow {
  background-image: url("/common/img/flow/h1-flow.jpg");
}
@media (max-width: 767px) {
  .hero-flow {
    background-image: url("/common/img/flow/h1-flow-sp.jpg");
  }
}
.hero-recruit {
  background-image: url("/common/img/recruit/h1-recruit.jpg");
}
@media (max-width: 767px) {
  .hero-recruit {
    background-image: url("/common/img/recruit/h1-recruit-sp.jpg");
  }
}
.hero-outline {
  background-image: url("/common/img/outline/h1-outline.jpg");
}
@media (max-width: 767px) {
  .hero-recruit {
    background-image: url("/common/img/outline/h1-outline-sp.jpg");
  }
}
.hero-specials {
  background-image: url("/common/img/specials/h1-specials.jpg");
}
@media (max-width: 767px) {
  .hero-specials {
    background-image: url("/common/img/specials/h1-specials-sp.jpg");
  }
}
.hero-compliance {
  background-image: url("/common/img/compliance/h1-compliance.jpg");
}
@media (max-width: 767px) {
  .hero-specials {
    background-image: url("/common/img/compliance/h1-compliance-sp.jpg");
  }
}
.hero-sitemap {
  background-image: url("/common/img/sitemap/h1-sitemap.jpg");
}
@media (max-width: 767px) {
  .hero-sitemap {
    background-image: url("/common/img/sitemap/h1-sitemap-sp.jpg");
  }
}
.hero-sdgs {
  background-image: url("/common/img/sdgs/h1-sdgs.jpg");
}
@media (max-width: 767px) {
  .hero-sdgs {
    background-image: url("/common/img/sdgs/h1-sdgs-sp.jpg");
  }
}
.hero-contact {
  background-image: url("/common/img/contact/h1-contact.jpg");
}
@media (max-width: 767px) {
  .hero-contact {
    background-image: url("/common/img/contact/h1-contact-sp.jpg");
  }
}

/* パンくずリスト */
.breadcrumb {
  width: 100%;
  background: #fff;
  position: relative;
}
.breadcrumb .container {
    padding: 0;
}
.breadcrumb.detail {
  background: #F2F2F2;
  margin-top: 104px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
}
.breadcrumb ol::-webkit-scrollbar {
  display: none;             /* Chrome, Safari */
}
.breadcrumb.detail ol {
  padding: 16px 0;
}
.breadcrumb li {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.breadcrumb li::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  background: url("/common/img/icon_arrow-gray.svg") no-repeat center / contain;
}
.breadcrumb li[aria-current="page"]::after {
  display: none;
}
.breadcrumb a {
  text-decoration: underline;
}
.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb img {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .breadcrumb.detail {
    margin-top: 60px;
  }
  .breadcrumb ol {
    padding: 12px 0 0;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb.detail ol {
    padding: 12px 0;
  }
  .breadcrumb li {
    font-size: 1.3rem;
  }
  .breadcrumb li:first-child {
    padding-left: 12px;
  }
  .breadcrumb li::after {
    margin: 0 6px;
  }
}


/* 下層コンテンツエリア */
.main{
    padding: 40px 0 100px;
    background: #fff;
}
.main.sizeS{
    padding: 40px 0;
}
@media (max-width: 767px) {
.main{
    padding: 20px 0 60px;
}
}

/* 下層ページ下部 CTAリンクエリア */
.cta-area {
  display: flex;
  width: 100%;
  padding: 0 0 100px;
  background: #fff;
}
.cta-area .item {
  flex: 1;
  min-height: 300px;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
}
.cta-area .item-inner {
  margin-left: clamp(40px, 6vw, 80px);
  text-align: left;
}
.cta-area .item.contact .item-inner {
  text-align: center;
  margin: auto;
}
.cta-area .item-inner p{
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  line-height: 1.8;
}
.cta-area .item.cvt {
  background: url("/common/img/bgImg-cv01.jpg") no-repeat center / cover;
}
.cta-area .item.search {
  background: url("/common/img/bgImg-cv02.jpg") no-repeat center / cover;
}
.cta-area .item.contact {
  background: url("/common/img/bgImg-cv03.jpg") no-repeat center / cover;
}
.cta-area .item.search .btn {
  background: none;
  border: 1px #fff solid;
  padding: 14px 50px 14px 30px;
  color: #ffffff;
  border-radius: 60px;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  line-height: 1.6;
  gap: 8px;
  margin: 20px auto;
}
.cta-area .item.search .btn:after {
    content: "";
    background: url(/common/img/icon_arrow-white.svg) no-repeat 4px;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
}
.cta-area .item.search .btn:hover {
  background: #0041B1;
  color: #fff;
  border: 1px #0041B1 solid;
}
.cta-area .item.search .btn:hover::after {
    background: url("/common/img/icon_arrow-white.svg") no-repeat 4px;
}
.cta-area .btn.primary{
  padding: 10px 50px 10px 30px;
  color: #ffffff;
  border-radius: 60px;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 2;
  background: linear-gradient(90deg, #e51f41, #810104);
  border: none;
  margin: 20px auto;
}
.cta-area .btn.primary::after{
    content: "";
    background: url(/common/img/icon_arrow-white.svg) no-repeat 4px;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
}
.cta-area .btn.primary:hover{
    background: #7E0002;
    color: #fff;
    transition: none !important;
}
.cta-area .btn.primary:hover::after{
    background: url("/common/img/icon_arrow-white.svg") no-repeat 4px;
}
.cta-area a.btn.contact{
  margin: 20px auto;
  background-color: #0041B1;
    border: #0041B1 1px solid;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    line-height: 1.6;
    padding: 14px 48px 14px 34px;
}
.cta-area a.btn.contact::after{
  content: "";
    background: url(/common/img/icon_arrow-white.svg) no-repeat 4px;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
}
.cta-area a.btn.contact:hover{
    background-color: #fff;
    border: #0041B1 1px solid;
    color: #0041B1;
}
.cta-area a.btn.contact:hover::after{
    background: url("/common/img/icon_arrow.svg") no-repeat 4px;
}
@media screen and (max-width: 768px) {
  .cta-area {
    flex-direction: column;
  }
.cta-area .item {
  min-height: 200px;
}
.cta-area .item-inner {
  margin-left: clamp(20px, 3vw, 40px);
}
.cta-area .item-inner p{
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.cta-area .btn{
  margin: 0;
}
.cta-area a.btn.primary{
  font-size: 1.6rem;
    padding: 10px 48px 10px 15px;
    line-height: 1.8;
       margin: 0;

}
.cta-area .item.search .btn {
  padding: 9px 48px 9px 15px;
     margin: 0;

}
.cta-area .item.cvt {
  background: url("/common/img/bgImg-cv01.jpg") no-repeat center / 150%;
  background-position-x: -120px;
}
.cta-area .item.search {
  background: url("/common/img/bgImg-cv02.jpg") no-repeat center / 220%;
  background-position-x: -230px;
  background-position-y: -100px;
}
.cta-area .item.contact {
  background: url("/common/img/bgImg-cv03.jpg") no-repeat center / 200%;
}
.cta-area a.btn.contact{
   padding: 9px 48px 9px 34px;
   margin: 0;
}
}


/* ページング */
.main .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 15px;
}
.main .pagination .page-num {
    text-decoration: none;
    color: #111111;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.main .pagination .page-num:hover {
    background: #F2F2F2;
}
.main .pagination [aria-current="page"] {
    background: #111111;
    color: #fff;
    pointer-events: none;
}
.main .pagination .prev, .pagination .next {
    width: 24px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 15px;
}
.main .pagination .prev:hover, .pagination .next:hover {
    opacity: 0.6;
}
.main .pagination .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.main .pagination .prev { background: url("/common/img/icon_arrow-black.svg") no-repeat center / contain; transform: scaleX(-1);}
.main .pagination .next { background: url("/common/img/icon_arrow-black.svg") no-repeat center / contain; }
.main .pagination .prev.disabled { background: url("/common/img/icon_arrow-gray.svg") no-repeat center / contain; transform: scaleX(-1); opacity: 0.6; }
.main .pagination .next.disabled { background: url("/common/img/icon_arrow-gray.svg") no-repeat center / contain; opacity: 0.6; }

@media (max-width: 767px) {
.main .pagination {
    gap: 10px;
}
.main .prev, .main .next {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}
}


/* =====================================================
   下層　それぞれのパーツ
===================================================== */
/* お知らせ一覧 */
.news .news-campaign-grid{
    grid-template-columns: 1fr;
}
.news .news-list{
    gap: 24px;
}
.news .news-item:after{
    display: none;
}
.news .news-item a,.news .news-item span.is-nolink{
    flex-wrap: inherit;
    padding: 0 50px 24px 16px;
}
.news .news-item a::after {
    top: 14px;
}
.news-item.pdf a::after {
    right: 18px;
    top: 14px;
}
.news-item.blank a::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 14px;
    transform: translateY(-50%);
    background: url("/common/img/icon_blank.svg") no-repeat;
    background-size: 100% auto;
    width: 24px;
    height: 24px;
    display: block;
}
.news .news-item:first-child {
    border-top: none;
    margin-top: 20px;
}
.news .news-category{
    margin-right: 12px;
    padding: 0px 60px;
    height: 25px;
}
@media (max-width: 767px) {
.news .news-campaign-grid{
    grid-template-columns: 1fr;
}
.news .news-item a, .news .news-item span.is-nolink{
    flex-wrap: wrap;
    padding: 0 40px 20px 0;
    gap: 8px;
}
.news .news-item a::after,.news .news-item.pdf a::after,.news .news-item.blank a::after {
    right: 0;
    top: 45px;
    }
}

/* お知らせ詳細 */
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.news-content {
  border-top: 1px dotted #989898;
  border-bottom: 1px dotted #989898;
  padding: 30px 0;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
    .news-meta {
    margin-bottom: 14px;
    }
    .news-content {
    padding: 20px 0;
    margin: 20px 0;
    }
}


/* 派遣の知識 一覧 */
.information-item {
  border-bottom: 1px dotted #989898;
}
.information-item:hover {
  background: #F2F2F2;
}
.information-item:hover h3{
  text-decoration: none;
}
.information-item a {
  display: flex;
  gap: 20px;
  color: #000;
  padding: 30px 20px;
}.information-item a:hover img{
  opacity: 1;
}
.information-item .thumb {
  width: 200px;
  flex-shrink: 0;
}
.information-item .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.information-item .title {
  font-size: 2rem;
  color: #0041B1;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.6;
  text-decoration: underline;
}
.information-item .title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  background: url("/common/img/icon_arrow.svg") no-repeat center / contain;
  vertical-align: middle;
  margin-bottom: 4px;
}
.information-item .lead {
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .information-item {
    padding: 25px 0 20px;
  }
  .information-item:first-child {
    padding: 10px 0 20px;
  }
  .information-item:hover {
  background: none;
}
  .information-item a {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .information-item .thumb {
    width: 100%;
  }
  .information-item .title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .information-item .lead {
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
  }
}

/* 派遣の知識 詳細 */
.latest {
  background: #EAF2FF;
  padding: 30px 0;
  margin: 80px 0 0;
  position: relative;
}
.latest h2 {
    width: 46px;
    height: 174px;
    background: url("/common/img/information/latest-h2-bg.png") no-repeat left top;
    background-size: contain;
    color: #fff;
    position: absolute;
    top: 0;
    text-align: center;
    font-size: 2.2rem;
    padding: 28px 3px;
    line-height: 1.2;
    background-size: 100%;
}
.latest .list {
  padding: 0 0 0 80px;
  margin: 0;
}
.latest .information-item:hover {
  background: #fff;
}
.latest .list .information-item:last-child{
  border: none;
}

@media screen and (max-width: 768px) {
  .latest {
    padding: 40px 0 30px;
    margin: 60px 0 0;
  }
  .latest h2 {
      width: 170px;
      height: 40px;
      background: url("/common/img/information/latest-h2-bg-sp.png") no-repeat left top;
      background-size: contain;
      top: 30px;
      left: 0;
      font-size: 2rem;
      padding: 7px 30px;
      text-align: left;
  }
  .latest .list {
    padding: 40px 0 0;
  }
  .latest .information-item {
    padding: 10px 0 0;
  }
  .latest .information-item a{
    padding: 10px 0 20px;
  }
  .latest .information-item:hover {
  background: none;
}
}


/* 派遣で働く */
.catchA{
  font-size: 2.2rem;
  display: block;
}
.merit-list {
  display: flex;
  gap: 24px;
  margin: 20px 0 30px;
}
.merit-list .merit-item {
  width: 33%;
  border-left: 1px solid #0041B1;
  padding: 8px 0 8px 20px;
}
.merit-list .merit-item h4{
  color: #0041B1;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.merit-list .merit-item p{
  margin: 0;
  font-size: 1.6rem;
}
.flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 44px;
  margin: 20px 0 30px;
}
.flow-item {
  position: relative;
  flex: 1;
  border: 1px solid #BCBCBC;
  border-radius: 10px;
  padding: 40px 20px 20px;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-item img {
  width: 60px;
  margin-bottom: 20px;
}
.flow-item h4 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.flow-item p {
  font-size: 1.6rem;
}
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("/common/img/working/icon-flow-arrow.svg") no-repeat center / contain;
}
.related-links {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 60px;
}
.related-item {
  flex: 1;
  padding: 30px;
  position: relative;
  border-left: 1px dotted #989898;
  font-weight: bold;
  font-size: 1.8rem;
}
.related-item:last-child {
  border-right: 1px dotted #989898;
}
.related-item:hover {
  text-decoration: underline;
  background: #F2F2F2;
  color: #0041B1;
}
.related-item::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/common/img/icon_arrow.svg") no-repeat center / contain;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.benefits .btn{
      background: #111;
    color: #ffffff;
    padding: 10px 44px 10px 34px;
    border: #111 1px solid;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    line-height: 1.6;
}
.benefits .btn.btn::after {
    content: "";
    background: url(/common/img/icon_arrow-white.svg) no-repeat 4px;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
}
.benefits .btn:hover{
  background: #fff;
    color: #111;
}
.benefits .btn:hover::after {
    background: url(/common/img/icon_arrow-black.svg) no-repeat 4px;
}
@media screen and (max-width: 768px) {
  .catchA{
    font-size: 2rem;
    margin-bottom: 6px;
  }
  .merit-list {
    flex-direction: column;
    gap: 10px;
    margin: 15px 0 20px;
  }
  .merit-list .merit-item {
    width: 100%;
    padding: 4px 0 4px 15px;
  }
  .merit-list .merit-item h4{
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
  .merit-list .merit-item p{
    font-size: 1.4rem;
  }
 .flow {
    flex-direction: column;
    gap: 30px;
  }
  .flow-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: auto;
    padding: 16px 18px;
  }
  .flow-item img {
    width: 40px;
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }
    .flow-item .text {
    display: flex;
    flex-direction: column;
  }
  .flow-item h4 {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .flow-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
  }
  .flow-item:not(:last-child)::after {
    right: 48%;
    top: auto;
    bottom: -25px;
    transform: rotate(90deg);
    width: 20px;
    height: 20px;
  }
  .related-links {
    flex-direction: column;
    margin: 60px 0 20px;
  }
  .related-item {
    text-align: left;
    padding: 24px 12px;
    border-right: none !important;
    border-top: 1px dotted #989898;
    border-left: none;
    font-size: 1.6rem;
  }
  .related-item:last-child {
    border-bottom: 1px dotted #989898;
  }
  .related-item::after {
  right: 10px;
}
}


/* 派遣スタッフを支える担当者のサポート体制実装 */
.message {
  margin: 60px;
}
.message-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.message-heading {
  width: 180px;
  font-size: 2.4rem;
  text-align: center;
  flex-shrink: 0;
}
.message-heading img{
  margin: 20px auto;
}
.message-item {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.message-body {
    flex: 1;
}
.message-body p {
    font-size: 1.8rem;
    line-height: 2;
}
.message-profile {
  width: 150px;
  text-align: center;
  font-weight: bold;
}
.message-profile img {
  margin: auto;
  margin-bottom: 4px;
}
.message-profile .name{
  font-size: 1.6rem;
  margin: 0;
}
.message-profile .name span{
  border: #111 1px solid;
  padding: 2px 4px;
  font-size: 1.4rem;
  margin-left: 10px;
}
.message-body h3{
  font-size: 2.2rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .message {
  margin: 60px 0 50px;
}
  .message-inner {
    flex-direction: column;
    gap: 20px;
  }
  .message-heading {
  white-space: normal;
  width: 100%;
  font-size: 2.2rem;
  text-align: left;
  display: flex;
  gap: 6px;
}
.message-heading img{
  width: 40px;
  margin: 0 8px 0 0;
}
.message-item {
  display: block;
  gap: 15px;
  padding: 20px 18px;
}
.message-profile {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.message-profile img {
  width: 56px;
  margin: 0 10px 0 0;
}
.message-profile .name{
  margin: 0;
}
.message-body h3{
  font-size: 1.8rem;
}
.message-body p {
    font-size: 1.6rem;
    line-height: 1.8;
}
}


/* 登録の流れ */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-item {
  display: flex;
}
.step-label {
  width: 100px;
  background: #0041B1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-label .number{
  margin: 0 0 0 6px;
}
.step-arrow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #0041B1;
}
.step-content {
  flex: 1;
  background: #F2F2F2;
  padding: 20px;
  display: flex;  
  border-radius: 0 10px 10px 0;
  }
.step-grid {
  display: grid;
  align-items: stretch;
  height: 100%;
}
.step-grid p{
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.8;
}
.step-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-col .text-red{
  color: #e60033;
  font-weight: bold;
}
.step-grid.col-2 {
  grid-template-columns: 170px 1fr;
}
.step-grid.col-3 {
  grid-template-columns: 170px 1fr 1fr;
}
.step-col.heading {
  width: 170px;
}
.step-col.heading h3{
  font-size: 1.8rem;
  font-weight: bold;
}
.step-col.notice {
  width: 480px;
  padding: 10px 0 10px 30px;
  border-left: #7E7E7E dotted 1px;
}
.step-col.notice h4{
  font-size: 1.6rem;
}
.step-subheading {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
.step-list {
  gap: 10px;
}
  .step-label {
    width: 50px;
  font-size: 1.2rem;
  flex-direction: column;
  }
    .step-label .number{
    margin: 0;
    display: block;
  }
.step-arrow {
  bottom: -8px;
}
  .step-content {
    padding: 14px;
  }
  .step-grid.col-2,
  .step-grid.col-3 {
    grid-template-columns: 1fr;
  }
.step-grid p{
  font-size: 1.4rem;
}
.step-col.heading{
  width: 100%;
  margin-bottom: 4px;
}
.step-col.heading h3{
  font-size: 1.6rem;
}
  .step-col.notice {
    width: 100%;
    padding: 15px 0 0;
    border-left: none;
    border-top: #7E7E7E dotted 1px;
    margin-top: 15px;
  }
  .step-col.notice h4{
    font-size: 1.4rem;
  }
}


/* 人材を求める企業様へ */
.page-kv {
  background-color: #fff;
  padding: 55px 0 0;
}
.page-kv-inner {
  width: 1200px;
  height: 576px;
  background: url("/common/img/recruit/bgImg-hero-recruit.jpg") center / cover no-repeat;
  margin: 15px auto 60px;
  overflow: hidden;
  background-color: #fff;
}
.page-kv-card {
  margin: 88px auto 0;
  width: 658px;
  background: #fff;
  padding: 60px 40px 50px;
  text-align: center;
  border-radius: 20px;
}
.page-kv-card h2{
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.page-kv-card h2 strong{
  font-size: 3.2rem;
  color: #0041B1;
}
.page-kv-card p{
  line-height: 2.2;
}
.jobtype-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}
.jobtype-box {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-areas:
    "icon title"
    "icon tags";
  column-gap: 30px;
  row-gap: 4px;
  border: 1px solid #111;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
}
.jobtype-box.is-active {
  border-color: #0041B1;
}
.jobtype-box.is-active h3{
  color: #0041B1;
}
.job-icon {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-icon img {
  width: 80px;
  height: auto;
  display: block;
}
.job-title h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: bold;
}
.job-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.job-tags li {
  background: #F2F2F2;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 1.4rem;
  white-space: nowrap;
}
.jobtype-row {
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: start;
  column-gap: 24px;
  padding: 30px 20px;
  border-top: 1px dashed #989898;
}
.jobtype-row:last-child {
  border-bottom: 1px dashed #989898;
}
.jobtype-heading {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-kv {
    padding: 30px 0;
  }
  .page-kv-inner {
    width: 100%;
    height: auto;
    background: url("/common/img/recruit/bgImg-hero-recruit-sp.jpg") center / cover no-repeat;
    padding: 0 20px;
    margin: 10px auto 50px;
  }
  .page-kv-card {
    margin: 60px auto;
    width: 100%;
    padding: 30px 15px;
  }
  .page-kv-card h2{
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .page-kv-card h2 strong{
    font-size: 2.4rem;
  }
  .page-kv-card p{
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 6px;
  }
  .jobtype-list {
    margin: 20px 0;
  }
  .jobtype-box {
    grid-template-columns: 50px 1fr;
    grid-template-areas:
      "icon title"
      "tags tags";
    column-gap: 15px;
    row-gap: 10px;
    padding: 12px 15px 15px 15px;
    margin-bottom: 10px;
  }
  .job-icon img {
    width: 50px;
  }
  .job-title {
  display: flex;
  align-items: center;
  margin: 0;
  }
  .job-title h3{
  font-size: 1.8rem;
    }
  .jobtype-row {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 20px 10px 23px;
  }
  .job-tags-wrap {
  grid-area: tags;
}
  .job-tags li {
    padding: 3px 6px;
    font-size: 1.3rem;
}
.jobtype-heading {
  font-size: 1.6rem;
}
}


/* CMSで働くメリット */
.feature-list {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}
.feature-list .item {
  list-style: none;
  border-top: #989898 1px dotted;
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto auto;
  column-gap: 32px;
  padding: 24px 12px;
}
.feature-list .item:last-child {
  border-bottom: #989898 1px dotted;
}
.feature-list .item.primary {
  border: #111 1px solid;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 30px 40px;
  margin-bottom: 30px;
}
.feature-list .item.primary .icon {
  width: 120px;
  flex-shrink: 0;
}
.feature-list .item.primary .body {
  display: block;
  padding: 0;
  border: none;
}
.feature-list .item.primary h3{
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.feature-list .item.primary h3 span{
  color: #0041B1;
}
.feature-list .item.primary p{
  font-size: 1.8rem;
}
.feature-list .head {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 4px;
}
.feature-list .head h3{
  font-size: 2rem;
}
.feature-list .head h3 span{
  color: #0041B1;
}
.feature-list .text{
  font-size: 1.6rem;
  margin: 0;
}
.feature-list .balloon {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 100%;
  background: #EAF2FF;
  padding: 20px 24px 15px 50px;
  border-radius: 10px;
  position: relative;
  font-weight: bold;
  line-height: 2;
}
.feature-list .balloon::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 22px;
  height: 34px;
  background: url("/common/img/benefits/img-benefits-hukidashi.svg") no-repeat center / contain;
}

.support-block {
  background: #F2F2F2;
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 10px;
}
.support-block .head {
  width: 240px;
  text-align: center;
}
.support-block .head .icon {
  width: 50px;
  margin: 0 auto 10px;
}
.support-block .head h4 {
  font-size: 1.8rem;
}
.support-block .item {
  flex: 1;
  display: flex;
  gap: 10px;
}
.support-block .card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
}
.support-block h5 {
  font-size: 1.8rem;
  color: #0041B1;
  margin-bottom: 6px;
}
.support-block h5 a {
  text-decoration: underline;
  position: relative;
  padding-right: 20px;
}
.support-block h5 a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("/common/img/icon_arrow.svg") no-repeat center / contain;
}
.support-block h5 a:hover {
  text-decoration: none;
}
.support-block p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}
.support-block .note {
  margin-top: 2px;
  font-size: 1.3rem;
}
.sub-label{
  padding: 4px 8px;
  border: #111 1px solid;
  font-size: 1.4rem;
  margin-top: 10px;
  display: inline-block;
}
.info-list {
  border-top: 1px dashed #989898;
  padding-top: 20px;
}
.info-item {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 10px;
}
.info-label {
  min-width: 110px;
  background: #D9E7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 4px;
  padding: 2px;
}
.info-value {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .feature-list {
    margin: 20px 0;
}
.feature-list .item {
  display: block;
  padding: 20px 8px;
}
.feature-list .item.primary {
  display: block;
  gap: 20px;
  padding: 30px 15px 15px;
  margin-bottom: 25px;
}
.feature-list .item.primary .icon {
  width: 110px;
  margin: 0 auto 20px;
}
.feature-list .item.primary h3{
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}
.feature-list .item.primary h3 span{
  display: block;
}
.feature-list .item.primary p{
  font-size: 1.6rem;
  margin:0 ;
}
.feature-list .head {
  margin-bottom: 4px;
}
.feature-list .head h3{
  font-size: 1.8rem;
}
.feature-list .head img{
  max-width: 46px;
}
.feature-list .text{
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feature-list .balloon {
  font-size: 1.4rem;
  padding: 12px 12px 12px 40px;
  line-height: 1.8;
  border-radius: 6px;
}
.feature-list .balloon::before {
  left: 12px;
  top: 12px;
  width: 18px;
  height: 26px;
}
  .support-block {
    padding: 18px 15px 15px;
    flex-direction: column;
    gap: 14px;
  }
  .support-block .head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .support-block .head .icon {
    width: 40px;
    margin: 0 0 0 10px;
  }
  .support-block .head h4 {
    font-size: 1.6rem;
  }
  .support-block .item {
    flex-wrap: wrap;
    gap: 6px;
  }
  .support-block .card {
    flex: 0 0 100%;
    padding: 10px 15px;
    border-radius: 6px;
  }
  .support-block .card h5 {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
  .support-block .card p {
    font-size: 1.4rem;
  }
  .support-block a {
    padding-right: 20px;
  }
  .support-block a::after {
    width: 12px;
    height: 12px;
  }
  .support-block .card .note {
  font-size: 1.1rem;
}
.sub-label{
  padding: 4px 8px;
  font-size: 1.2rem;
}
  .info-item {
    gap: 8px;
  }
  .info-label {
    font-size: 1.2rem;
    min-width: 90px;
  }
  .info-value {
    font-size: 1.4rem;
  }
}

/* 社長メッセージ */
.president-message{
  margin: 10px 0 30px;
}
@media (max-width: 768px) {
  .president-message{
    margin: 10px 0 15px;
  }
}

/* faq */
.faq-box {
  margin: 10px auto 20px;
}
.faq-box dt {
  font-size: 1.8rem;
  font-weight: bold;
  background: #F2F2F2;
  line-height: 1.6;
  padding:  20px 20px 20px 70px;
  position: relative;
}
.faq-box dt::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 34px;
  height: 34px;
  background: url("/common/img/faq/icon_faq-q.svg") no-repeat center / contain;
}
.faq-box dd {
  padding: 24px 0 20px 70px;
  position: relative;
}
.faq-box dd::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 34px;
  height: 34px;
  background: url("/common/img/faq/icon_faq-a.svg") no-repeat center / contain;
}
@media (max-width: 768px) {
  .faq-box {
  margin: 10px auto 15px;
}
.faq-box dt {
  font-size: 1.6rem;
  padding:  12px 10px 12px 48px;
}
.faq-box dt::before {
  left: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
}
.faq-box dd {
  padding: 20px 0 10px 48px;
}
.faq-box dd::before {
  left: 10px;
  top: 20px;
  width: 28px;
  height: 28px;
}
}


/* 会社概要 */
.base {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 30px auto 60px;
  justify-content: space-between
}
.base .gmap {
  width: 770px;
  flex-shrink: 0;
}
.base .content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .base {
    flex-direction: column;
    gap: 0;
    margin: 10px auto 50px;
  }
  .base .gmap {
    width: 100%;
    margin: auto;
  }
  .base .gmap iframe{
    width: 100%;
  }
  .base .content {
    gap: 12px;
  }
}

/* 特集 */
.career-support.full {
    max-width: 100%;
    margin: 60px auto 0;
}
.career-support.full .career-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
}
  .career-support.full .career-card h3 span{
    margin-right: 10px;
  }
.career-support.full .career-card.no-link {
    opacity: 0.5;
    pointer-events: none;
}
.career-support.full .career-card.no-link a::after {
    background: none;
}
.campaign-label{
  padding: 4px 12px;
  border: #111 1px solid;
  display: inline-block;
  align-self: flex-start;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.campaign-head {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
.campaign-head strong{
  border-bottom: #CF112A 2px solid;
  padding-bottom: 16px;
  line-height: 1.6;
}
.campaign-head strong span{
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  .career-support.full {
    margin: 40px auto 0;
    padding: 15px;
    border-radius: 6px;
  }
  .career-support.full .career-cards {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .career-support.full .career-card h3 {
      font-size: 1.4rem;
  }
  .career-support.full .career-card h3 span{
    margin-right: 0;
    display: block;
  }
  .career-support.full .career-card a::after {
    right: 10px;
    width: 22px;
    height: 22px;
}
  .campaign-label{
    padding: 4px 10px;
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  .campaign-head {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .campaign-head strong{
    padding-bottom: 10px;
    display: inline-block;
    line-height: 1.5;
  }
  .campaign-head strong span{
    font-size: 3rem;
  }
}


/* サイトマップ */
.sitemap h2 {
  margin-top: 40px;
}
.sitemap h2:first-child {
  margin-top: 15px;
}
.sitemap h2 a {
  background: #F2F2F2;
  border-radius: 4px;
  padding: 15px 22px;
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
}
.sitemap h2 a:hover {
  background: #e4e4e4;
  text-decoration: underline;
}
.sitemap h2 a:after,.list-sitemap a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    background: url("/common/img/icon_arrow.svg") no-repeat center / contain;
    vertical-align: middle;
    margin-bottom: 4px;
}
.list-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 15px 20px;
}
.list-sitemap li {
  width: calc((100% - 60px) / 3);
  border-bottom: 1px solid #DCDCDC;
}
.list-sitemap a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  color: #111 !important;
  text-decoration: none !important;
}
.list-sitemap a:hover {
  text-decoration: underline !important;
}
@media screen and (max-width: 768px) {
  .sitemap h2 {
    margin-top: 20px;
  }
  .sitemap h2:first-child {
    margin-top: 5px;
  }
  .sitemap h2 a {
    padding: 10px 15px;
    font-size: 1.6rem;
  }
  .sitemap h2 a:after,.list-sitemap a::after {
      width: 20px;
      height: 20px;
      margin-left: 6px;
  }
  .list-sitemap {
    margin: 12px 14px 40px 14px;
    justify-content: space-between;
    flex-direction: column;
    gap: 6px;
  }
  .list-sitemap li {
    width: 100%;
    font-size: 1.4rem;
  }
  .list-sitemap li a{
    padding: 10px 0;
  }
}

/* 404eroor */
.eroor {
  margin-top: 104px;
  padding: 100px 0 120px;
  text-align: center;
}
.eroor p{
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .eroor {
  padding: 80px 0 100px;
  }
  .eroor h1{
    font-size: 2.4rem;
  }
}





/* =====================================================
   margin
===================================================== */
.mb0 { margin-bottom: 0px !important;}
.mb5 { margin-bottom: 5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb15 { margin-bottom: 15px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb25 { margin-bottom: 25px !important;}
.mb30 { margin-bottom: 30px !important;}
.mb35 { margin-bottom: 35px !important;}
.mb40 { margin-bottom: 40px !important;}
.mb45 { margin-bottom: 45px !important;}
.mb50 { margin-bottom: 50px !important;}
.mb80 {margin-bottom: 80px !important;}
.mt0 { margin-top: 0px !important;}
.mt5 { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt15 { margin-top: 15px !important;}
.mt20 { margin-top: 20px !important;}
.mt25 { margin-top: 25px !important;}
.mt30 { margin-top: 30px !important;}
.mt35 { margin-top: 35px !important;}
.mt40 { margin-top: 40px !important;}
.mt45 { margin-top: 45px !important;}
.mt50 { margin-top: 50px !important;}
.mt60 { margin-top: 60px !important;}
.mt70 { margin-top: 70px !important;}
.mt80 { margin-top: 80px !important;}
.ml0 { margin-left: 0px !important;}
.ml5 { margin-left: 5px !important;}
.ml10 { margin-left: 10px !important;}
.ml15 { margin-left: 15px !important;}
.ml20 { margin-left: 20px !important;}
.ml25 { margin-left: 25px !important;}
.ml30 { margin-left: 30px !important;}
.ml35 { margin-left: 35px !important;}
.ml40 { margin-left: 40px !important;}
.ml45 { margin-left: 45px !important;}
.ml50 { margin-left: 50px !important;}
.mr0 { margin-right: 0px !important;}
.mr5 { margin-right: 5px !important;}
.mr10 { margin-right: 10px !important;}
.mr15 { margin-right: 15px !important;}
.mr20 { margin-right: 20px !important;}
.mr25 { margin-right: 25px !important;}
.mr30 { margin-right: 30px !important;}
.mr35 { margin-right: 35px !important;}
.mr40 { margin-right: 40px !important;}
.mr45 { margin-right: 45px !important;}
.mr50 { margin-right: 50px !important;}
@media screen and (max-width: 768px){ 
.mb0-sp { margin-bottom: 0px !important;}
.mb5-sp { margin-bottom: 5px !important;}
.mb10-sp { margin-bottom: 10px !important;}
.mb15-sp { margin-bottom: 15px !important;}
.mb20-sp { margin-bottom: 20px !important;}
.mb25-sp { margin-bottom: 25px !important;}
.mb30-sp { margin-bottom: 30px !important;}
.mb35-sp { margin-bottom: 35px !important;}
.mb40-sp { margin-bottom: 40px !important;}
.mb45-sp { margin-bottom: 45px !important;}
.mb50-sp { margin-bottom: 50px !important;}
.mt0-sp { margin-top: 0px !important;}
.mt5-sp { margin-top: 5px !important;}
.mt10-sp { margin-top: 10px !important;}
.mt15-sp { margin-top: 15px !important;}
.mt20-sp { margin-top: 20px !important;}
.mt25-sp { margin-top: 25px !important;}
.mt30-sp { margin-top: 30px !important;}
.mt35-sp { margin-top: 35px !important;}
.mt40-sp { margin-top: 40px !important;}
.mt45-sp { margin-top: 45px !important;}
.mt50-sp { margin-top: 50px !important;}
.ml0-sp { margin-left: 0px !important;}
.ml5-sp { margin-left: 5px !important;}
.ml10-sp { margin-left: 10px !important;}
.ml15-sp { margin-left: 15px !important;}
.ml20-sp { margin-left: 20px !important;}
.ml25-sp { margin-left: 25px !important;}
.ml30-sp { margin-left: 30px !important;}
.ml35-sp { margin-left: 35px !important;}
.ml40-sp { margin-left: 40px !important;}
.ml45-sp { margin-left: 45px !important;}
.ml50-sp { margin-left: 50px !important;}
.mr0-sp { margin-right: 0px !important;}
.mr5-sp { margin-right: 5px !important;}
.mr10-sp { margin-right: 10px !important;}
.mr15-sp { margin-right: 15px !important;}
.mr20-sp { margin-right: 20px !important;}
.mr25-sp { margin-right: 25px !important;}
.mr30-sp { margin-right: 30px !important;}
.mr35-sp { margin-right: 35px !important;}
.mr40-sp { margin-right: 40px !important;}
.mr45-sp { margin-right: 45px !important;}
.mr50-sp { margin-right: 50px !important;}
}
