/* Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,600&family=Zen+Kaku+Gothic+Antique:wght@400;500&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Inter', 'Zen Kaku Gothic New', sans-serif;
}
@media (max-width: 991px) {
    /* 背景スクロール防止 */
    html.menu-open,
    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }
    /* メニューオープン時の黒背景オーバーレイ */
    body.menu-open header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 9997;
        animation: fadeIn 0.4s ease;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            pointer-events: none;
        }
        to {
            opacity: 1;
            pointer-events: auto;
        }
    }
}
main {
    padding-top: 80px;
}
@media (max-width: 991px) {
    main {
        padding-top: 50px;
    }
}

/* フェードインアニメーション */
.js-fadein {
    opacity: 0;
    transform: translateY(30px);
}
body.is-loaded .js-fadein {
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fadein.is-fade-show {
    opacity: 1;
    transform: translateY(0);
}

:root {
    --bs-primary: #122A88;
    --bs-info: #00a0e9;
    --bs-body-color: #0E0E0E;
    --bs-secondary-color: #0E0E0E;
}
.fs-11 {
    font-size: 0.6875rem; /* 11px */
}
.fs-12 {
    font-size: 0.75rem; /* 12px */
}
.fs-14 {
    font-size: 0.875rem; /* 14px */
}
.fs-18 {
    font-size: 1.125rem; /* 18px */
}
.fs-22 {
    font-size: 1.375rem; /* 22px */
}
.fs-30 {
  font-size: 1.875rem; /* 30px */
}
.fs-32 {
    font-size: 2rem; /* 32px */
}
.fs-36 {
    font-size: 2.25rem; /* 36px */
}
.fs-44 {
    font-size: 2.75rem; /* 44px */
}
.fs-46 {
    font-size: 2.875rem; /* 46px */
}
.px-65 {
    padding: 0 65px;
}
.py-90 {
    padding: 90px 0;
}
.py-120 {
    padding: 120px 0;
}
.py-140 {
    padding: 140px 0;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mt-70 {
    margin-top: 70px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mb-150 {
    margin-bottom: 150px;
}
.mb-180 {
    margin-bottom: 180px;
}
.mb-215 {
    margin-bottom: 215px;
}
@media (max-width: 991px) {
    .px-65 {
        padding: 0 30px;
    }
    .py-90 {
        padding: 45px 0;
    }
    .py-120 {
        padding: 60px 0;
    }
    .py-140 {
        padding: 70px 0;
    }
    .mb-65 {
        margin-bottom: 30px;
    }
    .mt-70 {
        margin-top: 35px;
    }
    .mb-80 {
        margin-bottom: 40px;
    }
    .mb-90 {
        margin-bottom: 45px;
    }
    .mb-100 {
        margin-bottom: 50px;
    }
    .mb-150 {
        margin-bottom: 75px;
    }
    .mb-180 {
        margin-bottom: 90px;
    }
    .mb-215 {
        margin-bottom: 105px;
    }
}

.fc-blue {
    color: #122A88 !important;
}
.fc-lightblue {
    color: #00A0E9 !important;
}
.fc-gray {
    color: #939393 !important;
}
.fc-black {
    color: #0E0E0E !important;
}
.fc-black-2 {
    color: #0A0A0A !important;
}
.bg-gray {
    background-color:#F2F2F2 !important;
}
.bg-lightblue {
    background-color: #00A0E9 !important;
}
.bg-blue {
    background-color: #122A88 !important;
}
.bg-bicolor1 {
    background: linear-gradient(121deg,#122A88 0%, #122A88 68%, #0E226D 68%, #0E226D 100%);
}

/* font family */
.ff-antique {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

/* title-background */
.title-background {
    position: relative;
}
.title-background::before {
    content: attr(data-title);
    position: absolute;
    top:0;
    left: -30px;
    writing-mode: vertical-rl;
    font-size: 12.5rem;
    font-weight: 700;
    color: #FAFAFA;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: -1;
}
@media (max-width: 991px) {
    .title-background::before {
        font-size: 6.5rem;
    }
}

/* border */
.border-blue {
    border: 1px solid #122A88;
}
.border-left-blue {
    border-left-color: #122A88 !important;
}
.border-top-dashed {
    border-top: 1px dashed #939393;
}
.border-bottom-dashed {
    border-bottom: 1px dashed #939393;
}
.border-y-dashed > div {
    border-top: 1px dashed #939393;
    border-bottom: 1px dashed #939393;
}
.border-bottom-system {
    position: relative;
    padding-bottom: 8px;
}
.border-bottom-system::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #00A0E9;
}
.border-bottom-baycolor > li,
.border-bottom-baycolor > div {
    position: relative;
    border-bottom: 2px solid #E2E2E2;
}
.border-bottom-baycolor > li::before,
.border-bottom-baycolor > div::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: calc(100vw * 200 / 1242);
    height: 2px;
    background: #00A0E9;
}
.border-bottom-baycolor--short > div {
    border-bottom: 1px solid #939393;
}
.border-bottom-baycolor--short > div::before {
    bottom: -1px;
    width: 120px;
    height: 1px;
}

/* container */
.container-slider {
    max-width: 1260px;
    padding-right: 50px;
    padding-left: 50px;
}
.container-slider--kv {
    max-width: 100%;
    width: 100%;
    padding: 0;
}
@media (max-width: 991px) {
    .container-slider {
        padding-right: 40px;
        padding-left: 40px;
    }
    .container-slider--kv {
        padding: 0;
    }
}

/* breadcrumb */
.breadcrumb-item + .breadcrumb-item {
    position: relative;
    padding-left: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 13px;
    display: inline-block;
    padding: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #0E0E0E;
    transform: translateY(-50%);
}

/* カスタムボタンスタイル */
.btn.btn-custom-primary {
    background-color: #122A88;
    border-color: #122A88;
    color: #FFFFFF;
    padding: 9px 45px !important;
}
.btn.btn-custom-primary:hover,
.btn.btn-custom-primary:focus,
.btn.btn-custom-primary:active {
    background-color: #0d1f66;
    border-color: #0d1f66;
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .btn-contact {
        background-color: #FFFFFF !important;
        color: #122A88 !important;
        border-color: #FFFFFF !important;
        padding: 0.75rem 3rem !important;
        font-size: 1.2rem !important;
    }
    .btn-contact:hover {
        background-color: #00A0E9 !important;
        color: #FFFFFF !important;
        border-color: #00A0E9 !important;
    }
    .btn.btn-custom-primary {
        font-size: 1.5rem !important;
        width: 100%;
        min-width: 240px;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

/* カスタムナビゲーションリンク */
.nav-link-custom {
    color: #0E0E0E !important;
}
.nav-link-custom:hover {
    color: #122A88 !important;
}

/* list */
.custom-list-number {
  list-style: none;
  counter-reset: num;
  padding-left: 0;
}
.custom-list-number > li {
  position: relative;
  counter-increment: num;
  padding-left: 1.4em;
}
.custom-list-number > li::before {
  content: counter(num);
  position: absolute;
  top: -1px;
  left: 0;
  color: #122A88;
  font-weight: 600;
  font-style: italic;
}
.custom-list-disc {
  list-style: none;
  padding-left: 0;
}
.custom-list-disc > li {
  position: relative;
  padding-left: 1.1em;
}
.custom-list-disc > li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0E0E0E;
}
.custom-list-disc--blue > li {
    padding-left: 1.9em;
}
.custom-list-disc--blue > li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #122A88;
}

/* navbar */
.navbar {
    padding: 15px 0;
    background-color: #FFFFFF;
}
.navbar > .container {
    max-width: 1310px;
    padding-right: 5px;
}
@media (max-width: 991px) {
    .navbar {
        padding: 0;
    }
    .navbar-brand {
        width: 160px;
        margin-right: 0;
        padding: 5px 0;
    }
    .navbar-brand img {
        width: 100%;
        height: auto;
    }
    /* フルスクリーンオーバーレイメニュー */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 85%;
        box-sizing: border-box;
        height: 100% !important;
        padding: 50px 20px 20px;
        overflow-y: scroll;
        background-color: rgba(18, 42, 136, 0.98);
        z-index: 9998;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    .menu-open .navbar-collapse.collapsing,
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .navbar-nav {
        margin: 0 auto;
    }
    .navbar-nav .nav-item {
        margin: 0 !important;
        opacity: 0;
        width: 100%;
        animation: fadeInUp 0.5s ease forwards;
    }
    .navbar-nav .nav-link {
        color: #FFFFFF !important;
        font-size: 1.5rem !important;
        padding: 1rem !important;
        margin: 0 !important;
    }
    .navbar-nav .nav-link:hover {
        color: #00A0E9 !important;
    }
    .navbar-nav .nav-item.ms-5 {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    .navbar-nav .nav-item .btn.btn-custom-primary {
        color: #FFFFFF !important;
        font-size: 1.5rem !important;
        padding: 1rem !important;
        margin: 0 !important;
        min-width: 0;
        background-color: transparent !important;
        border: none !important;
        text-align: left;
    }
    /* ハンバーガーアイコンのアニメーション */
    .navbar-toggler {
        position: relative;
        z-index: 9999;
        width: 50px;
        height: 50px;
        padding: 0;
        border: none !important;
        border-radius: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .navbar-toggler-icon {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: none;
        display: block;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        height: 3px;
        background-color: #122A88;
        left: 0;
        transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, background-color 0.3s ease;
    }
    .navbar-toggler-icon::before {
        top: 23px;
        left: 13px;
        width: 23px;
    }
    .navbar-toggler-icon::after {
        right: 14px;
        bottom: 16px;
        left: auto;
        width: 17px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
        background-image: none;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 26px;
        transform: rotate(45deg);
        background-color: #FFFFFF;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 21px;
        width: 23px;
        transform: rotate(-45deg);
        background-color: #FFFFFF;
    }
}

/* hover */
.hover-opacity {
    transition: opacity 0.3s ease;
}
.hover-opacity:hover {
    opacity: 0.75;
}

/* footer */
.footer {
    background-color: #F2F2F2;
    padding: 78px 0;
}
.footer a:hover {
    color: #122A88 !important;
    transition: color 0.3s ease;
    text-decoration: none;
}
.footer .col-md-6 .list-unstyled a {
    display: block;
    transition: transform 0.3s ease;
}
.footer .col-md-6 .list-unstyled a:hover {
    transform: translateX(.8rem);
}
/* SNSアイコンホバーエフェクト */
.footer .d-flex img {
    transition: opacity 0.3s ease;
}
.footer .d-flex a:hover img {
    opacity: 0.6;
}
@media (max-width: 991px) {
    .footer {
        padding: 35px 0;
    }
    .footer .container .row.mb-90 .col-md-6 {
        width: 100%;
    }
    .footer .container .row.mb-90 .col-md-6 .row.justify-content-end {
        margin-top: 35px !important;
        justify-content: center !important;
    }
    .footer .container .row.mb-90 .col-md-6 .row.justify-content-end .list-unstyled {
        width: 100% !important;
    }
    .footer .container .row.justify-content-between > * {
        text-align: center;
        justify-content: center !important;
        width: 100% !important;
    }
    .footer .container .row.justify-content-between > ul {
        margin: 15px 0;
    }
}

/* image */
.image-wantedly > img {
    width: 140px;
    height: 24px;
}
.title-decoration > picture > img {
    width: 24px;
    height: 40px;
}
.title-decoration--large > picture > img {
    width: 31px;
    height: 51px;
}

/* .kv  */
.kv-bg {
    position: relative;
    overflow: hidden;
    height: 60.9144543vw;
}
.kv-title {
    position: relative;
    z-index: 10;
}
.container-slider--kv {
    position: absolute;
    inset: 0;
    z-index: 1;
}
@media (max-width: 991px) {
    .kv-bg {
        height: 66.6666667vw;
    }
    .kv-title h1 {
        font-size: 16px !important;
    }
}

/* KV Swiper インタビュースライダー */
.kv-slider {
    height: 100%;
}
.kv-slider .swiper-image {
    height: 100%;
}
.swiper-wrapper--kv {}
.swiper-slide--kv {}
.swiper-slide--kv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ヒーローセクションの幾何学的背景 */
.hero-bg {
    min-height: 500px;
}

/* セクション見出しletter-spacing */
.letter-spacing-wide {
    letter-spacing: 0.3rem;
}

/* 他 letter-spacing */
.ls-003 {
    letter-spacing: .03em;
}
.ls-02 {
    letter-spacing: .2em;
}
.ls-04 {
    letter-spacing: .4em;
}

/* 最大幅の設定 */
.mw-700 {
    max-width: 700px;
}
.mw-800 {
    max-width: 800px;
}
.mw-1266 {
    max-width: 1266px;
}

/* 画像の最大幅 */
.img-w-200 {
    max-width: 200px;
}
.img-w-260 {
    max-width: 260px;
}

/* hover */
.hover-label.active {
    color: #FFFFFF !important;
    background-color: #00A0E9 !important;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
    }
}

/* text */
.text-view-more {
    position: relative;
    padding-right: 2.3em;
    letter-spacing: .01em;
}
.text-view-more::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: url(../image/common/icon_link-blue.webp) 0 0 no-repeat, url(../image/common/icon_link-blue.png) 0 0 no-repeat;
    background-size: contain, contain;
}
.text-caption {
    color: #939393;
    font-weight: 700;
}
.text-caption > span {
    display: inline-block;
    font-weight: normal;
    width: 24px;
    height: 24px;
    background: url(../image/common/icon_link-black.webp) 0 0 no-repeat, url(../image/common/icon_link-black.png) 0 0 no-repeat;
    background-size: contain, contain;
    vertical-align: middle;
    margin-left: 0.4em;
}

/* INTERVIEW Swiper インタビュースライダー */
.interview-slider .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.3s ease;
    border: 1px dotted #939393;
}
.interview-slider .swiper-slide > a {
    padding: 20px;
    transition: opacity 0.3s ease;
    background-color: #FFFFFF;
}
.interview-slider .swiper-slide .swiper-image {
    position: relative;
    width: 99.1768323%;
    height: 320px;
    margin-bottom: 8px;
}
.interview-slider .swiper-slide .swiper-image::before ,
.interview-slider .swiper-slide .swiper-image::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}
.interview-slider .swiper-slide .swiper-image::before {
    top: -5px;
    left: -6px;
    border-width: 42px 60px 0px 0px;
	border-color: #FFFFFF transparent transparent transparent;
}
.interview-slider .swiper-slide .swiper-image::after {
    right: -5px;
    bottom: -2px;
    border-width: 0px 0px 42px 60px;
    border-color: transparent transparent #FFFFFF transparent;
}
.interview-slider .swiper-slide .swiper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0;
}
.interview-slider .swiper-slide-active {
    opacity: 1;
}
.interview-slider .swiper-slide-active.swiper-slide > a:hover {
    opacity: 0.75;
}
.interview-slider .swiper-slide:not(.swiper-slide-active) > a {
    pointer-events: none;
}
@media (max-width: 991px) {
    .interview-slider .swiper-slide .swiper-image {
        height: 84.8484848vw;
    }
}
@media (max-width: 767px) {
    .interview-slider .swiper-slide .swiper-image {
        height: 65.1890482vw;
    }
}

/* INTERVIEW Swiper ナビゲーションボタン */
.interview-relative {
    position: relative;
}
.interview-relative .swiper-button-prev,
.interview-relative .swiper-button-next {
    width: 60px;
    height: 60px;
    top: calc(50% + 16px);
    opacity: 1;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}
.interview-relative .swiper-button-prev:hover,
.interview-relative .swiper-button-next:hover {
    opacity: 0.75;
}
.interview-relative .swiper-button-prev {
    left: 7px;
    background: url(../image/common/icon_slider-prev.webp) 0 0 no-repeat, url(../image/common/icon_slider-prev.png) 0 0 no-repeat;
    background-size: contain, contain;
}
.interview-relative .swiper-button-next {
    right: 7px;
    background: url(../image/common/icon_slider-next.webp) 0 0 no-repeat, url(../image/common/icon_slider-next.png) 0 0 no-repeat;
    background-size: contain, contain;
}
.interview-relative .swiper-button-prev::after,
.interview-relative .swiper-button-next::after {
    display: none;
}
@media (max-width: 991px) {
    .interview-relative .swiper-button-prev,
    .interview-relative .swiper-button-next {
        top: 50%;
        width: 40px;
        height: 40px;
        opacity: 1;
    }
    .interview-relative .swiper-button-prev {
        left: 7px;
    }
    .interview-relative .swiper-button-next {
        right: 7px;
    }
}

/* news-link */
.news-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.news-link:hover {
    background-color: transparent !important;
    transition: none !important;
}
.news-link-outer > div {
    transition: background-color 0.3s ease;
}
.news-link-outer:hover > div {
    background-color: #FCFCFC;
}
.news-link-outer > div .circle-arrow {
    transition: background-color 0.3s ease;
}
.news-link-outer:hover > div .circle-arrow {
    background-color: #122A88;
}
.news-link-outer:hover > div a {
    transition: background-color 0.3s ease;
}
.news-link-outer:hover > div a:hover {
    background-color: #00A0E9 !important;
    color: #FFFFFF !important;
}

.news-item {
    width: 100%;
}
.news-text {
    width: calc(100% - 260px - 60px - 7.9% - 7.9%);
    margin: 0 7.9%;
}
.news-image {
    width: 260px;
    height: 172px;
}
.news-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {
    .news-item {
        gap: 0 10px;
        padding: 20px 0 !important;
    }
    .news-text {
        width: calc(100% - 150px - 10px);
        margin: 0;
    }
    .news-image {
        width: 150px;
        height: 110px;
    }
}
.circle-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: rgba(14, 14, 14, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-arrow > picture > img {
    width: 20px;
    height: 20px;
}
@media (max-width: 991px) {
    .circle-arrow {
        display: none;
    }
    .circle-arrow > picture > img {
        width: 18px;
        height: 18px;
    }
}

/* news page */
.news-content {
    border: dotted 1px #0E0E0E;
    margin-top: 5rem;
    padding: 6.25rem 5rem 2.5rem;
    border-radius: 16px;
}
.wysiwyg h1 {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 400;
    margin: 2.8rem 0;
}
.wysiwyg h2 {
    padding: 23px 21px;
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    margin: 5rem 0 3.75rem;
    background-color: #F2F2F2;
    border-left: 6px solid #122A88;
}
.wysiwyg h3 {
    padding: 12px 15px;
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    margin: 3.8rem 0 2.5rem;
    border-left: 6px solid #00A0E9;
}
.wysiwyg h4 {
    padding: 8px 15px;
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    margin: 3.6rem 0 2.5rem;
    border-left: 6px solid #939393;
}
.wysiwyg h5 {
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    margin: 4.4rem 0 1.25rem;
}
.wysiwyg p {
    font-size: 1.125rem; /* 18px */
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 400;
    margin: 1.3rem 0;
    line-height: 1.6;
}
.wysiwyg img {
    display: block;
    margin: 3.9rem auto;
    max-width: 100%;
    height: auto;
}
.wysiwyg ul ,
.wysiwyg ol {
    list-style: none;
    padding-left: 0;
}
.wysiwyg ol {
    counter-reset: num;
}
.wysiwyg ul li ,
.wysiwyg ol li {
    position: relative;
    font-size: 1.125rem;
    padding-left: 1.9em;
}
.wysiwyg ul li:nth-of-type(n + 2) ,
.wysiwyg ol li:nth-of-type(n + 2) {
    margin-top: 1.7rem;
}
.wysiwyg ol li {
    counter-increment: num;
}
.wysiwyg ul li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #122A88;
}
.wysiwyg ol li::before {
    content: counter(num);
    position: absolute;
    top: -1px;
    left: 10px;
    color: #122A88;
    font-weight: 600;
    font-style: italic;
}
.wysiwyg table {
    table-layout: fixed;
    width: auto !important;
    margin: 3.75rem 0;
    min-width: 68%;
}
.wysiwyg table th {
    padding: 18px 19px;
    font-weight: 500;
    border-bottom: 2px solid #00A0E9;
    font-size: 1.125rem; /* 18px */
}
.wysiwyg table td {
    padding: 18px 19px;
    font-weight: 400;
    border-bottom: 2px solid #F2F2F2;
    font-size: 1.125rem; /* 18px */
}
@media (max-width: 991px) {
    .news-content {
        margin-top: 2.5rem;
        padding: 2rem 1.5rem;
    }
    .news-content-eyecatch {
        margin: 2.6rem 0;
    }
    .wysiwyg h1 {
        margin: 1.4rem 0;
    }
    .wysiwyg h2 {
        margin: 2.5rem 0 1.5rem;
    }
    .wysiwyg h3 {
        margin: 1.9rem 0 1.25rem;
    }
    .wysiwyg h4 {
        margin: 1.8rem 0 1.25rem;
    }
    .wysiwyg h5 {
        margin: 2.2rem 0 0.6rem;
    }
    .wysiwyg p {
        margin: 0.65rem 0;
    }
    .wysiwyg ul li:nth-of-type(n + 2) ,
    .wysiwyg ol li:nth-of-type(n + 2) {
        margin-top: 0.85rem;
    }
    .wysiwyg table {
        margin: 1.9rem 0;
    }
}

/* news label */
.news-label > button.active {
    background-color: #00A0E9 !important;
    color: #FFFFFF !important;
}
.news-label > button {
    transition: background-color 0.3s ease;
}
.news-contents > li > a {
    transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
    .news-label > button:hover {
        background-color: #00A0E9 !important;
        color: #FFFFFF !important;
    }
}

/* pager */
.pager-arrow {
    padding: 11px 24px;
    border-radius: 0 !important;
}
.pager > li > a  {
    cursor: pointer;
}
@media (max-width: 991px) {
    .pager-arrow {
        padding: 6px 16px;
    }
}
@media (min-width: 768px) {
    .pager > li > a:hover {
        background-color: #00A0E9 !important;
        color: #FFFFFF !important;
    }
    .pager-arrow:hover img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(23deg) brightness(104%) contrast(103%);
    }
}
/* service */
.anchor-list {
    gap: 30px;
}
.anchor-list > li > a {
    display: block;
    border: 1px dashed #939393;
    padding: 12px 32px;
    min-width: 194px;
    box-sizing: border-box;
}
.anchor-list > li > a > span {
    position: relative;
    padding-right: 28px;
}
.anchor-list > li > a > span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 11px;
    height: 18px;
    background: url(../image/common/icon_pager-left.svg) no-repeat center;
    transform: translateY(-50%) rotate(-90deg);
    filter: brightness(0) saturate(100%) invert(73%) sepia(97%) saturate(5699%) hue-rotate(172deg) brightness(101%) contrast(103%);
}
@media (max-width: 991px) {
    .anchor-list > li {
        width: 100%;
    }
    .anchor-list > li > a {
        width: 100%;
        text-align: center;
    }
}
.tile-container {
    padding: 50px 30px 30px;
}
.tile-image > picture > img {
    width: 100%;
    height: auto;
}
.tile-item > picture > img {
    max-width: 40px;
    max-height: 40px;
    margin-bottom: 10px;
}
.tile-list-image > img {
    width: 100%;
    height: auto;
}
.img-service--1 > img {
    width: 100%;
    height: auto;
}
.img-service--2 > img {
    width: 100%;
    height: auto;
}
.sns-image > img {
    width: 30px;
    height: auto;
}
.service-panel {
    margin-left: 25px;
}
.service-panel > li {
    position: relative;
    width: calc((100% - 95px)/3 );
    border: 1px solid #939393;
}
@media (max-width: 991px) {
    .tile-image > picture > img {
        width: 100%;
        height: auto;
    }
    .tile-item > picture > img {
        width: 100%;
        height: auto;
    }
    .tile-list-image > img {
        width: 100%;
        height: auto;
    }
    .img-service--1 > img {
        width: 100%;
        height: auto;
    }
    .img-service--2 > img {
        width: 100%;
        height: auto;
    }
    .service-panel {
        margin-left: 0;
        gap: 10px 0;
    }
    .service-panel > li {
        width: 100%;
    }
}

.point-label {
    position: absolute;
    top: 14px;
    left: -5px;
    width: 65px;
    height: 24px;
    background: #132C8A;
    padding: 3px;
    letter-spacing: .4em;
    font-size: 0.75rem;
    color: #FFFFFF;
    font-weight: bold;
    letter-spacing: 0.2em;
    z-index: 10;
}
.point-label::before,
.point-label::after {
    content: "";
    position: absolute;
    top: 0;
    width: 32px;
    height: 24px;
    background: #132C8A;
    z-index: -1;
}
.point-label::before {
    left: -11px;
    transform: skewX(333deg);
}
.point-label::after {
    right: -15px;
    transform: skewX(333deg);
}

.career-list > div > dt {
    width: 70px;
}
.career-list > div > dd {
    width: calc(100% - 70px - 1.5rem);
}
@media (max-width: 767px) {
    .career-list > div > dt {
        width: 100%;
    }
    .career-list > div > dd {
        width: 100%;
    }
}

/* contact */
sup {
    font-size: 70%;
    color: #FF383C !important;
}
.form-contents{
    gap: 60px 0;
}
.form-contents > li > label > input {
    padding: 15px 18px;
}
.form-textarea {
    min-height: 200px !important;
    padding: 15px 18px;
    box-sizing: border-box;
}
.form-control::placeholder {
    color: #939393;
    opacity: 1;
}

.form-label {
    display: flex;
    align-items: center;
    box-shadow: none;
}
.form-label > input {
    box-shadow: none;
}
.form-label .form-check-input {
    width: 24px;
    height: 24px;
    margin: 0 12px 0 0;
    border: 1px solid #9e9e9e;
    background-color: #fff;
    border-radius: 50%;
}
.form-label .form-check-input:checked {
    border-color: #9e9e9e;
    background-image: radial-gradient(circle, #00a0e9 46%, transparent 40%);
}
.form-label .form-check-label {
    cursor: pointer;
}


/* button-arrow */
.button-arrow {
    height: 60px;
    margin-top: 47px;
}
.button-arrow.center {
    text-align: center;
}
.button-arrow a,
.button-arrow button {
    position: relative;
    width: auto;
    height: 100%;
    padding: 16px 30px 16px 32px;
    border-color: #c9d1db;
    background-color: #fff;
    border: 1px solid #122A88;
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    overflow: hidden;
    transition: all .3s cubic-bezier(0.24, 0.45, 0.32, 1);
    border-radius: 9999px;
    z-index: 1;
    will-change: transform;
    text-decoration: none;
}
.button-arrow a::after,
.button-arrow button::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #0553dd;
    position: absolute;
    right: 0;
    bottom: -13px;
    left: 0;
    margin: 0 auto;
    pointer-events: none;
    transition: all .3s;
    transform: scale(0);
}
.button-arrow a span,
.button-arrow button span {
    z-index: 1;
    color: #0E0E0E;
    font-size: 1.125rem; /* 18px */
}
.button-arrow a span.arrow ,
.button-arrow button span.arrow {
    position: relative;
    display: block;
    border-color: #fff;
    overflow: hidden;
    font-weight: 500;
    color: #202733;
    width: 57px;
    height: 30px;
    background-color: #DCDCDC;
    border-radius: 9999px;
    z-index: 1;
    letter-spacing: .04em;
    transition: all .3s;
}
.button-arrow a span:not(.arrow),
.button-arrow button span:not(.arrow) {
    padding-right: 1.4em;
    letter-spacing: .08em;
}
.button-arrow a span.arrow svg,
.button-arrow button span.arrow svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    fill: #202733;
    width: 20px;
    height: auto;
    transition: all .6s;
}
.button-arrow a span.arrow svg:first-child,
.button-arrow button span.arrow svg:first-child {
    transform: translateX(-150px);
}
.button-arrow--contact > a,
.button-arrow--contact > button {
    min-width: 240px;
    justify-content: center;
}
.button-arrow--contact a span:not(.arrow),
.button-arrow--contact button span:not(.arrow) {
    padding-right: 0;
}
.button-arrow--contact > a > span,
.button-arrow--contact > button > span {
    color: #122A88;
}
.button-arrow--link a {
    border: none;
    background-color: #ffffff;
    padding: 0;
}
.button-arrow--link a span.arrow ,
.button-arrow--link button span.arrow {
    background-color: #0553dd;
}
.button-arrow--link a span.arrow svg,
.button-arrow--link button span.arrow svg {
    fill: #fff;
}

@media (max-width: 991px) {
    .button-arrow a,
    .button-arrow button {
        padding: 8px 20px 8px 22px;
    }
    .button-arrow a span,
    .button-arrow button span {
        font-size: 1rem;
    }
    .button-arrow a span.arrow,
    .button-arrow button span.arrow {
        width: 50px;
        height: 27px;
    }
    .button-arrow a span:not(.arrow),
    .button-arrow button span:not(.arrow) {
        padding-right: 0.7em;
    }
    .button-arrow a span.arrow svg,
    .button-arrow button span.arrow svg {
        width: 15px;
    }
}
@media (min-width: 768px) {
    /* hover */
    .button-arrow a:hover,
    .button-arrow button:hover {
        border-color: #0553dd;
    }
    .button-arrow a:hover::after,
    .button-arrow button:hover::after {
        transform: scale(15);
    }
    .button-arrow a:hover span,
    .button-arrow button:hover span {
        color: #fff;
    }
    .button-arrow a:hover span.arrow,
    .button-arrow button:hover span.arrow {
        color: #fff;
        background-color: #0553dd;
        border-color: rgba(255, 255, 255, 0.3);
    }
    .button-arrow a:hover span.arrow svg,
    .button-arrow button:hover span.arrow svg {
        transform: translateX(150px);
        fill: #fff;
    }
    .button-arrow a:hover span.arrow svg:first-child,
    .button-arrow button:hover span.arrow svg:first-child {
        transform: translateX(0);
    }
    .button-arrow--link a:hover::after,
    .button-arrow--link button:hover::after {
        content: none;
    }
    .button-arrow--link a:hover span.arrow,
    .button-arrow--link button:hover span.arrow {
        color: #ffffff;
        background-color: #DCDCDC;
        border-color: rgba(255, 255, 255, 0.3);
    }
    .button-arrow--link a:hover span:not(.arrow),
    .button-arrow--link button:hover span:not(.arrow) {
        color: #0E0E0E;
    }
    .button-arrow--link a:hover span.arrow svg,
    .button-arrow--link button:hover span.arrow svg {
        transform: translateX(150px);
        fill: #000000;
    }
}

/* bg-line */
.bg-line {
    position: relative;
}
.bg-line::after {
    content: '';
    position: absolute;
    top: 17%;
    right: -100%;
    left: -100%;
    width: 300%;
    height: 1200px;
    z-index: -1;
    pointer-events: none;
    background-color: #EAEAEA;
    transform: rotate(-45deg);
}
.bg-line--about::after {
    top: 12%;
}
.bg-line--service::after {
    top: 67%;
}
@media (max-width: 991px) {
    .bg-line::after {
        top: 10%;
        height: 500px;
    }
}

/* bg-image */
.bg-image {
    width: 100%;
    height: auto;
    background: url(../image/common/img_bg.png) no-repeat center, url(../image/common/img_bg.webp) no-repeat center;
    background-size: cover;
}

/* Flow Slider 無限ループスライダー */
.flow-relative {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
    margin-left: 0;
    width: 100vw;
    overflow: hidden;
}

.flow-slider {
    overflow: hidden; /* visibleから変更 */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flow-slider.is-ready {
    opacity: 1;
}

.flow-slider .swiper-wrapper {
    display: flex;
    gap: 40px;
}

.flow-slider .swiper-slide {
    width: 378px;
    max-width: 400px;
    flex-shrink: 0;
}

.flow-slider .swiper-slide .swiper-image-flow {
    width: 100%;
    height: 252px;
    margin: 0;
}

.flow-slider .swiper-slide .swiper-image-flow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@media (max-width: 991px) {
    .flow-slider .swiper-wrapper {
        gap: 20px;
    }
    .flow-slider .swiper-slide {
        width: 280px;
        max-width: 300px;
    }
    .flow-slider .swiper-slide .swiper-image-flow {
        height: 200px;
    }
}

/* form */
.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
.invalid-feedback.d-block {
    display: block !important;
}
.form-control.is-invalid,
.form-check-input.is-invalid {
    border-color: #dc3545;
}
.form-control.is-valid {
    border-color: #00A0E9;
    background: none;
}
#submitBtn:disabled {
    opacity: 0.75;
    cursor: not-allowed !important;
}
.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #0E0E0E;
}
.form-check-input.is-valid:checked ~ .form-check-label,
.was-validated .form-check-input:valid:checked {
    color: #00A0E9;
}
.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
    background-color: transparent;
}
.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border: 1px solid #9e9e9e;
}

/* プライバシーポリシー チェックボックスのカスタムスタイル */
.form-privacy {
    gap: 0;
    padding-left: 0;
}
.form-privacy input[type=checkbox] {
    display: none;
}
.form-privacy label {
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
}
.form-privacy input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 1px solid #939393;
    border-radius: 2px;
    background-color: #fff;
}
.form-privacy input[type=checkbox]:checked + label::before {
    background: #fff url(../image/common/icon_checkbox.svg) center center no-repeat;
    background-size: 16px 16px;
}
.form-privacy input[type=checkbox].is-valid + label::before {
    border-color: #939393;
}
@media (max-width: 991px) {
    .form-privacy label {
        font-size: 1rem;
    }
}
.privacy-text {
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding-left: 2px;
}
