@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 112px;
    z-index: 9;
    height: 100vh;
    box-sizing: border-box;
    mix-blend-mode: difference;
}
@media screen and (max-width: 750px) {
    .l-header {
        width: 100%;
        height: 70px;
        mix-blend-mode: normal;
        background-color: rgba(0, 0, 0, 0.7);
    }
}

/*  l-header-container
--------------------------------------------- */
.l-header-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    width: 57px;
    margin: 0 auto;
    padding-block: 36px 40px;
}
@media screen and (max-width: 750px) {
    .l-header-container {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        width: 100%;
        padding-block: 0;
    }
}

/*  l-header-logo
--------------------------------------------- */
.l-header-logo {
    width: 50px;
    margin: 0 auto;
    z-index: 10;
}
.l-header-logo__link {
    display: block;
    width: 100%;
    height: 100%;
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-header-logo__link {
        transition: opacity 300ms;
    }
    .l-header-logo__link:hover {
        opacity: 0.8;
    }
}
.l-header-logo__link img {
    width: 100%;
    height: auto;
}

/*  l-header-menu
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .l-header-menu {
        display: block !important;
    }
}
@media screen and (max-width: 750px) {
    .l-header-menu {
        position: fixed;
        inset: 0 -100% 0 auto;
        width: 100%;
        transform: translateX(0);
        overscroll-behavior-y: none;
        overflow-y: auto;
        visibility: hidden;
        scrollbar-width: none;
    }
    .l-header-menu::-webkit-scrollbar {
        display: none;
    }
    .l-header-menu.is-animating {
        transition: transform 0.3s, visibility 0.3s;
    }
    .is-menu-opened .l-header-menu {
        transform: translateX(-100%);
        visibility: visible;
    }
}
@media screen and (max-width: 750px) {
    .l-header-menu__container {
        overflow-y: auto;
        height: calc(100% + 1px);
        box-sizing: border-box;
        padding: 100px 20px 50px;
        background-color: rgba(0, 0, 0, 0.9);
    }
}

/*  l-header-nav
--------------------------------------------- */
.l-header-nav__item {
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.04em;
    color: #fff;
}
@media screen and (min-width: 751px) {
    .l-header-nav__item:nth-of-type(n+2) {
        margin-top: 27px;
    }
}
@media screen and (max-width: 750px) {
    .l-header-nav__item {
        border-bottom: 1px solid #fff;
        font-size: 16px;
    }
    .l-header-nav__item:first-of-type {
        border-top: 1px solid #fff;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-header-nav__item {
        transition: opacity 300ms;
    }
    .l-header-nav__item:hover {
        opacity: 0.8;
    }
}
@media screen and (max-width: 750px) {
    .l-header-nav__link {
        display: block;
        padding: 35px;
        color: #fff;
    }
}

/*  l-header-menu-button
--------------------------------------------- */
.l-header-menu-button {
    display: none;
    position: absolute;
    right: 0;
    padding: 15px;
    border: 0;
    border-radius: 0;
    background: none;
    margin: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    touch-action: manipulation;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .l-header-menu-button {
        display: block;
    }
}
.l-header-menu-button__lines {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
}
.l-header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 2px;
    background-color: #fff;
    transition: 0.3s;
}
.l-header-menu-button__line--top {
    top: 0;
}
.is-menu-opened .l-header-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.l-header-menu-button__line--center {
    top: 50%;
    margin-top: -1px;
}
.is-menu-opened .l-header-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

.l-header-menu-button__line--bottom {
    bottom: 0;
}
.is-menu-opened .l-header-menu-button__line--bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    overflow: hidden;
}
.l-contents--about {
    padding-block: 8.2723279649vw 19.8389458272vw;
    background-color: #1A1A1A;
}
@media screen and (max-width: 750px) {
    .l-contents--about {
        padding-block: 21.3333333333vw 37.8666666667vw;
    }
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
/* ---------------------------------------------
*   l-columns
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .l-columns {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 90%;
        max-width: 10px;
        margin: 0 auto;
    }
    .l-columns__main {
        width: 70%;
    }
    .l-columns__aside {
        position: sticky;
        top: 90px;
        right: 0;
        width: 25%;
        max-height: calc(100vh - 80px + 10px);
        overflow-y: auto;
    }
}

/* ---------------------------------------------
*   l-sidebar
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    background: url("/wp-content/themes/san/assets/img/common/bg_foot.jpg") 0 0 no-repeat;
    background-size: cover;
    padding-block: 11.0541727672vw 3.8067349927vw;
}
@media screen and (max-width: 750px) {
    .l-footer {
        padding-block: 23.4666666667vw 10.6666666667vw;
        background-image: url("/wp-content/themes/san/assets/img/common/bg_foot_sp.jpg");
    }
}
@media screen and (max-width: 750px) {
    .l-footer__container {
        width: 51.2vw;
        margin: 0 auto;
    }
}
.l-footer__head {
    margin-left: 10.6881405564vw;
}
@media screen and (max-width: 750px) {
    .l-footer__head {
        margin-left: 0;
    }
}
.l-footer__body {
    margin-top: 13.5431918009vw;
    margin-left: 10.3953147877vw;
}
@media screen and (max-width: 750px) {
    .l-footer__body {
        margin-top: 52.5333333333vw;
        margin-left: 0;
        text-align: center;
    }
}
.l-footer__contact {
    font-weight: 500;
    font-size: 2.4158125915vw;
    letter-spacing: 0.04em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .l-footer__contact {
        font-size: 8.8vw;
    }
}
.l-footer__sns {
    display: flex;
    align-items: flex-end;
    gap: 1.0980966325vw;
    margin-top: 1.9033674963vw;
}
@media screen and (max-width: 750px) {
    .l-footer__sns {
        display: block;
        margin-top: 23.4666666667vw;
    }
}
.l-footer__sns-img {
    flex-shrink: 0;
    width: 2.196193265vw;
}
@media screen and (max-width: 750px) {
    .l-footer__sns-img {
        width: 7.2vw;
        margin: 0 auto;
    }
}
.l-footer__sns-img img {
    width: 100%;
    height: 100%;
}
.l-footer__sns-txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.04em;
    color: #fff;
}
.l-footer__copyright {
    margin-top: 4.6852122987vw;
    font-weight: 500;
    font-size: 1.0248901903vw;
    letter-spacing: 0.03em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .l-footer__copyright {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   l-footer-nav
--------------------------------------------- */
.l-footer-nav {
    display: flex;
    gap: 7.1010248902vw;
}
@media screen and (max-width: 750px) {
    .l-footer-nav {
        gap: 13.0666666667vw;
    }
}
.l-footer-nav__list {
    width: 8.1991215227vw;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__list {
        width: 20.8vw;
    }
}
@media screen and (max-width: 750px) {
    .l-footer-nav__list:nth-of-type(2) {
        text-align: right;
    }
}
.l-footer-nav__item {
    font-weight: 500;
    font-size: 1.4641288433vw;
    letter-spacing: 0.04em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__item {
        font-size: 3.7333333333vw;
    }
}
.l-footer-nav__item:nth-of-type(n+2) {
    margin-top: 2.4158125915vw;
}
@media screen and (max-width: 750px) {
    .l-footer-nav__item:nth-of-type(n+2) {
        margin-top: 8.8vw;
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28.1844802343vw;
    margin: 0 auto;
    height: 4.0263543192vw;
    border-radius: 2.0497803807vw;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2.5;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 750px) {
    .c-btn {
        width: 62.9333333333vw;
        height: 9.0666666667vw;
        border-radius: 7.4666666667vw;
        font-size: 3.7333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn:hover {
        background-color: #fff;
        color: #000;
    }
}
.c-btn--white {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn--white:hover {
        background-color: #000;
        color: #fff;
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette-01
--------------------------------------------- */
.c-cassette-01:nth-of-type(n+2) {
    margin-top: 6.588579795vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-01:nth-of-type(n+2) {
        margin-top: 21.3333333333vw;
    }
}
.c-cassette-01__head {
    display: flex;
    align-items: center;
    width: 100%;
    height: 4.0263543192vw;
    background-color: #fff;
    border-radius: 0 1.4641288433vw 1.4641288433vw 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-01__head {
        height: 9.8666666667vw;
        border-radius: 0 5.3333333333vw 5.3333333333vw 0;
    }
}
.c-cassette-01__ttl {
    width: 58.1991215227vw;
    margin-inline: auto 0;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-01__ttl {
        width: 84vw;
        font-size: 4.2666666667vw;
        line-height: 1.625;
    }
}
.c-cassette-01__body {
    width: 58.1991215227vw;
    margin-top: 1.6837481698vw;
    margin-inline: auto 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-01__body {
        width: 80vw;
        margin-top: 6.1333333333vw;
    }
}

/* ---------------------------------------------
*   c-cassette-business
--------------------------------------------- */
.c-cassette-business {
    background: url("/wp-content/themes/san/assets/img/business/bg_business01.jpg") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.c-cassette-business--1 .c-cassette-business__container {
    background-color: #fff;
}
.c-cassette-business--2 .c-cassette-business__ttl {
    color: #fff;
}
.c-cassette-business--2 .c-cassette-business__lead {
    color: #fff;
}
.c-cassette-business--3 .c-cassette-business__body {
    width: 100%;
}
.c-cassette-business--3, .c-cassette-business--4 {
    background: #fff;
}
@media screen and (max-width: 750px) {
    .c-cassette-business--4 .c-cassette-business__container {
        padding-top: 0;
    }
}
.c-cassette-business__container {
    width: 73.9385065886vw;
    margin: 0 auto;
    padding-block: 10.980966325vw 7.467057101vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-business__container {
        width: 100%;
        padding: 16vw 5.3333333333vw 20.2666666667vw;
    }
}
.c-cassette-business__head {
    text-align: center;
}
.c-cassette-business__ttl {
    margin-bottom: 1.3909224012vw;
    font-weight: 600;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-business__ttl {
        margin-bottom: 5.3333333333vw;
        font-size: 4.8vw;
    }
}
.c-cassette-business__lead {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-business__lead {
        font-size: 3.7333333333vw;
    }
}
.c-cassette-business__body {
    width: 47.5841874085vw;
    margin: 6.588579795vw auto 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-business__body {
        width: 100%;
        margin: 12vw auto 0;
    }
}

/* ---------------------------------------------
*   c-cassette-philosophy
--------------------------------------------- */
.c-cassette-philosophy {
    padding-block: 10.980966325vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy {
        padding-block: 29.3333333333vw 32vw;
    }
}
.c-cassette-philosophy__head {
    margin-bottom: 3.6603221083vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__head {
        margin-bottom: 5.3333333333vw;
    }
}
.c-cassette-philosophy__ttl {
    display: block;
    font-weight: 600;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__ttl {
        font-size: 4.8vw;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__body {
        width: 85.3333333333vw;
        margin-inline: auto;
    }
}
.c-cassette-philosophy__txt {
    display: block;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__txt {
        font-size: 3.7333333333vw;
        line-height: 2.2857142857;
    }
}
.c-cassette-philosophy__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.4641288433vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__list {
        display: block;
    }
}
.c-cassette-philosophy__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    background: url("/wp-content/themes/san/assets/img/philosophy/bg_list.png") 0 0 no-repeat;
    background-size: 100% auto;
    padding: 2.196193265vw 2.196193265vw 2.5622254758vw;
    border-radius: 1.4641288433vw 0 1.4641288433vw 0;
    background-color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__item {
        display: block;
        border-radius: 5.3333333333vw 0 5.3333333333vw 0;
        padding: 8vw 8vw 9.3333333333vw;
    }
    .c-cassette-philosophy__item:nth-of-type(n+2) {
        margin-top: 5.3333333333vw;
    }
}
.c-cassette-philosophy__item-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__item-ttl {
        font-size: 5.3333333333vw;
    }
}
.c-cassette-philosophy__item-ttl--color {
    color: #9b2019;
}
.c-cassette-philosophy__item-txt {
    font-weight: 400;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: justify;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy__item-txt {
        font-size: 4.2666666667vw;
    }
}

/* ---------------------------------------------
*   c-cassette-philosophy02
--------------------------------------------- */
.c-cassette-philosophy02__head {
    margin-bottom: 2.7818448023vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy02__head {
        width: 88vw;
        margin-inline: auto;
        margin-bottom: 0;
    }
}
.c-cassette-philosophy02__ttl {
    display: block;
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy02__ttl {
        font-size: 4.8vw;
    }
}
.c-cassette-philosophy02__body {
    display: flex;
    gap: 3.2210834553vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy02__body {
        display: block;
        width: 88vw;
        margin-inline: auto;
    }
}
.c-cassette-philosophy02__img {
    flex-shrink: 0;
    width: 35.1390922401vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy02__img {
        width: 89.3333333333vw;
        margin-block: 4vw 6.6666666667vw;
        margin-inline: auto 0;
    }
}
.c-cassette-philosophy02__lead {
    display: block;
    margin-bottom: 1.8301610542vw;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy02__lead {
        margin-bottom: 0;
        font-size: 4.2666666667vw;
        line-height: 1.75;
    }
}
.c-cassette-philosophy02__txt {
    display: block;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-philosophy02__txt {
        font-size: 3.7333333333vw;
        line-height: 2;
    }
}
.c-cassette-philosophy02__txt--bold {
    font-weight: 600;
}

/* ---------------------------------------------
*   c-cassette-newsdetail
--------------------------------------------- */
.c-cassette-newsdetail {
    color: #fff;
    margin-top: 2.196193265vw;
}
.c-cassette-newsdetail__container {
    width: 58.1991215227vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-cassette-newsdetail__container {
        width: 88vw;
    }
}
.c-cassette-newsdetail__head {
    width: 14.8609077599vw;
    border-bottom: 1px solid #fff;
    padding-bottom: 1.0980966325vw;
    margin: 0 auto 2.5622254758vw;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-newsdetail__head {
        width: 80vw;
        margin-bottom: 4vw;
        padding-bottom: 4vw;
    }
}
.c-cassette-newsdetail__ttl {
    display: block;
    font-size: 1.1713030747vw;
    letter-spacing: 0.05em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-cassette-newsdetail__ttl {
        font-size: 3.7333333333vw;
    }
}
.c-cassette-newsdetail__day {
    display: block;
    font-size: 0.878477306vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-newsdetail__day {
        font-size: 2.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-cassette-gold
--------------------------------------------- */
.c-cassette-gold {
    margin-top: 8.78477306vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold {
        margin-top: 21.3333333333vw;
    }
}
.c-cassette-gold__container {
    width: 58.5651537335vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold__container {
        width: 85.3333333333vw;
    }
}
.c-cassette-gold__ttl {
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    color: #000;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold__ttl {
        font-size: 6.8vw;
    }
}
.c-cassette-gold__subttl {
    font-weight: 600;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    color: #000;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold__subttl {
        font-size: 5.3333333333vw;
    }
}
.c-cassette-gold__subttl:nth-of-type(n+2) {
    margin-top: 3.6603221083vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold__subttl:nth-of-type(n+2) {
        margin-top: 5.3333333333vw;
    }
}
.c-cassette-gold__body {
    margin-top: 3.6603221083vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold__body {
        margin-top: 5.3333333333vw;
    }
}
.c-cassette-gold__txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold__txt {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-cassette-gold-02
--------------------------------------------- */
.c-cassette-gold-02 {
    margin-top: 10.6149341142vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-02 {
        margin-top: 18.6666666667vw;
    }
}
.c-cassette-gold-02__body {
    width: 32.2108345534vw;
    margin-top: -11.320644vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-02__body {
        width: 91vw;
        margin: -9.320644vw auto 0;
    }
}
.c-cassette-gold-02__img {
    width: 100vw;
    translate: -14.9vw 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-02__img {
        width: 100%;
        translate: 0 0;
    }
}
.c-cassette-gold-02__txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-02__txt {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-cassette-gold-03
--------------------------------------------- */
.c-cassette-gold-03 {
    margin-top: 11.7130307467vw;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-03 {
        margin-top: 26.6666666667vw;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-03__container {
        width: 89.3333333333vw;
        margin: 0 auto;
    }
}
.c-cassette-gold-03__ttl {
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-03__ttl {
        font-size: 6.8vw;
    }
}
.c-cassette-gold-03__txt {
    margin-top: 2.9282576867vw;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-cassette-gold-03__txt {
        margin-top: 5.3333333333vw;
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    width: 100vw;
    height: 100dvh;
    background: url("/wp-content/themes/san/assets/img/top/img_kv.jpg") center no-repeat;
    background-size: cover;
}
.c-kv__ttl {
    display: block;
    padding-top: 233px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-kv__ttl {
        padding-top: 41.6vw;
        font-size: 2.6666666667vw;
        letter-spacing: 0.1em;
    }
}

/* ---------------------------------------------
*   c-kv-about
--------------------------------------------- */
.c-kv-about {
    width: 100vw;
    height: 25.6222547584vw;
    background: url("/wp-content/themes/san/assets/img/about/bg_about.jpg") 0 0 no-repeat;
    background-size: cover;
    padding-block: 7.3938506589vw 5.4172767204vw;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-kv-about {
        background-image: url("/wp-content/themes/san/assets/img/about/bg_about_sp.jpg");
        height: 80vw;
        padding-block: 29.8666666667vw 21.3333333333vw;
    }
}
.c-kv-about__ttl {
    margin-bottom: 2.196193265vw;
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-kv-about__ttl {
        margin-bottom: 3.2vw;
        font-size: 8vw;
    }
}
.c-kv-about__txt {
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-kv-about__txt {
        font-size: 3.7333333333vw;
        line-height: 1.4285714286;
    }
}

/* ---------------------------------------------
*   c-kv-business
--------------------------------------------- */
.c-kv-business {
    padding-block: 10.102489019vw;
    background: url("/wp-content/themes/san/assets/img/business/img_kv_business.jpg") 0 0 no-repeat;
    background-size: cover;
}
@media screen and (max-width: 750px) {
    .c-kv-business {
        padding-block: 34.9333333333vw;
        background-image: url("/wp-content/themes/san/assets/img/business/img_kv_business_sp.png");
    }
}
.c-kv-business__ttl {
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-kv-business__ttl {
        font-size: 8vw;
    }
}

/* ---------------------------------------------
*   c-kv-gold
--------------------------------------------- */
.c-kv-gold {
    padding-block: 10.102489019vw;
    background: url("/wp-content/themes/san/assets/img/gold/img_kv_gold.png") 0 0 no-repeat;
    background-size: cover;
}
@media screen and (max-width: 750px) {
    .c-kv-gold {
        padding-block: 34.9333333333vw;
        background-image: url("/wp-content/themes/san/assets/img/gold/img_kv_gold_sp.png");
    }
}
.c-kv-gold__ttl {
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-kv-gold__ttl {
        font-size: 8vw;
    }
}

/* ---------------------------------------------
*   c-kv-02
--------------------------------------------- */
.c-kv-02 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25.6222547584vw;
    background: url("/wp-content/themes/san/assets/img/philosophy/img_01.jpg") 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 750px) {
    .c-kv-02 {
        background-image: url("/wp-content/themes/san/assets/img/philosophy/img_01_sp.jpg");
        height: 80vw;
    }
}
.c-kv-02--message {
    background-image: url("/wp-content/themes/san/assets/img/message/img_01.jpg");
}
@media screen and (max-width: 750px) {
    .c-kv-02--message {
        background-image: url("/wp-content/themes/san/assets/img/message/img_01_sp.jpg");
    }
}
.c-kv-02__ttl {
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-kv-02__ttl {
        font-size: 8vw;
    }
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list-01
--------------------------------------------- */
.c-list-01__item {
    display: flex;
    align-items: center;
    gap: 10.541727672vw;
}
@media screen and (max-width: 750px) {
    .c-list-01__item {
        display: block;
        text-align: center;
    }
    .c-list-01__item .c-txt {
        line-height: 1.4285714286;
    }
}
.c-list-01__item:nth-of-type(n+2) {
    margin-top: 5.1244509517vw;
}
@media screen and (max-width: 750px) {
    .c-list-01__item:nth-of-type(n+2) {
        margin-top: 21.3333333333vw;
    }
}
.c-list-01__img {
    flex-shrink: 0;
    width: 12.4450951684vw;
}
@media screen and (max-width: 750px) {
    .c-list-01__img {
        width: 18.6666666667vw;
        margin: 0 auto;
    }
}
.c-list-01__img img {
    width: 100%;
    height: 100%;
}
.c-list-01__ttl {
    margin-bottom: 2.196193265vw;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-list-01__ttl {
        font-size: 4.2666666667vw;
        margin-top: 6.6666666667vw;
        margin-bottom: 1.4641288433vw;
    }
}

/* ---------------------------------------------
*   c-list-case
--------------------------------------------- */
.c-list-case {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4641288433vw;
}
@media screen and (max-width: 750px) {
    .c-list-case {
        display: block;
    }
}
.c-list-case__item {
    position: relative;
    width: 22.3279648609vw;
    height: 29.0629575403vw;
    border-radius: 0.7320644217vw;
}
@media screen and (max-width: 750px) {
    .c-list-case__item {
        width: 100%;
        height: 105.3333333333vw;
        border-radius: 2.6666666667vw;
    }
    .c-list-case__item:nth-of-type(n+2) {
        margin-top: 20.8vw;
    }
}
.c-list-case__link {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 1.8301610542vw;
    padding-inline: 2.0497803807vw;
}
@media screen and (max-width: 750px) {
    .c-list-case__link {
        padding-top: 8vw;
        padding-inline: 13.3333333333vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-list-case__link {
        transition: opacity 300ms;
    }
    .c-list-case__link:hover {
        opacity: 0.8;
    }
}
.c-list-case__img {
    position: absolute;
    inset: 0;
    border-radius: 0.7320644217vw;
}
@media screen and (max-width: 750px) {
    .c-list-case__img {
        border-radius: 2.6666666667vw;
    }
}
.c-list-case__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.878477306vw;
}
@media screen and (max-width: 750px) {
    .c-list-case__img img {
        border-radius: 3.2vw;
    }
}
.c-list-case__ttl {
    position: relative;
    display: block;
    margin-bottom: 14.2020497804vw;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.28;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-list-case__ttl {
        margin-bottom: 65.6vw;
        font-size: 6.6666666667vw;
    }
}
.c-list-case__name, .c-list-case__txt {
    display: block;
    position: relative;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-list-case__name, .c-list-case__txt {
        font-size: 3.7333333333vw;
    }
}

/* ---------------------------------------------
*   c-list
--------------------------------------------- */
.c-list-news--2 .c-list-news__item {
    color: #fff;
}
.c-list-news--2 .c-list-news__item:first-of-type .c-list-news__link {
    border-color: #fff;
}
.c-list-news--2 .c-list-news__date {
    width: 14.333333vw;
}
.c-list-news--2 .c-list-news__link {
    border-color: rgba(255, 255, 255, 0.3);
}
.c-list-news--2 .c-list-news__link::before {
    background-color: #fff;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news--2 .c-list-news__link:hover {
        border-color: white;
    }
    .c-list-news--2 .c-list-news__link:hover::before {
        -webkit-mask-image: url("/wp-content/themes/san/assets/img/common/icon_arrow_white.svg");
                mask-image: url("/wp-content/themes/san/assets/img/common/icon_arrow_white.svg");
        translate: 0.5856515373vw -50%;
    }
}
.c-list-news__item:first-of-type .c-list-news__link {
    padding-block: 0 0.3660322108vw;
    border-bottom: 0.0732064422vw solid #000;
}
@media screen and (max-width: 750px) {
    .c-list-news__item:first-of-type .c-list-news__link {
        padding-block: 0 1.3333333333vw;
        border-bottom: 0.2666666667vw solid #000;
    }
}
.c-list-news__item:first-of-type .c-list-news__link::before {
    content: none;
}
.c-list-news__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3.6603221083vw;
    padding-block: 0.9516837482vw 1.0980966325vw;
    padding-left: 4.6120058565vw;
    width: 100%;
    height: 100%;
    border-bottom: 0.0732064422vw solid rgba(0, 0, 0, 0.3);
    transition: border-bottom 0.3s;
}
@media screen and (max-width: 750px) {
    .c-list-news__link {
        gap: 4.2666666667vw;
        padding-block: 4.333333vw 0.933333vw;
        padding-inline: 5.3333333333vw;
        border-bottom: 0.2666666667vw solid rgba(0, 0, 0, 0.3);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news__link:hover {
        border-bottom: 0.0732064422vw solid black;
    }
    .c-list-news__link:hover::before {
        -webkit-mask-image: url("/wp-content/themes/san/assets/img/common/icon_arrow_white.svg");
                mask-image: url("/wp-content/themes/san/assets/img/common/icon_arrow_white.svg");
        translate: 0.5856515373vw -50%;
    }
}
.c-list-news__link::before {
    content: "";
    position: absolute;
    -webkit-mask: url("/wp-content/themes/san/assets/img/common/icon_arrow.svg") 0 0 no-repeat;
            mask: url("/wp-content/themes/san/assets/img/common/icon_arrow.svg") 0 0 no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #000;
    width: 0.7320644217vw;
    height: 0.9516837482vw;
    top: 50%;
    right: 1.4641288433vw;
    translate: 0 -50%;
    transition: translate 0.3s, -webkit-mask-image 0.3s;
    transition: mask-image 0.3s, translate 0.3s;
    transition: mask-image 0.3s, translate 0.3s, -webkit-mask-image 0.3s;
}
@media screen and (max-width: 750px) {
    .c-list-news__link::before {
        width: 1.8666666667vw;
        height: 2.1333333333vw;
        right: 5.3333333333vw;
    }
}
.c-list-news__date {
    display: block;
    flex-shrink: 0;
    width: 7.3206442167vw;
    font-size: 1.1713030747vw;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-list-news__date {
        width: 13.3333333333vw;
        font-size: 2.6666666667vw;
        padding-top: 0.5333333333vw;
    }
}
.c-list-news__ttl {
    font-size: 1.1713030747vw;
    line-height: 1.5;
}
@media screen and (max-width: 750px) {
    .c-list-news__ttl {
        font-size: 2.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-list-business
--------------------------------------------- */
.c-list-business--2 .c-list-business__item {
    background: #fff;
    color: #000;
}
.c-list-business--2 .c-list-business__item::before {
    background-color: #fff;
}
.c-list-business--2 .c-list-business__item--img {
    background: unset;
}
.c-list-business__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47.5841874085vw;
    height: 11.7130307467vw;
    background: url("/wp-content/themes/san/assets/img/business/bg_box.png") 0 0 no-repeat;
    background-size: cover;
    border-radius: 1.0980966325vw;
    font-weight: 600;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    text-align: center;
    color: #fff;
}
.c-list-business__item:nth-of-type(n+2) {
    margin-top: 7.027818448vw;
}
@media screen and (max-width: 750px) {
    .c-list-business__item:nth-of-type(n+2) {
        margin-top: 12.8vw;
    }
}
@media screen and (max-width: 750px) {
    .c-list-business__item {
        width: 100%;
        height: 22.4vw;
        border-radius: 4vw;
        font-size: 3.2vw;
        line-height: 1.3333333333;
    }
}
.c-list-business__item::before {
    content: "";
    position: absolute;
    bottom: -6.9546120059vw;
    left: 50%;
    translate: -50% 0;
    -webkit-mask: url("/wp-content/themes/san/assets/img/business/icon_arrow.svg") center no-repeat;
            mask: url("/wp-content/themes/san/assets/img/business/icon_arrow.svg") center no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
    background-color: #000;
    width: 2.7086383602vw;
    height: 7.027818448vw;
}
@media screen and (max-width: 750px) {
    .c-list-business__item::before {
        bottom: -13.0666666667vw;
        width: 5.3333333333vw;
        height: 13.3333333333vw;
    }
}
.c-list-business__item--img {
    width: 20.7174231332vw;
    height: auto;
    margin-inline: auto;
    background: unset;
}
@media screen and (max-width: 750px) {
    .c-list-business__item--img {
        width: 38.6666666667vw;
    }
}
.c-list-business__item--img::before {
    bottom: -4.6120058565vw;
    left: 50%;
    translate: -50% 0;
    -webkit-mask: url("/wp-content/themes/san/assets/img/business/icon_arrow01.svg") center no-repeat;
            mask: url("/wp-content/themes/san/assets/img/business/icon_arrow01.svg") center no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
    background-color: #000;
    width: 2.7086383602vw;
    height: 4.6852122987vw;
}
@media screen and (max-width: 750px) {
    .c-list-business__item--img::before {
        bottom: -8.9vw;
        width: 5.333333vw;
        height: 8.933333vw;
    }
}
.c-list-business__item--img img {
    width: 100%;
    height: 100%;
}
.c-list-business__item--btn {
    border-radius: 5.8565153734vw;
}
.c-list-business__item--btn:nth-of-type(n+2) {
    margin-top: 4.6852122987vw;
}
@media screen and (max-width: 750px) {
    .c-list-business__item--btn:nth-of-type(n+2) {
        margin-top: 8.8vw;
    }
}
@media screen and (max-width: 750px) {
    .c-list-business__item--btn {
        border-radius: 21.3333333333vw;
    }
}
.c-list-business__item:last-of-type::before {
    content: none;
}

/* ---------------------------------------------
*   c-list-company
--------------------------------------------- */
.c-list-company {
    color: #fff;
}
.c-list-company__item {
    padding-bottom: 0.3660322108vw;
    border-bottom: 1px solid #fff;
}
@media screen and (max-width: 750px) {
    .c-list-company__item {
        padding-bottom: 1.3333333333vw;
    }
}
.c-list-company__item:nth-of-type(n+2) {
    margin-top: 1.6837481698vw;
}
@media screen and (max-width: 750px) {
    .c-list-company__item:nth-of-type(n+2) {
        margin-top: 6.1333333333vw;
    }
}
.c-list-company__ttl {
    display: block;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-list-company__ttl {
        font-size: 3.7333333333vw;
        line-height: 2.2857142857;
    }
}
.c-list-company__txt {
    display: block;
    margin-top: 0.3660322108vw;
    font-weight: 400;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-list-company__txt {
        font-size: 3.7333333333vw;
        line-height: 2.2857142857;
    }
}

/* ---------------------------------------------
*   c-list-member
--------------------------------------------- */
.c-list-member {
    color: #fff;
}
.c-list-member__item {
    display: flex;
    gap: 6.588579795vw;
}
@media screen and (max-width: 750px) {
    .c-list-member__item {
        display: block;
        width: 62.6666666667vw;
        margin-inline: auto;
    }
}
.c-list-member__item:nth-of-type(n+2) {
    margin-top: 10.2489019034vw;
}
@media screen and (max-width: 750px) {
    .c-list-member__item:nth-of-type(n+2) {
        margin-top: 18.6666666667vw;
    }
}
.c-list-member__img {
    flex-shrink: 0;
    width: 35.505124451vw;
    border-radius: 0.7320644217vw;
}
@media screen and (max-width: 750px) {
    .c-list-member__img {
        width: 100%;
        border-radius: 2.6666666667vw;
        margin-bottom: 5.3333333333vw;
    }
}
.c-list-member__img img {
    border-radius: 0.7320644217vw;
}
@media screen and (max-width: 750px) {
    .c-list-member__img img {
        border-radius: 2.6666666667vw;
    }
}
.c-list-member__name {
    display: block;
    margin-bottom: 0.7320644217vw;
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
    .c-list-member__name {
        margin-bottom: 0;
        font-size: 4.8vw;
    }
}
.c-list-member__post {
    display: block;
    margin-bottom: 3.6603221083vw;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
}
@media screen and (max-width: 750px) {
    .c-list-member__post {
        margin-bottom: 6.1333333333vw;
        font-size: 3.7333333333vw;
    }
}
.c-list-member__txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
}
@media screen and (max-width: 750px) {
    .c-list-member__txt {
        font-size: 3.7333333333vw;
        line-height: 1.4285714286;
    }
}

/* ---------------------------------------------
*   c-section-01
--------------------------------------------- */
.c-section-01 {
    position: relative;
    padding-block: 6.7349926794vw 9.0775988287vw;
    background: url(/wp-content/themes/san/assets/img/top/bg_top01.jpg) 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-01 {
        padding-block: 16vw;
        background: url(/wp-content/themes/san/assets/img/top/bg_top01.jpg) 0 0 no-repeat;
        background-size: cover;
    }
    .c-section-01::before {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("your-image.jpg");
        background-size: cover;
        background-position: center;
        z-index: -1; /* 他のコンテンツの下に配置 */
    }
}
.c-section-01__head {
    text-align: center;
}
.c-section-01__lead {
    display: block;
    margin-top: 1.0980966325vw;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-01__lead {
        margin-top: 5.3333333333vw;
        font-size: 4.8vw;
        line-height: 2;
    }
}
.c-section-01__body {
    width: 77.4524158126vw;
    margin-top: 7.2474377745vw;
}
@media screen and (max-width: 750px) {
    .c-section-01__body {
        width: 94.6666666667vw;
        margin-top: 22.6666666667vw;
    }
}
.c-section-01__btn {
    margin-top: 8.78477306vw;
}
@media screen and (max-width: 750px) {
    .c-section-01__btn {
        margin-top: 41.8666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-02
--------------------------------------------- */
.c-section-02 {
    background-color: #fff;
    padding-bottom: 9.1508052709vw;
}
@media screen and (max-width: 750px) {
    .c-section-02 {
        padding-bottom: 21.8666666667vw;
    }
}
.c-section-02__ttl {
    font-weight: 500;
    font-size: 11.7130307467vw;
    letter-spacing: 0.05em;
    line-height: 0.91875;
    text-align: left;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-02__ttl {
        font-size: 21.266667vw;
    }
}
.c-section-02__body {
    width: 64.4216691069vw;
    margin: 6.8814055637vw auto 0;
}
@media screen and (max-width: 750px) {
    .c-section-02__body {
        width: 77.3333333333vw;
        margin: 28vw auto 0;
    }
}
.c-section-02__btn {
    margin-top: 7.3206442167vw;
}
@media screen and (max-width: 750px) {
    .c-section-02__btn {
        margin-top: 30.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-03
--------------------------------------------- */
.c-section-03 {
    padding-bottom: 9.1508052709vw;
    background: url("/wp-content/themes/san/assets/img/top/bg_top03.jpg") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-03 {
        padding-bottom: 20.8vw;
    }
}
.c-section-03__head {
    text-align: right;
}
.c-section-03__ttl {
    font-weight: 500;
    font-size: 15.3001464129vw;
    letter-spacing: 0.03em;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-03__ttl {
        font-size: 23.4666666667vw;
    }
}
.c-section-03__body {
    width: 70.2781844802vw;
    margin: 0 auto 6.4421669107vw;
}
@media screen and (max-width: 750px) {
    .c-section-03__body {
        width: 84.5333333333vw;
        margin: 9.0666666667vw auto 20.8vw;
    }
}

/* ---------------------------------------------
*   c-section-04
--------------------------------------------- */
.c-section-04 {
    padding-block: 6.588579795vw 7.8330893119vw;
    background: url("/wp-content/themes/san/assets/img/top/bg_top02.jpg") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-04 {
        padding-block: 18.4vw;
    }
}
.c-section-04__container {
    width: 79.0629575403vw;
    margin: 0 auto;
    padding-block: 3.6603221083vw 4.2459736457vw;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-04__container {
        width: 100%;
        padding-block: 5.3333333333vw 7.2vw;
    }
}
.c-section-04__head {
    text-align: center;
}
.c-section-04__body {
    width: 70.2781844802vw;
    margin: 2.635431918vw auto 4.0263543192vw;
}
@media screen and (max-width: 750px) {
    .c-section-04__body {
        width: 100%;
        margin: 12vw auto 9.8666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-about
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .c-section-about--reverse .c-section-about__container {
        margin-inline: auto 0;
    }
}
.c-section-about--reverse .c-section-about__ttl {
    text-align: left;
}
@media screen and (min-width: 751px) {
    .c-section-about--reverse .c-section-about__body {
        margin-inline: 0 auto;
    }
}
.c-section-about:nth-of-type(n+2) {
    margin-top: 12.0790629575vw;
}
@media screen and (max-width: 750px) {
    .c-section-about:nth-of-type(n+2) {
        margin-top: 26.6666666667vw;
    }
}
.c-section-about__container {
    width: 85.1390922401vw;
}
@media screen and (max-width: 750px) {
    .c-section-about__container {
        width: 100%;
    }
}
.c-section-about__ttl {
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    line-height: 1.75;
    color: #fff;
    text-align: right;
}
@media screen and (max-width: 750px) {
    .c-section-about__ttl {
        font-size: 4.8vw;
        text-align: center;
    }
}
.c-section-about__img {
    margin-top: 3.3674963397vw;
}
@media screen and (max-width: 750px) {
    .c-section-about__img {
        width: 94.1333333333vw;
        margin-top: 4.5333333333vw;
    }
}
@media screen and (max-width: 750px) {
    .c-section-about__img--reverse {
        margin-inline: auto 0;
    }
}
.c-section-about__body {
    width: 58.1991215227vw;
    margin-top: 2.9282576867vw;
    margin-inline: auto 0;
}
@media screen and (max-width: 750px) {
    .c-section-about__body {
        width: 88vw;
        margin-top: 10.6666666667vw;
        margin-inline: auto;
    }
}

/* ---------------------------------------------
*   c-section-company
--------------------------------------------- */
.c-section-company {
    padding-block: 6.9546120059vw 15.3733528551vw;
    background: url("/wp-content/themes/san/assets/img/company/bg_01.jpg") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-company {
        padding-block: 36.5333333333vw 21.0666666667vw;
    }
}
.c-section-company__container {
    width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-company__container {
        width: 89.3333333333vw;
    }
}
.c-section-company__head {
    margin-bottom: 5.4904831625vw;
}
@media screen and (max-width: 750px) {
    .c-section-company__head {
        margin-bottom: 13.3333333333vw;
    }
}
.c-section-company__ttl {
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-company__ttl {
        font-size: 8vw;
    }
}
.c-section-company__map {
    margin-top: 12.0790629575vw;
}
@media screen and (max-width: 750px) {
    .c-section-company__map {
        margin-top: 13.3333333333vw;
    }
}
.c-section-company__map-ttl {
    display: block;
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-section-company__map-ttl {
        font-size: 4.8vw;
    }
}
.c-section-company__map-body {
    margin-top: 2.5622254758vw;
    height: 33.6749633968vw;
}
@media screen and (max-width: 750px) {
    .c-section-company__map-body {
        margin-top: 6.1333333333vw;
        height: 46.6666666667vw;
    }
}
.c-section-company__map-body iframe {
    width: 100%;
    height: 100%;
}

/* ---------------------------------------------
*   c-section-member
--------------------------------------------- */
.c-section-member {
    padding-block: 9.5168374817vw 11.3469985359vw;
    background: url("/wp-content/themes/san/assets/img/company/bg_02.jpg") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-member {
        padding-block: 14.9333333333vw 25.3333333333vw;
    }
}
.c-section-member__container {
    width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-member__container {
        width: 89.3333333333vw;
    }
}
.c-section-member__head {
    margin-bottom: 3.6603221083vw;
}
@media screen and (max-width: 750px) {
    .c-section-member__head {
        margin-bottom: 5.8666666667vw;
    }
}
.c-section-member__ttl {
    display: block;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-member__ttl {
        font-size: 8vw;
    }
}
.c-section-member__img {
    margin-bottom: 10.2489019034vw;
    border-radius: 0.7320644217vw;
}
@media screen and (max-width: 750px) {
    .c-section-member__img {
        margin-bottom: 18.1333333333vw;
        border-radius: 2.6666666667vw;
    }
}
.c-section-member__img img {
    border-radius: 0.7320644217vw;
}
@media screen and (max-width: 750px) {
    .c-section-member__img img {
        border-radius: 2.6666666667vw;
    }
}

/* ---------------------------------------------
*   c-section-philosophy
--------------------------------------------- */
.c-section-philosophy {
    background-color: #fff;
}
.c-section-philosophy__container {
    padding-block: 8.2723279649vw 12.9575402635vw;
}
@media screen and (max-width: 750px) {
    .c-section-philosophy__container {
        padding-block: 13.3333333333vw 32vw;
    }
}
.c-section-philosophy__head {
    position: relative;
}
.c-section-philosophy__head::before, .c-section-philosophy__head::after {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 39.7510980966vw;
    height: 0.7320644217vw;
    background-color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-philosophy__head::before, .c-section-philosophy__head::after {
        width: 38.6666666667vw;
        height: 1.0666666667vw;
    }
}
.c-section-philosophy__head::before {
    left: 0;
}
.c-section-philosophy__head::after {
    right: 0;
}
.c-section-philosophy__ttl {
    display: block;
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-align: center;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-philosophy__ttl {
        font-size: 5.3333333333vw;
        line-height: 1.6;
    }
}
.c-section-philosophy__body {
    width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-philosophy__body {
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-section-message
--------------------------------------------- */
.c-section-message {
    padding-block: 10.2489019034vw 19.0336749634vw;
    background: url("/wp-content/themes/san/assets/img/message/bg_01.jpg") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-message {
        padding-block: 24vw 26.6666666667vw;
    }
}
.c-section-message__container {
    width: 66.2518301611vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-message__container {
        width: 89.3333333333vw;
    }
}
.c-section-message__ttl {
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.03em;
}
.c-section-message__ttl-main {
    display: block;
    font-size: 1.8301610542vw;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-message__ttl-main {
        font-size: 4.8vw;
    }
}
.c-section-message__ttl-sub {
    display: block;
    margin-top: 0.2196193265vw;
    font-size: 1.317715959vw;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-message__ttl-sub {
        margin-top: 0.2666666667vw;
        font-size: 4.2666666667vw;
    }
}
.c-section-message__body {
    display: block;
    margin-top: 4.0263543192vw;
}
@media screen and (max-width: 750px) {
    .c-section-message__body {
        margin-top: 0;
    }
}
.c-section-message__img {
    width: 43.9238653001vw;
    margin: 0 auto 2.196193265vw;
}
@media screen and (max-width: 750px) {
    .c-section-message__img {
        width: 100%;
        margin-bottom: 6.6666666667vw;
    }
}
.c-section-message__txt {
    display: block;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-message__txt {
        margin-top: 8vw;
        font-size: 3.7333333333vw;
        line-height: 2.2857142857;
        text-align: center;
    }
}

/* ---------------------------------------------
*   c-section-news
--------------------------------------------- */
.c-section-news {
    padding-block: 6.9546120059vw 10.980966325vw;
    background-color: #1A1A1A;
}
@media screen and (max-width: 750px) {
    .c-section-news {
        padding-block: 36.5333333333vw 26.6666666667vw;
    }
}
.c-section-news__container {
    width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-news__container {
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .c-section-news__head {
        padding-inline: 5.3333333333vw;
    }
}
.c-section-news__ttl {
    display: block;
    margin-bottom: 3.6603221083vw;
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-news__ttl {
        font-size: 8vw;
    }
}
.c-section-news__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 6.588579795vw auto 0;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-section-news__btn {
        margin: 13.3333333333vw auto 0;
    }
}

/* ---------------------------------------------
*   c-section-contact
--------------------------------------------- */
.c-section-contact {
    padding-block: 6.9546120059vw 10.980966325vw;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-contact {
        padding-block: 36.5333333333vw 26.6666666667vw;
    }
}
.c-section-contact__container {
    width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-contact__container {
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .c-section-contact__head {
        padding-inline: 5.3333333333vw;
    }
}
.c-section-contact__ttl {
    display: block;
    margin-bottom: 3.6603221083vw;
    font-weight: 500;
    font-size: 4.39238653vw;
    letter-spacing: 0.03em;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-contact__ttl {
        font-size: 8vw;
    }
}
.c-section-contact__body {
    width: 100%;
    padding-block: 5.1244509517vw 4.7584187408vw;
    margin-top: 2.5622254758vw;
    background: url("/wp-content/themes/san/assets/img/contact/bg_contact.png") 0 0 no-repeat;
    background-size: cover;
    border-radius: 1.4641288433vw;
}
@media screen and (max-width: 750px) {
    .c-section-contact__body {
        width: 89.3333333333vw;
        margin-inline: auto;
        margin-top: 8vw;
        padding-block: 8.8vw 14.6666666667vw;
        border-radius: 5.3333333333vw;
        background-image: url("/wp-content/themes/san/assets/img/contact/bg_contact_sp.png");
    }
}
.c-section-contact__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 6.588579795vw auto 0;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-section-contact__btn {
        margin: 13.3333333333vw auto 0;
    }
}
.c-section-contact__form {
    width: 60.3221083455vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-contact__form {
        width: 76vw;
    }
}
.c-section-contact__form-item {
    display: block;
    padding-bottom: 0.3660322108vw;
    border-bottom: 1px solid #fff;
    font-size: 1.1713030747vw;
    letter-spacing: 0.05em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-contact__form-item {
        padding-bottom: 1.3333333333vw;
        font-size: 4.2666666667vw;
    }
}
.c-section-contact__form-item:nth-of-type(n+2) {
    margin-top: 3.2942898975vw;
}
@media screen and (max-width: 750px) {
    .c-section-contact__form-item:nth-of-type(n+2) {
        margin-top: 5.3333333333vw;
    }
}
.c-section-contact__form-item input {
    display: inline-block;
    width: 29.2825768668vw;
    padding: 0.7320644217vw;
    margin-top: 0.7320644217vw;
    font-size: 1.1713030747vw;
    letter-spacing: 0.05em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-contact__form-item input {
        width: 100%;
        padding: 2.6666666667vw;
        margin-top: 2.6666666667vw;
        font-size: 4.2666666667vw;
    }
}
.c-section-contact__form-item input:-internal-autofill-selected {
    background-color: transparent !important;
}
.c-section-contact__form-item textarea {
    display: block;
    width: 100%;
    height: 10.2489019034vw;
    padding: 0.7320644217vw;
    margin-top: 0.7320644217vw;
    font-size: 1.1713030747vw;
    letter-spacing: 0.05em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-contact__form-item textarea {
        width: 100%;
        height: 53.3333333333vw;
        padding: 2.6666666667vw;
        margin-top: 2.6666666667vw;
        font-size: 4.2666666667vw;
    }
}
@media screen and (max-width: 750px) {
    .c-section-contact__form-txt {
        display: block;
        letter-spacing: 0.03em;
    }
}
.c-section-contact__submit {
    margin-top: 2.196193265vw;
}
@media screen and (max-width: 750px) {
    .c-section-contact__submit {
        margin-top: 5.3333333333vw;
    }
}

/* ---------------------------------------------
*   c-section-modal
--------------------------------------------- */
.c-section-modal {
    width: 70.2781844802vw;
    height: 100%;
    border-radius: 0.3660322108vw;
    background: url("/wp-content/themes/san/assets/img/contact/bg_contact.png") 0 0 no-repeat;
    background-size: cover;
}
@media screen and (max-width: 750px) {
    .c-section-modal {
        width: 100%;
    }
}
.c-section-modal__container {
    display: grid;
    place-items: center;
    height: 100%;
}
.c-section-modal__ttl {
    font-weight: bold;
    font-size: 1.8301610542vw;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-modal__ttl {
        font-size: 4.8vw;
    }
}
.c-section-modal__close-btn {
    position: absolute;
    top: 1.317715959vw;
    right: 1.317715959vw;
    display: block;
    width: 2.196193265vw;
    height: 2.196193265vw;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-section-modal__close-btn {
        top: 1.3333333333vw;
        right: 1.3333333333vw;
        width: 5.6vw;
        height: 5.6vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-section-modal__close-btn {
        transition: opacity 300ms;
    }
    .c-section-modal__close-btn:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-section-works
--------------------------------------------- */
.c-section-works {
    padding-block: 3.2942898975vw 7.3206442167vw;
    background: url("/wp-content/themes/san/assets/img/works/bg_works.png") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-works {
        padding-block: 26.6666666667vw 13.3333333333vw;
    }
}
.c-section-works__head {
    text-align: center;
    color: #fff;
}
.c-section-works__ttl {
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
    .c-section-works__ttl {
        font-size: 8vw;
    }
}
.c-section-works__case {
    display: block;
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .c-section-works__case {
        font-size: 3.7333333333vw;
    }
}
.c-section-works__lead {
    display: block;
    margin-top: 1.4641288433vw;
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-works__lead {
        margin-top: 4vw;
        font-size: 4.2666666667vw;
    }
}
.c-section-works__body {
    display: flex;
    justify-content: space-between;
    width: 85.1390922401vw;
    margin-top: 5.8565153734vw;
    margin-inline: auto 0;
    gap: 2.4158125915vw;
}
@media screen and (max-width: 750px) {
    .c-section-works__body {
        flex-direction: column-reverse;
        width: 100%;
        margin-top: 4vw;
        margin-inline: 0;
    }
}
@media screen and (max-width: 750px) {
    .c-section-works__area {
        width: 88vw;
        margin: 0 auto;
    }
}
.c-section-works__name {
    display: block;
    margin-bottom: 0.7320644217vw;
    font-weight: 600;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-works__name {
        margin-bottom: 2.6666666667vw;
        font-size: 3.7333333333vw;
    }
}
.c-section-works__txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.1em;
    line-height: 1.875;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-works__txt {
        font-size: 3.7333333333vw;
    }
}
.c-section-works__img {
    width: 48.3162518302vw;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .c-section-works__img {
        width: 100%;
        margin-bottom: 4vw;
    }
}
.c-section-works__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* ---------------------------------------------
*   c-section-works02
--------------------------------------------- */
.c-section-works02 {
    padding-block: 10.6149341142vw;
    background: url("/wp-content/themes/san/assets/img/works/bg_works.png") 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@media screen and (max-width: 750px) {
    .c-section-works02 {
        padding-block: 19.7333333333vw 40vw;
    }
}
.c-section-works02__container {
    width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-works02__container {
        width: 85.3333333333vw;
    }
}
.c-section-works02__btn {
    margin-top: 6.4421669107vw;
}
@media screen and (max-width: 750px) {
    .c-section-works02__btn {
        margin-top: 20.8vw;
    }
}

/* ---------------------------------------------
*   c-section-gold
--------------------------------------------- */
.c-section-gold {
    padding-block: 10.6149341142vw 16.1054172767vw;
    background-color: #fff;
}
@media screen and (max-width: 750px) {
    .c-section-gold {
        padding-block: 13.3333333333vw 22.6666666667vw;
    }
}
.c-section-gold__head {
    display: flex;
    gap: 44px;
}
@media screen and (max-width: 750px) {
    .c-section-gold__head {
        display: block;
    }
}
.c-section-gold__img {
    width: 51.756954612vw;
    flex-shrink: 0;
}
@media screen and (max-width: 750px) {
    .c-section-gold__img {
        width: 67.2vw;
        margin-block: 4vw;
    }
}
.c-section-gold__txt-area {
    width: 30.2342606149vw;
}
@media screen and (max-width: 750px) {
    .c-section-gold__txt-area {
        width: 81.3333333333vw;
        margin: 0 auto;
    }
}
.c-section-gold__ttl {
    font-weight: 500;
    font-size: 1.8301610542vw;
    letter-spacing: 0.03em;
    line-height: 1.6;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-gold__ttl {
        text-align: center;
        font-size: 6.8vw;
    }
}
.c-section-gold__txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-section-gold__txt {
        font-size: 3.7333333333vw;
        line-height: 2.2857142857;
    }
}
.c-section-gold__body {
    max-width: 70.2781844802vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-section-gold__body {
        max-width: initial;
    }
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    font-weight: 500;
    font-size: 2.9282576867vw;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
    .c-ttl {
        font-size: 8vw;
        letter-spacing: 0.03em;
    }
}
.c-ttl--white {
    color: #fff;
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000;
}
@media screen and (max-width: 750px) {
    .c-txt {
        font-size: 3.7333333333vw;
        line-height: 2;
    }
}
.c-txt--white {
    color: #fff;
}

/* ---------------------------------------------
*   c-wysiwyg (Wordpress案件以外は削除すること)
--------------------------------------------- */
.c-wysiwyg {
    overflow: hidden;
}
.c-wysiwyg::after {
    content: "";
    display: block;
    clear: both;
}

/* c-wysiwyg default
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .c-wysiwyg {
        padding-right: 0;
        padding-left: 0;
    }
}
.c-wysiwyg > :last-child {
    margin-bottom: 0 !important;
}
.c-wysiwyg sup {
    vertical-align: super;
    font-size: smaller;
}
.c-wysiwyg sub {
    vertical-align: sub;
    font-size: smaller;
}
.c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3 {
    margin-top: 3rem;
}
.c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
    margin-top: 2rem;
}
.c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3, .c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
    font-weight: 700;
}
.c-wysiwyg i,
.c-wysiwyg strong {
    font-weight: bold;
}
.c-wysiwyg p {
    font-weight: 500;
    font-size: 1.1713030747vw;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .c-wysiwyg p {
        font-size: 3.7333333333vw;
    }
}
.c-wysiwyg em {
    font-style: italic;
}
.c-wysiwyg a {
    text-decoration: underline;
}
.c-wysiwyg ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.c-wysiwyg blockquote {
    padding: 1em;
    background-color: #eaeaea;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg pre {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.c-wysiwyg del {
    text-decoration: line-through;
}
.c-wysiwyg hr {
    display: block;
    border: none;
    border-top: #9a9a9a 1px solid;
    border-bottom: #eee 1px solid;
}
.c-wysiwyg code {
    background-color: #eee;
    padding: 0.1em 0.4em;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    word-break: break-all;
}
.c-wysiwyg .aligncenter {
    display: block;
    max-width: 100%;
    margin: 1rem auto;
}
.c-wysiwyg .alignright {
    float: right;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-left: 1rem;
}
.c-wysiwyg .alignleft {
    float: left;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-right: 1rem;
}
.c-wysiwyg img[class*=wp-image-],
.c-wysiwyg img[class*=attachment-] {
    height: auto;
    max-width: 100%;
}
.c-wysiwyg .wp-caption {
    max-width: 100%;
    text-align: left;
}
.c-wysiwyg .wp-caption img {
    width: 100%;
}
.c-wysiwyg img {
    width: 100%;
}
.c-wysiwyg .wp-caption-text {
    display: block;
    padding: 0.5em 1rem 0;
    text-align: left;
    color: #8a8a8a;
    font-size: 0.875em;
    margin: 0;
}
.c-wysiwyg table {
    margin-top: 1em;
    margin-bottom: 1em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.c-wysiwyg table th,
.c-wysiwyg table td {
    padding: 0.5em;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    word-break: break-all;
}
.c-wysiwyg table th {
    background-color: #eee;
}

/*--------------------------------------------- */
/*  c-modal-contact
--------------------------------------------- */
.c-modal-contact {
    display: none;
}
.c-modal-contact.is-open {
    display: block;
}
.c-modal-contact__overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.c-modal-contact__inner {
    display: grid;
    place-items: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.c-modal-contact__container {
    position: relative;
    width: 70.2781844802vw;
    height: 46.1200585652vw;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .c-modal-contact__container {
        width: 89.3333333333vw;
        height: 138.1333333333vw;
    }
}
.c-modal-contact__close-btn {
    position: absolute;
    top: -0.7320644217vw;
    right: -11.7130307467vw;
    display: block;
    width: 2.196193265vw;
    height: 2.196193265vw;
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    .c-modal-contact__close-btn {
        top: -12.8vw;
        right: 0;
        width: 5.6vw;
        height: 5.6vw;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .c-modal-contact__close-btn {
        transition: opacity 300ms;
    }
    .c-modal-contact__close-btn:hover {
        opacity: 0.8;
    }
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal-contact[aria-hidden=false] .c-modal-contact__overlay {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-contact[aria-hidden=false] .c-modal-contact__container {
    animation: mmfadeIn 0.5s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-contact[aria-hidden=true] .c-modal-contact__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-contact[aria-hidden=true] .c-modal-contact__container {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal-contact__overlay, .c-modal-contact__container {
    will-change: transform;
}

@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

/* ---------------------------------------------
*   js-fadein-up
--------------------------------------------- */
/* フェードインアップ */
.js-fadein-up {
    opacity: 0;
    transform: translateY(50px);
}

.js-fadein-up.is-active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s, opacity 1s;
}

/* ---------------------------------------------
*   is-hide
--------------------------------------------- */
.is-hide {
    display: none;
}

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 750px), screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 1.3333333333vw !important;
    }
    .mgt-sp--10 {
        margin-top: 2.6666666667vw !important;
    }
    .mgt-sp--15 {
        margin-top: 4vw !important;
    }
    .mgt-sp--20 {
        margin-top: 5.3333333333vw !important;
    }
    .mgt-sp--25 {
        margin-top: 6.6666666667vw !important;
    }
    .mgt-sp--30 {
        margin-top: 8vw !important;
    }
    .mgt-sp--35 {
        margin-top: 9.3333333333vw !important;
    }
    .mgt-sp--40 {
        margin-top: 10.6666666667vw !important;
    }
    .mgt-sp--45 {
        margin-top: 12vw !important;
    }
    .mgt-sp--50 {
        margin-top: 13.3333333333vw !important;
    }
    .mgt-sp--55 {
        margin-top: 14.6666666667vw !important;
    }
    .mgt-sp--60 {
        margin-top: 16vw !important;
    }
    .mgt-sp--65 {
        margin-top: 17.3333333333vw !important;
    }
    .mgt-sp--70 {
        margin-top: 18.6666666667vw !important;
    }
    .mgt-sp--75 {
        margin-top: 20vw !important;
    }
    .mgt-sp--80 {
        margin-top: 21.3333333333vw !important;
    }
    .mgt-sp--85 {
        margin-top: 22.6666666667vw !important;
    }
    .mgt-sp--90 {
        margin-top: 24vw !important;
    }
    .mgt-sp--95 {
        margin-top: 25.3333333333vw !important;
    }
    .mgt-sp--100 {
        margin-top: 26.6666666667vw !important;
    }
    .mgt-sp--105 {
        margin-top: 28vw !important;
    }
    .mgt-sp--110 {
        margin-top: 29.3333333333vw !important;
    }
    .mgt-sp--115 {
        margin-top: 30.6666666667vw !important;
    }
    .mgt-sp--120 {
        margin-top: 32vw !important;
    }
    .mgt-sp--125 {
        margin-top: 33.3333333333vw !important;
    }
    .mgt-sp--130 {
        margin-top: 34.6666666667vw !important;
    }
    .mgt-sp--135 {
        margin-top: 36vw !important;
    }
    .mgt-sp--140 {
        margin-top: 37.3333333333vw !important;
    }
    .mgt-sp--145 {
        margin-top: 38.6666666667vw !important;
    }
    .mgt-sp--150 {
        margin-top: 40vw !important;
    }
    .mgt-sp--155 {
        margin-top: 41.3333333333vw !important;
    }
    .mgt-sp--160 {
        margin-top: 42.6666666667vw !important;
    }
    .mgt-sp--165 {
        margin-top: 44vw !important;
    }
    .mgt-sp--170 {
        margin-top: 45.3333333333vw !important;
    }
    .mgt-sp--175 {
        margin-top: 46.6666666667vw !important;
    }
    .mgt-sp--180 {
        margin-top: 48vw !important;
    }
    .mgt-sp--185 {
        margin-top: 49.3333333333vw !important;
    }
    .mgt-sp--190 {
        margin-top: 50.6666666667vw !important;
    }
    .mgt-sp--195 {
        margin-top: 52vw !important;
    }
    .mgt-sp--200 {
        margin-top: 53.3333333333vw !important;
    }
    .mgt-sp--205 {
        margin-top: 54.6666666667vw !important;
    }
    .mgt-sp--210 {
        margin-top: 56vw !important;
    }
    .mgt-sp--215 {
        margin-top: 57.3333333333vw !important;
    }
    .mgt-sp--220 {
        margin-top: 58.6666666667vw !important;
    }
    .mgt-sp--225 {
        margin-top: 60vw !important;
    }
    .mgt-sp--230 {
        margin-top: 61.3333333333vw !important;
    }
    .mgt-sp--235 {
        margin-top: 62.6666666667vw !important;
    }
    .mgt-sp--240 {
        margin-top: 64vw !important;
    }
    .mgt-sp--245 {
        margin-top: 65.3333333333vw !important;
    }
    .mgt-sp--250 {
        margin-top: 66.6666666667vw !important;
    }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 1.3333333333vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 2.6666666667vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 5.3333333333vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 6.6666666667vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 9.3333333333vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 10.6666666667vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 13.3333333333vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 14.6666666667vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 17.3333333333vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 18.6666666667vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 21.3333333333vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 22.6666666667vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 25.3333333333vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 26.6666666667vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 29.3333333333vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 30.6666666667vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 33.3333333333vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 34.6666666667vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 36vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 37.3333333333vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 38.6666666667vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 40vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 41.3333333333vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 42.6666666667vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 44vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 45.3333333333vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 46.6666666667vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 48vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 49.3333333333vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 50.6666666667vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 52vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 53.3333333333vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 54.6666666667vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 56vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 57.3333333333vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 58.6666666667vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 60vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 61.3333333333vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 62.6666666667vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 64vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 65.3333333333vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 66.6666666667vw !important;
    }
}