@charset "utf-8";
:root {
  --color-theme: #69c3bf;
  --font-gothic: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  vertical-align: middle;
  height: auto;
  max-width: 100%;
}
html {
  width: 100%;
  color: #222222;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  font-family: var(--font-gothic) !important;
  font-weight: 500;
  background-color: #f1f1f1 !important;
  line-height: 1.6;
}
ul, ol {
  list-style: none;
}
.line-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.other-table {
  margin-bottom: 10px !important;
  padding;
  10px;
  border-radius: 5px;
  background: #f8f8f8;
}
#main.single dl.other-table {
  border-top: none !important;
}
/**youtube**/
.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
/**4月12日更新 タブ切り替え**/
.tab-area {
  max-width: 100%;
  margin: 20px 20px 70px;
}
.tab-btn {
  display: none; /*タブの切り替えを制御するラジオボタンを非表示に*/
}
.tab-list-wrap {
  padding: 0; /*デフォルトの値をクリア*/
  margin: 0; /*デフォルトの値をクリア*/
  list-style-type: none; /*デフォルトの値をクリア*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; /*ボタンを横並びに*/
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tab-list-wrap .list-item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.tab-list {
  display: block;
  height: 60px;
  padding: 8px 0;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
  background: #ebebeb;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /*borderの値を横幅に含める*/
  cursor: pointer; /*オンマウス時にカーソルを指の形に*/
}
.tab-list-bottom {
  border-top: none;
  border-radius: 0 0 4px 4px;
}
#tab-list1, #tab-list2, #tab-list3 {
  padding-top: 18px;
}
#tab-btn1:checked ~ .tab-list-wrap #tab-list1, #tab-btn2:checked ~ .tab-list-wrap #tab-list2, #tab-btn3:checked ~ .tab-list-wrap #tab-list3 {
  background: #0099eb; /*対応するボタンにチェックが入ったときに背景を#ffffff（白）に*/
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: none;
  color: #fff;
}
.tab-content {
  padding: 30px 50px 20px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  display: none; /*初期状態を非表示に*/
  border-radius: 0;
  background: #fff;
}
#tab-btn1:checked ~ .tab-content-wrap #tab-content1, #tab-btn2:checked ~ .tab-content-wrap #tab-content2, #tab-btn3:checked ~ .tab-content-wrap #tab-content3 {
  display: block; /*対応するボタンにチェックが入ったときに表示*/
}
/***タブ切り替え終わり***/
/***4月12日更新 インタビュー***/
#interview .fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
#interview .fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
}
#interview .fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}
#interview .bg {
  background: #fff;
  border: solid 1px #000;
  margin: 20px 20px 70px;
  border-radius: 8px;
}
#interview .interview {
  margin: 20px;
}
#interview .headline {
  margin: 30px 0 20px;
}
#interview .interview-img {
  max-width: 620px;
}
#interview img {
  width: 100%;
}
#interview .profile {
  border-left: 3px solid #f6cd42;
  display: inline-block;
  margin: 2px 0 3px;
  line-height: 1.5;
}
#interview .profile-l {
  font-weight: bold;
  margin-left: 10px;
}
#interview .profile-s {
  margin-left: 10px;
}
#interview .qa-q {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}
#interview .qa-q .qa-q-icon {
  padding-right: 5px;
}
#interview .qa-a {
  padding-bottom: 15px;
}
#interview .toggle {
  display: none;
}
#interview .accordion {
  max-width: 100%;
}
#interview .title {
  background: #ddd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  text-align: left;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
  margin: 5px 0;
  position: relative;
}
#interview .title:hover {
  opacity: 0.8;
}
#interview .option {
  position: relative;
  margin-bottom: 20px;
}
#interview .faq-answer {
  margin: 0;
  line-height: 1.8;
  text-align: left;
}
#interview .title, #interview .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#interview .faq-items {
  margin-left: 5px;
}
#interview .title::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: translateY(-25%) rotate(45deg);
  transform: translateY(-25%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin: 6px 20px 0 0;
  position: absolute;
  right: 0;
}
#interview .toggle:checked + .title + .content {
  max-height: 2500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
#interview .toggle:checked + .title::after {
  -webkit-transform: translateY(20%) rotate(225deg) !important;
  transform: translateY(20%) rotate(225deg) !important;
}
#interview .content {
  max-height: 0;
  overflow: hidden;
  margin: 20px 0;
}
#interview .content .faq-answer-icon {
  margin: 0;
  padding: 10px 0 10px 20px;
  line-height: 1.8;
  text-align: left;
}
#interview .content .faq-answer {
  margin: 0;
  line-height: 1.8;
  text-align: left;
}
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
}
#tab-content2 .photo {
  margin-bottom: 30px;
}
#main p.int-name {
  font-size: 30px;
  font-weight: 600;
  margin-right: 20px;
}
#main p.int-post {
  color: #989898;
}
#main .qa-q {
  font-weight: 700;
  border-bottom: solid 2px #ddd;
  display: inline-block;
}
/***インタビュー終わり***/
/****4月18日更新***/
/*ポイント*/
.point-list {
  box-sizing: border-box;
  border: solid 1px #ccc;
  padding: 30px 50px;
  margin: 0 20px 80px;
  border-radius: 5px;
}
.point-list li {
  padding: 10px 0;
  border-bottom: dotted 1px #ccc;
  margin-bottom: 10px;
}
/**img**/
.photo {
  margin: 50px 0 80px;
}
.n2-section-smartslider {
  margin: 50px 0;
}
/***4月18日更新おわり***/
@media screen and (max-width: 767px) {
  /*@media ( width < 768px ) {*/
  #header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    display: grid;
    place-items: center;
    z-index: 99;
  }
  #header img {
    display: block;
    width: auto;
    height: 30px;
  }
  .fv {
    margin: 20px auto;
    padding: 0 5%;
    width: 100%;
    height: 40px;
    display: grid;
    place-items: center;
  }
  .fv h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.0;
  }
  .fv.single h1 {
    margin: 0 auto;
    width: 100%;
    text-align: left;
  }
  .fv.single h1::after {
    display: block;
    /*content: attr(data-subtitle);*/
    font-size: 3.2vw;
  }
  main {
    margin: 0 auto;
    padding: 10px 5%;
    width: 100%;
    background-color: #fff !important;
  }
  main a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.5s;
  }
  @media (hover: hover) {
    main a:hover {
      opacity: 0.5;
    }
  }
  main .breadcrumbs {
    margin: 0;
    width: 100%;
    font-size: 12px;
  }
  main .breadcrumbs a {
    text-decoration: none;
  }
  #main p {
    margin: min(24px, 2.0vw) 0 10px;
    font-size: 14px;
    line-height: 1.6;
  }
  #main p.big {
    font-size: 3.6vw;
    display: none;
  }
  #main .archive-ttl {
    font-weight: 700;
    font-size: 25px;
    margin-top: 20px;
  }
  #main .archive-img {
    margin: 10px 0 50px;
  }
  #main p.small {
    font-size: 12px;
  }
  #main .recruit-box {
    margin: 3.0vw auto;
    padding: 3.0vw;
    width: 100%;
    font-size: 3.2vw;
    background: #fff;
    box-shadow: 0 0 4px #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0 2.0vw;
  }
  #main .recruit-box .all {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
  }
  #main .recruit-box .pic {
    /*width: 100%;*/
  }
  #main .recruit-box .pic img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  #main .recruit-box .info {
    margin: 4.0vw 0 0;
    width: 100%;
  }
  #main .recruit-box .title {
    margin: 0 0 min(12px, 1.0vw);
    font-size: 16px;
    font-weight: 700;
  }
  #main .recruit-box .title a {
    color: #3a83d0;
    text-decoration: underline;
  }
  #main .recruit-box .desc {
    margin: 2.0vw 0;
    font-size: 14px;
  }
  #main .recruit-box .cats {
    margin: 2.0vw 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.0vw;
  }
  #main .recruit-box .cats .cat {
    display: inline-block;
    padding: 0.2em 0.5em;
    width: max-content;
    color: #3a83d0;
    font-size: 14px;
    border: 1px solid #3a83d0;
    border-radius: 2px;
    display: grid;
    place-items: center;
  }
  #main h2 {
    margin: 0;
    font-size: 5.0vw;
    font-weight: 700;
  }
  #main .page-numbers {
    margin: 4.0vw auto;
    width: max-content;
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    box-shadow: 0 0 4px #ccc;
  }
  #main .page-numbers li {
    list-style: none;
  }
  #main .page-numbers li .page-numbers {
    display: block;
    margin: 0;
    padding: 0.5em 1.0em;
    color: #333;
    font-size: 3.6vw;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-shadow: none;
    border-radius: 0;
  }
  #main .page-numbers li .page-numbers.current {
    color: #fff;
    background: var(--color-theme);
  }
  #main .page-numbers li:first-child .page-numbers {
    border-radius: 4px 0 0 4px;
  }
  #main .page-numbers li:last-child .page-numbers {
    border-radius: 0 4px 4px 0;
    border: 1px solid #ccc;
  }
  #main.single {
    margin: 0 auto 50px !important;
    padding: 3.0vw 20px 6.0vw;
    background: #fff;
    /*box-shadow: 0 0 8px #ccc;*/
  }
  #main.single .head {
    margin: 5.0vw auto;
    font-size: 20px;
    font-weight: 700;
  }
  #main.single .thumbnail {
    margin: 3.0vw auto;
    max-width: 100%;
    height: auto;
  }
  #main.single .thumbnail {
    width: 100%;
  }
  #main.single .thumbnail img {
    display: none;
  }
  #main.single .head .occupation-sp {
    margin-top: 20px;
  }
  #main.single h2 {
    position: relative;
    margin: 30px 0 10px;
    padding: 0.2em 0 0;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
  }
  /* #main.single h2::before {
        position: absolute;
        display: block;
        content: "";
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: #396;
    }*/
  #main.single h2::before {
    display: none;
  }
  #main.single dl {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e6e6e6;
  }
  /*#main.single dl:last-child {
        border-bottom: 1px solid #e6e6e6;
    }*/
  #main.single dl dt {
    margin: 0;
    padding: 1em 0.5em 1em 1em;
    width: 25.0vw;
    font-size: 14px;
    font-weight: 500;
  }
  #main.single .company-table:last-of-type {
    border-bottom: 1px solid #e6e6e6;
  }
  #main.single .company-table dt {
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    background-color: #f6f6f6;
  }
  #main.single dl dd {
    margin: 0;
    padding: 1em 1em 1em 0.5em;
    width: calc(100% - 2.0vw - 20.0vw);
    font-size: 14px;
    font-weight: 500;
  }
  #main.single .company-table dd {
    border-right: 1px solid #e6e6e6;
  }
  #main.single .apply {
    margin: 40px 0 50px;
    /*border-top: 1px solid #e6e6e6;*/
  }
  #main.single .apply-btn {
    margin: 0 auto;
    padding: 0.7em 0;
    width: 300px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: #06C755;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main.single .apply-pc {
    display: none;
  }
  main.single .apply span {
    text-align: center;
    font-size: 0.8rem;
  }
  .availability {
    margin-top: 20px !important;
    margin-bottom: 2px !important;
  }
  .availability-time {
    margin-top: 3px !important;
  }
  #main.single .type-info {
    position: relative;
    display: block;
    padding: 3.0vw 4.0vw 3.0vw 0;
    width: 100%;
    border-top: 1px solid #ccc;
  }
  #main.single .type-info::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 1.5vw;
    width: 1.5vw;
    aspect-ratio: 1 / 1;
    border-right: 3px solid #666;
    border-bottom: 3px solid #666;
    border-radius: 2px;
    transform: translateY(-50%) rotate(-45deg);
  }
  #main.single .type-info:last-child {
    border-bottom: 1px solid #ccc;
  }
  #main.single .type-info .title {
    width: 100%;
    font-size: 17px;
  }
  #main.single .type-info .category {
    width: 100%;
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 500;
  }
  #contact {
    display: none;
    margin: 6.0vw auto;
    padding: 3.0vw 6.0vw;
    box-shadow: 0 0 8px #ccc;
    width: 100%;
    background: #fff;
  }
  #contact .contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #contact .contact .doc {
    width: 100%;
  }
  #contact .contact .doc h2 {
    font-size: 5.0vw;
    font-weight: 700;
    line-height: 1.0;
    text-align: left;
  }
  #contact .contact .doc h2::after {
    display: block;
    content: attr(data-subtitle);
    margin: 0.5em 0 0;
    color: #a3b5bc;
    font-size: 3.2vw;
  }
  #contact .contact .doc p {
    font-size: 3.2vw;
  }
  #contact .contact .doc .contact-btn {
    position: relative;
    margin: 3.0vw auto 0 0;
    padding: 0.8em 0;
    width: 90%;
    color: #fff;
    font-size: 4.0vw;
    font-weight: 500;
    background: var(--color-theme);
    border-radius: 6.0vw;
    text-decoration: none;
    display: grid;
    place-items: center;
    transition: opacity 0.5s;
  }
  #contact .contact .doc .contact-btn::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 1.5em;
    width: 0.5em;
    aspect-ratio: 1 / 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 2px;
    transform: translateY(-50%) rotate(-45deg);
  }
  @media (hover: hover) {
    #contact .contact .doc .contact-btn:hover {
      opacity: 0.5;
    }
  }
  #contact .contact .photo {
    margin: 4.0vw 0 0;
    width: 100%;
  }
  #footer {
    width: 100%;
    height: 40px;
    font-size: 11px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /**LP遷移 banner**/
  .banner-sp {
    display: block;
    margin-top: 20px;
  }
  .banner-pc {
    display: none;
  }
  /*追従ボタン*/
  .apply-sp {
    display: block !important;
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: bottom 0.3s ease;
    background-color: #06C755;
    padding: 10px 0;
  }
  .apply-btn_sp {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
  }
  .apply-btn_sp:hover {
    background-color: #06C755;
  }
  .line-img {
    width: 30px;
    height: 30px;
  }
  /****/
  #main .contents p {
    /*border-bottom: solid 1px #ccc;*/
    /*padding-bottom: 30px;*/
    word-break: break-all;
  }
  #main .contents p:last-of-type {
    border-bottom: none;
  }
  /**社内風景**/
  .company-office_img {
    list-style: none;
    display: block;
  }
  .company-office_img li {}
  .company-office_img li img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
  }
  /***4月18日追記***/
  .point-list {
    padding: 30px 20px;
    margin: 0 0px 40px;
  }
  .tab-area {
    margin: 20px 0px 70px;
  }
  .tab-content {
    padding: 30px 20px 20px;
  }
  .photo {
    margin: 30px 0;
  }
  #main .qa-q p {
    margin: 0;
  }
  .profile {
    margin-bottom: 20px;
  }
  #main .qa-q {
    margin-bottom: 20px;
  }
  #main .qa-a {
    margin-bottom: 30px;
  }
  /**4月18日追記終わり**/
}
/*@media ( width >= 768px ) {*/
@media screen and (min-width: 768px) {
  #header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    display: grid;
    place-items: center;
    z-index: 99;
  }
  #header img {
    display: block;
    width: auto;
    height: 40px;
  }
  body {
    background-color: #fff !important;
  }
  .fv {
    margin: 0 auto;
    width: 100%;
    height: min(50px, 10.0vw);
    background: #f1f1f1;
    display: grid;
    place-items: center;
  }
  .fv h1 {
    margin: 0;
    color: #666666;
    font-size: min(20px, 3.0vw);
    font-weight: 600;
    line-height: 1.0;
    width: 100%;
    max-width: 1120px;
    padding-left: 60px;
  }
  .fv.single h1 {
    margin: 0 auto;
    text-align: left;
    width: 100%;
    max-width: 1120px;
  }
  .fv.single h1::after {
    display: block;
    /*content: attr(data-subtitle);*/
    font-size: min(24px, 2.0vw);
  }
  main {
    margin: 0 auto;
    padding: min(24px, 2.0vw) min(60px, 4.0vw) min(25px, 4.0vw);
    width: 100%;
    max-width: 1120px;
  }
  main a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.5s;
  }
  @media (hover: hover) {
    main a:hover {
      opacity: 0.5;
    }
  }
  main .breadcrumbs {
    margin: 0;
    width: 100%;
    font-size: 12px;
  }
  main .breadcrumbs a {
    text-decoration: none;
  }
  #main p {
    margin: min(24px, 2.0vw) 0;
    /*font-size: min( 16px, 1.25vw );*/
    font-size: 16px;
    line-height: 1.6;
  }
  #main p.big {
    font-size: min(18px, 1.5vw);
    display: none;
  }
  #main p.small {
    font-size: min(13px, 2vw);
  }
  #main .archive-ttl {
    margin-top: 50px;
    font-size: 30px;
    font-weight: 600;
  }
  #main .archive-img {
    margin-bottom: 50px;
  }
  #main .recruit-box {
    margin: 1.0em auto;
    padding: 1.0rem;
    width: 100%;
    font-size: 1.0rem;
    background: #fff;
    /*border: 1px solid #ccc; */
    box-shadow: 0 0 4px #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 min(12px, 1.0vw);
  }
  #main .recruit-box .all {
    width: 100%;
    font-size: min(20px, 1.67vw);
    font-weight: 700;
  }
  #main .recruit-box .pic {
    width: min(400px, 30%);
  }
  #main .recruit-box .pic img {
    display: block;
    width: 100%;
    aspect-ratio: 14 / 7;
    object-fit: cover;
  }
  #main .recruit-box .info {
    width: calc(100% - min(400px, 33%));
  }
  #main .recruit-box .title {
    margin: 0 0 min(12px, 1.0vw);
    font-size: min(18px, 2vw);
    font-weight: 700;
  }
  #main .recruit-box .title a {
    color: #3a83d0;
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
  #main .recruit-box .desc {
    margin: min(12px, 1.0vw) 0;
    font-size: min(14px, 2vw);
  }
  #main .recruit-box .cats {
    margin: min(12px, 1.0vw) 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: min(6px, 0.5vw)
  }
  #main .recruit-box .cats .cat {
    display: inline-block;
    padding: 0.2em 0.5em;
    width: max-content;
    color: #2866a7;
    font-size: min(13px, 2vw);
    border: 1px solid #2866a7;
    border-radius: 2px;
    display: grid;
    place-items: center;
  }
  #main h2 {
    margin: 0;
    font-size: min(36px, 3.0vw);
    font-weight: 700;
  }
  #main .page-numbers {
    margin: min(24px, 2.0vw) auto;
    width: max-content;
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    box-shadow: 0 0 4px #ccc;
  }
  #main .page-numbers li {
    list-style: none;
  }
  #main .page-numbers li .page-numbers {
    display: block;
    margin: 0;
    padding: 0.5em 1.0em;
    color: #333;
    font-size: min(16px, 1.33vw);
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-shadow: none;
    border-radius: 0;
  }
  #main .page-numbers li .page-numbers.current {
    color: #fff;
    background: var(--color-theme);
  }
  #main .page-numbers li:first-child .page-numbers {
    border-radius: 4px 0 0 4px;
  }
  #main .page-numbers li:last-child .page-numbers {
    border-radius: 0 4px 4px 0;
    border: 1px solid #ccc;
  }
  #main.single {
    margin: 0 auto 60px;
    padding: min(24px, 2.0vw) min(60px, 4.0vw) min(48px, 4.0vw);
    background: #fff;
    /*box-shadow: 0 0 8px #ccc;*/
  }
  #main.single .head {
    margin: min(24px, 2.0vw) auto;
    font-size: min(22px, 2.67vw);
    font-weight: 700;
  }
  #main.single .head .occupation-sp {
    display: none;
  }
  #main.single .thumbnail {
    margin: min(24px, 2.0vw) auto;
    max-width: 100%;
    height: auto;
    text-align: center;
  }
  #main.single .thumbnail img {
    width: 100%;
  }
  #main.single h2 {
    position: relative;
    margin: min(48px, 4.0vw) auto min(24px, 2.0vw);
    padding: 0.2em 0 0.2em 0.8em;
    font-size: min(24px, 2.33vw);
    font-weight: 700;
    text-align: left;
  }
  #main.single h2::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #e6e6e6;
  }
  #main.single dl {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc;
  }
  /*#main.single dl:last-child {
        border-bottom: 1px solid #ccc;
    }*/
  #main.single dl dt {
    margin: 0;
    padding: 1em 1em;
    width: min(130px, 10.0vw);
    font-size: min(16px, 1.33vw);
    font-weight: 500;
  }
  #main.single .company-table:last-of-type {
    border-bottom: 1px solid #e6e6e6;
  }
  #main.single .company-table dt {
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    background-color: #f6f6f6;
  }
  #main.single dl dd {
    margin: 0;
    padding: 1em 1em;
    width: calc(100% - min(16px, 1.33vw) - min(120px, 10.0vw));
    font-size: min(16px, 1.33vw);
    font-weight: 500;
  }
  /**youtube**/
  #main.single dl dd iframe {
    width: 100%;
    height: auto;
  }
  #main.single .company-table dd {
    border-right: 1px solid #e6e6e6;
  }
  #main.single .apply {
    margin: 40px 0 50px;
    /* border-top: 1px solid #e6e6e6; */
  }
  #main.single .apply-btn {
    margin: 0 auto;
    /*margin: min( 36px, 3.0vw ) auto; */
    padding: 0;
    height: 60px;
    width: min(350px, 45%);
    max-width: 600px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: #06C755;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .apply-sp {
    display: none;
  }
  .line-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .availability {
    margin-bottom: 5px !important;
    display: none; /* 最初は非表示 */
    text-align: center;
    font-size: 1.0rem;
  }
  .availability-time {
    margin-top: 5px !important;
    display: none; /* 最初は非表示 */
    text-align: center;
    font-size: 0.8rem;
  }
  #main.single .type-info {
    position: relative;
    display: block;
    padding: min(24px, 2.0vw) 0;
    width: 100%;
    border-top: 1px solid #ccc;
  }
  #main.single .type-info::after {
    position: absolute;
    content: "";
    top: 50%;
    right: min(12px, 1.0vw);
    width: min(12px, 1.0vw);
    aspect-ratio: 1 / 1;
    border-right: 3px solid #666;
    border-bottom: 3px solid #666;
    border-radius: 2px;
    transform: translateY(-50%) rotate(-45deg);
  }
  #main.single .type-info:last-child {
    border-bottom: 1px solid #ccc;
  }
  #main.single .type-info .title {
    width: 100%;
    font-size: min(20px, 1.67vw);
  }
  #main.single .type-info .category {
    width: 100%;
    color: #7a7a7a;
    font-size: min(14px, 1.17vw);
    font-weight: 500;
  }
  #contact {
    display: none;
    margin: min(48px, 4.0vw) auto;
    padding: min(24px, 2.0vw) min(48px, 4.0vw);
    box-shadow: 0 0 8px #ccc;
    width: 100%;
    max-width: 1120px;
    background: #fff;
  }
  #contact .contact {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  #contact .contact .doc {
    width: 58%;
  }
  #contact .contact .doc h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.0;
    text-align: left;
  }
  #contact .contact .doc h2::after {
    display: none;
    content: attr(data-subtitle);
    margin: 0.5em 0 0;
    color: #a3b5bc;
    font-size: min(18px, 1.5vw);
  }
  #contact .contact .doc p {
    font-size: min(18px, 1.5vw);
  }
  #contact .contact .doc .contact-btn {
    position: relative;
    margin: min(24px, 2.0vw) auto 0 0;
    padding: 0.8em 0;
    width: 90%;
    max-width: 280px;
    color: #fff;
    font-size: min(18px, 1.5vw);
    font-weight: 500;
    background: var(--color-theme);
    border-radius: min(48px, 4.0vw);
    text-decoration: none;
    display: grid;
    place-items: center;
    transition: opacity 0.5s;
  }
  #contact .contact .doc .contact-btn::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 1.5em;
    width: 0.5em;
    aspect-ratio: 1 / 1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 2px;
    transform: translateY(-50%) rotate(-45deg);
  }
  @media (hover: hover) {
    #contact .contact .doc .contact-btn:hover {
      opacity: 0.5;
    }
  }
  #contact .contact .photo {
    width: 40%;
  }
  #footer {
    width: 100%;
    height: 40px;
    font-size: 11px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /**社内風景**/
  .company-office_img {
    list-style: none;
    display: flex;
    justify-content: space-between;
  }
  .company-office_img li {
    max-width: 48%;
  }
  /**LP遷移 banner**/
  .banner-pc {
    display: block;
    margin-top: 30px;
  }
  .banner-sp {
    display: none;
  }
  /***4月18日追記***/
  #main .qa-q {
    margin: min(24px, 2.0vw) 0 10px;
  }
  #main .qa-a {
    margin-bottom: 30px;
  }
  #main .qa-q p {
    margin: 0;
  }
}