/* 共通 */
/* ==================================== */
@media (min-width: 751px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #1C1C1C;
    font-optical-sizing: none;
    -webkit-font-smoothing: antialiased;
}

.main {
    margin-top: 80px;
}

/* ヘッダーの高さ分指定 */
[id] {
    scroll-margin-top: 80px;
}

.inter {
    font-family: "Inter", sans-serif;
}

.ly-inner {
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
}

.lv2-heading {
    font-size: 32px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.56;
}

.lv2-heading-deco {
    display: block;
    margin-top: 10px;
    width: 62.43px;
}

.lv2-heading-deco img {
    width: 100%;
}

.lv2-heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lv2-heading-sub-ttl {
    background-color: #7B9FCA;
    color: #fff;
    border-radius: 90px;
    min-height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 16px;
}

.lv3-heading {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
}

.about-lgd__flow .lv3-heading {
    line-height: 1.64;
}

.lv3-heading--thin {
    font-weight: 700;
    margin-top: 29.6px;
}

.sec-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    margin-top: 15px;
}

.bg-diagonal-top {
    height: 100px;
    background: linear-gradient(to bottom right,#F8F8F8 50%,#ffffff 51%);
}

.bg-diagonal-bottom {
    height: 100px;
    background: linear-gradient(to bottom right,#ffffff 50%,#f8f8f8 51%);
}

.btn a,
.submit-btn input {
    background-color: #01489D;
    max-width: 300px;
    width: 100%;
    min-height: 56px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    transition: .3s; 
}

.sp_only {
    display: none;
}

a {
    opacity: 1;
    transition: .3s; 
}

@media(hover: hover) {
    a:hover {
        opacity: 0.6;
    }

    .submit-btn input:hover {
        opacity: 0.6;
    }
}

@media(max-width: 1024px) {
    .main {
        margin-top: 70px;
    }

    /* ヘッダーの高さ分指定 */
    [id] {
        scroll-margin-top: 70px;
    }

    .lv2-heading {
        font-size: clamp(20px, 2.68vw, 25px); 
    }

    .pc_only {
        display: none;
    }

    .bg-diagonal-top {
        height: 60px;
    }
    
    .bg-diagonal-bottom {
        height: 60px;
    }

    .lv3-heading {
        font-size: clamp(18px, 2.41vw, 22px);
        margin-bottom: 22px;
    }

    .lv3-heading--thin {
        margin-top: 22px;
    }

    .lv2-heading-deco {
        width: 50px;
    }
}

@media(max-width: 959px) {
    .ly-inner {
        padding: 0 30px;
    }
}

@media(max-width: 743px) {
    .bg-diagonal-top {
        height: 9vw;
    }

    .bg-diagonal-bottom {
        height: 8.5vw;
    }

    .lv2-heading {
        font-size: clamp(27px, 7.2vw, 30px);
        line-height: 1.64;
    }

    .lv2-heading-deco {
        width: 62px;
        margin-top: 0;
    }

    .ly-inner {
        padding: 0 20px;
    }

    .sec-intro {
        text-align: left;
        font-size: 15px;
        margin-top: 25px;
    }

    .sp_only {
        display: block;
    }

    .lv3-heading {
        font-size: clamp(25px, 6.66vw, 28px);
    }

    .lv3-heading--thin {
        margin-top: 40px;
    }

    .lv2-heading-sub-ttl {
        text-align: center;
    }
}

/* ヘッダー */
/* ==================================== */
.header {
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
}

.lv1-heading {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    /* width: 260px; */
    width: 170px;
}

.lv1-heading a {
    /* padding: 10px 0; */
    display: block;
    max-height: 60px;
}

.header__nav {
    width: calc(100% - 170px);
}

.g-nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.header__nav-list {
    display: flex;
    align-items: center;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav-item {
    margin: 0 15px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
}

.header__nav-item a {
    padding: 30px 0 29px;
    transition: none;
}

.header__nav-item a.active {
    position: relative;
}

.header__nav-item a.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #01489D;
}

@media(hover: hover) {
    .header__nav-item a:hover {
        border-bottom: 2px solid #01489D;
        padding: 30px 0 29px;
        opacity: 1;
    }
    
    .header__nav-item a.active:hover {
        border-bottom: initial;
        padding: 30px 0 29px;
    }
}

.header__nav-tel-heading {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.header__nav-tel-heading a {
    display: flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 500;
}

.header__nav-tel-icon img {
    width: 100%;
}

.header__nav-tel {
    padding: 0 9px;
    margin: 0 6px;
}

.header__nav-btn {
    margin-left: 10px;
}

.header__nav-tel--en {
    display: none;
}

.header__nav-tel--en + .header__nav-btn {
    margin-left: 20px;
}

.header__nav-btn a {
    background-color: #01489D;
    color: #fff;
    width: 110px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
}

.header__inner {
    padding: 15px 5px 15px 13px;
}

.header__nav-tel-icon {
    display: inline-block;
    margin-right: 4px;
    width: 10px;
    height: 15px;
}

.header__nav-tel-bottom-txt {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}

.header__nav-tel-bottom {
    margin-top: 4px;
}

.nav-btn {
    display: none;
}

.g-nav {
    position: static;
    transform: none !important;
    height: auto;
    padding: 0;
    overflow: visible;
}

.header__nav-list {
    flex-direction: row;
}

.header__nav-switch {
    flex-shrink: 0;
    margin-left: 5px;
}

.header__nav-switch-btn a {
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    display: inline-block;
}

.header__nav-switch-btn:nth-child(1) {
    position: relative;
}

.header__nav-switch-btn:nth-child(1)::after {
    position: absolute;
    content: "";
    background-color: #1c1c1c;
    height: 20px;
    width: 2px;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
}

.header__nav-switch-btn.lang {
    color: #01489D;
}

/* @media(max-width: 1279px) {
    .header__inner {
        padding: 15px 5px 15px 13px;
    }

    .lv1-heading {
        font-size: 16px;
        width: 138px;
    }

    .lv1-heading img {
        width: 100%;
    }

    .header__nav {
        width: calc(100% - 216px);
    }

    .header__nav-item {
        margin: 0 10px;
        font-size: 13px;
    }

    .header__nav-btn {
        margin-left: 2px;
    }

    .header__nav-btn a {
        width: 110px;
    }

    .header__nav-tel-heading a {
        font-size: 16px;
    }

    .header__nav-item a {
        padding: 31px 0 31px;
    }

    .header__nav-switch {
        margin-left: 5px;
    }
} */

@media(max-width: 1279px) {
    .header__wrap {
        position: relative;
    }

    .header__nav-switch {
        margin-left: 0;
        position: absolute;
        right: 60px;
    }

    .header__inner {
        padding: 17px 16px;
    }

    .lv1-heading {
        z-index: 10002;
    }

    .lv1-heading a {
        padding: 0;
        height: 36px;
        width: 138.05px;
    }

    .lv1-heading a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nav-btn {
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        z-index: 10001;
        width: 40px;
        height: 10px;
        flex-shrink: 0;
    }

    .nav-btn__bar {
        background-color: #1c1c1c;
        width: 100%;
        height: 1px;
        display: block;
        transition: transform .2s;
    }

    .nav-btn.is-open .nav-btn__bar:nth-child(1) {
        transform: rotate(13deg);
        transform-origin: left center;
        background-color: #fff;
    }

    .nav-btn.is-open .nav-btn__bar:nth-child(2) {
        transform: rotate(-13deg);
        transform-origin: left center;
        background-color: #fff;
    }
    
      .g-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #303235;
        transition: opacity 0.2s ease;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        overflow-y: auto;
        z-index: -1;
        justify-content: flex-start;
        visibility: hidden;
        opacity: 0;
        overflow-x: hidden;
      }
    
      .g-nav.is-open {
        z-index: 10001;
        visibility: visible;
        opacity: 1;
      }
    
      .g-nav.is-close {
        
      }
    
      .header__nav-list {
        flex-direction: column;
        width: 100%;
        z-index: 10010;
      }
    
      .header__nav-item {
        width: 100%;
        text-align: left;
        margin: 15px 0;
        color: #fff;
      }
    
      .header__nav-item a {
        display: block;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        font-size: 18px;
      }
    
      .header__nav-tel {
        width: 100%;
        max-width: 500px;
        padding: 0 0 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        text-align: center;
        color: #fff;
        margin: 20px auto 0;
      }

      .header__nav-tel-heading {
        justify-content: center;
      }

      .header__nav-tel-heading a {
        font-size: 26px;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-top: 20px;
      }

      .header__nav-tel-bottom-txt {
        font-size: 16px;
      }

      .header__nav-tel-icon {
        width: 15px;
        height: 22px;
      }

      .header__nav-btn {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        margin-top: 50px;
        z-index: 10010;
      }

      .header__nav-tel--en + .header__nav-btn {
        margin: 20px auto 0;
      }
    
      .header__nav-btn a {
        width: 100%;
        font-size: 18px;
        font-weight: 700;
        height: 56px;
      }
    
      body.no-scroll {
        overflow: hidden;
        position: fixed;
        width: 100%;
      }

      .lv1-heading {
        font-size: 18px;
        font-weight: 700;
        flex-shrink: 0;
        width: auto;
      }
    
      .lv1-heading.is-open {
        color: #fff;
        z-index: 10002;
        position: relative;
      }

      .header__nav-item a.active::after  {
        display: none;
      }
    
}



/* フッター */
/* ==================================== */
.footer {
    background-color: #303235;
}

.footer .ly-inner {
    padding-top: 34px;
    padding-bottom: 37px;
}

.footer__ttl {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
    margin-top: 20px;
}

.footer__logo {
    width: 137px;
    height: 36px;
}

.footer__logo img {
    width: 100%;
    height: 100%;
}

.footer__address {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.73;
    margin-top: 7px;
    color: #FFFFFF;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
}

.footer__small {
    color: #fff;
    font-size: 11px;
    letter-spacing: 0;
}

@media(max-width: 743px) {
    .footer .ly-inner {
        padding-top: 23px;
        padding-bottom: 20px;
    }

    .footer__wrap {
        flex-direction: column;
    }

    .footer__col2 {
        margin-top: 60px;
    }

    .footer__logo {
        width: 99px;
        height: 26px;
    }
}


/* 確認画面、送信画面 */
/* =============================== */
.p-confirm .ly-inner,
.p-thanks .ly-inner {
    max-width: 900px;
}

.p-confirm .form-inner,
.p-thanks .form-inner {
    padding-top: 60px;
    padding-bottom: 100px;
}

.p-confirm .form-item + .form-item {
    margin-top: 30px;
}

.p-confirm  .form-item__tag {
    background-color: #BCAC92;
    color: #fff;
    padding: 2.5px 8px 4px;
    font-size: 12px;
    letter-spacing: 0;
    display: inline-block;
    margin-left: 12px;
}

.p-confirm .form-item__ttl,
.p-confirm .form-item__ttl--sm p {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

.p-confirm .form-item__txt-wrap {
    margin-top: 8px;
    word-break: break-all;
}

.p-confirm .form-item__col + .form-item__col {
    margin-top: 20px;
}

.p-confirm .form-list {
    margin-bottom: 60px;
}

.p-confirm .form-btn-wrap {
    display: none;
}

.btn-wrap p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.wpcf7-form-control.wpcf7-previous.btn {
    display: block;
}

.p-confirm .wpcf7-form-control.wpcf7-previous,
.p-confirm .wpcf7-form-control.wpcf7-submit {
    background-color: #01489D;
    max-width: 300px;
    width: 100%;
    min-height: 56px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    transition: .3s;
}

.p-confirm .wpcf7-form-control.wpcf7-previous {
    background-color: #1C1C1C;
}

@media(hover: hover) {
    .p-confirm .wpcf7-form-control.wpcf7-previous:hover,
    .p-confirm .wpcf7-form-control.wpcf7-submit:hover {
        opacity: 0.6;
    }
}

.wpcf7-spinner {
    display: none;
}

.p-confirm,
.p-thanks {
    padding-top: 60px;
    padding-bottom: 100px;
    min-height: calc(100vh - 340px);
}

.lv2-heading-wrap + .thanks-txt {
    margin-top: 60px;
}

.thanks-txt {
    line-height: 2;
}


.p-confirm .form-item__txt-wrap p {
    white-space: pre-wrap!important;
}



@media(max-width: 743px) {
    .p-confirm .wpcf7-form-control.wpcf7-submit {
        margin-top: 12px;
    }

    .p-confirm .btn-wrap p {
        flex-direction: column;
    }

    .p-confirm,
    .p-thanks {
        min-height: calc(100vh - 313px);
    }
}