html {
    margin: 0 !important;
    scroll-behavior: smooth;
}

.body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(57deg, #E0E6F8 0%, #FFFFFF 50%);
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 80px min(15%, 180px);
    box-sizing: border-box;
}

.heading._other {
    padding: 45px min(15%, 180px);
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

main {
    padding: 70px 0 0 0;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 70px min(5.333%, 20px);
    }

    .heading._other {
        padding: 25px min(5.333%, 20px);
    }

    main {
        padding: 50px 0 0 0;
    }

    .body::before {
        background-image: linear-gradient(57deg, #E0E6F8 0%, #FFFFFF 100%);
    }
}
/* header */
.header01 {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.nav01 {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    height: 70px;
}

.header-logo {
    width: min(11.25vw, 135px);
    margin: 0 0 0 min(10px, 0.833vw);
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    height: 70px;
}

.header-ul {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-li {
    margin: 0 min(0.8333vw, 10px) 0 0;
}

.header-li._none {
    margin: 0;
}

.header-text1 {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.header-text1:hover {
    color: #0230C4;
}

.header-btn1,
.header-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    height: 70px;
}

.header-btn1 {
    width: min(14.167vw, 170px);
    background: #0230C4 0% 0% no-repeat padding-box;
    font-size: min(1.75vw, 21px);
    color: #FFFFFF;
}

.header-btn2 {
    width: min(20vw, 240px);
    background: #E5EAF9 0% 0% no-repeat padding-box;
    color: #0230C4;
    text-align: center;
}

.header-btn2 ._flex {
    display: flex;
    flex-direction: column;
}

.header-btn2 ._tel {
    font-family: 'Jost', sans-serif;
    font-size: min(2.417vw, 29px);
}

.header-btn2 ._time {
    font-size: min(0.917vw, 11px);
    font-weight: 400;
}

.header-icon1 {
    width: 19px;
    margin: 0 0 0 7px;
}

.header-link1 {
    width: 23px;
}

@media screen and (max-width: 960px) {
    .header01 {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
    }

    .nav01 {
        height: 50px;
    }

    .header-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        height: 50px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .header-logo {
        width: 98px;
        margin: 0;
        position: relative;
        z-index: 1001;
        transition: opacity 0.2s ease-in-out;
        /* display: none;
        opacity: 0; */
     }   

    .header-logo.visible {
        display: block;
        opacity: 1;
    }

    .header-link2 {
        width: 23px;
    }
/* ハンバーガーモーダル */
    .header-text1 {
        font-size: 16px;
        padding: 0 20px;
        margin: 0;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        color: #333;
    }
    .header-icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

    .header-modal {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
        box-sizing: border-box;
        /* box-shadow: 0px 1px 6px #00000029; */
    }

    .header-modal.is-active {
        right: 0;
        display: flex;
    }

    .header-ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header-img1 {
        margin: 0 15px 0 0;
        padding: 20px 0 0 0;
    }

    .header-li {
        width: 100%;
        border-bottom: 1px solid #1A1311;
        padding: 20px 0;
        margin: 0;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
      background: #0230C4;
      position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .ham-btn span:nth-of-type(1) {
      width: 30px;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }
    .ham-btn span:nth-of-type(2) {
      width: 30px;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
    }
    .ham-btn.is-active span:nth-of-type(1),
    .ham-btn.is-active span:nth-of-type(2) {
      width: 30px;
      left: 10px;
      top: 25px;
      transform: rotate(45deg);
      transform-origin: center;
    }
    .ham-btn.is-active span:nth-of-type(2) {
      transform: rotate(-45deg);
    }
    body.no-scroll {
        overflow: hidden;
    }
}
/* 共通 スクロール位置 見出し */
#works,
#strenghts,
#staff,
#news,
#faq,
#company,
#contact {
    scroll-margin-top: 70px;
}
.common-h2-en {
    font-family: 'Jost', sans-serif;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    color: #0230C4;
    line-height: 1;
    margin: 0 0 5px 0;
    text-decoration: none;
}
.common-h2 {
    text-align: center;
    font-size: 16px;
    color: #333333;
    margin: 0 0 40px 0;
    text-decoration: none;
}

.common-h3-en {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0230C4;
    line-height: 1;
    margin: 0 0 10px 0;
    text-decoration: none;
}

.common-h3 {
    font-size: 29px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 20px 0;
    text-decoration: none;
}

.common-text1 {
    font-size:  16px;
    color: #333333;
    margin: 0 0 20px 0;
}

.common-text1._center {
    text-align: center;
}

.common-text1._blue {
    color: #0230C4;
}

.common-text1._last {
    margin: 0;
}

.common-text1._bold {
    font-weight: 700;
}

@media screen and (max-width: 960px) {
    #works,
    #strenghts,
    #staff,
    #news,
    #faq,
    #company,
    #contact {
        scroll-margin-top: 50px;
    }
    .common-h2-en {
        font-size: 48px;
    }

    .common-h2 {
        text-align: center;
    }
}

/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #0230C4 0% 0% no-repeat padding-box;
    border-radius: 5px;
    max-width: 210px;
    width: 100%;
    padding: 13px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-icon1 {
    width: 9px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

@media screen and (max-width: 960px) {
    .btn-more1 {
        width: 62.6%;
    }

    .btn-wrapper1 {
        margin: 20px 0 0 0;
    }
}
/* 共通 index single archive 404 */
._minheight {
    min-height: 45vh;
}

.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

/* 共通 yotube */
.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* 共通 カテゴリー */
.cat-ul,
.tag-cat-ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0 0 5px 0;
}

.tag-cat-ul {
    margin: 0 0 20px 0;
    gap: 0.5rem;
}

.cat-li {
    width: fit-content;
}

.cat-link {
    font-weight: 700;
    font-size: 16px;
    color: #0230C4 !important;
    text-decoration: none;
}

.tag-cat-link {
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    padding: 4px 12px;
    box-sizing: border-box;
    background: #0230C4 0% 0% no-repeat padding-box;
    border-radius: 5px;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .cat-link {
    }

    .tag-cat-link {
        font-size: 12px;
    }
}

/* fv */
.fv {
    padding: 80px 0;
}

.fv-h1 {
    width: 70%;
    margin: 0 auto 50px auto;
}

.fv-slider .slick-slide {
    margin: 0 20px;
}

.fv-text1 {
    margin: 0;
}


@media screen and (max-width: 960px) {
    .fv {
        padding: 70px 0;
    }
    .fv-h1 {
        width: 89%;
        margin: 0 auto 40px auto;
    }
}

/* about */
.about {
    content: '';
    background-image: url('../img/about-bg-pc.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.about-h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 30px 0;
}

.about-h2 span {
    font-size: 26px;
}

.about-img1 {
    width: 60%;
    margin: 0 auto 10px auto;
}

.about-text1 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0
}

.about-text1 ._blue {
    color: #0230C4;
}

@media screen and (max-width: 960px) {
    .about {
        background-image: url('../img/about-bg-sp.png');
    }
    .about-h2 {
        font-size: 28px;
    }
    .about-h2 span {
        font-size: 22px;
    }
    .about-img1 {
        width: 100%;
    }
    .about-text1 {
        font-size: 18px;
    }
}

/* works */
.works-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin: 0;
}

.works-h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 30px 0;
}

.works-link1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 93/60;
    margin: 0 0 8px 0;
}

.works-img1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.works-text1 {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #0230C4;
    margin: 0;
}


@media screen and (max-width: 960px) {
    .works-area{
        grid-template-columns: 1fr 1fr;
    }    
}

/* strenghts */
.heading._wide {
    max-width: 1600px;
    padding: 80px 0;
}

.strengths-block {
    display: grid;
    grid-template-columns: 53fr 45fr;
    gap: 2rem;
    padding: 0 min(15%, 180px) 0 0;
    margin: 0 0 70px 0;
}

.strengths-block._even {
    grid-template-columns: 45fr 53fr;
}

.strengths-block:last-child {
    margin: 0;
}

.strengths-block._even {
    padding: 0 0 0 min(15%, 180px);
}

.strengths-text1 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.strengths-text1 ._blue {
    font-size: 36px;
    color: #0230C4;
}

@media screen and (max-width: 960px) {
    .heading._wide {
        max-width: 480px;
        padding: 70px min(5.333vw, 20px);
    }
    .strengths-block._even,
    .strengths-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .strengths-block {
        padding: 0;
    }
    .strengths-block._even {
        padding: 0;
    }
}

/* staff */
.staff {
    content: '';
    background-image: url('../img/staff-bg-pc.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.staff-block {
    background: #fff;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
}

.staff-img1 {
    width: 36%;
    margin: 0 auto 10px auto;
}

.staff-text1 {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 5px 0;
}

.staff-text2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 20px 0;
}

.staff-h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 20px 0;
}

.staff-text3 {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}
@media screen and (max-width: 960px) {
    .staff {
        background-image: url('../img/staff-bg-sp.png');
    }
    .staff-img1 {
        width: 80%;
    }
}

/* news */
.news-block {
    padding: 20px 0;
    box-sizing: border-box;
    border-bottom: 2px solid #0230C4;
}

.news-text1 {
    text-decoration: none;
    width: 100%;
    font-size: 16px;
    color: #898989;
    margin: 0 0 5px 0;
}

.news-text2 {
    text-decoration: none;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.news-text1:last-child {
    margin: 0;
}
@media screen and (max-width: 960px) {
    .news-area {
        grid-template-columns: 1fr;
    }    
}

/* faq */
.faq-accordion {
    width: 100%;
    padding: 20px 0;
    border-bottom: 2px solid #0230C4;
}

.faq-accordion-head {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 0 10px 0;
    cursor: pointer;
}

.faq-accordion-head::after {
    content: '';
    transform: translateY(-25%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #0230C4;
    border-right: 2px solid #0230C4;
    transition: transform .4s;
    top: 45%;
    right: 6px;
    position: absolute;
}

.faq-accordion[open] .faq-accordion-head::after {
    transform: rotate(225deg);
}

.faq-accordion-head-img1,
.faq-accordion-body-img1 {
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
}

.faq-accordion-head-text1 {
    width: 92%;
    font-size: 18px;
    font-weight: 700;
    color: #0230C4;
    margin: 0;
}

.faq-accordion-body {
    display: flex;
}

.faq-accordion-body-content{
    width: 100%;
    /* padding: 15px 0; */
    box-sizing: border-box;
}

.faq-accordion-body-content p {
    font-size: 16px;
    line-height: 1.3;
    color: #333333;
    margin: 0 !important;
}
.faq-accordion-body-content a,
.faq-accordion-body-content p a {
    text-decoration: underline;
    font-size: 16px;
    line-height: 1.3;
    color: #0230C4;
    margin: 0;
}


@media screen and (max-width: 960px) {
    .faq-accordion-head-img1,
    .faq-accordion-body-img1 {
        width: min(9.333vw, 35px);
        height: min(9.333vw, 35px);
        margin: 0 min(2.133vw, 8px) 0 0;
    }

    .faq-accordion-body-content{
    }

    .faq-accordion-head-text1 {
        width: 80%;
    }
}

/* company */
.company-block table {
    width: 100%;
}

.company-block tr {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 2px solid #0230C4;
    text-align: left;
}
.company-block th {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #0230C4;
}

.company-block td {
    width: 100%;
}

@media screen and (max-width: 960px) {
}


/* contact */
.contact-block {
    margin: 0 0 30px 0;
}

.common-text1._contact {
    font-size: 15px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.contact-block._last {
    margin: 0;
}

.link-wrapper {
    display: flex;
    justify-content: center;
}

._required {
    font-size: 15px;
    color: #0230C4;
    margin: 0 0 0 10px;
}

input.form-control,
select.form-select,
textarea.form-control {
    width: 100%;
    padding: 15px 2%;
    height: 64px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #0230C4;
    border-radius: 5px;
    box-sizing: border-box;
    color: #333;
    font-size: 16px;
}
textarea.form-control {
    height: 240px !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #707070;    
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}

input[type="checkbox"]:checked {
    background-color: #0230C4;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.radio_contact {
    font: normal normal normal 16px/28px Noto Sans JP;
    color: #333333;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
}
input[type="radio"]{
    width: 28px;
    height: 28px;
    margin: 0 4px 0 0;
}

@media screen and (max-width: 960px) {
}

/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 35px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #D30001;
    font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #fff;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}
/* bootstrap */
button.btn-success {
    cursor: pointer;
}
.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #009E96;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}
@media screen and (max-width: 960px) {
}

/* cta */
.cta {
    content: '';
    background-image: url('../img/cta-bg-pc.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.cta-block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cta-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 20px 40px;
    box-sizing: border-box;
}


.cta-h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0230C4;
    margin: 0 0 5px 0;
}

.cta-link {
    max-width: 320px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Jost', sans-serif;
    background: #0230C4 0% 0% no-repeat padding-box;
    border-radius: 5px;
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    padding: 6px 0;
    box-sizing: border-box;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 960px) {
    .cta {
        background-image: url('../img/cta-bg-sp.png');
    }

    .cta-block-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: min(5.333vw, 20px);

    }

}


/* footer */
.footer {
    background: #ffffff 0% 0% no-repeat padding-box;
}

.footer-text1 {
    text-align: center;
    font-size: 14px;
    color: #0230C4;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .footer-heading {
        padding: 20px min(5.333vw, 20px);
        display: block;
    }
    .footer-cta {
        position: fixed;
        bottom: 0;
        display: flex !important;
        width: 100%;
        height: 50px;
    }

    .footer-cta-btn1,
    .footer-cta-btn2  {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: 50%;
        font-weight: 700;
    }

    .footer-cta-btn1 {
        background: #0230C4 0% 0% no-repeat padding-box;
        font-size: min(5.6vw, 21px);
        color: #FFFFFF;
    }

    .footer-cta-btn2 {
        width: 50%;
        background: #E5EAF9 0% 0% no-repeat padding-box;
        color: #0230C4;
        text-align: center;
    }

    .footer-cta-btn2 ._flex {
        display: flex;
        flex-direction: column;
    }

    .footer-cta-btn2 ._tel {
        font-family: 'Jost', sans-serif;
        font-size: min(5.867vw, 22px);
        line-height: 1;
    }

    .footer-cta-btn2 ._time {
        font-size: min(2.667vw, 10px);
        font-weight: 400;
    }
}



/* page02 common */
.page02 {
}

.fv2 {
    display: flex;
    align-items: flex-end;
    background: #0230C4 0% 0% no-repeat padding-box;
    width: 100%;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.archive-common-block {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.archive-common-text1 {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.archive-common-text1._date {
    width: 100%;
    margin: 0 0 5px 0;
}



/* page02 page03 パンくずリスト */
#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
  font-size: 16px;
  font-weight: 700;
  color: #0230C4 !important;
  text-decoration: none;
}

.crumbs-separator {
  margin: 0 8px;
  color: #333333;
}

.crumbs-current {
  font-size: 16px;
  color: #333333;
}

@media screen and (max-width: 960px) {

}

/* page02 ページネーション */
.pagenum-area {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5EAF9 0% 0% no-repeat padding-box;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    color: #0230C4;
    font-size: 18px;
    width: 45px;
    height: 45px;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #0230C4 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}


/* page03 common */
.detail {
    color: #1A1311;
    font-size: 16px;
}


.single-thumbnail {
    width: 80%;
    margin: 0 auto 20px auto;
}

.detail-text1 {
    font-size: 18px;
    color: #1A1311;
    margin: 0 0 10px 0;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}
.single-h1 {
    display: flex;
    align-items: center;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.88px;
    color: #0230C4;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #0230C4;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #0230C4;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}
.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    color: #0230C4;
    border-bottom: 2px solid #0230C4;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 40px 0;
}
.detail-common-area li {
    font-size: 16px;
    margin: 0 0 10px 0;
}
.detail-common-area a {
    font-size: 16px;
    color: #0230C4;
    margin: 0 0 40px 0;
}
.detail-common-area ul {
    margin: 0 0 30px 0;
}

@media screen and (max-width: 960px) {
    .fv3 {
        height: 100px;
    }

    .single-cta {
        padding: 30px min(5.333vw, 20px);
        box-sizing: border-box;
    }

    .single-cta-text1 {
        font-size: 16px;
    }

}
