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

.body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* .page01::before,
.page02::before,
.page03::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
} */

.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;
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

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

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

address {
  font-style: normal;
}

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

    .pc {
        display: none !important;
    }

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

/* header */
.header01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s, padding 0.3s;
}

.header01.is-scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0;
    background: rgba(255,255,255,1);
    box-sizing: border-box;
}

.header-logo {
    text-decoration: none;
    font-family: 'Noto Serif JP';
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.56px;
    color: #003172;
    margin: 0 0 0 10px;
}


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

.header-left {
    height: 70px;
}

.header-right {
    height: 70px;
}

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

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

.header-li:last-child {
    margin: 0;
}

.header-text1 {
    text-decoration: none;
    color: #333333;

    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.header-text1:hover {
    text-decoration: none;
    color: #003172;
}

/* .header01.is-scrolled .header-text1 {
    color: #261E1C;
} */

.header-sns1 {
    width: 24px;
}

.header-sns2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #003172;
}
.header-sns2 img {
    width: 22px;
    margin: 0 4px 0 0;
}

.header-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 180px;
    height: 70px;
    background: #00B900 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;

    font: normal normal bold 18px/26px Noto Sans JP;
    letter-spacing: 0.72px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.header-btn1 img {
    width: 40px;
    margin: 0 5px 0 0;
}

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

    .nav01 {
        background: #fff;
        width: 100%;
        height: 50px;
        padding: 0;
        border-radius: 0;
        margin: 0;
    }

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

    .header-li2 {
        display: flex !important;
        align-items: center;
        height: 50px;
    }



    .header-logo {
        /* display: none;
        opacity: 0; */
     }   

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

    .header-btn1 {
        font-size: 14px;
        width: min(21.333vw, 80px);
    }

/* ハンバーガーモーダル */
    .header-text1 {
        font-size: 16px;
        /* padding: 0 20px; */
        margin: 0;
        display: flex;
        font-weight: 700;
        justify-content: space-between;
        box-sizing: border-box;
        color: #261E1C;
    }

    .header-icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

    .header-icon2 {
        width: 30px;
    }

    .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: 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-ul2 {
        width: 100%;
        padding: 20px 0;
    }

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

    .header-li {
        width: 100%;
        border-bottom: 1px solid #F2F2F2;
        padding: 20px 0;
        margin: 0;
        border-right: none;
    }

    .header-li._last {
        border-bottom: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
background: transparent linear-gradient(135deg, #003172 0%, #00397B 100%) 0% 0% no-repeat padding-box;
        position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #fff;
      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;
    }
}

/* 共通 スクロール位置 見出し */
#service,
#strength,
#faq,
#access,
#contact {
    scroll-margin-top: 70px;
}

.common-h2-en {
    text-align: center;
    letter-spacing: 2.73px;
    color: #B7CAE4;
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 10px 0;
    text-decoration: none;
    line-height: 1;
}

.common-h2 {
    text-align: center;
    font-family: 'Noto Serif JP';
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 4.68px;
    color: #003172;
    margin: 0 0 40px 0;
    text-decoration: none;
}

.common-h2._wh {
    color: #fff;
}

.common-h2-en._wh {
    color: #fff;
}

.common-text1 {
    letter-spacing: 2.08px;
    color: #333333;

    font-size: 16px;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-decoration: none;
    line-height: 1.5;
}

.common-text1:last-child {
    margin: 0;
}

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

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

.common-text1._wh {
    color: #ffffff;
}

.common-text1._large {
    font-size: 18px;
}


.common-text1._small { 
    font-size: 14px;
}

@media screen and (max-width: 960px) {
    #service,
    #strength,
    #faq,
    #access,
    #contact {

        scroll-margin-top: 50px;
    }

    .common-h2-en {
        font-size: 21px;
    }

    .common-h2 {
        font-size: 36px;
    }

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

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

.btn-wrapper1._nomargin {
    margin: 0;
}

.btn-wrapper1._left {
    justify-content: start;
}


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


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

@media screen and (max-width: 960px) {
    .btn-wrapper1._left {
        justify-content: center;
    }
}

/* 共通 index single archive 404 */
._minheight {
    min-height: 51vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

._error {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}


/* fv */
.fv {
    background: #fff;
    position: relative;
}
/* .fv-title-block {
    position: absolute;
    left: 5.833%;
    bottom: 11.85vw;
}

.fv-h1 {
    font-size: 3.333vw;

    letter-spacing: 2.4px;
    color: #FFFFFF;
    text-shadow: 0px 0px 20px #000000B3;
    margin: 0 0 1.667vw 0;
}

 .fv-text1 {
    font-size: 1.667vw;
    letter-spacing: 1.74px;
    color: #FFFFFF;
    text-shadow: 0px 0px 20px #000000B3;
    margin: 0;
} */

@media screen and (max-width: 960px) {
    /* .fv-title-block {
        left: 5.333%;
        bottom: 8vw;
    }
    .fv-h1 {
        font-size: 4.8vw;
        margin: 0 0 4vw 0;
    }

    .fv-text1 {
        font-size: 3.2vw;

    } */
}

/* cta */
.cta {
    background: transparent linear-gradient(107deg, #003172 0%, #001939 100%) 0% 0% no-repeat padding-box;
}

.heading._cta {
    padding-top: 20px;
    padding-bottom: 20px;
}

.cta-text1 {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.cta-btn1 {
    max-width: 432px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
    .cta-text1 {
        font-size: 12px;
    }
}

/* strength */
.strength-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 3rem 2rem;
}

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

}

/* worries */
.heading._worries {
    padding-top: 40px;
    padding-bottom: 40px;
}


.worries {
    background: linear-gradient(
        180deg,
        #FAFBFD 0%,
        #E0E8F2 65%,
        #FFFFFF 65%,
        #FFFFFF 100%
    );
}

.worries-img1 {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

.worries-h2 {
    font-family: 'Noto Serif JP';
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 4.16px;
    color: #003172;
    margin: 0 0 20px 0;
}
@media screen and (max-width: 960px) {
    .worries-img1 {
        max-width: 340px;
        margin: 0 auto 30px auto;
    }

}

/* service */
.service {
    background: rgba(183,202,228, 0.24);

}


.service-upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 2%;
    margin: 0 0 50px 0;
}

.service-link {
    cursor: pointer;
    margin: 0 0 40px 0;
}

.service-link1,
.service-link2 {
    width: 48%;
}

.service-link1 {
    padding: 0 20%;
}

.service-img3 {
    max-width: 700px;
    width: 89%;
    margin: 50px auto 0 auto;
}

@media screen and (max-width: 960px) {
    .service-link1,
    .service-link2 {
        width: 100%;
        padding: 0;
    }

}

/* online */
.online {
    content: '';
    background-image: url('../img/cta-bg-pc.png');
    background-size: cover;
    background-repeat: no-repeat;
    background: transparent linear-gradient(107deg, #003172 0%, #001939 100%) 0% 0% no-repeat padding-box;
}

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



/* philosophy */

.philosophy-h3 {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3.12px;
    color: #333333;
}

.philosophy-text1 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2.08px;
    color: #333333;
    margin: 0 0 20px 0;
}

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

.philosophy-img1 {
    margin: 50px 0 0 0;
}

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

}

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

.access-bg {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 12px;
    padding: 40px;
    box-sizing: border-box;
}
.access-upper {
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 40px 0;
}

.access-text1 {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.56px;
    color: #333333;
    margin: 0;
}

.access-map-link {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #B7CAE4;
    border-radius: 12px;
    padding: 4px 10px;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    color: #003172;
    text-decoration: none;
    width: fit-content;
}
.access-down {
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.access-down-left,
.access-down-right {
}

.access-h3 {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.82px;
    color: #003172;
    margin: 0 auto 10px auto;
    border-bottom: 1px solid #B7CAE4;
    padding: 0 0 5px 0;
}

.access-h3 img {
    width: 16px;
    margin: 0 4px 0 0;
}

@media screen and (max-width: 960px) {
    .access-upper,
    .access-down {
        grid-template-columns: 1fr;
    }

    .access-upper {
        gap: 0.5rem;
    }
    .access-down {
        gap: 2rem;
    }

}


/* contact */
.contact {
}

.contact-line-btn {
    max-width: 350px;
    width: 100%;
    margin: 0 0 30px 0;
}

.form-wrapper {
    margin: 30px 0 0 0;
}

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

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

.contact-text1 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

._required {
    color: #FF0000;
    font-weight: 500;
    margin: 0 0 0 10px;
    font-size: 15px;
    margin: 0 0 0 8px;
}

.privacy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.privacy-wrapper label {
    display: flex !important;
    align-items: center !important;
}

.privacy-text1 {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    margin: 0;
}

input.form-control,
select.form-select,
textarea.form-control {
    width: 100%;
    padding: 15px 2%;
    height: 70px;
    border: 1px solid #B7CAE4;
    border-radius: 5px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    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 #261E1C;    
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}

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

input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    transform: translateX(-50%);
    color: #000;
    font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #fff;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}

#email-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* 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) {
}



/* footer */
.footer-upper {
    content: '';
    background-image: url('../img/footer-bg-pc.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.heading._footer {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-block-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-h3 {
    font-family: 'Noto Serif JP';
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.67px;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.footer-left li  {
    display: flex;
    align-items: start;
    font-size: 19px;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.footer-left li span {
    font-size: 12px;
    margin: 6px 6px 0 0;
}
.footer-left li img {
    width: 16px;
    margin: 8px 8px 0 0;
}

.footer-right li {
   margin: 20px 0 0 0;
}

.footer-right li a {
    text-decoration: none !important;
    font-size: 16px !important;
    color: #FFFFFF !important;
}

 .footer-right ul ul{
    display: flex;
    gap: 1rem;
}

.footer-sns-link {
    max-width: 24px;
    width: 100%;
}


.footer-down {
    background: #003172 0% 0% no-repeat padding-box;
}


.footer-text1 {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.8;
}

.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 90px;
    z-index: 13;
}

.arrow-fixed-link {
    width: 50px;
    height: auto;
}

.cta-fixed {
    position: fixed;
    height: auto;
    right: 0;
    bottom: 10px;
    z-index: 13;
}

.cta-fixed-link1 {
    width: 170px;
    height: auto;
}

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

    .footer-block-wrapper {
        gap: 2rem 5rem;
    }


    .cta-fixed {
        position: fixed;
        display: flex;
        width: 100%;
        bottom: 0;
        z-index: 13;
    }

    .cta-fixed-link1,
    .cta-fixed-link2 {
        width: 50%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
    }

    .cta-fixed-link1 {
        background: transparent linear-gradient(137deg, #003172 0%, #001939 100%) 0% 0% no-repeat padding-box;
    }

    .cta-fixed-link2 {
        background: #00B900;
    }

    .cta-fixed-img1 {
        width: 20px;
        margin: 0 5px 0 0;
    }

    .cta-fixed-img2 {
        width: 30px;
        margin: 0 5px 0 0;
    }


    .arrow-fixed {
        bottom: 60px;
    }
    .footer-text1 {
        font-size: min(3.733vw, 14px);
    }
}
/* page02 common */
.page02 {
    padding: 100px 0 0 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    /* justify-content: center; */
    align-items: end;
    /* background: rgba(247,242,251,0); */
    height: 288px;
}

.fv2-h1 {
    color: #444;

    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.archive-common-h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.42px;
    color: #5B002A;
    margin: 0 0 10px 0;
}

.archive-common-text1 {
    font-size: 18px;
    letter-spacing: 1.62px;
    color: #240011;
    margin: 0 0 30px 0;
}


@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 180px);
}

#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 {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #444444;
}

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

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

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    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;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
  color: #444444;
background: #FAFAFA 0% 0% no-repeat padding-box;

    border: 1px solid #5B002A;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
background: #444444 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 共通 */
.page03 {
    /* background: #FFFFFF 0% 0% no-repeat padding-box; */
    padding: 70px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

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

}

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

.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: #444444;
    border-bottom: 1px solid #444444;
    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;
    color: #444;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #444;
}
.detail-common-area a {
    font-size: 16px;
    color: #444444;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    color: #444;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #444;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}

/* modal */
#recruit-modal-area1,
#recruit-modal-area2,
#recruit-modal-area3,
#recruit-modal-area4,
#recruit-modal-area5,
#recruit-modal-area6,
#recruit-modal-area7 {
  z-index: 1000;
}


#service-modal-open1,
#service-modal-open2,
#service-modal-open3,
#service-modal-open4,
#service-modal-open5 {
  scroll-margin-top: 70px;

}

.modal-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-block::-webkit-scrollbar {
  display: none;
}

.modal-block {
  width: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: #fff;
  padding: min(6.667vw, 80px) min(5vw, 60px);
  box-shadow: 0px 2px 10px #00000033;
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 73vh;
  box-sizing: border-box;
}

.modal-close {
    position: absolute;
    top: 3%;
    right: 3%;
    cursor: pointer;
    text-align: center;
    color: #464340;
    font-size: 1.5vw;
    font-weight: 500;
    margin: 0;
}

@media screen and (max-width: 960px) {
    #service-modal-open1,
    #service-modal-open2,
    #service-modal-open3,
    #service-modal-open4,
    #service-modal-open5 {
      scroll-margin-top: 50px;

    }


    .modal-block {
        width: 94%;
        height: 60vh;
        padding: 0;
    }

    .modal-close {
        font-size: 5.333vw;
    }

}

/* faq */
.faq {
    content: '';
    background-image: url('../img/faq-bg-pc.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-text1 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.28px;
    color: #FFFFFF;
    margin: 30px 0 0 0;
}

.faq-img1 {
    width: 16px;
    margin: 20px auto 0 auto;
}

.faq-area {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 12px;
    padding: 30px 20px;
    box-sizing: border-box;
}

.faq-accordion {
    width: 100%;
    padding: 20px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

.faq-accordion-q {
    background: #003172 0% 0% no-repeat padding-box;
    font-size: 20px;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
}

.faq-accordion-a {
    background: #B7CAE4 0% 0% no-repeat padding-box;
    font-size: 20px;
    color: #333333;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
    font-weight: 700;
}

.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 #3C617E;
    border-right: 2px solid #3C617E;
    transition: transform .4s;
    top: 45%;
    right: 6px;
    position: absolute;
}

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

.faq-accordion-body {
    display: flex;
    align-items: center;
}

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

@media screen and (max-width: 960px) {
    .faq {
        background-image: url('../img/faq-bg-sp.png');
    }
    .faq-accordion {
        padding: min(2.667vw, 10px);
    }
    .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-head-content {
        width: 82%;
    }

    .faq-accordion-head-text1 {
        width: 80%;
    }
    .faq-area {
        padding: 20px min(2.666vw, 10px);
    }

    .faq-accordion-q,
    .faq-accordion-a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* faq archive */
.faq-accordion-head-content p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #383427;
}


.faq-accordion-body-content p {
    font-size: 16px;
    line-height: 1.3;
    color: #383427;
     margin: 0 0 20px 0;
}

.faq-accordion-body-content p:last-child {
    margin: 0;
}

.faq-accordion-body-content a,
.faq-accordion-body-content p a {
    text-decoration: underline;
    font-size: 16px;
    color: #50A512;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.faq-accordion-body-content img {
    width: 50%;
}
