@media screen and (max-width: 979px) {
  body {
    font-size: 16px;
    line-height: 1.8;
    padding: 60px 0 0;
  }

  input[type="button"],
  input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
  }

  .br-sp {
    display: none;
  }

  /* ------------------------------------------------------------
    ヘッダー部分
------------------------------------------------------------ */
  header {
    background: #fff;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 999;
  }

  header .inner {
    height: 40px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .logo {
    line-height: 1.0;
    margin: 0;
    z-index: 1001;
    position: relative;
  }

  header .logo a {
    display: inline-block;
  }

  header .logo a img {
    width: 178px;
    height: 33px;
    transition: all 0.3s ease;
  }

  header .openbtn {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
    z-index: 1001;
    right: -10px;
    top: 0;
  }

  header .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #666;
  }

  header .openbtn span:nth-of-type(1) {
    top: 22px;
    width: 50%;
  }

  header .openbtn span:nth-of-type(2) {
    top: 29px;
    width: 30%;
  }

  header .openbtn.active span {
    background-color: #fff;
  }

  header .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }

  header .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }

  header #gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #003d7c 0%, #001f3e 100%);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  header #gnav.is-active {
    display: flex;
    opacity: 1;
  }

  header #gnav ul {
    list-style: none;
    margin: 0;
    padding: 120px 40px 40px 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
  }

  header #gnav ul li {
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease forwards;
  }

  header #gnav ul li:nth-child(1) {
    animation-delay: 0.1s;
  }

  header #gnav ul li:nth-child(2) {
    animation-delay: 0.2s;
  }

  header #gnav ul li:nth-child(3) {
    animation-delay: 0.3s;
  }

  header #gnav ul li:nth-child(4) {
    animation-delay: 0.4s;
  }

  header #gnav ul li:nth-child(5) {
    animation-delay: 0.5s;
  }

  header #gnav ul li:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  header #gnav ul li a {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
    position: relative;
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  header #gnav ul li:last-child a {
    border-bottom: none;
  }

  header #gnav ul li a:hover,
  header #gnav ul li a:focus {
    color: #fff;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.1);
  }

  header #gnav ul li.current a {
    color: #fff !important;
    padding-left: 20px !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }

  header #gnav ul li.home-current a {
    color: #fff !important;
    padding-left: 20px !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }

  header .sns {
    display: block;
    position: fixed;
    bottom: 30px;
    left: 40px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  header.nav-open .sns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }

  header .sns ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
  }

  header .sns ul li a {
    width: 40px;
    height: 40px;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
    box-sizing: border-box;
  }

  header .sns ul li a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
  }

  header .sns ul li img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
  }

  /* ------------------------------------------------------------
    フッター部分
------------------------------------------------------------ */
  .bottomOrder {
    background: url(../images/img_bottom_order.webp) center/cover;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 0;
  }

  .bottomOrder::before {
    content: "";
    background: rgba(0, 61, 124, 0.77);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .bottomOrder h2 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 30px;
  }

  .bottomOrder ul li a {
    width: auto;
    line-height: 53px;
    display: block;
    border: #fff solid 1px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
  }

  .bottomOrder ul li a::after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  footer {
    padding: 60px 30px 80px;
    position: relative;
    border-top: #ddd solid 1px;
  }

  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #545454;
    opacity: 0.6;
    border-radius: 50%;
    z-index: 11;
  }

  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }

  #page_top a::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  footer .footer-info {
    width: 100%;
    text-align: left;
  }

  footer address {}

  footer address .externalLinkIcon::after {
    display: none;
  }

  footer .footer-info figure {
    margin: 0 0 15px;
    width: 250px;
    height: 66px;
  }

  footer .footer-info figure img {
    width: 100%;
    height: auto;
    display: block;
  }

  footer address p {
    margin: 10px 0 0;
  }

  footer address p:first-of-type {
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: bold;
  }

  footer address p:not(.telno) a {
    color: #231815;
    text-decoration: underline;
  }

  footer address p:not(.telno) a:hover {
    text-decoration: underline;
    color: #003d7c;
  }

  footer address .telno {}

  footer address .telno span a {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #231815;
    padding: 5px 10px 5px 0;
    text-decoration: none;
  }

  footer address .telno span a::before {
    background: url(../images/icon_tel.webp) center/cover;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    top: 3px;
    position: relative;
    margin: 0 10px 0 0;
  }

  footer address .telno span a:hover {
    text-decoration: none;
    color: #003d7c;
  }

  footer nav {
    margin: 60px 0;
  }

  footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }

  footer nav ul:not(.sns) li {
    width: 50%;
    text-align: left;
    position: relative;
  }

  footer nav ul:not(.sns) li a {
    color: #231815;
    font-size: 15px;
    font-weight: bold;
    display: block;
    margin-left: 10px;
    text-decoration: none;
    padding: 8px 8px 8px 0;
  }

  footer nav ul:not(.sns) li a::before {
    background: #231815;
    content: "";
    width: 5px;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  footer .copyright {
    line-height: 20px;
    margin-right: 15px;
  }

  footer .footer-bottom {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    margin: auto;
    padding: 0 30px;
    box-sizing: border-box;
  }

  footer .footer-bottom .sns {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  footer .footer-bottom .sns li img {
    width: 100%;
    height: 100%;
  }

  footer .footer-bottom .sns li:not(:last-of-type) {
    margin-right: 20px;
  }

  footer .footer-bottom .sns li a {
    width: 20px;
    height: 20px;
    display: block;
  }

  /* ------------------------------------------------------------
    パンくず部分
------------------------------------------------------------ */
  .pankuzu {
    margin: 0 20px;
  }

  .pankuzu__list {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: scroll;
  }

  .pankuzu__list li {
    font-size: 0.8rem;
    line-height: 2.0;
  }

  .pankuzu__list li:first-of-type::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f015';
    margin-right: 0.5rem;
    color: #666;
  }

  .pankuzu__list li a {
    color: #666;
    text-decoration: underline;
  }

  .pankuzu__list li a:hover {
    color: #003d7c;
  }

  .pankuzu__list li+li {
    margin-left: 1rem;
  }

  .pankuzu__list li:not(:last-of-type)::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f0da';
    margin-left: 1rem;
    color: #666;
  }

  /* ------------------------------------------------------------
    トップページ部分
------------------------------------------------------------ */
  .topImage {
    min-height: calc(90vh - 60px);
    padding: 0 0 30px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
  }

  .topImage::before {
    background: #d0dfe6;
    content: "";
    width: 100%;
    position: absolute;
    top: 30Vh;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .topImage::after {
    background: #d0dfe6;
    content: "";
    width: 100%;
    height: 10Vh;
    position: absolute;
    right: 0;
    bottom: -10vh;
    left: 0;
    margin: auto;
    z-index: -1;
  }

  .topImage figure {
    width: 90vw;
    height: 60vh;
    margin: 0 0 0 10vw;
    order: -1;
    overflow: hidden;
  }

  .topImage figure img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .topImage figure .parallax {
    object-position: 75% 50%;
  }

  .topImage .catchphrase {
    position: absolute;
    text-shadow: 1px 1px 0 #fff;
    z-index: 1;
    margin: 0 20px;
    bottom: 10vh;
  }

  .topImage .catchphrase h2 {
    color: #003d7c;
    font-family: 'Ropa Sans', 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 55px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
  }

  .topImage .catchphrase small {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .ttlTop {
    line-height: 1.0;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
  }

  .ttlTop h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .ttlTop small {
    color: #003d7c;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .btnMore {
    margin: 30px auto 30px;
    width: 225px;
    height: 55px;
  }

  .btnMore a {
    color: #003d7c;
    width: auto;
    line-height: 53px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .btnMore a::after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .btnarrow {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 0 20px 0 0;
    color: #231815;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    outline: none;
  }

  .btnarrow::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #231815;
    transition: all .3s;
  }

  .btnarrow::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 15px;
    height: 2px;
    background: #231815;
    transform: rotate(35deg);
    transition: all .3s;
  }

  .btnarrow:hover::before {
    left: 20%;
  }

  .btnarrow:hover::after {
    right: -20%;
  }

  .messageTop {
    display: flex;
    flex-direction: column-reverse;
  }

  .messageTop__txtarea {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .messageTop__txtarea__heading {
    font-size: 18px;
    font-weight: bold;
    color: #003d7c;
    line-height: 1.6;
  }

  .messageTop__txtarea__txt {
    font-weight: bold;
    text-align: justify;
    line-height: 1.8;
  }

  .messageTop__txtarea__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .messageTop__txtarea__list li {
    font-weight: bold;
    padding-left: 1.5em;
    position: relative;
    line-height: 1.8;
  }

  .messageTop__txtarea__list li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #d86600;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.65em;
  }

  .messageTop__image {
    width: 100%;
    overflow: hidden;
  }

  .messageTop__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .serviceTop {
    margin: 60px 0;
    padding: 0 20px 60px;
    position: relative;
    overflow-x: hidden;
  }

  .serviceTop::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 24px;
    left: 10px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .serviceTop__list {
    margin-top: 30px;
    counter-reset: number 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
    list-style: none;
    padding: 0;
  }

  .serviceTop__list__item {
    width: 90%;
  }

  .serviceTop__list__item:nth-child(even) {
    align-self: flex-end;
  }

  .serviceTop__list__item figure {
    overflow: hidden;
  }

  .serviceTop__list__item figure img {
    width: 100%;
    height: auto;
    display: block;
  }

  .serviceTop__list__item__txtarea {
    line-height: 1.8;
  }

  .serviceTop__list__item__txtarea__heading {
    margin: 30px 0 15px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    color: #003d7c;
    letter-spacing: 0.05em;
  }

  .serviceTop__list__item__txtarea__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin: 0 10px 0 0;
    color: #d86600;
    position: relative;
    top: 3px;
  }

  .serviceTop__list__item__txtarea__txt {
    line-height: 1.8;
    margin: 0 0 20px;
  }

  .contents {}

  .contents ul {
    margin: 0;
  }

  .contents__list__item {
    overflow: hidden;
    position: relative;
  }

  .contents__list__item::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    transition: all 0.5s ease-out;
    z-index: -1;
  }

  .contents__list__item:nth-of-type(1)::after {
    background: url(../images/top/img_company.webp) 30% 50%/cover no-repeat;
  }

  .contents__list__item:nth-of-type(2)::after {
    background: url(../images/top/img_recruit.webp) 50% 70%/cover no-repeat;
  }

  .contents__list__item a {
    background: rgba(0, 0, 0, 0.55);
    padding: 30px 20px;
    display: block;
    color: #fff;
    text-align: center;
  }

  .contents__list__item a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f138';
    font-size: 25px;
    color: #fff;
    margin: 15px auto 0;
    display: inline-block;
  }

  .contents__list__item .ttlTop small {
    color: #ff8c26;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #ff8c26 solid 3px;
    padding: 0 0 10px;
  }

  .newsTop {
    margin: 60px 0;
    padding: 0 20px 60px;
    position: relative;
  }

  .newsTop::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }

  .newsTop__list {
    margin: 0 0 30px;
    border-bottom: #ddd solid 1px;
  }

  .newsTop__list__item {
    border-top: #ddd solid 1px;
  }

  .newsTop__list__item a {
    background: #fff;
    padding: 20px 62px 20px 30px;
    display: block;
    color: #231815;
    font-weight: bold;
    position: relative;
  }

  .newsTop__list__item a::after {
    background: url(../images/arw_gray.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .newsTop__list__item__date {
    display: block;
  }

  .newsTop .btnMore {
    margin: 0 0 0 auto;
  }

  /* ------------------------------------------------------------
    共通クラス部分
------------------------------------------------------------ */
  .ttlSub {
    height: 210px;
    line-height: 1.0;
    letter-spacing: 0.1em;
    margin: 0 0 15px;
    position: relative;
  }

  .ttlSub::before {
    content: "";
    width: 100%;
    position: absolute;
    top: 45px;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .ttlSub .inner {
    background: #fff;
    margin: 0 20px;
    padding: 20px;
    display: inline-block;
  }

  .ttlSub strong {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
    display: block;
  }

  .ttlSub h1 {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding: 0 0 10px;
  }

  .u-fade-type-up {
    transform: translateY(50px);
    opacity: 0;
  }

  .u-fade-type-up.is-active {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
  }

  .is-active .u-fade-type-up {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
  }

  .is-active .u-fade-type-up:nth-child(2) {
    transition-delay: .4s;
  }

  .is-active .u-fade-type-up:nth-child(3) {
    transition-delay: .8s;
  }

  .is-active .u-fade-type-up:nth-child(4) {
    transition-delay: 1.2s;
  }

  .is-active .u-fade-type-up:nth-child(5) {
    transition-delay: 1.6s;
  }

  .is-active .u-fade-type-up:nth-child(6) {
    transition-delay: 2s;
  }

  /* ------------------------------------------------------------
    新着情報ページ部分
------------------------------------------------------------ */
  .news .ttlSub::before {
    background: url(../images/news/ttl_news.webp) center/cover;
  }

  .news .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .news .ttlEntries {
    margin: 0 20px 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }

  .news .ttlEntries h2 {
    font-size: 24px;
    margin: 40px 0 15px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
  }

  .news .ttlEntries .time {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .news .entries {
    margin: 0 20px;
    padding: 40px 0;
    border-top: #ddd solid 1px;
    border-bottom: #ddd solid 1px;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .news .entries strong {
    font-weight: bold;
  }

  .news .entries p:empty::before {
    content: "\00a0";
  }

  .news .entries img {
    max-width: 100%;
    height: auto !important;
    width: auto;
    margin: 15px 0;
    display: block;
  }

  .news .entries iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border: none;
    margin: 15px 0;
  }

  .news .entries a {
    color: #3da5bc;
    text-decoration: underline;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .news .entries a:hover {
    color: #003d7c;
  }

  .news .entries h3 {
    padding: 0 0.5em;
    color: #003d7c;
    background: transparent;
    border-left: solid 5px #d86600;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.3rem;
  }

  .news .entries ul {
    list-style: none;
    margin: 20px 0;
    background: #f5f5f5;
    padding: 1em 0.5em 1em 1em;
    border-radius: 4px;
  }

  .news .entries ul ul {
    padding-left: 1em;
    background: transparent;
  }

  .news .entries ul li {
    padding: 0 0 5px 20px;
    position: relative;
    list-style: none;
    line-height: 1.6;
  }

  .news .entries ul li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d86600;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .news .entries ul li+li {
    margin-top: .5rem;
  }

  .news .entries ol {
    counter-reset: item;
    list-style-type: none;
    background: #f5f5f5;
    margin: 20px 0;
    padding: 1em 0.5em 1em 1em;
    border-radius: 4px;
  }

  .news .entries ol ol {
    padding-left: 1em;
    background: transparent;
  }

  .news .entries ol li {
    text-indent: -1.5em;
    padding-left: 1.5em;
    padding-bottom: 5px;
    line-height: 1.6;
  }

  .news .entries ol li::before {
    counter-increment: item;
    content: counter(item)'.';
    padding-right: .5em;
    color: #003d7c;
    font-weight: bold;
  }

  .news .entries ol li+li {
    margin-top: .5rem;
  }

  .news__list {
    margin: 40px 0 30px;
    padding: 30px 20px 90px;
    position: relative;
  }

  .news__list::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    bottom: 20px;
    z-index: -1;
  }

  .news__list__item {
    border-top: #ddd solid 1px;
  }

  .news__list__item:last-of-type {
    border-bottom: #ddd solid 1px;
  }

  .news__list__item a {
    background: #fff;
    padding: 20px 62px 20px 20px;
    display: block;
    color: #231815;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
  }

  .news__list__item a::after {
    background: url(../images/arw_gray.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-image 0.3s ease;
  }

  .news__list__item a:hover {
    color: #003d7c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .news__list__item a:hover::after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
  }

  .news__list__item__date {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: normal;
  }

  .pager {
    margin: -70px 20px 90px;
    position: relative;
    z-index: 1;
  }

  .pager ul {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 2px;
  }

  .pager ul li {
    margin: 2px 1px;
  }

  .pager ul li span,
  .pager ul li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    min-width: 32px;
    transition: all 0.3s ease;
  }

  .pager ul li a {
    background: #eee;
    color: #231815;
  }

  .pager ul li a:hover {
    background: #003d7c;
    color: #fff;
  }

  .pager ul .active span {
    background: #003d7c;
    color: #fff;
  }

  .news .btnBack {
    margin: 30px auto 60px;
    width: 225px;
    height: 55px;
  }

  .news .btnBack a {
    background: #fff;
    color: #003d7c;
    width: 100%;
    line-height: 53px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .news .btnBack a::after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
    transition: background-image 0.3s ease;
  }

  .news .btnBack a:hover {
    color: #fff;
    background: #003d7c;
  }

  .news .btnBack a:hover::after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
  }

  /* ------------------------------------------------------------
    サービスページ部分
------------------------------------------------------------ */
  .service .ttlSub::before {
    background: url(../images/service/ttl_service.webp) center/cover;
  }

  .service .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .service .pankuzu+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
  }

  .service nav ul {
    font-size: 15px;
    margin: 0 20px 10px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
  }

  .service nav ul li {
    width: 100%;
  }

  .service nav ul li:nth-of-type(n+1) {
    margin-top: 10px;
  }

  .service nav ul li a {
    color: #003d7c;
    line-height: 46px;
    padding: 0 15px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .service nav ul li a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 15px;
    color: #d86600;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  .service .type {
    padding: 60px 20px 20px;
    counter-reset: number 0;
  }

  .service .type:nth-of-type(2n) {
    margin: 30px 0;
    padding: 0 20px 30px;
    position: relative;
  }

  .service .type:nth-of-type(2n)::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 16px;
    left: 10px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .service .type .hgroup {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .service .type .hgroup h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 15px;
    line-height: 1.2;
  }

  .service .type .hgroup small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .service .type ul {
    list-style: none;
    padding: 0;
  }

  .service .type ul li {
    margin-bottom: 40px;
  }

  .service .type ul li:nth-of-type(1) figure {
    margin: 0 0 0 -20px;
  }

  .service .type ul li:nth-of-type(3n+2) figure {
    width: 80%;
    margin: 0 0 0 20%;
  }

  .service .type ul li:nth-of-type(3n) figure {
    width: 90%;
  }

  .service .type ul li figure img {
    width: 100%;
    height: auto;
    display: block;
  }

  .service .type ul li .txtarea {
    padding: 20px 0 40px;
    /* 下部パディングを調整 */
    line-height: 1.8;
    /* 行間を明確に指定 */
  }

  .service .type ul li .txtarea .list__txtarea__heading {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #003d7c;
    line-height: 1.3;
  }

  .service .type ul li .txtarea .list__txtarea__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: bold;
    margin: 0 7px 0 0;
    color: #d86600;
    position: relative;
    top: 3px;
  }

  .service .type ul li .txtarea p {
    line-height: 1.8;
    margin: 0;
    text-align: left;
  }

  .service .type ul li .txtarea p + p {
    margin-top: 1rem;
  }

  /* ------------------------------------------------------------
    会社概要ページ部分
------------------------------------------------------------ */
  .company .ttlSub::before {
    background: url(../images/about/ttl_about.webp) center/cover;
  }

  .company .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .company .pankuzu+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
  }

  .company nav {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .company nav ul {
    font-size: 14px;
    margin: 0 0 10px;
    padding: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    box-sizing: border-box;
  }

  .company nav ul li {
    width: calc(50% - 5px);
    box-sizing: border-box;
  }

  .company nav ul li a {
    color: #003d7c;
    line-height: 46px;
    padding: 0 10px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-size: 13px;
    box-sizing: border-box;
  }

  .company nav ul li a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 12px;
    color: #d86600;
    margin: 0 0 0 5px;
    display: inline-block;
  }

  .company .message {
    margin: 0 0 60px;
    padding: 60px 20px 0;
    overflow-x: hidden;
  }

  .company .message .hgroup {
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .message .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .message .hgroup small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .company .message__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .company .message__image {
    width: 100%;
    text-align: center;
  }

  .company .message__image img {
    width: 70%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .company .message__text {
    width: 100%;
    line-height: 1.8;
    text-align: left;
  }

  .company .message__text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #003d7c;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .company .message__text p {
    margin: 0 0 15px;
    line-height: 1.8;
  }

  .company .message__content.message__content--text-only {
    display: block;
  }

  .company .message__content--text-only .message__text {
    width: 100%;
  }

  .company .message__content--text-only .message__text h3.message__signature {
    text-align: right;
    margin: 30px 0 0;
  }

  .company .philosophy {
    margin: 60px 0 30px;
    padding: 0 20px 60px;
    position: relative;
    overflow-x: hidden;
  }

  .company .philosophy::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }

  .company .philosophy .hgroup {
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .philosophy .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .philosophy .hgroup small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .company .philosophy__content {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .company .philosophy__slogan {
    font-size: 20px;
    font-weight: bold;
    color: #003d7c;
    margin: 0 0 30px;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }

  .company .philosophy__text {
    text-align: left;
    line-height: 1.8;
  }

  .company .philosophy__text p {
    margin: 0 0 15px;
    line-height: 1.8;
  }

  .company .profile {
    text-align: center;
    margin: 0 0 25px;
    padding: 30px 0 0;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .profile h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .profile small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .company .table {
    margin: 0 20px 80px;
    border-bottom: #ddd solid 1px;
    line-height: 1.8;
    overflow-x: hidden;
  }

  .company .table>dt {
    padding: 30px 0 15px;
    border-top: #ddd solid 1px;
    font-weight: bold;
    text-align: left;
    word-wrap: break-word;
  }

  .company .table>dd {
    padding: 0 0 30px;
    text-align: left;
    line-height: 1.8;
    word-wrap: break-word;
  }

  .company .table>dd ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .company .table>dd ul li {
    padding: 3px 0;
    line-height: 1.6;
  }

  .company .table>dd dt:not(:first-of-type) {
    margin: 30px 0 0;
  }

  .company .table>dd a {
    color: #231815;
  }

  .company .access {
    margin: 40px 0 0;
    padding: 0 20px 60px;
    position: relative;
    overflow-x: hidden;
  }

  .company .access::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 16px;
    left: 10px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .company .access .hgroup {
    text-align: center;
    padding: 0 0 25px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .access .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .access .hgroup small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .company .access .map {
    margin: 0 10px 0;
    width: calc(100% - 20px);
    box-sizing: border-box;
    text-align: right;
  }

  .company .access .map #map {
    background: #eee;
    height: 300px;
    margin: 0 auto;
    width: 100%;
  }

  .company .access .map dl {
    background: #003d7c;
    margin: -30px -20px 0 auto;
    padding: 15px;
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    text-align: left;
  }

  .company .access .map dl dt {
    font-size: 16px;
    font-weight: bold;
  }

  .company .access .map dl dd {
    margin: 8px 0 0;
    line-height: 1.6;
    font-size: 14px;
  }

  .company .access .map dl dd .material-icons {
    vertical-align: middle;
    margin-right: 5px;
    font-size: 18px;
  }

  .company .history {
    padding: 30px 20px;
    overflow-x: hidden;
  }

  .company .history .hgroup {
    text-align: center;
    margin: 30px 0 25px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .history .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .history .hgroup small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .company .history .history__list {
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 20px 30px 50px;
    position: relative;
    box-sizing: border-box;
  }

  .company .history .history__list::before {
    content: "";
    width: 2px;
    height: 90%;
    background: repeating-linear-gradient(to bottom,
      #999,
      #999 2px,
      transparent 2px,
      transparent 4px);
    position: absolute;
    top: 40px;
    bottom: 30px;
    left: 29px;
  }

  .company .history .history__list dt {
    margin: 0 0 10px;
    color: #d86600;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
    word-wrap: break-word;
  }

  .company .history .history__list dt:nth-of-type(n+2) {
    margin-top: 20px;
  }

  .company .history .history__list dt::before {
    content: "";
    background: #d86600;
    width: 10px;
    height: 10px;
    margin: auto;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    bottom: 0;
    left: -25px;
  }

  .company .history .history__list dd {
    padding-bottom: 10px;
    border-bottom: #ddd solid 1px;
    line-height: 1.8;
    text-align: left;
    word-wrap: break-word;
  }

  .company .history .history__list dd+dd {
    margin-top: 10px;
  }

  .loopSlider {
    margin: 40px 0 0;
    overflow: hidden;
  }

  .loopslider__wrap {
    position: relative;
    display: flex;
  }

  .loopslider__wrap__slides {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .loopslider__wrap__slides li {
    flex-shrink: 0;
    margin-right: 10px;
  }

  .loopslider__wrap__slides img {
    height: 120px;
    width: auto;
    object-fit: cover;
  }

  /* ------------------------------------------------------------
    採用情報部分
------------------------------------------------------------ */
  .recruit .ttlSub::before {
    background: url(../images/recruit/ttl_recruit.webp) center/cover;
  }

  .recruit .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .recruit .pankuzu+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
  }

  .recruit nav ul {
    font-size: 14px;
    margin: 0 20px 10px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
  }

  .recruit nav ul li {
    width: 100%;
  }

  .recruit nav ul li:nth-of-type(n+1) {
    margin-top: 10px;
  }

  .recruit nav ul li a {
    color: #003d7c;
    line-height: 46px;
    padding: 0 15px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .recruit nav ul li a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 15px;
    color: #d86600;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  .recruit .recruit__job {
    text-align: center;
    padding: 60px 0 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .recruit__job .recruit__label {
    display: block;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .recruit__job .recruit__heading {
    display: inline-block;
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .recruit .job h2 {
    margin: 0 20px;
    padding: 0 0 15px 10px;
    font-size: 24px;
    line-height: 1.0;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-left: #003d7c solid 2px;
  }

  .recruit .job figure {
    margin: 20px 0;
  }

  .recruit .job figure img {
    width: 100%;
    height: auto;
    display: block;
  }

  .recruit .description {
    padding: 30px 30px 30px 20px;
    position: relative;
    line-height: 1.8;
  }

  .recruit .description::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }

  .recruit .description h3 {
    background: #003d7c;
    color: #fff;
    padding: 0 30px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
    position: absolute;
    top: -15px;
    left: 20px;
  }

  .recruit .description h4 {
    margin: 10px auto 0;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
  }

  .recruit .description .list {
    margin: 0 auto;
    list-style: none;
    padding: 0;
  }

  .recruit .description .list li {
    padding: 0 0 0 20px;
    position: relative;
    line-height: 1.8;
    text-align: left;
  }

  .recruit .description .list li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d86600;
    position: absolute;
    top: 11px;
    left: 0;
  }

  .recruit .description .skill__list {
    margin: 0 auto;
    list-style: none;
    padding: 0;
  }

  .recruit .description .skill__list li {
    padding: 0 0 0 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

  .recruit .description .skill__list li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #495057;
    position: absolute;
    top: 9px;
    left: 0;
  }

  .recruit .description p {
    margin: 0 auto;
    font-size: 14px;
    text-align: left;
    line-height: 1.8;
  }

  .recruit .guideline {
    padding: 30px 20px 0;
    position: relative;
  }

  .recruit .guideline h3 {
    background: #003d7c;
    color: #fff;
    padding: 0 30px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
    position: absolute;
    top: -15px;
    left: 20px;
  }

  .recruit .table {
    margin: 0;
    border-bottom: #ddd solid 1px;
    line-height: 1.8;
  }

  .recruit .table>dt {
    padding: 30px 0 15px;
    border-top: #ddd solid 1px;
    font-weight: bold;
    text-align: left;
  }

  .recruit .table>dd {
    padding: 0 0 30px;
    text-align: left;
    line-height: 1.8;
  }

  .recruit .table>dd dl {
    margin: 0;
  }

  .recruit .table>dd dl dd {
    padding: 3px 0;
    border: none;
    width: auto;
    line-height: 1.6;
  }

  .recruit .btnForm {
    margin: 30px auto 60px;
    width: 225px;
    height: 55px;
  }

  .recruit .btnForm a {
    background: #fff;
    color: #003d7c;
    width: auto;
    line-height: 53px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }

  .recruit .btnForm a::after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .recruit__report {
    margin: 0 0 30px;
    padding: 30px 20px 60px;
    position: relative;
  }

  .recruit__report::before {
    background: #d0dfe6;
    content: "";
    position: absolute;
    top: 45px;
    left: 10px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .recruit__report .hgroup {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .recruit__report__label {
    display: block;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .recruit__report__heading {
    display: inline-block;
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .recruit__report__list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    list-style: none;
    padding: 0;
  }

  .recruit__report__list li {
    display: flex;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
  }

  .recruit__report__list__image {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .recruit__report__list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recruit__report__list__col {
    width: calc(100% - 20vw - 20px);
    box-sizing: border-box;
  }

  .recruit__report__list li:nth-of-type(2n) .recruit__report__list__col {
    order: -1;
  }

  .recruit__report__list__label {
    display: inline-block;
    margin: 0 5px 0 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #d86600;
    position: relative;
    top: 0;
  }

  .recruit__report__list__name {
    display: inline-block;
    font-size: 20px;
    line-height: 1.4;
  }

  .recruit__report__list__name small {
    display: block;
  }

  .recruit__report__list__col p {
    background: #fff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .recruit__report__list__col p::after {
    content: "";
    background: #fff;
    width: 16px;
    height: 16px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
  }

  .recruit__report__list li:nth-of-type(2n+1) .recruit__report__list__col p::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: -15px;
  }

  .recruit__report__list li:nth-of-type(2n) .recruit__report__list__col p::after {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: -15px;
  }

  /* ------------------------------------------------------------
    よくある質問部分
------------------------------------------------------------ */
  .faq .ttlSub::before {
    background: url(../images/faq/ttl_faq.webp) center/cover;
  }

  .faq .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .faq .pankuzu+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
  }

  .faq__list {
    margin: 0 20px 80px;
    list-style: none;
    padding: 0;
  }

  .faq__list li+li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: #ddd solid 1px;
  }

  .faq__list__heading {
    display: flex;
    align-items: flex-start;
    margin: 0 0 10px;
    color: #003d7c;
  }

  .faq__list__heading::before {
    background: #003d7c;
    content: "Q";
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    display: inline-block;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    flex-shrink: 0;
  }

  .faq__list__heading span {
    width: calc(100% - 40px - 10px);
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    text-align: left;
    padding-top: 2px;
  }

  .faq__list__ans {
    display: flex;
    align-items: flex-start;
  }

  .faq__list__ans::before {
    background: #d86600;
    content: "A";
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    display: inline-block;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    flex-shrink: 0;
  }

  .faq__list__ans span {
    width: calc(100% - 40px - 10px);
    line-height: 1.8;
    text-align: left;
    padding-top: 2px;
    font-size: 16px;
  }


  .loopSlider {
    height: 55vw;
    margin: 40px 0 80px;
    overflow: hidden;
    position: relative;
  }

  .loopSlider .loopslider__wrap {
    height: 55vw;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides {
    display: flex;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides li {
    width: 83vw;
    height: 55vw;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ------------------------------------------------------------
    プライバシーポリシー部分
------------------------------------------------------------ */
  .privacy .ttlSub::before {
    background: url(../images/privacy/ttl_privacy.webp) center/cover;
  }

  .privacy .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .privacy .pankuzu+p {
    margin: 30px 20px;
    padding: 0;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
  }

  .privacy .privacy__list {
    margin: 0 20px;
    padding: 0;
    counter-reset: listnum;
    list-style: none;
  }

  .privacy .privacy__list dt {
    font-weight: bold;
    margin: 0 0 0.5rem;
    text-align: left;
  }

  .privacy .privacy__list dt::before {
    counter-increment: listnum;
    content: counter(listnum) ".";
    padding-right: 5px;
    font-weight: bold;
  }

  .privacy .privacy__list dd {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .privacy .privacy__list dd a {
    text-decoration: none;
    color: #3da5bc;
    word-wrap: break-word;
  }

  .privacy .privacy__list dd a:hover {
    color: #003d7c;
  }

  .privacy .privacy__list dd+dt {
    margin-top: 1.5rem;
  }

  .privacy .privacy__list dd ul {
    background: #f3f3f3;
    margin-top: 1rem;
    padding: 20px;
    list-style: none;
  }

  .privacy .privacy__list dd ul li {
    padding: 0 0 0 1.2em;
    position: relative;
    line-height: 1.8;
    text-align: left;
  }

  .privacy .privacy__list dd ul li+li {
    margin-top: 0.5rem;
  }

  .privacy .privacy__list dd ul li:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }

  .privacy .privacy__contact {
    margin: 40px 20px 0;
    padding: 0;
    font-style: normal;
  }

  .privacy .privacy__contact .hgroup {
    text-align: center;
    margin: 30px 0 25px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .privacy .privacy__contact .hgroup h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .privacy .privacy__contact .hgroup small {
    color: #003d7c;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #003d7c solid 3px;
    padding: 0 0 10px;
  }

  .privacy .privacy__contact .table {
    border-bottom: #ddd solid 1px;
    display: block;
    padding: 0;
  }

  .privacy .privacy__contact .table>dt {
    padding: 20px 0 10px;
    border-top: #ddd solid 1px;
    font-weight: bold;
    text-align: left;
  }

  .privacy .privacy__contact .table>dd {
    padding: 0 0 20px;
    border-top: none;
    text-align: left;
    line-height: 1.8;
  }

  .privacy .privacy__contact .table>dd a {
    text-decoration: none;
    color: #3da5bc;
    word-wrap: break-word;
  }

  .privacy .privacy__contact .table>dd a:hover {
    color: #003d7c;
  }

  .privacy .privacy__date {
    margin: 20px 20px 40px;
    padding: 0;
    text-align: left;
    line-height: 1.6;
  }

  /* ------------------------------------------------------------
    お問い合わせ部分
------------------------------------------------------------ */
  .contact .ttlSub:before {
    background: url(../images/contact/ttl_contact.webp) center/cover;
  }

  .contact .ttlSub h1 {
    color: #003d7c;
    border-bottom: #003d7c solid 3px;
  }

  .contact .pankuzu+p {
    margin: 30px 20px;
    font-weight: bold;
    text-align: justify;
  }

  .contact .btnBack {
    margin: 30px auto 60px;
    width: 225px;
    height: 55px;
  }

  .contact .btnBack a {
    background: #fff;
    color: #003d7c;
    width: auto;
    line-height: 53px;
    border: #003d7c solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .contact .btnBack a::after {
    background: url(../images/arw.png) no-repeat center/17px auto;
    content: "";
    width: 17px;
    height: 55px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .contact .telArea {
    padding: 30px;
    margin: 0 20px 30px;
    border: #d0dfe6 solid 5px;
  }

  .contact .telArea dt {
    font-size: 20px;
    font-weight: bold;
    color: #003d7c;
    margin: 0 0 15px;
  }

  .contact .telArea dd.telno {
    font-size: 36px;
    margin: 20px 0 0;
    font-weight: bold;
  }

  .contact .telArea dd.telno a {
    color: #231815;
    font-weight: bold;
  }

  form dl {
    margin: 0 20px;
    border-bottom: #ddd solid 1px;
    display: block;
  }

  form dl dt {
    padding: 20px 0 10px;
    font-weight: bold;
    border-top: #ddd solid 1px;
  }

  form dl dt label {
    font-weight: bold;
  }

  form dl dt .must::after {
    background: #d9534f;
    content: "必須";
    margin: 0 0 0 10px;
    display: inline-block;
    padding: 0 15px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
  }

  form dl dd {
    padding: 0 0 20px;
    border-top: none;
  }

  form dl dd .caution {
    color: #d9534f;
    font-weight: bold;
    margin: 0 0 10px;
    display: block;
    width: 100%;
  }

  form>.caution {
    color: #d9534f;
    background: #f2dede;
    border: 1px solid #ebccd1;
    padding: 15px;
    margin: 0 20px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: block;
    font-size: 14px;
  }

  form dl dd input[type="text"],
  form dl dd input[type="email"],
  form dl dd input[type="tel"] {
    width: 100%;
    height: 50px;
    line-height: 1.5;
    border: #ddd solid 1px;
    font-size: 16px;
    padding: 0 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
  }

  form dl dd textarea {
    width: 100%;
    height: 250px;
    border: #ddd solid 1px;
    font-size: 16px;
    padding: 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
    resize: vertical;
  }

  form dl dd .privacy-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    line-height: 1.5;
    margin-top: 10px;
  }

  form dl dd .privacy-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    vertical-align: middle;
    -webkit-appearance: checkbox;
    border-radius: 0;
  }

  form dl dd .privacy-label a {
    color: #003d7c;
    text-decoration: underline;
  }

  input::placeholder,
  textarea::placeholder {
    color: #ccc;
  }

  form ul.btnSubmit {
    margin: 30px 0 0;
    padding: 0 20px 60px;
    display: flex;
    flex-flow: column-reverse;
    gap: 20px;
  }

  form ul.btnSubmit li {
    width: 100%;
  }

  form ul.btnSubmit li input[type="submit"] {
    width: 100%;
    height: 55px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 53px;
    display: inline-block;
    border: #003d7c solid 1px;
    letter-spacing: 0.1em;
    -webkit-appearance: none;
    border-radius: 0;
  }

  form ul.btnSubmit li .submit,
  form ul.btnSubmit li .send {
    background: #003d7c;
    color: #fff;
  }

  form ul.btnSubmit li .back {
    background: #fff;
    color: #003d7c;
  }

  .complete-message {
    margin: 30px 20px 40px;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
  }

  .complete-message .check-icon {
    margin-bottom: 15px;
  }

  .complete-message .check-icon i {
    font-size: 36px;
    color: #28a745;
  }

  .complete-message h2 {
    font-size: 20px;
    color: #003d7c;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .complete-message p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .complete-message p.note {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
  }
}