* {
    -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .sp {
        display: none;
    }
}

.Header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
}

.Header-Inner__TOP {
    padding: 20px 40px 20px 64px;
    display: flex;
    align-items: center;
    flex: auto;
    background: #ffffff;
    pointer-events: auto;
}

.single-news .Header-Inner__TOP,
.single-lawyer .Header-Inner__TOP {
    border-bottom: 2px solid #71A5CA;
}

@media screen and (max-width: 830px) {
    .Header-Inner__TOP {
        padding: 20px 16px;
    }
}

.Header-Inner-Logo__TOP {
    width: 255px;
}

@media screen and (max-width: 1000px) {
    .Header-Inner-Logo__TOP {
        width: 179px;
    }
}

.Header-Inner-Logo {
    width: 56px;
    height: auto;
}

.Header-Inner-Logo-Content {
    width: 100%;
    height: auto;
}

.Header-Inner-Logo-Content-Img {
    width: 100%;
    flex: none;
}

.Header-Inner-Logo-Content-Img__TOP {
    width: 100%;
    flex: none;
}

.Header-Inner-Nav {
    margin-left: auto;
    flex: auto;
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 830px) {
    .Header-Inner-Nav {
        display: none;
    }
}

.Header-Inner-Nav-List {
    display: flex;
    align-items: center;
    color: #111111;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.Header-Inner-Nav-List>*+* {
    margin-left: 32px;
}

@media screen and (max-width: 960px) {
    .Header-Inner-Nav-List>*+* {
        margin-left: 12px;
    }
}

.Header-Inner-Nav-List-Item,
.Header-Inner-Nav-List .menu-item {
    font-size: 16px;
}

.Header-Inner-Nav-List .menu-item a {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
}

.Header-Inner-Nav-List .menu-item a:hover {
    color: #71A5CA;
}

.Header-Inner-Nav-List .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #71A5CA;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.Header-Inner-Nav-List .menu-item a:hover::after {
    transform: scale(1, 1);
}

.Header-ContactBtn {
    width: 139px;
    height: 139px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #CA9671;
    line-height: 1.5;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    pointer-events: auto;
    border: 2px solid #CA9671;
    transition: all 0.4s;
}

.Header-ContactBtn:hover {
    background: #FFFFFF;
    color: #CA9671;
}

.Header-ContactBtn span {
    position: relative;
    padding-top: 40px;
}

.Header-ContactBtn span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../images/header-contact-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 31px;
    height: 25px;
}

.Header-ContactBtn:hover span::before {
    background-image: url("../images/header-contact-icon-brown.svg");
}

@media screen and (max-width: 830px) {
    .Header-ContactBtn {
        display: none;
    }
}

.Header-ContactBtn-Img {
    margin-bottom: 8px;
    width: 31px;
    height: 25px;
}

.Header-Inner-HamburgerMenuBtn {
    display: none;
}

@media screen and (max-width: 830px) {
    .Header-Inner-HamburgerMenuBtn {
        margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 31px;
        height: 23px;
    }

    .Header-Inner-HamburgerMenuBtn img {
        width: 100%;
    }
}

/**
* ハンバーガーメニュー
*/
.HamburgerMenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    color: #1A1A1A;
    transition: all .15s linear;
}

.HamburgerMenu:not(.isActive) {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.HamburgerMenu.isActive {
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
}

.HamburgerMenu-Inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.HamburgerMenu-Inner-Top {
    padding: 20px 16px;
    display: flex;
    align-items: center;
}

.HamburgerMenu-Inner-Top-Logo {
    width: 179px;
    height: auto;
}

.HamburgerMenu-Inner-Top-Logo-Content {
    width: 100%;
    height: auto;
}

.HamburgerMenu-Inner-Top-Logo-Content-Img {
    width: 100%;
    flex: none;
}

@media screen and (max-width: 830px) {
    .HamburgerMenu-Inner-Top-CloseBtn {
        margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 27px;
        height: 23px;
    }

    .HamburgerMenu-Inner-Top-CloseBtn img {
        width: 100%;
    }
}

.HamburgerMenu-Inner-Middle {
    margin-top: 6px;
    padding: 0 16px;
}

.HamburgerMenu-Inner-Middle-Nav-List {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.HamburgerMenu-Inner-Middle-Nav-List-Item {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    letter-spacing: .05em;
    font-weight: bold;
    color: #1A1A1A;
    font-family: 'Noto Sans JP', sans-serif;
}

.HamburgerMenu-Inner-Middle-Nav-List .menu-item {
    width: 100%;
    text-align: center;
    letter-spacing: .05em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #1A1A1A;
}

.HamburgerMenu-Inner-Middle-Nav-List .menu-item:not(:first-of-type) {
    border-top: 1px solid #C4C4C4;
}

.HamburgerMenu-Inner-Middle-Nav-List .menu-item a {
    padding-top: 32px;
    padding-bottom: 32px;
    display: block;
    width: 100%;
    height: 100%;
}

.HamburgerMenu-Inner-Middle-Nav-List-ContactBtn {
    margin-top: 8px;
    width: 260px;
    background: #CA9671;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.HamburgerMenu-Inner-Middle-Nav-List-ContactBtn a {
    padding-top: 18px;
    padding-bottom: 18px;
    width: 100%;
    display: block;
}

.HamburgerMenu-Inner-Middle-Nav-List-ContactBtn a span {
    position: relative;
    padding-left: 38px;
}

.HamburgerMenu-Inner-Middle-Nav-List-ContactBtn a span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 14px;
    background-image: url(../images/header-contact-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/**
* フッター
*/
.Footer {
    background: #71A5CA;
    width: 100%;
    height: auto;
}

.Footer-Inner {
    /*max-width: 1280px;*/
    padding: 45px 72px 32px;
}

.Footer-Inner-Top {
    display: flex;
    align-items: center;
}

.Footer-Inner-Top-Logo {
    width: 204px;
    height: auto;
}

@media screen and (max-width: 830px) {
    .Footer-Inner-Top-Logo {
        margin-left: auto;
        margin-right: auto;
    }
}

.Footer-Inner-Top-Logo-Content {
    width: 100%;
    height: auto;
}

.Footer-Inner-Top-Logo-Content-Img {
    width: 100%;
    height: auto;
    flex: none;
}

.Footer-Inner-Top-Nav {
    margin-left: auto;
    flex: auto;
    display: flex;
    justify-content: flex-end;
}

.Footer-Inner-Top-Nav-List {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .03em;
}

.Footer-Inner-Top-Nav-List>*+* {
    margin-left: 26px;
}

.Footer-Inner-Bottom p {
    margin-top: 10px;
}

.Footer-Inner-Bottom-Copyright {
    margin-top: 45px;
    text-align: right;
    font-family: 'Noto Sans JP', sans-serif;
    color: #ffffff;
    font-size: 12px;
}

@media screen and (max-width: 830px) {
    .Footer-Inner-Bottom-Copyright {
        margin-top: 0;
        text-align: center;
        font-size: 10px;
    }
}

@media screen and (max-width: 830px) {
    .Footer-Inner {
        padding: 36px 16px;
    }

    .Footer-Inner-Top {
        flex-direction: column;
        align-items: stretch;
    }

    .Footer-Inner-Top-Logo-Content-Img {
        height: 50px;
    }

    .Footer-Inner-Top-Nav {
        margin-left: 0;
        justify-content: center;
    }

    .Footer-Inner-Top-Nav-List>*+* {
        margin-left: 0;
    }

    .Footer-Inner-Top-Nav-List {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .Footer-Inner-Top-Nav-List-Item {
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        letter-spacing: .05em;
        font-weight: 500;
        color: #FFFFFF;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .Footer-Inner-Top-Nav-List .menu-item {
        width: 100%;
        height: 34px;
        text-align: center;
        line-height: 34px;
        font-size: 14px;
        letter-spacing: .05em;
        font-weight: 500;
        color: #FFFFFF;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .Footer-Inner-Top-Nav-List-Item a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .Footer-Inner-Top-Nav-List .menu-item a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .Footer-Inner-Bottom {
        margin-top: 24px;
    }

    .Footer-Inner-Bottom>*+* {
        margin-top: 14px;
    }
}

/* ---------------------------- */
/* --- HeroSection --- */
/* ---------------------------- */

.Hero-Main {
    padding-top: 78px;
    overflow: hidden;
    background-color: #71A5CA;
}

@media screen and (max-width: 768px) {
    .Hero-Main {
        padding-top: 61px;
    }
}

.Hero-Main__Wrapper {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
    width: 100%;
}

.Hero-Main__Wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 72px;
    bottom: 0;
    margin: auto;
    width: 2px;
    background-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .Hero-Main__Wrapper::before {
        left: 16px;
    }
}

.Hero-Main__Left {
    max-width: 1136px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 109px;
    padding-right: 50px;
    padding-bottom: 133px;
    padding-left: 50px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .Hero-Main__Left {
        padding-top: 35px;
        padding-bottom: 25px;
        padding-right: 0;
        padding-left: 0;
    }
}

.Hero-Headline {
    max-width: 940px;
    padding-right: 70px;
    padding-left: 70px;
    width: auto;
    height: 50px;
}

@media screen and (max-width: 768px) {
    .Hero-Headline {
        margin-right: auto;
        margin-left: auto;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }
}

.Hero-Headline img {
    width: auto;
    height: 100%;
}

.Hero-Main-Picture {
    position: absolute;
    top: 0;
    left: clamp(0px, 43.125vw, 552px);
    width: 56.875vw;
    height: 259px;
}

@media screen and (max-width: 768px) {
    .Hero-Main-Picture {
        position: relative;
        left: initial;
        margin-right: 0;
        margin-left: auto;
        padding-bottom: 20px;
        width: 89.375%;
        height: auto;
    }
}

.Hero-Main-Picture-Img-PC {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

@media screen and (max-width: 768px) {
    .Hero-Main-Picture-Img-PC {
        display: none;
    }
}

.Hero-Main-Picture-Img-SP {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

@media screen and (max-width: 768px) {
    .Hero-Main-Picture-Img-SP {
        display: block;
    }
}

.Hero-Sub {
    background-color: #FFFFFF;
}

.Hero-Sub__Wrapper {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
}

.Hero-Sub__Wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 72px;
    width: 2px;
    height: 48px;
    background-color: #71A5CA;
}

@media screen and (max-width: 768px) {
    .Hero-Sub__Wrapper::before {
        left: 16px;
        height: 14px;
    }
}

.Hero-Sub__Inner {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 1136px;
    padding-right: 96px;
    padding-left: 96px;
}

@media screen and (max-width: 768px) {
    .Hero-Sub__Inner {
        padding-right: 16px;
        padding-left: 16px;
    }
}

.Hero-Sub-Breadcrumb {
    position: relative;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 768px) {
    .Hero-Sub-Breadcrumb {
        padding-top: 24px;
    }
}

.Hero-Sub-Breadcrumb::before {
    order: 2;
    content: "";
    background-image: url("../images/breadcrumb-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 9px;
}

.Hero-Sub-Breadcrumb-Item.__Link {
    order: 1;
    font-family: 'EB Garamond',
        sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: #71A5CA;
}

.Hero-Sub-Breadcrumb-Item.__Text {
    order: 3;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #969696;
}

/* ---------------------------- */
/* --- パンくずリスト --- */
/* ---------------------------- */
.Breadcrumb {
    position: relative;
    margin-top: 0;
    padding-top: 32px;
    padding-right: 80px;
    padding-left: 80px;
}

@media screen and (max-width: 768px) {
    .Breadcrumb {
        margin-top: 69px;
        padding-top: 24px;
        padding-top: 16px;
        padding-left: 16px;
    }
}

.Breadcrumb-List {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.Breadcrumb-List-Item {
    position: relative;
    display: inline;
    letter-spacing: 0.01em;
    color: #969696;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .Breadcrumb-List-Item {
        font-weight: 500;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.05em;
    }
}

.Breadcrumb-List-Item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url("../images/breadcrumb-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 9px;
    display: inline-block;
}

.Breadcrumb-List-Item:first-child {
    margin-right: 14px;
    padding-right: 18px;
}

@media screen and (max-width: 768px) {
    .Breadcrumb-List-Item:first-child {
        margin-right: 12px;
        padding-right: 21px;
    }
}

.Breadcrumb-List-Item:last-child::after {
    display: none;
}

.Breadcrumb-List-Item-Text {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.Breadcrumb-List-Item-Text.isLink {
    color: #71a5ca;
    font-family: 'EB Garamond', sans-serif;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .Breadcrumb-List-Item-Text.isLink {
        font-weight: 500;
    }
}