@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header {
    position: sticky;
    top: -75px;
    transition: top 0.3s;
    height: calc(var(--fixed-header-height) * 1px);
    z-index: 999;
    overflow: hidden;
    z-index: 1001;
    /* デフォルトでは通常ロゴを表示 */
    /* .is-show が付いたら切り替え */
}
@media screen and (max-width: 767px) {
    .l-header {
        height: auto;
    }
}
.l-header .l-header-nav__link {
    background: linear-gradient(0deg, #fff, #fff) right bottom no-repeat;
    background-size: 0 1px;
    transition: background-size 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .l-header .l-header-nav__link:hover {
        background-position: left bottom;
        background-size: 100% 1px;
    }
}
.l-header.is-show {
    top: 0;
    background-color: #FFFEFA;
}
.l-header.is-show .l-header-nav__link {
    color: #3B4043;
}
@media screen and (max-width: 767px) {
    .l-header.is-show .l-header-nav__link {
        color: #fff;
    }
}
.l-header.is-show .l-header-nav__link {
    background: linear-gradient(0deg, #3B4043, #3B4043) right bottom no-repeat;
    background-size: 0 1px;
    transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
    .l-header.is-show .l-header-nav__link {
        background: linear-gradient(0deg, #fff, #fff) right bottom no-repeat;
        background-size: 0 calc(1 / var(--design-width) * 100vw);
        transition: background-size 0.3s;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header.is-show .l-header-nav__link:hover {
        background-position: left bottom;
        background-size: 100% 1px;
    }
}
.l-header.is-show .l-header__logo {
    width: 105px;
}
@media screen and (max-width: 767px) {
    .l-header.is-show .l-header__logo {
        width: calc(105 / var(--design-width) * 100vw);
    }
}
.l-header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFEFA;
    border-bottom: 1px solid #D5D3D1;
    color: #3B4043;
    z-index: 999;
}
.l-header--fixed .l-header-nav__link {
    background: linear-gradient(0deg, #3B4043, #3B4043) right bottom no-repeat;
    background-size: 0 1px;
    transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
    .l-header--fixed .l-header-nav__link {
        background: linear-gradient(0deg, #fff, #fff) right bottom no-repeat;
        background-size: 0 calc(1 / var(--design-width) * 100vw);
        transition: background-size 0.3s;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-header--fixed .l-header-nav__link:hover {
        background-position: left bottom;
        background-size: 100% 1px;
    }
}
.l-header--fixed .l-header-nav__link {
    color: #3B4043;
}
@media screen and (max-width: 767px) {
    .l-header--fixed .l-header-nav__link {
        color: #fff;
    }
}
.l-header--fixed .l-header__container {
    padding: 28px 36px 10px 26px;
}
@media screen and (max-width: 767px) {
    .l-header--fixed .l-header__container {
        padding: 23px 23px 27px;
    }
}
.l-header--fixed .l-header__logo {
    width: 105px;
}
@media screen and (max-width: 767px) {
    .l-header--fixed .l-header__logo {
        width: calc(105 / var(--design-width) * 100vw);
    }
}
.l-header--fixed .l-header__logo img {
    display: block;
}
.l-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 30px 36px 10px 26px;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .l-header__container {
        padding: 23px 23px 27px;
    }
}
.l-header__logo {
    width: 190px;
}
@media screen and (max-width: 767px) {
    .l-header__logo {
        width: 105px;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .l-header__logo {
        transition: opacity var(--hover-duration);
    }
    .l-header__logo:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.l-header__logo-img--white {
    display: block;
}
.l-header__logo-img {
    display: none;
}
.l-header.is-show .l-header__logo-img {
    display: block;
}
.l-header.is-show .l-header__logo-img--white {
    display: none;
}

.js-gnav-threshold {
    position: absolute;
    top: 0;
    height: calc(770 / var(--design-width) * 100vw);
}

/* ---------------------------------------------
*   l-header-nav
--------------------------------------------- */
@media screen and (min-width: 768px) {
    .l-header-nav {
        display: block !important;
    }
}
@media screen and (max-width: 767px) {
    .l-header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100dvh + 1px);
        overflow-y: auto;
        background-color: rgba(26, 16, 13, 0.71);
        overscroll-behavior-y: none;
        opacity: 0;
        visibility: hidden;
        scrollbar-width: none;
    }
    .l-header-nav::-webkit-scrollbar {
        display: none;
    }
    .l-header-nav.is-animating {
        transition: opacity 0.3s, visibility 0.3s;
    }
    .is-menu-opened .l-header-nav {
        visibility: visible;
        opacity: 1;
    }
}
.l-header-nav__list {
    display: flex;
    align-items: center;
    gap: 45px;
}
@media screen and (max-width: 950px) {
    .l-header-nav__list {
        gap: 13px;
    }
}
@media screen and (max-width: 767px) {
    .l-header-nav__list {
        gap: 40px;
        height: 100%;
        flex-direction: column;
        justify-content: center;
    }
}
.l-header-nav__link {
    display: block;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #fff;
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
    position: relative;
    display: block;
    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;
}
.header-menu-button__lines {
    position: relative;
    display: block;
    width: 30px;
    height: 11px;
}
.header-menu-button__line {
    position: absolute;
    right: 0;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 1px;
    background-color: #fff;
    transition: 0.3s;
}
.header-menu-button__line--top {
    top: 0;
}
.is-menu-opened .header-menu-button__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
}

.is-show .header-menu-button__line--top {
    background-color: #3B4043;
}

.l-header--fixed .header-menu-button__line--top {
    background-color: #3B4043;
}

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

.is-show .header-menu-button__line--bottom {
    background-color: #3B4043;
}

.l-header--fixed .header-menu-button__line--bottom {
    background-color: #3B4043;
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-contents
--------------------------------------------- */
.l-contents {
    margin-top: calc(var(--fixed-header-height) * 1px);
    background-color: #FFFEFA;
    overflow: hidden;
}
.l-contents--top {
    margin-top: calc(var(--fixed-header-height) * -1px);
    background-color: #fff;
}

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

/* ---------------------------------------------
*   l-sidebar
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
.l-footer {
    position: relative;
    z-index: 60;
}
.l-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.48);
    z-index: 1;
}
.l-footer__copyright {
    position: absolute;
    bottom: 120px;
    right: -60px;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 9px;
    letter-spacing: 0.04em;
    color: #afaaa7;
    rotate: -90deg;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright {
        position: relative;
        inset: 0;
        display: block;
        margin-top: calc(20 / var(--design-width) * 100vw);
        font-size: calc(9 / var(--design-width) * 100vw);
        color: #fff;
        opacity: 0.6;
        rotate: 0deg;
    }
}
.l-footer__logo {
    margin-top: 175px;
    width: 161px;
}
@media screen and (max-width: 767px) {
    .l-footer__logo {
        margin-top: calc(17 / var(--design-width) * 100vw);
        width: calc(160 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   l-footer-nav
--------------------------------------------- */
.l-footer-nav {
    position: absolute;
    top: 210px;
    left: 9%;
    width: 350px;
    padding: 21px 30px 33px 30px;
    background-color: #fff;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .l-footer-nav {
        inset: calc(81 / var(--design-width) * 100vw) calc(35 / var(--design-width) * 100vw) calc(75 / var(--design-width) * 100vw);
        width: auto;
        padding: 0;
        background-color: transparent;
    }
}
.l-footer-nav__inner {
    display: flex;
    gap: 45px;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__inner {
        display: block;
    }
}
.l-footer-nav__list {
    width: 115px;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__list {
        width: auto;
    }
}
.l-footer-nav__list--2 {
    width: auto;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__list--2 {
        margin-top: calc(33 / var(--design-width) * 100vw);
    }
}
.l-footer-nav__item:nth-of-type(n+2) {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__item:nth-of-type(n+2) {
        margin-top: calc(23 / var(--design-width) * 100vw);
    }
}
.l-footer-nav__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .l-footer-nav__link {
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 1.3;
        color: #fff;
    }
}
.l-footer-nav a {
    background: linear-gradient(0deg, #3B4043, #3B4043) right bottom no-repeat;
    background-size: 0 1px;
    transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
    .l-footer-nav a {
        background: linear-gradient(0deg, #fff, #fff) right bottom no-repeat;
        background-size: 0 calc(1 / var(--design-width) * 100vw);
        transition: background-size 0.3s;
    }
}
@media (hover: hover) and (pointer: fine) {
    .l-footer-nav a:hover {
        background-position: left bottom;
        background-size: 100% 1px;
    }
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .c-btn {
        margin-right: calc(61 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn:hover .c-btn__arrow::before {
        transform: scale(1);
    }
    .c-btn:hover .c-btn__arrow::after {
        background-color: #3B4043;
    }
}
.c-btn--bk .c-btn__arrow {
    border: 1px solid #3B4043;
}
@media screen and (max-width: 767px) {
    .c-btn--bk .c-btn__arrow {
        border: calc(2 / var(--design-width) * 100vw) solid #3B4043;
        background-color: #3B4043;
    }
}
.c-btn--bk .c-btn__arrow::before {
    background-color: #3B4043;
}
@media screen and (max-width: 767px) {
    .c-btn--bk .c-btn__arrow::before {
        background-color: #fff;
    }
}
.c-btn--bk .c-btn__arrow::after {
    background-color: #3B4043;
}
@media screen and (max-width: 767px) {
    .c-btn--bk .c-btn__arrow::after {
        background-color: #fff;
    }
}
.c-btn--bk .c-btn__txt {
    color: #3B4043;
}
@media (hover: hover) and (pointer: fine) {
    .c-btn--bk:hover .c-btn__arrow::before {
        transform: scale(1);
    }
    .c-btn--bk:hover .c-btn__arrow::after {
        background-color: #fff;
    }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
    .c-btn--bk:hover .c-btn__arrow::after {
        background-color: #3B4043;
    }
}
@media screen and (max-width: 767px) {
    .c-btn--l {
        margin-right: 0;
    }
}
.c-btn--l .c-btn__txt {
    font-size: 96px;
    letter-spacing: 0.05em;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .c-btn--l .c-btn__txt {
        font-size: calc(38 / var(--design-width) * 100vw);
    }
}
.c-btn--l .c-btn__arrow {
    right: -138px;
    width: 84px;
    height: 84px;
}
@media screen and (max-width: 900px) {
    .c-btn--l .c-btn__arrow {
        right: -118px;
    }
}
@media screen and (max-width: 767px) {
    .c-btn--l .c-btn__arrow {
        right: calc(-86 / var(--design-width) * 100vw);
        width: calc(54 / var(--design-width) * 100vw);
        height: calc(54 / var(--design-width) * 100vw);
    }
}
.c-btn--l .c-btn__arrow::after {
    width: 29px;
    height: 29px;
}
@media screen and (max-width: 767px) {
    .c-btn--l .c-btn__arrow::after {
        width: calc(19 / var(--design-width) * 100vw);
        height: calc(19 / var(--design-width) * 100vw);
    }
}
.c-btn--reverse {
    margin-left: 38px;
}
.c-btn--reverse .c-btn__arrow {
    right: auto;
    left: -38px;
    transform: translate(-50%, -50%) rotate(180deg);
    transform-origin: center;
}
@media screen and (max-width: 767px) {
    .c-btn--reverse .c-btn__arrow {
        left: calc(-61 / var(--design-width) * 100vw);
    }
}
.c-btn__arrow {
    position: absolute;
    top: 50%;
    right: -62px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
    .c-btn__arrow {
        right: calc(-61 / var(--design-width) * 100vw);
        width: calc(42 / var(--design-width) * 100vw);
        height: calc(42 / var(--design-width) * 100vw);
    }
}
.c-btn__arrow::before {
    content: "";
    position: absolute;
    inset: -1px;
    transform: scale(0);
    border-radius: 50%;
    background-color: #fff;
    transition: transform 0.3s;
}
.c-btn__arrow::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url("/wp-content/themes/theday/assets/img/icon_btn_arrow.svg");
            mask-image: url("/wp-content/themes/theday/assets/img/icon_btn_arrow.svg");
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    transition: background-color 0.3s;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .c-btn__arrow::after {
        width: calc(11 / var(--design-width) * 100vw);
        height: calc(11 / var(--design-width) * 100vw);
    }
}
.c-btn__txt {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 3.25;
    color: #fff;
    transition: color 0.3s;
}
@media screen and (max-width: 767px) {
    .c-btn__txt {
        font-size: calc(16 / var(--design-width) * 100vw);
        line-height: 4.0625;
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
.c-cassette-01 {
    position: relative;
}
.c-cassette-01__img {
    position: relative;
    width: 100dvw;
    height: 100dvh;
}
.c-cassette-01__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.48);
}
.c-cassette-01__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-cassette-01__img.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.c-cassette-01__txt-outer {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding-inline: calc(175 / var(--design-width) * 100vw);
    opacity: 0;
    transition: opacity 0.5s;
}
@media screen and (max-width: 767px) {
    .c-cassette-01__txt-outer {
        justify-content: center;
        padding-inline: 0;
    }
}
.c-cassette-01__txt-outer.is-fixed {
    height: 200vh;
    opacity: 1;
}
.c-cassette-01__txt-area {
    width: calc(595 / var(--design-width) * 100vw);
}
@media screen and (max-width: 767px) {
    .c-cassette-01__txt-area {
        width: calc(345 / var(--design-width) * 100vw);
    }
}
.c-cassette-01__ttl {
    display: block;
    margin-bottom: calc(13 / var(--design-width) * 100vw);
    font-family: var(--ff-marcellus);
    font-size: calc(40 / var(--design-width) * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.625;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-cassette-01__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 2.7083333333;
    }
}
.c-cassette-01__txt {
    display: block;
    font-weight: 400;
    font-size: calc(17 / var(--design-width) * 100vw);
    letter-spacing: 0.03em;
    line-height: 2.1176470588;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-cassette-01__txt {
        font-size: calc(13 / var(--design-width) * 100vw);
        letter-spacing: 0.03em;
        line-height: 2.3076923077;
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    position: relative;
}
@media screen and (max-width: 767px) {
    .c-kv {
        margin-top: -20px;
    }
}
.c-kv__slider {
    display: flex;
}
@media screen and (max-width: 767px) {
    .c-kv__slider {
        display: block;
    }
}
.c-kv__txt-area {
    position: absolute;
    top: 50.8%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
    .c-kv__txt-area {
        top: calc(547 / var(--design-width) * 100vw);
        left: calc(23 / var(--design-width) * 100vw);
        transform: translate(0, 0);
    }
}
.c-kv__ttl {
    font-weight: 400;
    font-size: calc(40 / var(--design-width) * 100vw);
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
    .c-kv__ttl {
        display: block;
        width: calc(365 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
        letter-spacing: 0.08em;
        line-height: 1.6666666667;
        text-align: left;
        text-shadow: 0px calc(3 / var(--design-width) * 100vw) calc(6 / var(--design-width) * 100vw) rgba(0, 0, 0, 0.1);
    }
}
.c-kv__txt {
    margin-top: calc(33 / var(--design-width) * 100vw);
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: calc(12 / var(--design-width) * 100vw);
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: center;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
    .c-kv__txt {
        display: block;
        margin-top: calc(22 / var(--design-width) * 100vw);
        width: auto;
        font-size: calc(10 / var(--design-width) * 100vw);
        letter-spacing: 0.1em;
        line-height: 2.2;
        text-align: left;
        text-shadow: 0px calc(3 / var(--design-width) * 100vw) calc(6 / var(--design-width) * 100vw) rgba(0, 0, 0, 0.1);
    }
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list
--------------------------------------------- */
.c-list-01 {
    position: relative;
}
.c-list-01::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -205px;
    background: url(/img/img_line.svg) 0 0 no-repeat;
    background-size: 100% auto;
    width: 330px;
    height: 627px;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .c-list-01::before {
        top: calc(10 / var(--design-width) * 100vw);
        left: calc(-45 / var(--design-width) * 100vw);
        width: calc(185 / var(--design-width) * 100vw);
        height: calc(352 / var(--design-width) * 100vw);
    }
}
.c-list-01__item {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media screen and (max-width: 767px) {
    .c-list-01__item {
        gap: calc(9 / var(--design-width) * 100vw);
    }
}
.c-list-01__item:nth-of-type(1) {
    color: #023c5a;
}
@media screen and (max-width: 767px) {
    .c-list-01__item:nth-of-type(1) {
        margin-left: calc(40 / var(--design-width) * 100vw);
    }
    .c-list-01__item:nth-of-type(1) .c-list-01__txt {
        max-width: calc(220 / var(--design-width) * 100vw);
    }
}
.c-list-01__item:nth-of-type(2) {
    margin-top: 72px;
    margin-left: 65px;
    color: #65A09C;
}
@media screen and (max-width: 767px) {
    .c-list-01__item:nth-of-type(2) {
        margin-top: calc(31 / var(--design-width) * 100vw);
        margin-left: calc(96 / var(--design-width) * 100vw);
    }
    .c-list-01__item:nth-of-type(2) .c-list-01__txt {
        max-width: calc(187 / var(--design-width) * 100vw);
    }
}
.c-list-01__item:nth-of-type(3) {
    margin-top: 72px;
    color: #E37263;
}
@media screen and (max-width: 767px) {
    .c-list-01__item:nth-of-type(3) {
        margin-top: calc(31 / var(--design-width) * 100vw);
        margin-left: calc(40 / var(--design-width) * 100vw);
    }
    .c-list-01__item:nth-of-type(3) .c-list-01__txt {
        max-width: calc(222 / var(--design-width) * 100vw);
    }
}
.c-list-01__img {
    width: 115px;
}
@media screen and (max-width: 767px) {
    .c-list-01__img {
        width: calc(80 / var(--design-width) * 100vw);
        flex-shrink: 0;
    }
}
.c-list-01__category {
    display: flex;
    align-items: baseline;
    gap: 26px;
}
@media screen and (max-width: 767px) {
    .c-list-01__category {
        display: block;
    }
}
.c-list-01__category-en {
    display: block;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
    .c-list-01__category-en {
        font-size: calc(20 / var(--design-width) * 100vw);
        line-height: 1.8;
    }
}
.c-list-01__category-ja {
    display: block;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2.4;
}
@media screen and (max-width: 767px) {
    .c-list-01__category-ja {
        font-size: calc(10 / var(--design-width) * 100vw);
        line-height: 1;
    }
}
.c-list-01__txt {
    display: block;
    max-width: 319px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-list-01__txt {
        font-size: calc(12 / var(--design-width) * 100vw);
        line-height: 2;
    }
}

/* ---------------------------------------------
*   c-list-02
--------------------------------------------- */
.c-list-02__item {
    display: flex;
    border-bottom: 1px solid #707070;
    gap: 33px;
}
@media screen and (max-width: 767px) {
    .c-list-02__item {
        display: block;
        border-bottom: none;
    }
    .c-list-02__item:nth-of-type(n+2) {
        margin-top: calc(39 / var(--design-width) * 100vw);
    }
}
.c-list-02__toc {
    position: relative;
    display: block;
    padding-block: 29px;
    width: 220px;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.1em;
    line-height: 2.1176470588;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-list-02__toc {
        width: 100%;
        padding-top: 0;
        padding-bottom: calc(22 / var(--design-width) * 100vw);
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 1;
        border-bottom: calc(1 / var(--design-width) * 100vw) solid #707070;
    }
}
.c-list-02__toc::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -1px;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .c-list-02__toc::before {
        width: calc(48 / var(--design-width) * 100vw);
        height: calc(1 / var(--design-width) * 100vw);
        bottom: calc(-1 / var(--design-width) * 100vw);
    }
}
.c-list-02__txt {
    display: block;
    padding-block: 29px;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.01em;
    line-height: 2.017647;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-list-02__txt {
        padding-top: calc(9 / var(--design-width) * 100vw);
        padding-bottom: 0;
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 2;
    }
}

/* ---------------------------------------------
*   c-list-03
--------------------------------------------- */
.c-list-03 {
    margin-top: -15px;
}
@media screen and (max-width: 767px) {
    .c-list-03 {
        margin-top: 0;
    }
}
.c-list-03__item {
    border-bottom: 1px solid #D5D3D1;
}
@media screen and (max-width: 767px) {
    .c-list-03__item {
        padding-top: 0;
        border-bottom: calc(1 / var(--design-width) * 100vw) solid #D5D3D1;
    }
}
@media screen and (max-width: 767px) {
    .c-list-03__item:nth-of-type(n+2) {
        margin-top: calc(20 / var(--design-width) * 100vw);
    }
}
.c-list-03__link {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 12px;
    background: #fff;
    transition: color 0.3s, background 0s;
}
@media screen and (max-width: 767px) {
    .c-list-03__link {
        padding-top: 0;
        padding-bottom: calc(20 / var(--design-width) * 100vw);
    }
}
@media screen and (min-width: 768px) {
    .c-list-03__link:hover {
        background: #fff;
        transition: color 0.3s, background 0s 0.3s;
    }
}
.c-list-03__link::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    content: "";
    transition: transform 0.3s;
    transform: scaleX(0);
    transform-origin: right;
}
@media screen and (min-width: 768px) {
    .c-list-03__link:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }
}
.c-list-03__head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media screen and (max-width: 767px) {
    .c-list-03__head {
        gap: calc(11 / var(--design-width) * 100vw);
    }
}
.c-list-03__date {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #afaaa7;
}
@media screen and (max-width: 767px) {
    .c-list-03__date {
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 1;
    }
}
.c-list-03__category {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 20px;
    border-radius: 10px;
    background: #afaaa7;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.09em;
    line-height: 1.2;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-list-03__category {
        width: calc(70 / var(--design-width) * 100vw);
        height: calc(20 / var(--design-width) * 100vw);
        border-radius: calc(10 / var(--design-width) * 100vw);
        font-size: calc(10 / var(--design-width) * 100vw);
        line-height: 1.2;
    }
}
.c-list-03__body {
    position: relative;
}
.c-list-03__txt {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.14em;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-list-03__txt {
        text-align: left;
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 1.4;
    }
}

/* ---------------------------------------------
*   c-list-category
--------------------------------------------- */
.c-list-category {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 767px) {
    .c-list-category {
        flex-wrap: wrap;
        gap: calc(9 / var(--design-width) * 100vw);
        padding: 0 calc(35 / var(--design-width) * 100vw) 0;
        justify-content: unset;
    }
}
.c-list-category__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 36px;
    background: #FFFEFA;
    border-radius: 18px;
    border: 1px solid #afaaa7;
    transition: background 0.3s, color 0.3s;
    font-family: var(--ff-marcellus);
    font-weight: 700;
    font-size: 15px;
    line-height: 2.4666666667;
    color: #afaaa7;
}
@media screen and (max-width: 767px) {
    .c-list-category__link {
        width: calc(85 / var(--design-width) * 100vw);
        height: calc(30 / var(--design-width) * 100vw);
        border-radius: calc(18 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.safari .c-list-category__link {
    padding-bottom: 1px;
}
@media screen and (max-width: 767px) {
    .safari .c-list-category__link {
        padding-top: calc(1 / var(--design-width) * 100vw);
        padding-bottom: 0;
    }
}

.c-list-category__link--all {
    font-family: var(--ff-root);
}
.c-list-category__link.current {
    background: #afaaa7;
    color: #fff;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-category__link:hover {
        background: #afaaa7;
        color: #fff;
    }
}

/* ---------------------------------------------
*   c-list-news
--------------------------------------------- */
.c-list-news {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 70px;
}
@media screen and (max-width: 767px) {
    .c-list-news {
        display: block;
        margin-top: calc(50 / var(--design-width) * 100vw);
        padding: 0 calc(22 / var(--design-width) * 100vw) 0;
    }
}
.c-list-news--detail {
    margin-top: 37px;
}
@media screen and (max-width: 767px) {
    .c-list-news--detail {
        margin-top: calc(12 / var(--design-width) * 100vw);
        padding: 0;
    }
}
.c-list-news__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
}
@media screen and (min-width: 768px) {
    .c-list-news__item:nth-of-type(n+4) {
        margin-top: 41px;
    }
}
@media screen and (max-width: 767px) {
    .c-list-news__item {
        display: block;
    }
    .c-list-news__item:nth-of-type(n+2) {
        margin-top: calc(47 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news__item:hover .c-list-news__img {
        opacity: 0.8;
    }
    .c-list-news__item:hover .c-list-news__inner {
        opacity: 0.8;
    }
    .c-list-news__item:hover .c-list-news__ttl {
        opacity: 0.8;
    }
    .c-list-news__item:hover .c-list-news__txt {
        opacity: 0.8;
    }
}
.c-list-news__img {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    transition: opacity 0.3s;
}
.c-list-news__img img {
    width: 100%;
    transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-list-news__item:hover .c-list-news__img img {
        transform: scale(1.1);
    }
}
.c-list-news__inner {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 23px;
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-news__inner {
        gap: calc(9 / var(--design-width) * 100vw);
        margin-top: calc(19 / var(--design-width) * 100vw);
    }
}
.c-list-news__day {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #afaaa7;
}
@media screen and (max-width: 767px) {
    .c-list-news__day {
        font-size: calc(13 / var(--design-width) * 100vw);
    }
}
.c-list-news__category {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 18px;
    border-radius: 9px;
    background: #afaaa7;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.09em;
    line-height: 1.2;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-list-news__category {
        width: calc(97 / var(--design-width) * 100vw);
        height: calc(22 / var(--design-width) * 100vw);
        padding-top: calc(1 / var(--design-width) * 100vw);
        border-radius: calc(11 / var(--design-width) * 100vw);
        font-size: calc(11 / var(--design-width) * 100vw);
    }
}
@media screen and (max-width: 767px) {
    .edge .c-list-news__category {
        padding-bottom: calc(1 / var(--design-width) * 100vw);
    }
}

.c-list-news__ttl {
    display: block;
    margin-top: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
    color: #505050;
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-news__ttl {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-list-news__txt {
    padding-right: 15px;
    margin-top: 7px;
    font-family: var(--ff-noto);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.85;
    color: #505050;
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .c-list-news__txt {
        padding-right: 0;
        margin-top: calc(10 / var(--design-width) * 100vw);
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 1.7692307692;
    }
}

/* ---------------------------------------------
*   c-list-privacy
--------------------------------------------- */
.c-list-privacy__item {
    margin-top: 30px;
}
.c-list-privacy__ttl, .c-list-privacy__txt {
    display: block;
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-list-privacy__ttl, .c-list-privacy__txt {
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.c-list-privacy__ttl {
    font-weight: 700;
}
.c-list-privacy__txt {
    margin-top: 6px;
}
.c-list-privacy__txt--indent {
    text-indent: -1.5em;
    padding-left: 1.5em;
}

/* ---------------------------------------------
*   c-list-comfirm
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .c-list-comfirm {
        padding-inline: calc(23 / var(--design-width) * 100vw) calc(8 / var(--design-width) * 100vw);
    }
}
.c-list-comfirm__item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-block: 56px 59px;
    border-top: 1px solid #CACFD2;
}
@media screen and (max-width: 767px) {
    .c-list-comfirm__item {
        display: block;
        padding-block: calc(28 / var(--design-width) * 100vw) calc(24 / var(--design-width) * 100vw);
        border-top: calc(1 / var(--design-width) * 100vw) solid #CACFD2;
    }
}
.c-list-comfirm__item:last-of-type {
    border-bottom: 1px solid #CACFD2;
}
@media screen and (max-width: 767px) {
    .c-list-comfirm__item:last-of-type {
        border-bottom: calc(1 / var(--design-width) * 100vw) solid #CACFD2;
    }
}
.c-list-comfirm__toc, .c-list-comfirm__txt {
    display: block;
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.08em;
    line-height: 1.6470588235;
    color: #090b0d;
}
@media screen and (max-width: 767px) {
    .c-list-comfirm__toc, .c-list-comfirm__txt {
        font-size: calc(16 / var(--design-width) * 100vw);
        line-height: 1.75;
    }
}
.c-list-comfirm__toc {
    flex-shrink: 0;
    width: 200px;
    font-weight: 700;
    line-height: 1.3;
}
@media screen and (max-width: 767px) {
    .c-list-comfirm__toc {
        margin-bottom: calc(3 / var(--design-width) * 100vw);
        width: auto;
        line-height: 1.75;
    }
}
.c-list-comfirm__toc sup {
    color: #ff0202;
}
@media screen and (max-width: 767px) {
    .c-list-comfirm__txt {
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 2;
        padding-right: calc(10 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section-01 {
    padding: calc(207 / var(--design-width) * 100vw) 0 calc(134 / var(--design-width) * 100vw) calc(125 / var(--design-width) * 100vw);
}
@media screen and (max-width: 767px) {
    .c-section-01 {
        padding: calc(32 / var(--design-width) * 100vw) 0 calc(47 / var(--design-width) * 100vw);
    }
}
.c-section-01__head {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .c-section-01__head {
        display: block;
        padding-left: calc(23 / var(--design-width) * 100vw);
    }
}
.c-section-01__head-inner {
    margin-top: -6.7vw;
}
@media screen and (max-width: 767px) {
    .c-section-01__head-inner {
        margin-top: 0;
    }
}
.c-section-01__ttl {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: calc(42 / var(--design-width) * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.5476190476;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-01__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 2.7083333333;
    }
}
.c-section-01__lead {
    display: block;
    margin-top: calc(20 / var(--design-width) * 100vw);
    font-weight: 400;
    font-size: calc(26 / var(--design-width) * 100vw);
    letter-spacing: 0.12em;
    line-height: 1.9230769231;
    text-align: left;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-01__lead {
        margin-top: calc(8 / var(--design-width) * 100vw);
        font-size: calc(15 / var(--design-width) * 100vw);
        letter-spacing: 0.12em;
        line-height: 2;
    }
}
.c-section-01__lead-en {
    margin-top: calc(4 / var(--design-width) * 100vw);
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: calc(12 / var(--design-width) * 100vw);
    letter-spacing: 0.1em;
    line-height: 2;
    color: #afaaa7;
}
@media screen and (max-width: 767px) {
    .c-section-01__lead-en {
        margin-top: calc(9 / var(--design-width) * 100vw);
        font-size: calc(9 / var(--design-width) * 100vw);
        letter-spacing: 0.1em;
        line-height: 2.2222222222;
    }
}
.c-section-01__head-img {
    width: calc(563 / var(--design-width) * 100vw);
}
@media screen and (max-width: 767px) {
    .c-section-01__head-img {
        width: calc(325 / var(--design-width) * 100vw);
        margin: calc(40 / var(--design-width) * 100vw) 0 0 auto;
    }
}
.c-section-01__body {
    display: flex;
    align-items: end;
    gap: calc(170 / var(--design-width) * 100vw);
    margin-top: -9.6vw;
}
@media screen and (max-width: 767px) {
    .c-section-01__body {
        display: block;
        margin-top: calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-01__img {
    width: calc(432 / var(--design-width) * 100vw);
    margin-left: -1.6vw;
}
@media screen and (max-width: 767px) {
    .c-section-01__img {
        width: calc(297 / var(--design-width) * 100vw);
        margin-left: 0;
    }
}
.c-section-01__img:nth-of-type(n+2) {
    margin-top: calc(5 / var(--design-width) * 100vw);
}
.c-section-01__txt {
    margin-bottom: calc(-9 / var(--design-width) * 100vw);
    font-weight: 400;
    font-size: calc(17 / var(--design-width) * 100vw);
    line-height: 2.59;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-01__txt {
        width: calc(340 / var(--design-width) * 100vw);
        margin: calc(42 / var(--design-width) * 100vw) auto 0;
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 2.5384615385;
    }
}

/* ---------------------------------------------
*   c-section-02
--------------------------------------------- */
.c-section-02__ttl {
    margin-bottom: 34px;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: calc(42 / var(--design-width) * 100vw);
    letter-spacing: 0.05em;
    line-height: 1.5476190476;
    text-align: center;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-02__ttl {
        margin-bottom: calc(11 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 2.7083333333;
    }
}

/* ---------------------------------------------
*   c-section-03
--------------------------------------------- */
.c-section-03 {
    position: relative;
    z-index: 50;
    background-color: #fff;
    padding-block: 144px 127px;
}
@media screen and (max-width: 767px) {
    .c-section-03 {
        padding-block: calc(61 / var(--design-width) * 100vw) calc(74 / var(--design-width) * 100vw);
    }
}
.c-section-03__cointainer {
    display: flex;
    align-items: center;
    gap: 49px;
    max-width: 1060px;
    margin: 0 auto;
    padding-inline: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-03__cointainer {
        display: block;
        max-width: initial;
        margin: 0 auto;
        padding-inline: 0;
    }
}
@media screen and (max-width: 767px) {
    .c-section-03__head {
        padding-inline: calc(23 / var(--design-width) * 100vw);
        margin-bottom: calc(46 / var(--design-width) * 100vw);
    }
}
.c-section-03__ttl-main {
    display: block;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    line-height: 1.5476190476;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-03__ttl-main {
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 2.108333;
    }
}
.c-section-03__ttl-sub {
    display: block;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 2.125;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-03__ttl-sub {
        margin-top: calc(2 / var(--design-width) * 100vw);
        font-size: calc(12 / var(--design-width) * 100vw);
        letter-spacing: 0.03em;
        line-height: 1;
    }
}
.c-section-03__lead {
    display: block;
    margin-top: 37px;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.06em;
    line-height: 1.9230769231;
    text-align: left;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-03__lead {
        margin-top: calc(19 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
        line-height: 2.25;
    }
}
.c-section-03__body {
    flex-shrink: 0;
}

/* ---------------------------------------------
*   c-section-04
--------------------------------------------- */
.c-section-04 {
    position: relative;
    z-index: 30;
    background: url("/wp-content/themes/theday/assets/img/bg_recruit.jpg") 0 bottom no-repeat;
    background-size: cover;
}
.c-section-04__container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 107px 20px 123px;
}
@media screen and (max-width: 767px) {
    .c-section-04__container {
        max-width: initial;
        padding: calc(53 / var(--design-width) * 100vw) 0 calc(106 / var(--design-width) * 100vw) calc(23 / var(--design-width) * 100vw);
    }
}
.c-section-04__ttl {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    line-height: 1.5476190476;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-section-04__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 2.7083333333;
    }
}
.c-section-04__lead {
    display: block;
    margin-top: 13px;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 0.06em;
    line-height: 1.6666666667;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-section-04__lead {
        margin-top: calc(5 / var(--design-width) * 100vw);
        font-size: calc(24 / var(--design-width) * 100vw);
        line-height: 2.0833333333;
        white-space: nowrap;
    }
}
.c-section-04__body {
    max-width: 631px;
}
@media screen and (max-width: 767px) {
    .c-section-04__body {
        max-width: initial;
    }
}
.c-section-04__txt {
    margin-top: 28px;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-section-04__txt {
        margin-top: calc(32 / var(--design-width) * 100vw);
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 2;
    }
}
.c-section-04__btn {
    margin-top: 65px;
}
@media screen and (max-width: 767px) {
    .c-section-04__btn {
        width: -moz-fit-content;
        width: fit-content;
        margin: calc(39 / var(--design-width) * 100vw) auto 0;
        translate: calc(-13 / var(--design-width) * 100vw) 0;
    }
}

/* ---------------------------------------------
*   c-section-05
--------------------------------------------- */
.c-section-05 {
    position: relative;
    z-index: 30;
    background-color: #1C2437;
}
.c-section-05__ttl {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    line-height: 1.5476190476;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-section-05__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-05__body {
    max-width: 1040px;
    margin: 26px auto 0;
    padding: 0 20px 149px;
}
@media screen and (max-width: 767px) {
    .c-section-05__body {
        max-width: initial;
        margin: calc(25 / var(--design-width) * 100vw) auto 0;
        padding: 0 calc(22 / var(--design-width) * 100vw) calc(70 / var(--design-width) * 100vw);
    }
}

#p-company {
    padding-top: 150px;
	background-color: #FFFEFA!important;
}



#p-company .c-section-04__txt,
#p-company .c-section-04__lead,
#p-company .c-list-02__toc,
#p-company .c-list-02__txt,
#p-company .c-section-05__ttl {
	color: #3a3836!important;
}

#p-company .c-list-02__toc {
	border-bottom: 1px solid #ccc;
}

#p-company .c-list-02__toc::before {
	background: #000;
}

@media screen and (max-width: 767px) {
    #p-company {
        padding-top: 120px;
		padding-left: 20px;
		padding-right: 20px;
    }
	#p-company .c-list-02 {
		padding-top: 20px;
		padding-bottom: 30px;
	}

	#p-company .c-section-05__body {
		max-width: 100%!important;
		box-sizing: border-box!important;	
		margin: calc(25 / var(--design-width) * 100vw) auto 0;
		padding-left: 0 !important;	
		padding-right: 0 !important;	
  }
}

.p-greeting {
	/*
	padding: 45px!important;
	background-color: rgb(245, 245, 242);
	*/
	margin-top: 50px;
}

.p-flex {
	display: flex;
	flex-wrap :wrap;
}

.p-flex .p-photo {
	display: block;
	background: #ccc;
	width: 200px;
}

.p-flex  .c-section-04__txt {
	padding-right: 40px;
	width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
	.p-flex {
		
	}

	.p-flex .p-photo {
		display: block;
		width: 200px;
		height: 200px;
		margin: 30px auto 0;
		order: 1;
	}

	.p-flex  .c-section-04__txt {
		padding-right:0;
		width: 100%;
		order: 2;
	}	
}


/* ---------------------------------------------
*   c-section-06
--------------------------------------------- */
.c-section-06 {
    position: relative;
    z-index: 30;
    background-color: #fff;
}
.c-section-06__container {
    display: flex;
    gap: 172px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 112px 20px 138px;
}
@media screen and (max-width: 767px) {
    .c-section-06__container {
        display: block;
        padding: calc(58 / var(--design-width) * 100vw) 0 calc(52 / var(--design-width) * 100vw);
    }
}
.c-section-06__head {
    flex-shrink: 0;
}
.c-section-06__ttl {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    line-height: 1.5476190476;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-section-06__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
        color: #3a3836;
        text-align: center;
    }
}
.c-section-06__body {
    max-width: 720px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .c-section-06__body {
        max-width: initial;
        width: calc(345 / var(--design-width) * 100vw);
        margin: calc(24 / var(--design-width) * 100vw) auto 0;
    }
}
.c-section-06__btn {
    margin-top: 28px;
}
@media screen and (max-width: 767px) {
    .c-section-06__btn {
        width: -moz-fit-content;
        width: fit-content;
        margin: calc(27 / var(--design-width) * 100vw) auto 0;
    }
}

/* ---------------------------------------------
*   c-section-07
--------------------------------------------- */
.c-section-07 {
    position: relative;
    z-index: 30;
    background-color: #fff;
    border-top: 1px solid rgba(175, 170, 167, 0.5);
}
@media screen and (max-width: 767px) {
    .c-section-07 {
        border-top: calc(1 / var(--design-width) * 100vw) solid rgba(175, 170, 167, 0.5);
    }
}
.c-section-07__container {
    max-width: 795px;
    margin: 0 auto;
    padding: 45px 20px 73px;
}
@media screen and (max-width: 767px) {
    .c-section-07__container {
        max-width: initial;
        margin: 0 auto;
        padding: calc(38 / var(--design-width) * 100vw) calc(35 / var(--design-width) * 100vw) calc(52 / var(--design-width) * 100vw) calc(23 / var(--design-width) * 100vw);
    }
}
.c-section-07__ttl {
    font-family: var(--ff-marcellus);
    font-weight: normal;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 5;
    text-align: left;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-section-07__ttl {
        font-size: calc(13 / var(--design-width) * 100vw);
        line-height: 2.7;
    }
}
.c-section-07__txt {
    display: block;
    margin-top: 25px;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: #000;
}
@media screen and (max-width: 767px) {
    .c-section-07__txt {
        margin-top: calc(9 / var(--design-width) * 100vw);
        font-size: calc(13 / var(--design-width) * 100vw);
        letter-spacing: -0.01em;
    }
}

/* ---------------------------------------------
*   c-section-news
--------------------------------------------- */
.c-section-news {
    padding-top: 82px;
}
@media screen and (max-width: 767px) {
    .c-section-news {
        padding-top: calc(54 / var(--design-width) * 100vw);
    }
}
.c-section-news__body {
    max-width: 1040px;
    margin: 0 auto;
    padding: 75px 20px 140px;
}
@media screen and (max-width: 767px) {
    .c-section-news__body {
        max-width: initial;
        margin: 0 auto;
        padding: calc(28 / var(--design-width) * 100vw) 0 calc(54 / var(--design-width) * 100vw);
    }
}
.c-section-news__ttl {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-news__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-news-detail
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .c-section-news-detail {
        padding-top: calc(56 / var(--design-width) * 100vw);
    }
}
.c-section-news-detail__container {
    max-width: 870px;
    margin: 0 auto;
    padding: 180px 20px 100px;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__container {
        max-width: initial;
        width: calc(345 / var(--design-width) * 100vw);
        margin: 0 auto;
        padding: 0 0 calc(33 / var(--design-width) * 100vw);
    }
}
.c-section-news-detail__ttl {
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-news-detail__inner {
    display: flex;
    align-items: center;
    gap: 9px;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__inner {
        gap: calc(9 / var(--design-width) * 100vw);
        margin-top: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-news-detail__day {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #afaaa7;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__day {
        font-size: calc(13 / var(--design-width) * 100vw);
    }
}
.c-section-news-detail__category {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 18px;
    border-radius: 9px;
    background: #afaaa7;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.09em;
    line-height: 1.2;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__category {
        width: calc(97 / var(--design-width) * 100vw);
        height: calc(22 / var(--design-width) * 100vw);
        padding-top: calc(1 / var(--design-width) * 100vw);
        border-radius: calc(11 / var(--design-width) * 100vw);
        font-size: calc(11 / var(--design-width) * 100vw);
    }
}
.edge .c-section-news-detail__category {
    padding-bottom: 1px;
}
@media screen and (max-width: 767px) {
    .edge .c-section-news-detail__category {
        padding-bottom: calc(1 / var(--design-width) * 100vw);
    }
}

.c-section-news-detail__ttl02 {
    margin-top: 53px;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.4117647059;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__ttl02 {
        margin-top: calc(24 / var(--design-width) * 100vw);
        font-size: calc(19 / var(--design-width) * 100vw);
        line-height: 1.7894736842;
        color: #505050;
    }
}
.c-section-news-detail__body {
    margin-top: 37px;
}
@media screen and (max-width: 767px) {
    .c-section-news-detail__body {
        margin-top: calc(27 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   c-section-relation
--------------------------------------------- */
.c-section-relation__container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 10px 20px 130px;
}
@media screen and (max-width: 767px) {
    .c-section-relation__container {
        max-width: initial;
        width: calc(345 / var(--design-width) * 100vw);
        margin: 0 auto;
        padding: 0 0 calc(47 / var(--design-width) * 100vw);
    }
}
.c-section-relation__ttl {
    display: block;
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.06em;
    line-height: 1.9230769231;
    text-align: center;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-relation__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
        letter-spacing: 0.05em;
        line-height: 2.7083333333;
    }
}
.c-section-relation__btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 86px auto 0;
}
@media screen and (max-width: 767px) {
    .c-section-relation__btn {
        display: none;
    }
}

/* ---------------------------------------------
*   c-section-contact
--------------------------------------------- */
.c-section-contact__container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 83px 20px 142px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__container {
        max-width: initial;
        width: 100%;
        margin: 0 auto;
        padding: calc(55 / var(--design-width) * 100vw) 0 0;
    }
}
.c-section-contact__ttl {
    display: block;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 42px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #3a3836;
}
@media screen and (max-width: 767px) {
    .c-section-contact__ttl {
        font-size: calc(24 / var(--design-width) * 100vw);
    }
}
.c-section-contact__flow {
    width: 550px;
    margin: 57px auto 0;
}
@media screen and (max-width: 767px) {
    .c-section-contact__flow {
        width: calc(322 / var(--design-width) * 100vw);
        margin: calc(33 / var(--design-width) * 100vw) auto 0;
    }
}
.c-section-contact__flow img {
    translate: -8px 0;
}
@media screen and (max-width: 767px) {
    .c-section-contact__flow img {
        translate: calc(-11 / var(--design-width) * 100vw) 0;
    }
}
.c-section-contact__body {
    margin-top: 80px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__body {
        margin-top: calc(65 / var(--design-width) * 100vw);
    }
}
.c-section-contact__anno {
    display: block;
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 17px;
    text-align: left;
    color: #ff0202;
}
@media screen and (max-width: 767px) {
    .c-section-contact__anno {
        padding-left: calc(6 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 2.2857142857;
    }
    .c-section-contact__anno sup {
        vertical-align: baseline;
    }
}
.c-section-contact__form {
    margin-top: 23px;
    padding: 85px 100px 100px;
    background-color: #F5F5F2;
}
@media screen and (max-width: 767px) {
    .c-section-contact__form {
        margin-top: calc(4 / var(--design-width) * 100vw);
        padding: calc(31 / var(--design-width) * 100vw) calc(22 / var(--design-width) * 100vw) calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-contact__form-item:nth-of-type(2) {
    margin-top: 38px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__form-item:nth-of-type(2) {
        margin-top: 32px;
    }
}
.c-section-contact__form-item:nth-of-type(n+3) {
    margin-top: 27px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__form-item:nth-of-type(n+3) {
        margin-top: calc(27 / var(--design-width) * 100vw);
    }
}
.c-section-contact__form-item input {
    width: 100%;
    background-color: #fff;
    padding: 19px 14px 16px;
    font-family: var(--ff-noto);
    font-size: 17px;
    letter-spacing: 0.05em;
    color: #3B4043;
}
@media screen and (max-width: 767px) {
    .c-section-contact__form-item input {
        padding: calc(15 / var(--design-width) * 100vw) calc(11 / var(--design-width) * 100vw) calc(13 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-section-contact__form-item input::-moz-placeholder {
    color: #8e8e8e;
    opacity: 0.5;
}
.c-section-contact__form-item input::placeholder {
    color: #8e8e8e;
    opacity: 0.5;
}
.c-section-contact__form-item textarea {
    width: 100%;
    height: 255px;
    overflow-y: scroll;
    background-color: #fff;
    padding: 17px 16px;
    font-family: var(--ff-noto);
    font-size: 17px;
    line-height: 1.8823529412;
    letter-spacing: 0.05em;
    color: #3B4043;
    scrollbar-width: none; /* Firefox */
}
@media screen and (max-width: 767px) {
    .c-section-contact__form-item textarea {
        margin-top: calc(14 / var(--design-width) * 100vw);
        height: calc(190 / var(--design-width) * 100vw);
        padding: calc(11 / var(--design-width) * 100vw) calc(10 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 1.9285714286;
    }
}
.c-section-contact__form-item textarea::-webkit-scrollbar {
    display: none;
}
.c-section-contact__form-item textarea::-moz-placeholder {
    color: #8e8e8e;
    opacity: 0.5;
}
.c-section-contact__form-item textarea::placeholder {
    color: #8e8e8e;
    opacity: 0.5;
}
.c-section-contact__form-txt {
    display: block;
    margin-bottom: 13px;
    font-family: var(--ff-noto);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.08em;
    line-height: 1.6470588235;
    color: #090b0d;
}
@media screen and (max-width: 767px) {
    .c-section-contact__form-txt {
        margin-bottom: calc(4 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
    }
}
.c-section-contact__form-txt sup {
    color: #ff0202;
}
.c-section-contact__radio {
    display: flex;
    align-items: center;
    gap: 4.8%;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__radio {
        display: block;
        margin-top: calc(13 / var(--design-width) * 100vw);
    }
}
.c-section-contact__radio input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: relative;
    top: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    padding: 0;
    background-color: #ffffff;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .c-section-contact__radio input {
        width: calc(20 / var(--design-width) * 100vw);
        height: calc(20 / var(--design-width) * 100vw);
    }
}
.c-section-contact__radio input:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 14px;
    height: 14px;
    margin: auto;
    border-radius: 50%;
    background-color: #afaaa7;
}
@media screen and (max-width: 767px) {
    .c-section-contact__radio input:checked::after {
        width: calc(8 / var(--design-width) * 100vw);
        height: calc(8 / var(--design-width) * 100vw);
    }
}
.c-section-contact__radio .wpcf7-list-item-label {
    padding-left: 15px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__radio .wpcf7-list-item-label {
        padding-left: calc(10 / var(--design-width) * 100vw);
    }
}
.c-section-contact__radio .wpcf7-list-item {
    margin: 0;
}
.c-section-contact__radio .wpcf7-list-item:not(:last-of-type) {
    margin-right: 40px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__radio .wpcf7-list-item {
        display: block;
    }
    .c-section-contact__radio .wpcf7-list-item:not(:last-of-type) {
        margin-right: 0;
    }
    .c-section-contact__radio .wpcf7-list-item:nth-of-type(n+2) {
        margin-top: calc(8 / var(--design-width) * 100vw);
    }
}
.c-section-contact .c-radio__input {
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.8823529412;
    color: #090b0d;
}
@media screen and (max-width: 767px) {
    .c-section-contact .c-radio__input {
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 2.2857142857;
    }
}
.c-section-contact .c-radio-check {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 96px auto 0;
    line-height: 1;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .c-section-contact .c-radio-check {
        margin: calc(35 / var(--design-width) * 100vw) auto 0;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-section-contact .c-radio-check:hover input {
        opacity: 0.8;
    }
    .c-section-contact .c-radio-check:hover .wpcf7-list-item-label {
        opacity: 0.8;
    }
}
.c-section-contact .c-radio-check input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: relative;
    top: 8px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #707070;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}
@media screen and (max-width: 767px) {
    .c-section-contact .c-radio-check input {
        top: calc(7 / var(--design-width) * 100vw);
        width: calc(24 / var(--design-width) * 100vw);
        height: calc(24 / var(--design-width) * 100vw);
        border: none;
    }
}
.c-section-contact .c-radio-check input:checked::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 8px;
    border-bottom: 2px solid #AFAAA7;
    border-left: 2px solid #AFAAA7;
    transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
    .c-section-contact .c-radio-check input:checked::after {
        top: calc(7 / var(--design-width) * 100vw);
        left: calc(7 / var(--design-width) * 100vw);
        width: calc(11 / var(--design-width) * 100vw);
        height: calc(7 / var(--design-width) * 100vw);
        border-bottom: calc(2 / var(--design-width) * 100vw) solid #AFAAA7;
        border-left: calc(2 / var(--design-width) * 100vw) solid #AFAAA7;
    }
}
.c-section-contact .c-radio-check .wpcf7-list-item-label {
    padding-left: 18px;
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #090b0d;
    transition: all 0.3s;
}
@media screen and (max-width: 767px) {
    .c-section-contact .c-radio-check .wpcf7-list-item-label {
        padding-left: calc(12 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 2.2857142857;
    }
}
.c-section-contact__privacy {
    margin-top: 80px;
    padding-block: 30px;
    background-color: #fff;
    height: 457px;
    overflow-y: scroll;
}
@media screen and (max-width: 767px) {
    .c-section-contact__privacy {
        margin-top: calc(60 / var(--design-width) * 100vw);
        padding-block: calc(22 / var(--design-width) * 100vw);
        height: calc(273 / var(--design-width) * 100vw);
    }
}
.c-section-contact__privacy-inner {
    max-width: 730px;
    padding-inline: 20px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-section-contact__privacy-inner {
        max-width: initial;
        width: calc(305 / var(--design-width) * 100vw);
        padding-inline: 0;
    }
}
.c-section-contact__privacy-head {
    margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
    .c-section-contact__privacy-head {
        margin-bottom: calc(7 / var(--design-width) * 100vw);
    }
}
.c-section-contact__privacy-ttl {
    display: block;
    font-family: var(--ff-noto);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 2.4;
    text-align: center;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-section-contact__privacy-ttl {
        font-size: calc(17 / var(--design-width) * 100vw);
    }
}
.c-section-contact__privacy-txt {
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-section-contact__privacy-txt {
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}
.c-section-contact__submit input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 244px;
    height: 48px;
    margin: 50px auto 0;
    border-radius: 24px;
    background: #afaaa7;
    font-family: var(--ff-noto);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}
@media screen and (max-width: 767px) {
    .c-section-contact__submit input {
        width: calc(320 / var(--design-width) * 100vw);
        height: calc(60 / var(--design-width) * 100vw);
        margin: calc(50 / var(--design-width) * 100vw) auto 0;
        border-radius: calc(30 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-section-contact__submit input:hover {
        background: #080B0D;
    }
}
.c-section-contact__complete-ttl {
    display: block;
    margin-block: 145px 33px;
    font-family: var(--ff-noto);
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #090b0d;
}
@media screen and (max-width: 767px) {
    .c-section-contact__complete-ttl {
        margin-block: calc(60 / var(--design-width) * 100vw) calc(18 / var(--design-width) * 100vw);
        font-size: calc(16 / var(--design-width) * 100vw);
        letter-spacing: 0.08em;
        line-height: 1.75;
    }
}
.c-section-contact__complete-txt {
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 17px;
    text-align: center;
    color: #333;
}
@media screen and (max-width: 767px) {
    .c-section-contact__complete-txt {
        font-size: calc(14 / var(--design-width) * 100vw);
        line-height: 2;
    }
}
.c-section-contact__complete-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 48px;
    margin: 90px auto 0;
    background-color: #AFAAA7;
    border-radius: 24px;
    border: 1px solid #afaaa7;
    font-family: var(--ff-noto);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
    .c-section-contact__complete-btn {
        width: calc(320 / var(--design-width) * 100vw);
        height: calc(60 / var(--design-width) * 100vw);
        margin-top: calc(50 / var(--design-width) * 100vw);
        border: calc(1 / var(--design-width) * 100vw) solid #afaaa7;
        border-radius: calc(30 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
        margin-bottom: calc(50 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-section-contact__complete-btn:hover {
        background-color: #080B0D;
    }
}

/* ---------------------------------------------
*   c-section-comfirm
--------------------------------------------- */
.c-section-comfirm {
    margin-top: 132px;
}
@media screen and (max-width: 767px) {
    .c-section-comfirm {
        margin-top: calc(73 / var(--design-width) * 100vw);
        padding-bottom: calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-comfirm__btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    margin-top: 130px;
}
@media screen and (max-width: 767px) {
    .c-section-comfirm__btn-area {
        flex-direction: column-reverse;
        gap: calc(20 / var(--design-width) * 100vw);
        margin-top: calc(50 / var(--design-width) * 100vw);
    }
}
.c-section-comfirm__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #afaaa7;
    font-family: var(--ff-noto);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.875;
    color: #3b4043;
    transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
    .c-section-comfirm__btn {
        width: calc(320 / var(--design-width) * 100vw);
        height: calc(60 / var(--design-width) * 100vw);
        margin: 0 auto;
        border: calc(1 / var(--design-width) * 100vw) solid #afaaa7;
        border-radius: calc(30 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.c-section-comfirm__btn--back {
    background-color: #FFFEFA;
}
.c-section-comfirm__btn--send {
    background-color: #AFAAA7;
    color: #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-comfirm__btn:hover {
        background-color: #080B0D;
        color: #fff;
    }
}

/*--------------------------------------------- */
/*  .c-slider
--------------------------------------------- */
.c-slider__wrapper {
    position: relative;
}
.c-slider .splide__slide.is-active img {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0s;
}
.c-slider .splide__pagination {
    display: none;
}
.c-slider__img {
    transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
    .c-slider__img {
        height: calc(422 / var(--design-width) * 100vw) !important;
    }
}
.c-slider__img img {
    transform: scale(1.2);
    opacity: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 3s ease-out;
}

/*--------------------------------------------- */
/*  .c-slider-02
--------------------------------------------- */
.c-slider-02 .splide__slide {
    width: 768px !important;
}
@media screen and (max-width: 767px) {
    .c-slider-02 .splide__slide {
        width: calc(390 / var(--design-width) * 100vw) !important;
    }
}
.c-slider-02 .splide__pagination {
    display: none;
}

/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   wp-pagenavi
--------------------------------------------- */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 127px;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi {
        gap: calc(14 / var(--design-width) * 100vw);
        margin-top: calc(38 / var(--design-width) * 100vw);
    }
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend {
    width: 42px;
    height: 42px;
    padding-top: 6px;
    font-family: var(--ff-marcellus);
    font-weight: 400;
    font-size: 18px;
    border-radius: 50%;
    line-height: 1.6666666667;
    text-align: center;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .page,
    .wp-pagenavi .current,
    .wp-pagenavi .extend {
        width: calc(33 / var(--design-width) * 100vw);
        height: calc(33 / var(--design-width) * 100vw);
        padding-top: calc(6 / var(--design-width) * 100vw);
        font-size: calc(14 / var(--design-width) * 100vw);
    }
}
.edge .wp-pagenavi .page,
.edge .wp-pagenavi .current,
.edge .wp-pagenavi .extend {
    padding-top: 5px;
}
@media screen and (max-width: 767px) {
    .edge .wp-pagenavi .page,
    .edge .wp-pagenavi .current,
    .edge .wp-pagenavi .extend {
        padding-bottom: calc(5 / var(--design-width) * 100vw);
    }
}

@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .wp-pagenavi .page,
    .wp-pagenavi .current,
    .wp-pagenavi .extend {
        transition: opacity var(--hover-duration);
    }
    .wp-pagenavi .page:hover,
    .wp-pagenavi .current:hover,
    .wp-pagenavi .extend:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.wp-pagenavi .current {
    background-color: #3B4043;
    color: #fff;
}
.wp-pagenavi .first {
    position: relative;
    width: 42px;
    height: 42px;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .first {
        display: none;
    }
}
.wp-pagenavi .first::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url("/wp-content/themes/theday/assets/img/news/icon_page.svg") 0 0 no-repeat;
    background-size: contain;
    width: 11px;
    height: 17px;
    transform: translate(-50%, -50%) rotate(180deg);
    transform-origin: center;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .first::before {
        content: none;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .wp-pagenavi .first {
        transition: opacity var(--hover-duration);
    }
    .wp-pagenavi .first:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.wp-pagenavi .previouspostslink {
    position: relative;
    width: 42px;
    height: 42px;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .previouspostslink {
        display: none;
    }
}
.wp-pagenavi .previouspostslink::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url("/wp-content/themes/theday/assets/img/news/icon_page02.svg") 0 0 no-repeat;
    background-size: contain;
    width: 11px;
    height: 17px;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .previouspostslink::before {
        content: none;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .wp-pagenavi .previouspostslink {
        transition: opacity var(--hover-duration);
    }
    .wp-pagenavi .previouspostslink:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.wp-pagenavi .last {
    position: relative;
    width: 42px;
    height: 42px;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .last {
        display: none;
    }
}
.wp-pagenavi .last::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url("/wp-content/themes/theday/assets/img/news/icon_page.svg") 0 0 no-repeat;
    background-size: contain;
    width: 11px;
    height: 17px;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .last::before {
        content: none;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .wp-pagenavi .last {
        transition: opacity var(--hover-duration);
    }
    .wp-pagenavi .last:hover {
        opacity: var(--hover-opacity-ratio);
    }
}
.wp-pagenavi .nextpostslink {
    position: relative;
    width: 42px;
    height: 42px;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .nextpostslink {
        display: none;
    }
}
.wp-pagenavi .nextpostslink::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: url("/wp-content/themes/theday/assets/img/news/icon_page02.svg") 0 0 no-repeat;
    background-size: contain;
    width: 11px;
    height: 17px;
    transform: translate(-50%, -50%) rotate(180deg);
    transform-origin: center;
}
@media screen and (max-width: 767px) {
    .wp-pagenavi .nextpostslink::before {
        content: none;
    }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
    .wp-pagenavi .nextpostslink {
        transition: opacity var(--hover-duration);
    }
    .wp-pagenavi .nextpostslink:hover {
        opacity: var(--hover-opacity-ratio);
    }
}

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

/* c-wysiwyg default
--------------------------------------------- */
.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: 40px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3 {
        margin-top: calc(20 / var(--design-width) * 100vw);
    }
}
.c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
        margin-top: calc(20 / var(--design-width) * 100vw);
    }
}
.c-wysiwyg h1, .c-wysiwyg h2, .c-wysiwyg h3, .c-wysiwyg h4, .c-wysiwyg h5, .c-wysiwyg h6 {
    font-weight: 700;
}
.c-wysiwyg h2 {
    font-size: 32px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h2 {
        font-size: calc(34 / var(--design-width) * 100vw);
    }
}
.c-wysiwyg h3 {
    font-size: 24px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h3 {
        font-size: calc(26 / var(--design-width) * 100vw);
    }
}
.c-wysiwyg h4 {
    font-size: 16px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg h4 {
        font-size: calc(18 / var(--design-width) * 100vw);
    }
}
.c-wysiwyg i,
.c-wysiwyg strong {
    font-weight: bold;
}
.c-wysiwyg p {
    margin-block: 20px;
    font-family: var(--ff-noto);
    font-weight: 400;
    font-size: 12px;
    line-height: 2.5;
    color: #3b4043;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg p {
        margin-block: calc(15 / var(--design-width) * 100vw);
        font-size: calc(15 / var(--design-width) * 100vw);
        line-height: 2;
    }
}
.c-wysiwyg em {
    font-style: italic;
}
.c-wysiwyg a {
    text-decoration: underline;
    transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
    .c-wysiwyg a:hover {
        text-decoration: none;
        opacity: 0.8;
    }
}
.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 {
    width: 100%;
}
.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 .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-wysiwyg figcaption {
    text-align: right;
    font-size: 12px;
}
@media screen and (max-width: 767px) {
    .c-wysiwyg figcaption {
        font-size: calc(12 / var(--design-width) * 100vw);
    }
}

/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !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-scroll-overlap02 {
    z-index: 20;
}

.js-scroll-overlap03 {
    z-index: 30;
}

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

.js-txts-fadeup {
    opacity: 0;
}
.js-txts-fadeup.is-active {
    opacity: 1;
}
.js-txts-fadeup span {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) scale3d(0.1, 0.1, 1);
    transition: transform 0.3s ease, opacity 0.8s ease;
}
.js-txts-fadeup.is-active span {
    transform: translateY(0) scale3d(1, 1, 1);
    opacity: 1;
}

/* ---------------------------------------------
*   処理に関係するスタイル
--------------------------------------------- */
/*  .js-pagetop-threshold
--------------------------------------------- */
.js-pagetop-threshold {
    position: absolute;
    top: 0;
    height: 300px;
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    bottom: 130px;
    right: 90px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    rotate: -90deg;
    transform-origin: center;
    mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
    .footer-pagetop {
        bottom: calc(50 / var(--design-width) * 100vw);
        right: calc(40 / var(--design-width) * 100vw);
    }
}
.footer-pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------
*   その他のスタイル
--------------------------------------------- */
/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop__link {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
    .footer-pagetop__link {
        width: calc(42 / var(--design-width) * 100vw);
        height: calc(42 / var(--design-width) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine) {
    .footer-pagetop__link:hover::before {
        transform: scale(1);
    }
    .footer-pagetop__link:hover::after {
        background-color: #3B4043;
    }
}
.footer-pagetop__link::before {
    content: "";
    position: absolute;
    inset: -1px;
    transform: scale(0);
    border-radius: 50%;
    background-color: #fff;
    transition: transform 0.3s;
}
.footer-pagetop__link::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url("/wp-content/themes/theday/assets/img/icon_btn_arrow.svg");
            mask-image: url("/wp-content/themes/theday/assets/img/icon_btn_arrow.svg");
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    transition: background-color 0.3s;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .footer-pagetop__link::after {
        width: calc(11 / var(--design-width) * 100vw);
        height: calc(11 / var(--design-width) * 100vw);
    }
}

@media print and (min-width: 768px), screen and (min-width: 768px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 767px), screen and (max-width: 767px) {
    .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: 767px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--10 {
        margin-top: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--15 {
        margin-top: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--20 {
        margin-top: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--25 {
        margin-top: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--30 {
        margin-top: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--35 {
        margin-top: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--40 {
        margin-top: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--45 {
        margin-top: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--50 {
        margin-top: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--55 {
        margin-top: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--60 {
        margin-top: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--65 {
        margin-top: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--70 {
        margin-top: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--75 {
        margin-top: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--80 {
        margin-top: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--85 {
        margin-top: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--90 {
        margin-top: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--95 {
        margin-top: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--100 {
        margin-top: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--105 {
        margin-top: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--110 {
        margin-top: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--115 {
        margin-top: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--120 {
        margin-top: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--125 {
        margin-top: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--130 {
        margin-top: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--135 {
        margin-top: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--140 {
        margin-top: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--145 {
        margin-top: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--150 {
        margin-top: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--155 {
        margin-top: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--160 {
        margin-top: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--165 {
        margin-top: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--170 {
        margin-top: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--175 {
        margin-top: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--180 {
        margin-top: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--185 {
        margin-top: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--190 {
        margin-top: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--195 {
        margin-top: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--200 {
        margin-top: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--205 {
        margin-top: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--210 {
        margin-top: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--215 {
        margin-top: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--220 {
        margin-top: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--225 {
        margin-top: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--230 {
        margin-top: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--235 {
        margin-top: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--240 {
        margin-top: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--245 {
        margin-top: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--250 {
        margin-top: calc(250 / var(--design-width) * 100vw) !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: 767px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--10 {
        margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--15 {
        margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--20 {
        margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--25 {
        margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--30 {
        margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--35 {
        margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--40 {
        margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--45 {
        margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--50 {
        margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--55 {
        margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--60 {
        margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--65 {
        margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--70 {
        margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--75 {
        margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--80 {
        margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--85 {
        margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--90 {
        margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--95 {
        margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--100 {
        margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--105 {
        margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--110 {
        margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--115 {
        margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--120 {
        margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--125 {
        margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--130 {
        margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--135 {
        margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--140 {
        margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--145 {
        margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--150 {
        margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--155 {
        margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--160 {
        margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--165 {
        margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--170 {
        margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--175 {
        margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--180 {
        margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--185 {
        margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--190 {
        margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--195 {
        margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--200 {
        margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--205 {
        margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--210 {
        margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--215 {
        margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--220 {
        margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--225 {
        margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--230 {
        margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--235 {
        margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--240 {
        margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--245 {
        margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--250 {
        margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
    }
}

.noData {
	text-align: center;	
}

@media screen and (max-width: 767px) {
	.noData {
		font-size: 14px;
	}	
}

.post-password-form {
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	display: flex;
	align-items: center;
	text-align: center;
	z-index: 2000;
	background: #fff;
	width: 100%;
	height: 100vh;
	flex-wrap: wrap;
}

.post-password-form p {
	width: 100%;
}

.post-password-form input {
	border: 1px solid #ccc;
}