html {
    width: 100%;
    height: 100%;
    color: #0F0F0F;
    font-size: 62.5%;
    font-family: "Noto Serif JP", serif;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
}

body:not(.opening-finished) {
    overflow: hidden;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.font-sans {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", " Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.container {
    box-sizing: border-box;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
}

.main {
    padding-bottom: 95px;
    overflow: hidden;
}

.sec-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin: 0 0 30px;
}

.sec-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-image: url(../img/common/accent_primary.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.sec-title--white::before {
    background-image: url(../img/common/accent_white.svg);
}

.sec-description {
    text-align: center;
    line-height: 2;
    margin: 0;
}

.sec-discount {
    color: #fff;
    font-size: 2.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0F0F0F;
    padding: 15px;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.25s;
}

.sec-discount:hover {
    opacity: 0.8;
}

.sec-discount::before,
.sec-discount::after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background-image: url(../img/common/accent_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.25s;
}

.btn--black {
    color: #0F0F0F;
    border: 1px solid #0F0F0F;
}

.btn--primary {
    color: #fff;
    background-color: #870015;
}

.btn--white {
    color: #fff;
    border: 1px solid #fff;
}

.btn::after {
    content: '';
    display: block;
    width: 9px;
    height: 15px;
    margin-left: 15px;
}

.btn::after,
.btn--black::after {
    background-image: url(../img/common/icon_chevron_black.svg);
}

.btn--primary::after {
    background-image: url(../img/common/icon_chevron_white.svg);
}

.btn--white::after {
    background-image: url(../img/common/icon_chevron_white.svg);
}

.btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .main {
        padding-bottom: 105px;
    }

    .container {
        padding: 0 20px;
    }

    .sec-title {
        font-size: 2rem;
        margin: 0 0 35px;
    }

    .sec-title::before {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
    }

    .sec-description {
        line-height: 1.7;
        text-align: left;
    }

    .sec-discount {
        font-size: 1.8rem;
        line-height: 1.5;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .sec-discount::before {
        width: 35px;
        height: 35px;
    }

    .sec-discount::after {
        display: none;
    }

    .btn {
        height: 50px;
    }
}


/* ---------------------------------------------
*   Header
--------------------------------------------- */
.header {
    display: flex;
    align-items: center;
    padding: 25px 110px 25px 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
}

.header__logo {
    margin: 0;
    line-height: 1;
    transition: opacity 0.25s;
    opacity: 0;
}

.header__logo.visible {
    opacity: 1;
    transition: opacity 1s ease;
}

.header__logo.skip-opening {
    opacity: 1;
    transition: none;
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo img {
    height: 55px;
}

.header-nav {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    align-items: center;
    flex: 1 1 auto;
    opacity: 0;
}

.header-nav.visible {
    opacity: 1;
    transition: opacity 1s ease;
}

.header-nav.skip-opening {
    opacity: 1;
    transition: none;
}

.header-menu {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    gap: 25px;
    list-style: none;
    line-height: 1;
}

.header-menu + .header-menu {
    margin-top: 15px;
}

.header-menu__link {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.25s;
}

.header-menu__link:hover {
    opacity: 0.8;
}

.header__contact {
    color: inherit;
    font-size: 1.4rem;
    line-height: 1.2;
    background-color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 25px / 50%;
    transition: opacity 0.25s;
}

.header__contact:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1290px) {
    .header-nav {
        gap: 15px;
    }

    .header-menu {
        gap: 15px;
    }

    .header-menu__link {
        font-size: 1.3rem;
    }

    .header__contact {
        font-size: 1.2rem;
        padding: 15px 18px;
    }
}

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


/* ---------------------------------------------
*   Global Nav
--------------------------------------------- */
.gnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%;
    opacity: 0;
    z-index: 900;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: hidden;
    transition: bottom 0s 0.4s, opacity 0.3s 0s;
}

.gnav.is-active {
    bottom: 0;
    opacity: 1;
    overflow-y: scroll;
    transition: bottom 0s 0s, opacity 0.3s 0.1s;
}

.gnav__logo {
    margin: 0;
    line-height: 1;
    transition: opacity 0.25s;
    position: absolute;
    top: 25px;
    left: 30px;
}

.gnav__logo:hover {
    opacity: 0.8;
}

.gnav__logo img {
    height: 55px;
}

.gnav__inner {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 30px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.gnav__tel {
    display: inline-flex;
}

.gnav__tel img {
    height: 67px;
}

.gnav__btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 0;
}

.gnav__btn {
    flex: 0 0 180px;
    height: 46px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: #870015;
    border-radius: 25px / 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.25s;
}

.gnav__btn--line {
    background-color: #0AB53C;
}

.gnav__btn--line::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/common/icon_line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 8px;
}

.gnav__btn:hover {
    opacity: 0.8;
}

.gnav-menu-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    gap: 20px;
}

.gnav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gnav-menu__item + .gnav-menu__item {
    margin-top: 15px;
}

.gnav-menu__item a {
    text-decoration: none;
    color: #0B0B0B
}

.gnav-menu__text {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s;
}

.gnav-menu__text:hover {
    opacity: 0.8;
}

.gnav-nested-menu {
    list-style: none;
    padding: 0;
    margin: 13px 0 0;
}

.gnav-nested-menu__item {
    font-size: 1.4rem;
}

.gnav-nested-menu__item + .gnav-nested-menu__item {
    margin-top: 10px;
}

.gnav-nested-menu__item::before {
    content: '-  ';
}

.gnav-nested-menu__text {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s;
}

.gnav-nested-menu__text:hover {
    opacity: 0.8;
}

.gnav-toggle {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    background: none;
    appearance: none;
    border-radius: 200px;
    width: 80px;
    height: 50px;
    background-color: #0F0F0F;
    position: fixed;
    top: 27px;
    right: 15px;
    z-index: 999;
    opacity: 0;
}

.gnav-toggle.visible {
    opacity: 1;
    transition: opacity 1s ease;
}

.gnav-toggle.skip-opening {
    opacity: 1;
    transition: none;
}

.gnav-toggle__inner {
    top: 50%;
    left: 25px;
    margin-top: -1px;
    transition: background-color 0s 0.15s;
}

.gnav-toggle__inner,
.gnav-toggle__inner::before,
.gnav-toggle__inner::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
}

.gnav-toggle__inner::before {
    top: -9px;
    transition: top 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle__inner::after {
    bottom: -9px;
    transition: bottom 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle.is-active .gnav-toggle__inner {
    background-color: transparent;
    transition: background-color 0s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.15s 0s, transform 0.15s 0.15s;
}

@media screen and (max-width: 991px) {
    .gnav {
        padding: 0;
        display: block;
    }

    .gnav__logo {
        top: 10px;
        left: 10px;
    }

    .gnav__logo img {
        height: 40px;
    }

    .gnav__inner {
        margin: 60px 0;
        height: auto;
        padding: 0;
    }

    .gnav__tel img {
        height: 40px;
    }

    .gnav__btn-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 30px 0 0;
    }

    .gnav__btn {
        flex: 0 0 auto;
        width: 200px;
    }

    .gnav-menu-container {
        display: block;
        margin: 0 auto 50px;
    }

    .gnav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .gnav-menu__item {
        border-top: 1px solid #D6D6D6;
        border-bottom: 1px solid #D6D6D6;
    }

    .gnav-menu__item + .gnav-menu__item {
        margin-top: 0;
        border-top: none;
    }

    .gnav-menu + .gnav-menu .gnav-menu__item:first-child {
        border-top: none;
    }

    .gnav-menu__text {
        font-size: 1.5rem;
        display: block;
        padding: 12px 20px;
    }

    span.gnav-menu__text {
        position: relative;
    }

    span.gnav-menu__text::before,
    span.gnav-menu__text::after {
        content: '';
        display: block;
        width: 15px;
        height: 1px;
        background-color: #0F0F0F;
        position: absolute;
        top: 50%;
        right: 20px;
        opacity: 0.8;
    }

    span.gnav-menu__text::after {
        transform: rotate(90deg);
    }

    .gnav-menu__item.is-active span.gnav-menu__text::after {
        display: none;
    }

    .gnav-nested-menu-container {
        background-color: rgba(240, 233, 226, 0.72);
        overflow: hidden;
        height: 0;
        transition: height 0.3s;
    }

    .gnav-nested-menu {
        margin: 0;
    }

    .gnav-nested-menu__item {
        font-size: 1.5rem;
        border-top: 1px solid #D6D6D6;
    }

    .gnav-nested-menu__item + .gnav-nested-menu__item {
        margin-top: 0;
    }

    .gnav-nested-menu__item::before {
        display: none;
    }

    .gnav-nested-menu__text {
        display: block;
        padding: 12px 20px;
    }

    .gnav-nested-menu__text:hover {
        opacity: 0.8;
    }

    .gnav-toggle {
        width: 65px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    .gnav-toggle__inner {
        left: 20px;
    }

    .gnav-toggle__inner,
    .gnav-toggle__inner::before,
    .gnav-toggle__inner::after {
        width: 24px;
    }

    .gnav-toggle__inner::before {
        top: -7px;
    }

    .gnav-toggle__inner::after {
        bottom: -7px;
    }
}


/* ---------------------------------------------
*   Footer
--------------------------------------------- */
.footer {
    color: #fff;
    background-image: url(../img/common/footer_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer__inner {
    max-width: 1000px;
    padding: 80px 0 110px;
    margin: 0 auto;
}

.footer__top {
    text-align: center;
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px dotted #fff;
}

.footer__logo {
    display: inline-block;
    margin: 0 0 25px;
    transition: opacity 0.25s;
}

.footer__logo:hover {
    opacity: 0.8;
}

.footer__logo img {
    height: 150px;
}

.footer__name {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;

}

.footer__address {
    font-size: 1.5rem;
    line-height: 1;
    margin: 12px 0 8px;
}

.footer__tel {
    font-size: 1.5rem;
    line-height: 1;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none
}

.footer-menu__item + .footer-menu__item {
    margin-top: 15px;
}

.footer-menu__text {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-menu__text:hover {
    opacity: 0.8;
}

.footer-nested-menu {
    list-style: none;
    padding: 0;
    margin: 13px 0 0;
}

.footer-nested-menu__item {
    font-size: 1.4rem;
}

.footer-nested-menu__item + .footer-nested-menu__item {
    margin-top: 10px;
}

.footer-nested-menu__item::before {
    content: '-  ';
}

.footer-nested-menu__text {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-nested-menu__text:hover {
    opacity: 0.8;
}

.footer__copyright {
    font-size: 1.4rem;
    background-color: #000000;
    text-align: center;
    padding: 5px 0 6px;
}

.contact-panel {
    height: 95px;
    background-color: #790316;
    position: fixed;
    bottom: -95px;
    left: 0;
    right: 0;
    z-index: 800;
    transition: bottom 0.4s;
}

.contact-panel.is-active {
    bottom: 0;
}

.contact-panel .container {
    height: 100%;
}

.contact-panel__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
    gap: min(40px, 2.7vw);
}

.contact-panel__col--button {
    display: flex;
    align-items: center;
    gap: min(15px, 1vw);
    flex: 0 1 auto;
}

.contact-panel__tel img {
    height: 50px;
}

.contact-panel__express {
    color: #fff;
    display: inline-block;
    font-size: min(1.15vw, 1.6rem);
    padding: 14px 0;
    padding-left: min(24px, 1.5vw);
    padding-right: min(24px, 1.5vw);
    border: 1px solid #fff;
    white-space: nowrap;
}

.contact-panel__divider {
    width: 0;
    height: 57%;
    border-left: 1px dotted #fff;
}

.contact-panel__time {
    color: #fff;
    margin: 0;
}

.contact-panel__time-row {
    display: flex;
    align-items: center;
}

.contact-panel__time-row + .contact-panel__time-row {
    margin-top: 9px;
}

.contact-panel__time dt {
    color: #fff;
    font-size: min(0.92vw, 1.2rem);
    width: 76px;
    background-color: #B68933;
    text-align: center;
    padding: 2px 0;
}

.contact-panel__time dd {
    font-size: 1.5rem;
    font-size: min(1.1vw, 1.5rem);
    margin: 0 0 0 6px;
    white-space: nowrap;
}

.contact-panel__document {
    color: #4D372C;
    font-size: min(1.2vw, 1.6rem);
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    padding-left: min(20px, 1.5vw);
    padding-right: min(20px, 1.5vw);
    background-color: #fff;
    border-radius: 20px / 50%;
    text-decoration: none;
    transition: opacity 0.25s;
    white-space: nowrap;
}

.contact-panel__document:hover {
    opacity: 0.8;
}

.contact-panel__document::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 22px;
    background-image: url(../img/common/icon_document.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 5px;
}

.contact-panel__line {
    color: #fff;
    font-size: min(1.2vw, 1.6rem);
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    padding-left: min(20px, 1.5vw);
    padding-right: min(20px, 1.5vw);
    background-color: #0AB53C;
    border-radius: 20px / 50%;
    text-decoration: none;
    transition: opacity 0.25s;
    white-space: nowrap;
}

.contact-panel__line:hover {
    opacity: 0.8;
}

.contact-panel__line::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../img/common/icon_line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 5px;
}

@media screen and (max-width: 1024px) {
    .contact-panel__inner {
        gap: 1.5vw;
    }

    .contact-panel .container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        color: #fff;
        background-image: url(../img/common/footer_bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .footer__inner {
        padding: 50px 0;
    }

    .footer__top {
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .footer__logo img {
        height: 120px;
    }

    .footer-nav {
        display: none;
    }

    .contact-panel {
        height: 105px;
        background-color: none;
        bottom: -105px;
        left: 0;
        background-color: none;
    }

    .contact-panel.is-active {
        bottom: 0;
    }

    .contact-panel__inner {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        padding: 0;
        gap: 0;
    }

    .contact-panel__inner--top {
        height: 55px;
        background-color: #FFFFFF;
    }

    .contact-panel__inner--bottom {
        height: 50px;
    }

    .contact-panel__nav-link {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #362928;
        font-size: 10.5px;
        line-height: 1;
        text-decoration: none;
    }

    .contact-panel__nav-icon {
        text-align: center;
        margin: 0 0 5px;
    }

    .contact-panel__nav-icon img {
        height: 21.5px;
    }

    .contact-panel__tel--sp {
        flex: 0 0 50%;
        color: #313131;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #EBEBEB;
        border-right: 1px solid #fff;
        box-sizing: border-box;
        text-decoration: none;
    }

    .contact-panel__tel--sp::before {
        content: '';
        display: block;
        width: 33px;
        height: 18px;
        background-image: url(../img/common/icon_free_dial.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        margin-right: 2px;
    }

    .contact-panel__line--sp {
        flex: 0 0 50%;
        color: #fff;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0AB53C;
        text-decoration: none;
        transition: opacity 0.25s;
    }

    .contact-panel__line:hover {
        opacity: 0.8;
    }

    .contact-panel__line--sp::before {
        content: '';
        display: inline-block;
        width: 28px;
        height: 28px;
        background-image: url(../img/common/icon_line.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        margin-right: 7px;
    }
}


/* ---------------------------------------------
*   Opening
--------------------------------------------- */
.opening {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 600;
}

.opening.hidden {
    opacity: 0;
    transition: opacity 1.5s ease;
}

body.opening-finished .opening {
    display: none;
}

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


/* ---------------------------------------------
*   MV
--------------------------------------------- */
.mv-sec {
    position: relative;
}

.mv-slider__slide {
    height: 100vh;
    height: 100svh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.mv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 700;
}

.mv__overlay .container {
    position: relative;
    height: 100%;
}

.mv__logo {
    height: 186px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 0;
    transition:
        opacity 1.5s ease,
        transform 2.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        left 2.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mv__logo.move {
    left: 6%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
}

.mv__logo.skip-opening {
    opacity: 1;
    left: 6%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
    transition: none;
}

.mv__text {
    height: 364px;
    position: absolute;
    top: 50%;
    right: 8%;
    margin-top: -182px;
    opacity: 0;
}

.mv__text.visible {
    opacity: 1;
    transition: opacity 1.5s ease;
}

.mv__text.skip-opening {
    opacity: 1;
    transition: none;
}

@media screen and (max-width: 767px) {
    .mv__overlay .mv__overlay-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 0;
        height: 100%;
    }

    .mv__logo {
        height: 120px;
        position: static;
        margin-top: 0;
    }

    .mv__logo {
        transform: translate(0, 200px);
        transition:
            opacity 1.5s ease,
            transform 2.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .mv__logo.move {
        transform: translateY(0%);
    }

    .mv__logo.skip-opening {
        transform: translateY(0%);
        transition: none;
    }

    .mv__text {
        height: 310px;
        position: static;
        margin-top: 40px;
    }
}


/* ---------------------------------------------
*   Concept
--------------------------------------------- */
.concept-sec {
    padding: 100px 0 80px;
    background-image: url(../img/common/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}

.concept-sec__message {
    font-size: 4.1rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 40px;
}

.concept-sec__description {
    font-size: 1.8rem;
    line-height: 1.89;
    margin: 0 auto;
}

.concept-sec__btn-container {
    text-align: center;
    margin-top: 40px;
}

.concept-sec__btn {
    color: inherit;
    font-size: 1.9rem;
    width: 200px;
    border: 1px solid #0F0F0F;
    background-color: #fff;
    position: relative;
    z-index: 0;
}

.concept-sec__btn-text::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-right: 1px solid #0F0F0F;
    border-bottom: 1px solid #0F0F0F;
    position: absolute;
    right: -7px;
    bottom: -7px;
}

.banner_top_space {
    margin-top: 45px;
}

.banner_top_space img {
    width: 100%;
    height: auto;
    max-width: 400px
}

@media screen and (max-width: 767px) {
    .concept-sec {
        padding: 50px 0;
        background-size: cover;
    }

    .concept-sec__message {
        font-size: 2.2rem;
        line-height: 1.5;
        margin: 0 0 30px;
    }

    .concept-sec__description {
        font-size: 1.5rem;
        line-height: 1.7;
        margin: 0 auto;
    }

    .concept-sec__btn-container {
        text-align: center;
        margin-top: 30px;
    }

    .concept-sec__btn {
        color: inherit;
        font-size: 1.7rem;
        width: 170px;
        border: 1px solid #0F0F0F;
        background-color: #fff;
        position: relative;
        z-index: 0;
    }

    .concept-sec__btn-text::after {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        border-right: 1px solid #0F0F0F;
        border-bottom: 1px solid #0F0F0F;
        position: absolute;
        right: -7px;
        bottom: -7px;
    }

    .banner_top_space {
        margin-top: 35px;
    }
}


/* ---------------------------------------------
*   Info
--------------------------------------------- */
.info-sec {
    padding: 100px 0;
}

.info-card-list {
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    border-bottom: 1px solid #D6D6D6;
}

.info-card + .info-card {
    margin-top: 25px;
}

.info-card__link {
    color: inherit;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 0 25px;
    gap: 30px;
    transition: opacity 0.25s;
}

.info-card__link:hover {
    opacity: 0.8;
}

.info-card__img {
    flex: 0 0 120px;
    aspect-ratio: 3 / 2;
}

.info-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card__date {
    flex: 0 0 auto;
    color: #646464;
    font-size: 1.5rem;
    line-height: 1;
}

.info-card__title {
    flex: 1 1 auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4375;
    margin: 0;
}

.info-sec__btn-container {
    text-align: center;
    margin-top: 45px;
}

.info-sec__btn {
    width: 230px;
}

@media screen and (max-width: 767px) {
    .info-sec {
        padding: 50px 0;
    }

    .info-card + .info-card {
        margin-top: 20px;
    }

    .info-card__link {
        display: grid;
        grid-template-areas:
            "img date"
            "img title";
        grid-template-columns: 140px 1fr;
        grid-template-rows: auto 1fr;
        align-items: flex-start;
        padding: 0 0 20px;
        gap: 0;
    }

    .info-card__img {
        grid-area: img;
        margin-right: 20px;
        aspect-ratio: 3 / 2;
    }

    .info-card__date {
        grid-area: date;
        margin: 5px 0 10px;
    }

    .info-card__title {
        grid-area: title;
        font-size: 1.5rem;
    }

    .info-sec__btn-container {
        margin-top: 35px;
    }
}


/* ---------------------------------------------
*   Reason
--------------------------------------------- */
.reason-sec {
    color: #fff;
    padding: 100px 0;
    background-image: url(../img/top/reason_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.reason-sec__btn-container {
    margin-top: 30px;
    text-align: center;
}

.reason-sec__btn {
    width: 200px;
}

@media screen and (max-width: 767px) {
    .reason-sec {
        padding: 50px 0;
    }

    .reason-sec__description {
        text-align: left;
    }

    .reason-sec__btn-container {
        margin-top: 35px;
    }
}


/* ---------------------------------------------
*   Hall
--------------------------------------------- */
.hall-sec {
    padding: 110px 40px;
}

.hall-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin: 60px 0 55px;
    padding: 0;
    list-style: none;
}

.hall-card-list__item {
    flex: 0 0 calc((100% - 3px * 3) / 4);
}

.hall-card {
    color: inherit;
    display: block;
    text-decoration: none;
    transition: opacity 0.25s;
}

.hall-card:hover {
    opacity: 0.8;
}

.hall-card__img {
    aspect-ratio: 17 / 15;
}

.hall-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-card__bottom {
    color: #fff;
    background-color: #270107;
    padding: 25px 10px;
    text-align: center;
}

.hall-card__title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.hall-card__address {
    font-size: 1.4rem;
    line-height: 1;
    margin: 12px 0 0;
}

.hall-sec__btn-container {
    text-align: center;
}

.hall-sec__btn {
    width: 240px;
}

@media screen and (max-width: 1024px) {
    .hall-card-list {
        gap: 3px;
        margin: 60px 0 55px;
        padding: 0;
        list-style: none;
    }

    .hall-card-list__item {
        flex: 0 0 calc((100% - 3px) / 2);
    }
}

@media screen and (max-width: 767px) {
    .hall-sec {
        padding: 50px 20px;
    }

    .hall-card-list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 10px;
        margin: 35px 0;
    }

    .hall-card-list__item {
        flex: 0 0 auto;
    }

    .hall-card__img {
        aspect-ratio: 67 / 48;
    }

    .hall-card__bottom {
        padding: 20px;
    }

    .hall-card__title {
        font-size: 2.1rem;
    }

    .hall-card__address {
        font-size: 1.3rem;
        margin: 10px 0 0;
    }

    .hall-sec__btn {
        width: 185px;
    }
}


/* ---------------------------------------------
*   Plan
--------------------------------------------- */
.plan-sec {
    padding: 110px 0;
    background-color: rgba(240, 233, 226, 0.72);
}

.plan-card-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 50px 0 35px;
    padding: 0;
    gap: 2.45vw;
}

.plan-card-list__item--vertical {
    flex: 0 0 calc((100% - 2.45vw * 2) / 3);
}

.plan-card-list__item--horizontal {
    flex: 0 0 calc((100% - 2.45vw) / 2);
}

.plan-card {
    color: inherit;
    height: 100%;
    background-color: #fff;
    border: 1px solid #707070;
    text-decoration: none;
    transition: opacity 0.25s;
}

.plan-card:hover {
    opacity: 0.8;
}

.plan-card--vertical {
    display: grid;
    grid-template-areas:
        "copy"
        "title"
        "img"
        "name"
        "price"
        "hall"
        "btn";
    grid-template-rows: 1fr auto auto auto auto auto auto;
    padding: 50px 30px 45px;
}

.plan-card--horizontal {
    display: grid;
    grid-template-areas:
        "left copy"
        "left title"
        "left name"
        "left price"
        "left hall";
    grid-template-columns: 225px 1fr;
    grid-template-rows: auto auto auto auto 1fr;
    padding: 30px;
}

.plan-card--ohitori {
    display: grid;
    grid-template-areas:
        "left copy"
        "left title"
        "left description";
    grid-template-columns: 225px 1fr;
    grid-template-rows: auto auto auto auto 1fr;
    padding: 30px;
}

.plan-card__copy {
    grid-area: copy;
    font-size: 1.8rem;
}

.plan-card--vertical .plan-card__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plan-card--ohitori .plan-card__copy {
    font-size: 1.6rem;
}

.plan-card__title {
    grid-area: title;
    font-weight: 500;
    line-height: 1;
}

.plan-card--vertical .plan-card__title {
    font-size: 3.6rem;
    text-align: center;
    margin: 20px 0 35px;
}

.plan-card--horizontal .plan-card__title {
    font-size: 3.3rem;
    margin: 10px 0 25px;
}

.plan-card--ohitori .plan-card__title {
    font-size: 3.3rem;
    margin: 10px 0 20px;
}

.plan-card__left {
    grid-area: left;
    margin-right: 25px;
}

.plan-card__img {
    grid-area: img;
}

.plan-card--vertical .plan-card__img {
    height: 200px;
    margin-bottom: 30px;
}

.plan-card--horizontal .plan-card__img,
.plan-card--ohitori .plan-card__img {
    height: 170px;
    margin-bottom: 15px;
}

.plan-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plan-card__set-name {
    grid-area: name;
    line-height: 1;
}

.plan-card--vertical .plan-card__set-name {
    font-size: 1.8rem;
    margin: 0 0 10px;
}

.plan-card--horizontal .plan-card__set-name {
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.plan-card__price {
    grid-area: price;
    display: flex;
    align-items: center;
    line-height: 1;
}

.plan-card--vertical .plan-card__price {
    margin-bottom: 20px;
}

.plan-card--horizontal .plan-card__price {
    margin-bottom: 15px;
}

.plan-card__price-label {
    color: #fff;
    background-color: #901D1D;
}

.plan-card--vertical .plan-card__price-label {
    font-size: 1.4rem;
    padding: min(7px, 0.64vw);
    margin-right: min(10px, 0.96vw);
}

.plan-card--horizontal .plan-card__price-label {
    font-size: min(1.3rem, 1vw);
    padding: min(6px, 0.35vw);
    margin-right: min(10px, 0.7vw);
}

.plan-card__price-value {
    display: flex;
    align-items: center;
}

.plan-card__price-number {
    font-weight: 700;
}

.plan-card--vertical .plan-card__price-number {
    font-size: min(3.0rem, 2.3vw);
}

.plan-card--horizontal .plan-card__price-number {
    font-size: min(2.9rem, 2.1vw);
}

.plan-card__price-unit {
    font-weight: 700;
    align-self: flex-end;
}

.plan-card--vertical .plan-card__price-unit {
    font-size: min(2rem, 1.55vw);
    margin-left: min(6px, 0.48vw);
}

.plan-card--horizontal .plan-card__price-unit {
    font-size: min(1.8rem, 1.35vw);
    margin-left: min(2px, 0.2vw);
}

.plan-card__price-tax {
    font-size: min(1.3rem, 1vw);
    align-self: flex-end;
}

.plan-card__price-start {
    font-size: min(2rem, 1.35vw);
    font-weight: 600;
    margin-top: .5em
}

.plan-card__hall {
    grid-area: hall;
    font-size: 1.4rem;
    line-height: 1.5;
    border-top: 1px dotted #707070;
    margin: 0;
}

.plan-card--vertical .plan-card__hall {
    padding: 15px 0 20px;
}

.plan-card--horizontal .plan-card__hall {
    padding: 15px 0 0px;
}

.plan-card__description {
    grid-area: description;
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

.plan-card__btn {
    grid-area: btn;
    display: block;
    color: inherit;
    line-height: 1;
    padding: 10px;
    border: 1px solid #707070;
    text-decoration: none;
    text-align: center;
}

.plan-sec__btn-container {
    text-align: center;
    margin: 55px 0 65px;
}

.plan-sec__btn {
    width: 240px;
}

.plan-card__btn--sp {
    display: none;
}

.plan-sec__banner-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}

.plan-sec__banner {
    flex: 1 1 auto;
    display: block;
    transition: opacity 0.25s;
}

.plan-sec__banner:hover {
    opacity: 0.8;
}

.plan-sec__banner img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1160px) {
    .plan-card-list {
        margin: 35px 0 20px;
        gap: 15px;
    }

    .plan-card-list__item--vertical,
    .plan-card-list__item--horizontal {
        flex: 0 0 calc((100% - 15px) / 2);
    }

    .plan-card--vertical,
    .plan-card--horizontal,
    .plan-card--ohitori {
        padding: 25px 20px 20px;
    }

    .plan-card--horizontal {
        grid-template-areas:
            "copy"
            "title"
            "left"
            "name"
            "price"
            "hall"
            "btn";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto auto auto auto auto;
    }

    .plan-card--ohitori {
        grid-template-areas:
            "copy"
            "title"
            "left"
            "description"
            "btn";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto auto auto;
    }

    .plan-card--vertical .plan-card__copy,
    .plan-card--horizontal .plan-card__copy,
    .plan-card--ohitori .plan-card__copy {
        font-size: 1.5rem;
        text-align: center;
    }

    .plan-card--vertical .plan-card__title,
    .plan-card--horizontal .plan-card__title,
    .plan-card--ohitori .plan-card__title {
        font-size: 3rem;
        margin: 15px 0 20px;
        text-align: center;
    }

    .plan-card__left {
        margin-right: 0;
    }

    .plan-card--vertical .plan-card__img,
    .plan-card--horizontal .plan-card__img,
    .plan-card--ohitori .plan-card__img {
        height: 200px;
        margin-bottom: 20px;
    }

    .plan-card__set-name {
        grid-area: name;
        line-height: 1;
    }

    .plan-card--vertical .plan-card__set-name,
    .plan-card--horizontal .plan-card__set-name {
        font-size: 1.6rem;
        margin: 0 0 7px;
    }

    .plan-card--vertical .plan-card__price,
    .plan-card--horizontal .plan-card__price {
        margin-bottom: 15px;
    }

    .plan-card--vertical .plan-card__price-label,
    .plan-card--horizontal .plan-card__price-label {
        font-size: 1.3rem;
        padding: 8px;
        margin-right: 10px;
    }

    .plan-card--vertical .plan-card__price-number,
    .plan-card--horizontal .plan-card__price-number {
        font-size: min(3.3rem, 3.5vw);
    }

    .plan-card--vertical .plan-card__price-unit,
    .plan-card--horizontal .plan-card__price-unit {
        font-size: 1.4rem;
        margin-left: 4px;
    }

    .plan-card__price-tax {
        font-size: 1.3rem;
    }

    .plan-card__price-start {
        font-size: 2rem;
        font-weight: 700;
    }

    .plan-card--vertical .plan-card__hall,
    .plan-card--horizontal .plan-card__hall {
        padding: 15px 0 20px;
    }

    .plan-card__description {
        font-size: 1.5rem;
        line-height: 1.6;
        margin: 0 0 20px;
    }

    .plan-card__btn--sp {
        display: block;
    }

    .plan-card__btn--pc {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .plan-sec {
        padding: 50px 0;
    }

    .plan-card-list {
        flex-direction: column;
        margin: 35px 0 20px;
        gap: 15px;
    }

    .plan-card--vertical .plan-card__price-number,
    .plan-card--horizontal .plan-card__price-number {
        font-size: min(3rem, 7.8vw);
    }

    .plan-sec__btn-container {
        text-align: center;
        margin: 35px 0;
    }

    .plan-sec__btn {
        width: 185px;
    }

    .plan-sec__banner-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
}


/* ---------------------------------------------
*   VoC
--------------------------------------------- */
.voc-sec {
    padding: 110px 0;
    background-image: url(../img/common/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.voc-sec__inner {
    display: flex;
    min-width: 0;
    gap: 6.5%;
}

.voc-sec__col--left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voc-sec__col--right {
    flex: 1 1 auto;
    overflow: hidden;
    margin: 0 -6px;
    padding: 0 6px;
}

.voc-sec__title {
    font-size: 3.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    writing-mode: vertical-rl;
    margin: 0;
}

.voc-sec__line {
    flex: 1 1 auto;
    width: 0;
    border-left: 1px solid #707070;
    margin-top: 20px;
}

.voc-sec__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 1.7rem;
    width: 145px;
    height: 50px;
    border: 1px solid #0F0F0F;
    background-color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 0;
    gap: 9px;
}

.voc-sec__btn::after {
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    background-image: url(../img/common/icon_arrow_circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.voc-sec__btn-text::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-right: 1px solid #0F0F0F;
    border-bottom: 1px solid #0F0F0F;
    position: absolute;
    right: -7px;
    bottom: -7px;
}

.voc-sec__description {
    font-size: 2rem;
    margin: 0 0 40px;
}

.voc-slider {
    overflow: visible;
    /* 既存 */
    height: auto;
    /* 追加（保険） */
}

/* 1) 行の高さは最大カードに“揃える” */
.voc-slider .swiper-wrapper {
    align-items: stretch;
    /* 重要：各スライドを同じ高さへ */
}

/* 2) スライドは height:100% をやめて自動に */
.voc-slider .swiper-slide {
    height: auto;
    /* 重要：Swiperの100%指定を打ち消す */
    display: block;
    /* 既存でもOK */
}

.voc-card {
    display: flex;
    /* 既存の block → flex に */
    flex-direction: column;
    height: 100%;
    /* 重要：スライドの高さにフィット */
    color: inherit;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    transition: opacity 0.25s;
}

.voc-card:hover {
    opacity: 0.8;
}

.voc-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.voc-card__score {
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1;
    margin: 0 0 25px;
}


.voc-card__score-label {
    font-size: 1.5rem;
}

.voc-card__score-star {
    color: #F4A11C;
    font-size: 1.6rem;
}

.voc-card__body {
    font-size: 1.4rem;
    line-height: 1.85;
    margin: 0 0 15px;
}

.voc-card__name {
    font-size: 1.4rem;
    line-height: 1;
    text-align: right;
}

.voc-slider__toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-top: 35px;
    gap: 20px;
}

.voc-slider .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
}

.voc-slider .swiper-pagination-bullet {
    margin: 0 5px !important;
    width: 12px;
    height: 12px;
    background: #C1C1C1;
    opacity: 1;
}

.voc-slider .swiper-pagination-bullet-active {
    background: #870015;
}

.voc-slider .swiper-button-prev,
.voc-slider .swiper-button-next {
    position: static;
    margin-top: 0;
    width: 36px;
    height: 36px;
}

.voc-slider .swiper-button-prev::before,
.voc-slider .swiper-button-next::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background-image: url(../img/common/icon_slider_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
}

.voc-slider .swiper-button-next::before {
    transform: rotate(180deg);
}

.voc-slider .swiper-button-prev::after,
.voc-slider .swiper-button-next::after {
    display: none;
}

@media screen and (max-width: 767px) {
    .voc-sec {
        padding: 50px 0;
    }

    .voc-sec__inner {
        display: block;
    }

    .voc-sec__col--left {
        display: block;
    }

    .voc-sec__col--right {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .voc-sec__title {
        font-size: 2.3rem;
        writing-mode: horizontal-tb;
        margin: 0 0 20px;
    }

    .voc-sec__line {
        display: none;
    }

    .voc-sec__btn-container {
        text-align: center;
        margin-top: 30px;
    }

    .voc-sec__description {
        font-size: 1.6rem;
        line-height: 1.7;
        margin: 0 0 35px;
    }

    .voc-slider {
        overflow: visible;
        margin: 0 -20px;
        padding: 0 40px;
    }

    .voc-slider__toolbar {
        justify-content: center;
        margin-top: 25px;
        gap: 15px;
    }

    .voc-slider .swiper-pagination {
        position: static;
        width: auto;
        display: flex;
    }

    .voc-slider .swiper-pagination-bullet {
        margin: 0 4px !important;
        width: 10px;
        height: 10px;
    }

    .voc-slider .swiper-button-prev,
    .voc-slider .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .voc-slider .swiper-button-prev::before,
    .voc-slider .swiper-button-next::before {
        width: 30px;
        height: 30px;
    }
}


/* ---------------------------------------------
*   Service
--------------------------------------------- */
.service-sec {
    padding: 110px 0;
}

.service-block {
    display: flex;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s;
}

.service-block:hover {
    opacity: 0.8;
}

.service-block--even {
    flex-direction: row-reverse;
}

.service-block + .service-block {
    margin-top: 50px;
}

.service-block__img {
    flex: 0 0 49.1%;
    aspect-ratio: 3 / 2;
}

.service-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.service-block__text {
    flex: 1 1 auto;
}

.service-block__title {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin: 50px 0 45px;
    position: relative;
    z-index: 10;
}

.service-block--odd .service-block__title {
    margin-left: -80px;
}

.service-block--even .service-block__title {
    text-align: right;
    margin-right: -80px;
}

.service-block__title-inner {
    display: inline-flex;
    gap: 12px;
    padding: 30px;
    align-items: center;
    background-color: #292929;
}

.service-block__title-text--en {
    font-size: 1.5rem;
}

.service-block__description {
    line-height: 2;
    margin: 0;
}

.service-block--odd .service-block__description {
    padding-left: 9%;
}

.service-block--even .service-block__description {
    padding-right: 9%;
}

.service-block__note {
    font-size: 1.5rem;
    margin: 15px 0 0;
}

.service-block--odd .service-block__note {
    padding-left: 9%;
}

.service-block--even .service-block__note {
    padding-right: 9%;
}

.service-sec__discount {
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    .service-block__title {
        font-size: 2.4rem;
        margin: 35px 0 30px;
    }

    .service-block--odd .service-block__title {
        margin-left: -50px;
    }

    .service-block--even .service-block__title {
        text-align: right;
        margin-right: -50px;
    }

    .service-block__title-inner {
        padding: 25px 30px;
    }

    .service-block__title-text--en {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 767px) {
    .service-sec {
        padding: 50px 0;
    }

    .service-block {
        display: block;
    }

    .service-block + .service-block {
        margin-top: 35px;
    }

    .service-block__title {
        font-size: 2.3rem;
        font-weight: 400;
        line-height: 1;
        margin: -37px 0 25px;
        position: relative;
        z-index: 10;
    }

    .service-block--odd .service-block__title {
        margin-left: 0;
    }

    .service-block--even .service-block__title {
        text-align: left;
        margin-right: 0;
    }

    .service-block__title-inner {
        display: inline-block;
        padding: 15px 20px;
    }

    .service-block__title-text--en {
        font-size: 1.3rem;
        margin-top: 10px;
    }

    .service-block__description {
        line-height: 1.7;
        margin: 0;
    }

    .service-block--odd .service-block__description {
        padding-left: 0;
    }

    .service-block--even .service-block__description {
        padding-right: 0;
    }

    .service-block__note {
        font-size: 1.5rem;
        margin: 15px 0 0;
    }

    .service-block--odd .service-block__note {
        padding-left: 0;
    }

    .service-block--even .service-block__note {
        padding-right: 0;
    }

    .service-sec__discount {
        margin-top: 35px;
    }
}


/* ---------------------------------------------
*   Support
--------------------------------------------- */
.support-sec {
    color: #fff;
    min-height: 100%;
    padding: 100px 0;
    background-image: url(../img/top/support_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.support-sec__btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.support-sec__btn {
    flex: 0 0 310px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0F0F0F;
    line-height: 1;
    background-color: #fff;
    text-decoration: none;
    transition: opacity 0.25s;
}

.support-sec__btn::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/common/accent_primary.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
}

.support-sec__btn::after {
    content: '';
    display: block;
    width: 32px;
    height: 16px;
    background-image: url(../img/common/icon_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 10px;
}

.support-sec__btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .support-sec {
        padding: 50px 0;
    }

    .support-sec__btn-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        margin-top: 35px;
    }

    .support-sec__btn {
        width: 100%;
        max-width: 300px;
        flex: 0 0 auto;
        height: 60px;
    }

    .support-sec__btn::before {
        margin-right: 10px;
    }

    .support-sec__btn::after {
        margin-left: 10px;
    }

    .support-sec__btn:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   Instagram
--------------------------------------------- */
.instagram-sec {
    padding: 115px 0 0;
    overflow: hidden;
}

.instagram-sec__title {
    text-align: center;
    margin: 0 0 12px;
}

.instagram-sec__title img {
    height: 38px;
}

.instagram-sec__account {
    display: flex;
    justify-content: center;
    line-height: 1.5;
    margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
    .instagram-sec {
        padding: 55px 0 0;
    }

    .instagram-sec__title {
        margin: 0 0 12px;
    }

    .instagram-sec__title img {
        height: 38px;
    }

    .instagram-sec__account {
        margin-bottom: 30px;
    }
}

/* ---------------------------------------------
*   Contact
--------------------------------------------- */
.contact-sec {
    padding: 85px 0 75px;
    text-align: center;
}

.contact-sec__description {
    margin: 0 0 40px;
}

.contact-sec__tel {
    display: inline-block;
}

.contact-sec__tel img {
    height: 65px;
}

.contact-sec__btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.contact-sec__btn {
    flex: 0 1 240px;
}

@media screen and (max-width: 767px) {
    .contact-sec {
        padding: 50px 0;
    }

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

    .contact-sec__tel img {
        max-width: 335px;
        height: auto;
    }

    .contact-sec__btn-container {
        display: block;
        gap: 0;
        margin-top: 30px;
    }

    .contact-sec__btn {
        display: flex;
        max-width: 240px;
        margin: 0 auto;
    }

    .contact-sec__btn + .contact-sec__btn {
        margin-top: 10px;
    }
}


/* ---------------------------------------------
*   Utility
--------------------------------------------- */
@media screen and (max-width: 991px) {
    .hidden-tab {
        display: none !important;
    }
}

@media screen and (min-width: 992px) {
    .hidden-over-tab {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hidden-sp {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hidden-pc {
        display: none !important;
    }
}




/* ---------------------------------------------
*   下階層共通
--------------------------------------------- */

.ud_mv_box {
    background: #4b4b4b;
    padding-top: 75px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/top/reason_bg.jpg)no-repeat center center /cover;
}

.ud_mv_box h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    text-align: center
}

.ud_mv_box h2 span {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
}

.ud_cont {
    padding: 80px 0;
}

.bread {
    list-style: none;
    padding: 0;
    margin: 15px 20px;
    display: flex;
    flex-flow: wrap
}

.bread li::after {
    content: ">";
    margin: 8px
}

.bread li:last-child::after {
    content: none
}

.bread li {
    font-size: 1.5rem
}

.bread li a {
    color: #603b24;
    text-decoration: none
}

.ud_cont p {
    margin: 0 0 1em;
    line-height: 1.8
}

.list_none {
    list-style: none;
    padding: 0;
    margin: 0
}

.sec-title--big {
    font-size: 3.6rem;
    font-weight: 400;
    margin: 0 0 40px;
    text-align: center;
    line-height: 1;
}

.sec-title--big::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(../img/common/section_title_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto 15px;
}

p.ttl_bottom_description {
    text-align: center;
    font-size: 1.7rem;
    line-height: 2;
    margin: 0
}

.ceircle_btn {
    --icon-size: 44px;
    --icon-offset-x: 0px;
    --icon-offset-y: 0px;
    --icon-gap: 1em;
    display: inline-flex;
    align-items: center;
    gap: var(--icon-gap);
    text-decoration: none;
    position: relative;
    color: #0B0B0B
}

.ceircle_btn::before {
    content: "";
    flex: 0 0 auto;
    width: var(--icon-size);
    height: var(--icon-size);
    background: url("../img/common/circle_btn.svg") no-repeat center / contain;
    transform: translate(var(--icon-offset-x), var(--icon-offset-y));
}

.ceircle_btn:hover {
    color: #1e6d35
}

.mid-ttl-long {
    margin: 75px 0 55px;
    font-size: 2.5rem;
    font-weight: 500;
    border-bottom: 3px dotted #870015;
    padding-bottom: 8px
}

.mid-ttl-long::before {
    content: '';
    display: inline-block;
    background-image: url(../img/common/section_title_icon.svg);
    background-repeat: no-repeat;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin-top: -8px;
    background-size: contain;
    margin-right: 10px;
}

.ba_icon_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.6rem;
    font-weight: 500;
    margin: 0 0 40px
}

.ba_icon_ttl::before,
.ba_icon_ttl::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url("../img/common/section_title_icon.svg") no-repeat center;
    background-size: contain;
}

.dot_ttl {
    display: flex;
    margin: 45px 0 35px;
    font-size: 2.4rem;
    font-weight: 400
}

.dot_ttl::after {
    content: "";
    flex-grow: 1;
    background: url(../img/common/dot.svg);
    background-position: left center;
    background-repeat: repeat-x;
    margin-left: 10px;
}

.dot_ttl::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/common/section_title_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
    margin-right: 8px;
    margin-top: 3px
}

.grade_ttl {
    display: flex;
    justify-content: space-between line-height: 1;
    align-items: center;
    gap: 8px;
    font-size: 2.4rem;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(to right,
            #870015 0%,
            #6F0011 20%,
            #44000B 100%);
    padding: 10px 13px;
    margin: 45px 0 35px;
}

.grade_ttl::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../img/common/section_title_icon_w.svg") no-repeat center;
    background-size: contain;
}

.grade_ttl span {
    font-size: 1.6rem
}

.grade_ttl_op {
    display: flex;
    justify-content: space-between;
    line-height: 1;
    align-items: center;
    color: #fff;
    background: linear-gradient(to right,
            #870015 0%,
            #6F0011 20%,
            #44000B 100%);
    padding: 10px 13px;
    margin: 45px 0 35px;
}

.grade_ttl_op h3 {
    margin: 0 !important;
    font-size: 2.4rem;
    line-height: 0;
    display: flex;
    align-items: center;
    font-weight: 400;
    gap: 8px;
}

.grade_ttl_op h3::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../img/common/section_title_icon_w.svg") no-repeat center;
    background-size: contain;
}

.grade_ttl_op span {
    font-size: 1.8rem
}


.dl_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 23px;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    background-color: #B14D45;
    border-radius: 4px;
}

.dl_btn::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url("../img/order/icon_dl.svg") no-repeat center;
    background-size: contain;
}

.bl_card_img {
    display: block;
    position: relative;
    padding-top: 71.661237785%;
    overflow: hidden;
    margin-bottom: -1px;
}

.bl_card_img > img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}


/*ヘッダ画像*/

#concept .ud_mv_box {
    background: url(../img/mv/concept.jpg)no-repeat center center /cover;
}

#reason .ud_mv_box {
    background: url(../img/mv/reason.jpg)no-repeat center center /cover;
}

#facility .ud_mv_box {
    background: url(../img/mv/facilitty.jpg)no-repeat center center /cover;
}

#yamato-hannan .ud_mv_box {
    background: url(../img/mv/facility-yamato-hannan.jpg)no-repeat center center /cover;
}

#funeral-yamato .ud_mv_box {
    background: url(../img/mv/facility-funeral-yamato.jpg)no-repeat center center /cover;
}

#amour-hannan .ud_mv_box {
    background: url(../img/mv/facility-amour-hannan.jpg)no-repeat center center /cover;
}

#yamato-izumisano .ud_mv_box {
    background: url(../img/mv/facility-yamato-izumisano.jpg)no-repeat center center /cover;
}

#yukan .ud_mv_box {
    background: url(../img/mv/yukan.jpg)no-repeat center center /cover;
}

#voice .ud_mv_box {
    background: url(../img/mv/voice.jpg)no-repeat center center /cover;
}

#plan .ud_mv_box {
    background: url(../img/mv/plan.jpg)no-repeat center center /cover;
}

#single .ud_mv_box,
#tyokuso .ud_mv_box,
#standard-funeral .ud_mv_box,
#family-funeral .ud_mv_box,
#\31 day .ud_mv_box {
    background: url(../img/mv/plan.jpg)no-repeat center center /cover;
}

#funeral-food .ud_mv_box {
    background: url(../img/mv/food.jpg)no-repeat center center /cover;
}

#order .ud_mv_box {
    background: url(../img/mv/order.jpg)no-repeat center center /cover;
}

#contact .ud_mv_box {
    background: url(../img/mv/contact.jpg)no-repeat center center /cover;
}

#policy .ud_mv_box {
    background: url(../img/mv/policy.jpg)no-repeat center center /cover;
}

#recruit .ud_mv_box {
    background: url(../img/mv/recruit.jpg)no-repeat center center /cover;
}

#soudan .ud_mv_box {
    background: url(../img/mv/soudan.jpg)no-repeat center center /cover;
}

#support .ud_mv_box,
#ihinseiri .ud_mv_box,
#butsugu .ud_mv_box,
#tetsuduki .ud_mv_box {
    background: url(../img/mv/support.jpg)no-repeat center center /cover;
}



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

    .ud_mv_box {
        padding-top: 0px;
    }
}

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

    .ud_cont {
        padding: 0 0 50px;
    }

    .bread {
        margin: 10px 10px 45px;
    }
}


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

    .ud_mv_box {
        padding-top: 0px;
        height: 250px;
    }

    .ud_mv_box h2 {
        font-size: 2.6rem;
    }

    .ud_mv_box h2 span {
        font-size: 1.5rem;
    }

    .ud_cont {
        padding: 0 0 55px;
    }

    .bread {
        margin: 10px 10px 55px;
    }

    .bread li {
        font-size: 1.4rem
    }

    .sec-title--big {
        font-size: 2.4rem;
        margin: 0 0 30px;
    }

    .sec-title--big::before {
        width: 45px;
        height: 45px;
        margin: 0 auto 12px;
    }

    p.ttl_bottom_description {
        text-align: left;
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .mid-ttl-long {
        margin: 45px 0 30px;
        font-size: 2.1rem;
    }

    .mid-ttl-long::before {
        width: 26px;
        height: 26px;
        margin-right: 8px;
    }

    .ba_icon_ttl {
        gap: 8px;
        font-size: 2.2rem;
        margin: 0 0 30px
    }

    .ba_icon_ttl::before,
    .ba_icon_ttl::after {
        width: 27px;
        height: 27px;
    }

    .dot_ttl {
        margin: 35px 0 25px;
        font-size: 2.0rem;
    }

    .dot_ttl::after {
        margin-left: 8px;
    }

    .dot_ttl::before {
        width: 26px;
        height: 26px;
        margin-right: 3px;
        margin-top: 3px
    }

    .grade_ttl {
        font-size: 2.0rem;
        padding: 8px 10px;
        margin: 35px 0 25px;
    }

    .grade_ttl::before {
        content: "";
        display: inline-block;
        width: 26px;
        height: 26px;
    }

    .grade_ttl_op {
        flex-flow: column;
        align-items: flex-start;
        padding: 11px 11px;
        margin: 40px 0 25px;
    }

    .grade_ttl_op h3 {
        margin: 0 0 5px 0 !important;
        font-size: 2.0rem;
        gap: 8px;
    }

    .grade_ttl_op h3::before {
        width: 26px;
        height: 26px;
    }

    .grade_ttl_op span {
        font-size: 1.5rem;
        line-height: 1.4
    }

}

/* ---------------------------------------------
*   ページネーション
--------------------------------------------- */

.pager {
    margin: 0 auto 0
}

.pager .pagination {
    text-align: center;
    font-family: sans-serif
}

.pager .pagination {
    padding: 0;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #4e4c48;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    font-size: 1.5rem;
    line-height: 0
}


.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #ac6360;
    border-radius: 50px;
}

/********* ページネーション  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .pager {
        margin: 25px auto 0
    }


    .pager .pagination {
        text-align: center;
    }

    .pager .pagination li {
        display: none;
        font-size: 1.4rem;
        background: #870015;
    }

    .pager .pagination li.pre,
    .pager .pagination li.next {
        display: inline-block;
        width: 40%;
        height: 50px;
        text-align: center;
    }

    .pager .pagination li.pre a,
    .pager .pagination li.next a {
        width: 100%;
        text-align: center;
    }

    .pager .pagination li.pre span::after {
        content: "　前の10件へ";
    }

    .pager .pagination li.next span::before {
        content: "次の10件へ　";
    }

    .pager .pagination li a:hover,
    .pager .pagination li a.active {
        color: #fff;
        background: #D9645F;
        border-radius: 50px;
    }
}

/* ---------------------------------------------
*   投稿フォーマット共通
--------------------------------------------- */
.sing_cont_ttl {
    margin: 0 0 10px;
    border-bottom: 2px solid gray;
    padding-bottom: 15px;
    font-weight: 400;
    font-size: 2.4rem
}

.sing_date_cont {
    margin: 12px 0 35px;
    display: flex;
    align-items: center
}

.sing_date {
    margin-right: 10px
}

.sing_cat {
    font-size: 1.2rem;
    color: #fff;
    padding: 3px 7px;
    margin-right: 10px
}

.sing_cat a {
    color: #fff;
    text-decoration: none
}

.sng_cont p {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 1em
}

.sng_cont p:first-of-type {
    margin-top: 0
}

.sng_cont p:last-of-type {
    margin-bottom: 0
}

.sng_cont h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h4 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h5 {
    font-size: 2rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont h6 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0
}

.sng_cont img {
    margin: 15px 0;
}

.sng_cont a {
    color: #CF0357
}

.sng_cont a:hover {
    color: #ff8000
}


/********* 投稿ページ詳細  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .sing_cont_ttl {
        margin: 0 0 7px;
        padding-bottom: 7px;
        font-size: 1.8rem
    }

    .sing_date_cont {
        margin: 10px 0 25px
    }

    .sing_date {
        font-size: 1.3rem
    }

    .sing_cat {
        font-size: 1.2rem;
        color: #fff;
        padding: 2px 5px;
        margin-right: 5px
    }

    .sng_cont p {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .sng_cont h1 {
        font-size: 3.2rem;
        margin-bottom: 10px
    }

    .sng_cont h2 {
        font-size: 2.8rem;
        margin-bottom: 10px
    }

    .sng_cont h3 {
        font-size: 2.4rem;
        margin-bottom: 10px
    }

    .sng_cont h4 {
        font-size: 2.0rem;
        margin-bottom: 10px
    }

    .sng_cont h5 {
        font-size: 1.8rem;
        margin-bottom: 10px
    }

    .sng_cont h6 {
        font-size: 1.6rem;
        font-weight: 600;
        margin: 15px 0
    }

    .sng_cont img {
        margin: 15px 0
    }
}


/* ---------------------------------------------
*   下階層　お知らせ
--------------------------------------------- */

.info_list {
    list-style: none;
    margin: 45px 0 45px;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 35px)
}

.info_list li {
    width: calc(100% / 4 - 35px);
    margin-right: 35px;
    margin-bottom: 40px
}

.info_list li a {
    text-decoration: none;
    color: #292828;
}

.info_list li .img_wrap {
    margin-bottom: 20px
}

.info_list li .info_wrap {}

.info_list li .info_wrap p {
    font-size: 1.45rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content:
}

.info_list li .info_wrap span {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    margin-left: 1em;
    padding: 5px 6px 5px
}

.info_list li .info_wrap h3 {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4
}

.info_list li a p,
.info_list li a h3 {
    margin: 0
}

.info_cont_wrap {
    background: #fff;
    padding: 60px 80px;
    text-align: center
}

.info_ttl_wrap p.cat {
    font-size: 1.4rem;
    margin: 0;
    display: inline-block;
    color: #fff;
    padding: 3px 8px
}

.info_ttl_wrap h3 {
    margin: 15px 0 18px;
    padding-bottom: 18px;
    font-size: 3.2rem;
    border-bottom: 1px dotted #606060
}

.info_ttl_wrap p.date {
    margin: 0 0 35px;
    font-size: 1.5rem
}

.info_cont_wrap .sng_cont {
    text-align: left
}

.back_link {
    background: #870015;
    color: #fff;
    text-decoration: none;
    display: flex;
    height: 55px;
    width: 300px;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    border-radius: 50px
}

@media only screen and (max-width: 991px) {
    .info_list li {
        width: calc(100% / 3 - 35px);
    }
}

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

    .info_list {
        margin: 35px 0 45px;
        display: block;
        width: 100%
    }

    .info_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px
    }

    .info_list li a {
        text-decoration: none;
        color: #292828;
    }

    .info_list li .img_wrap {
        margin-bottom: 20px
    }


    .info_list li .info_wrap p {
        font-size: 1.45rem;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content:
    }

    .info_list li .info_wrap span {
        color: #fff;
        font-size: 1.1rem;
        line-height: 1;
        margin-left: 1em;
        padding: 5px 6px 5px
    }

    .info_list li .info_wrap h3 {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.4
    }

    .info_list li a p,
    .info_list li a h3 {
        margin: 0
    }

    .info_cont_wrap {
        padding: 60px 80px;
        text-align: center
    }

    .info_ttl_wrap p.cat {
        font-size: 1.2rem;
        padding: 2px 6px
    }

    .info_ttl_wrap h3 {
        margin: 10px 0 12px;
        padding-bottom: 12px;
        font-size: 2.2rem;
    }

    .info_ttl_wrap p.date {
        margin: 0 0 30px;
        font-size: 1.4rem
    }

    .back_link {
        height: 46px;
        width: 240px;
        margin: 30px auto 0;
    }

}

/* ---------------------------------------------
*   下階層　お客様の声
--------------------------------------------- */

.ud_voice_list {
    display: flex;
    flex-flow: wrap;
    list-style: none;
    padding: 0;
    margin: 45px 0 0 0;
    width: calc(100% + 40px)
}

.ud_voice_list li {
    background: #fff !important;
    border: 1px solid #9f9696;
    padding: 15px 15px 20px 15px;
    width: calc(100% / 3 - 40px);
    margin-right: 40px;
    margin-bottom: 40px
}

.ud_voice_list li h3 {
    font-weight: 400;
    font-size: 1.8rem;
    margin: 18px 0 13px
}

.ud_voice_list li a {
    text-decoration: none;
    color: #1A1311
}

.ud_voice_list li .voice_cat_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ud_voice_list li .voice_cat_wrap p {
    margin: 0
}

.ud_voice_list li .voice_cat_wrap p.cat {
    font-size: 1.3rem;
    display: inline-block;
    border: 1px solid #9f9696;
    background: #fff;
    padding: 3px 6px
}

.ud_voice_list li .voice_cat_wrap p.star {
    font-size: 1.5rem;
}

.ud_voice_list li .voice_cat_wrap p.star span {
    margin-left: .5em;
    color: #FF9D00
}

.ud_voice_list li p.voice_extract {
    font-size: 1.45rem;
    line-height: 1.65;
    margin: 18px 0 0
}

#voice {
    background: url("../img/common/bg-stone.png") repeat;
    background-size: 100px 100px;
}

.voice_cont_wrap {
    background: #fff;
    border: 1px solid #9f9696;
    padding: 70px 80px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto
}

.voice_img {
    margin: 0 0 45px
}

.voice_cont_wrap .sng_cont {
    text-align: left
}

.voice_cont_wrap p.cat a {
    font-size: 1.6rem;
    margin: 0;
    padding: 5px 10px;
    display: inline-block;
    border: 1px solid #5a200e;
    color: #fff
}

.voice_cont_wrap p.cat a:hover {
    background: #5a200e;
    color: #fff
}

.voice_cont_wrap p.cat a {
    text-decoration: none;
    color: #1A1311
}

.voice_cont_wrap h3 {
    font-size: 3.8rem;
    margin: 15px 0 10px
}

.voice_cont_wrap p.star {
    font-size: 1.6rem;
    margin: 0 0 40px
}

.voice_cont_wrap p.star span {
    margin-left: .8em;
    color: #FF9D00
}



@media screen and (min-width:768px) and (max-width:1024px) {

    .ud_voice_list {
        width: calc(100% + 30px)
    }

    .ud_voice_list li {
        width: calc(100% / 2 - 30px);
        margin-right: 30px;
        margin-bottom: 30px
    }

    .ud_voice_list li .voice_cat_wrap {
        display: block;
    }

    .ud_voice_list li .voice_cat_wrap p.cat {
        padding: 3px 5px;
        margin-bottom: 6px
    }

}

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

    .ud_voice_list {
        display: block;
        width: 100%
    }

    .ud_voice_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 35px
    }

    .ud_voice_list li h3 {
        font-size: 1.7rem;
        margin: 15px 0 10px
    }

    .ud_voice_list li .voice_cat_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .ud_voice_list li .voice_cat_wrap p.cat {
        font-size: 1.3rem;
        padding: 3px 5px
    }

    .ud_voice_list li p.voice_extract {
        margin: 15px 0 15px
    }

    .voice_cont_wrap {
        padding: 35px 20px 35px;
    }

    .voice_img {
        margin: 0 0 30px
    }

    .voice_cont_wrap p.cat {
        font-size: 1.5rem;
        padding: 4px 8px
    }

    .voice_cont_wrap h3 {
        font-size: 2.2rem;
        margin: 12px 0 10px
    }

    .voice_cont_wrap p.star {
        font-size: 1.5rem;
        margin: 0 0 30px
    }
}



/* ---------------------------------------------
*   コンセプト
--------------------------------------------- */
#concept .ud_cont {
    padding-bottom: 0
}

.concept_flex {
    display: flex;
    align-items: center
}

.concept_flex .img {
    width: 38%
}

.concept_flex .img ul li {
    margin-bottom: 20px
}

.concept_flex .cont {
    width: 62%;
    padding-left: 6vw
}

.concept_flex .cont h3 {
    margin: 0 0 50px
}

.concept_flex .cont p {
    font-size: 1.8rem;
    margin: 0 0 1em;
    line-height: 2.4em
}

/* Concept Slider */
.concept-slider {
    padding: 0;
    margin-top: 80px;
    overflow: hidden;
}

.concept-slider .swiper {
    width: 100%;
}

.concept-slider .swiper-slide {
    margin: 0;
}

.concept-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}



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

    .concept_flex .cont h3 {
        margin: 0 0 20px
    }

    .concept_flex .cont h3 img {
        height: 60px
    }

    .concept_flex .cont p {
        font-size: 1.6rem;
        margin: 0 0 1em;
        line-height: 2.0em
    }
}

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


    .concept_flex {
        flex-flow: column-reverse
    }

    .concept_flex .img {
        width: 100%
    }

    .concept_flex .img ul li {
        margin-bottom: 0;
        margin-top: 10px
    }

    .concept_flex .cont {
        width: 100%;
        padding-left: 0
    }

    .concept_flex .cont h3 {
        margin: 0 0 20px
    }

    .concept_flex .cont p {
        font-size: 1.6rem;
        margin: 0 0 1em;
        line-height: 2em
    }
}


/* ---------------------------------------------
*   選ばれる理由
--------------------------------------------- */
.reason_wrap {
    margin-top: 55px
}

.reason_flex {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 55px
}

.flex_row_reverse {
    flex-flow: row-reverse;
}

.reason_flex .img {
    width: 50%
}

.reason_flex .cont {
    width: 50%;
    padding-left: 60px
}


.flex_row_reverse .cont {
    padding-left: 0;
    padding-right: 60px
}


.reason_flex h3 {
    margin: 0 0 25px;
    font-size: 3.0rem;
    font-weight: 400;
    line-height: 1
}

.reason_flex h3 img {
    display: block;
    margin-bottom: 18px
}

.reason_flex p {
    margin: 0 0 20px;
    line-height: 2
}

.reason_flex .ceircle_btn {
    margin-top: 0
}

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

    .reason_wrap {
        margin-top: 45px
    }

    .reason_flex,
    .reason_wrap .flex_row_reverse {
        display: flex;
        flex-flow: column-reverse;
        align-items: center;
        margin-bottom: 55px
    }

    .reason_flex .img {
        width: 100%
    }

    .reason_flex .cont,
    .reason_wrap .flex_row_reverse .cont {
        width: 100%;
        padding: 0 0 20px
    }

    .reason_flex h3 {
        margin: 0 0 25px;
        font-size: 3.0rem;
    }

    .reason_flex h3 img {
        display: block;
        margin-bottom: 18px
    }

    .reason_flex p {
        margin: 0 0 0;
        line-height: 2
    }

    .reason_flex .ceircle_btn {
        margin-top: 20px
    }
}

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

    .reason_wrap {
        margin-top: 45px
    }

    .reason_flex,
    .reason_wrap .flex_row_reverse {
        margin-bottom: 50px
    }


    .reason_flex .cont,
    .reason_wrap .flex_row_reverse .cont {
        width: 100%;
        padding: 0 0 18px
    }

    .reason_flex h3 {
        margin: 0 0 25px;
        font-size: 2.0rem;
    }

    .reason_flex h3 img {
        height: 30px;
        width: auto;
        margin-bottom: 15px
    }

    .reason_flex p {
        margin: 0 0 0;
        line-height: 1.7
    }

    .reason_flex .ceircle_btn {
        margin-top: 18px
    }
}


/* ---------------------------------------------
*   式場トップ
--------------------------------------------- */

#facility,
#yamato-hannan,
#funeral-yamato,
#amour-hannan,
#yamato-izumisano {
    background: url("../img/common/bg-stone.png") repeat;
    background-size: 100px 100px;
}

.ud_mv_box.fas_mv {
    background: #4b4b4b;
    padding-top: 75px;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/top/reason_bg.jpg)no-repeat center center /cover;
}


.facility_wrap {
    margin-top: 55px
}

.facility_flex {
    margin-bottom: 50px
}

.facility_flex a {
    display: flex;
    align-items: center;
    color: #0F0F0F;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.facility_flex a:hover {
    transform: scale(1.02);
}

.facility_flex .img {
    width: 50%
}

.facility_flex .cont {
    width: 50%;
}

.facility_flex .cont .title_wrap {
    padding: 40px 50px;
    background: #FFF;
    margin-left: -80px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.facility_flex .cont .title_wrap h3 {
    font-size: 3.3rem;
    margin: 0;
    font-weight: 500
}

.facility_flex .cont .title_wrap ul {
    display: flex;
    margin: 10px 0 25px
}

.facility_flex .cont .title_wrap ul li:first-of-type {
    margin-right: 10px
}

.facility_flex .cont .title_wrap ul li span {
    color: #fff;
    padding: 3px 10px;
    font-size: 1.4rem
}

.facility_flex .cont .title_wrap ul li span.red {
    background: #870015
}

.facility_flex .cont .title_wrap ul li span.green {
    background: #094B0E
}

.facility_flex .cont .title_wrap .disc {
    font-size: 1.7rem
}

.facility_flex .cont .title_wrap .map {
    margin: 0;
    font-size: 1.4rem;
    color: #847764;
    display: flex;
    align-items: center
}

.facility_flex .cont .title_wrap .map img {
    margin-right: 5px
}

.facility_reverse a {
    flex-flow: row-reverse
}

.facility_reverse .cont .title_wrap {
    margin-left: 0;
    margin-right: -80px;
    z-index: 999;
    position: relative
}

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


    .facility_flex {
        margin-bottom: 50px
    }

    .facility_flex a {
        display: flex;
        align-items: center;
        color: #0F0F0F;
        text-decoration: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }


    .facility_flex .img {
        width: 60%
    }

    .facility_flex .cont {
        width: 40%;
    }

    .facility_flex .cont .title_wrap {
        padding: 20px 20px 20px 30px;
        background: #FFF;
        margin-left: -90px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .facility_flex .cont .title_wrap h3 {
        font-size: 2.2rem;
    }

    .facility_flex .cont .title_wrap ul {
        display: flex;
        margin: 10px 0 20px
    }

    .facility_flex .cont .title_wrap ul li span {
        font-size: 1.2rem
    }

    .facility_flex .cont .title_wrap p.disc {
        font-size: 1.5rem;
        line-height: 1.6 !important
    }

    .facility_flex .cont .title_wrap .map img {
        margin-right: 5px
    }

    .facility_reverse .cont .title_wrap {
        margin-left: 0;
        margin-right: -90px;
    }

}

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

    .facility_wrap {
        margin-top: 35px
    }

    .facility_flex {
        margin-bottom: 30px
    }

    .facility_flex a {
        flex-flow: column;
    }

    .facility_flex .img {
        width: 100%
    }

    .facility_flex .cont {
        width: 100%;
    }

    .facility_flex .cont .title_wrap {
        padding: 20px;
        margin-left: 0px;
    }

    .facility_flex .cont .title_wrap h3 {
        font-size: 2.3rem;
        margin: 0;
        font-weight: 500
    }

    .facility_flex .cont .title_wrap ul {
        flex-flow: wrap;
        margin: 10px 0 15px
    }

    .facility_flex .cont .title_wrap ul li {
        margin-bottom: 6px;
        font-size: 1.3rem
    }

    .facility_flex .cont .title_wrap ul li span {
        padding: 3px 8px;
        font-size: 1.2rem
    }

    .facility_flex .cont .title_wrap .disc {
        font-size: 1.6rem;
        margin-bottom: 10px
    }

    .facility_flex .cont .title_wrap .map {
        margin: 0;
        font-size: 1.4rem;
    }

}

/* ---------------------------------------------
*   式場詳細
--------------------------------------------- */

.facility_cat {
    display: flex;
    justify-content: center;
    margin: -15px 0 30px
}

.facility_cat li:first-of-type {
    margin-right: 10px
}

.facility_cat li span {
    color: #fff;
    padding: 3px 10px;
    font-size: 1.4rem
}

.facility_cat li span.red {
    background: #870015
}

.facility_cat li span.green {
    background: #094B0E
}

.facility_list {
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 40px);
}

.facility_list li {
    width: calc(100% / 3 - 40px);
    margin-right: 40px;
    margin-bottom: 30px
}

.facility_list li:nth-last-child(-n+3) {
    margin-bottom: 0
}

.facility_list h4 {
    font-size: 2rem;
    margin: 25px 0 15px;
    font-weight: 500;
    line-height: 1
}

.facility_list p {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.7
}

.floor_wrap {
    text-align: center
}

.facility_tbl {
    border-collapse: collapse;
    background: #fff;
    width: 100%
}

.facility_tbl th,
.facility_tbl td {
    border: 1px solid gray;
    padding: 18px 20px;
    text-align: left;
    font-weight: 400
}

.facility_tbl th {
    background: #efefef
}


.fac_map {
    border: 1px solid #cccccc !important
}

.access_flow {
    list-style: none;
    padding-left: 0;
    margin: 40px 0 0 0
}

.access_flow li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    font-size: 1.7rem
}

.access_flow li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    /* ← 先頭行の頭に固定 */
    width: 8px;
    height: 20px;
    background-color: transparent;
    border-left: 8px solid #C1AE7A;
}

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

    .facility_cat {
        display: flex;
        justify-content: center;
        margin: -15px 0 25px
    }

    .facility_cat li:first-of-type {
        margin-right: 10px
    }

    .facility_cat li span {
        padding: 3px 8px;
        font-size: 1.3rem
    }

    .facility_list {
        width: 100%;
    }

    .facility_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px
    }

    .facility_list li:nth-last-child(-n+3) {
        margin-bottom: 30px
    }

    .facility_list h4 {
        font-size: 2rem;
        margin: 20px 0 13px;
    }

    .facility_list p {
        font-size: 1.5rem;
        line-height: 1.6
    }

    .facility_tbl th,
    .facility_tbl td {
        padding: 10px 8px;
        font-size: 1.5rem
    }

    .facility_tbl th {
        white-space: nowrap
    }

    .fac_map {
        height: 300px
    }

    .access_flow {
        margin: 20px 0 0 0;
    }

    .access_flow li {
        padding-left: 14px;
        margin-bottom: 8px;
        font-size: 1.6rem
    }

    .access_flow li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        /* ← 先頭行の頭に固定 */
        width: 6px;
        height: 18px;
        background-color: transparent;
        border-left: 6px solid #C1AE7A;
    }
}


/**Swiper**/

.facility_gallery {
    max-width: 820px;
    margin: 45px auto;
}

/* メイン */
.swiper.main_img {
    margin-bottom: 10px;
    /* ← 間隔を10pxに */
    --radius: 10px;
}

.swiper.main_img .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* サムネイル */
.swiper.thumbs_img .swiper-slide {
    opacity: .65;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.swiper.thumbs_img .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-2px);
}

.swiper.thumbs_img .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ---------------------------------------------
*   プラン
--------------------------------------------- */

#plan-all .header {
    background: #0F0F0F
}

#plan-all .ud_mv_plan {
    padding-top: 100px;
}

.plan_desc {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500
}

.fee {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 6.3rem;
    color: #AD2C44;
    margin: 0
}

.plan_wrap {
    margin-top: 45px;
    padding: 80px;
    background: #FCF9F7;
    border-radius: 15px
}

.plan_img_wrap {
    display: flex
}

.plan_img_wrap .img {
    width: 55%;
    font-size: 1.4rem
}

.plan_img_wrap .img img {
    margin-bottom: 8px
}

.plan_img_wrap .cont {
    width: 45%;
    padding-left: 0
}

.plan_img_wrap .cont h3 {
    background: #870015;
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    padding: 20px;
    margin: 30px 0 35px 0;
    margin-left: -50px
}

.plan_img_wrap .cont .price {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    line-height: 1;
    justify-content: flex-end
}

.plan_img_wrap .cont .price p {
    margin: 0
}

.plan_img_wrap .cont .price p img {
    margin: 0 0 14px 6px;
    width: 35px
}

.plan_img_wrap .cont .price p.base_price {
    font-family: sans-serif;
    font-weight: 600;
    margin-right: 12px;
    font-size: 2.0rem
}

.plan_img_wrap .cont .price p.fee {
    line-height: 1;
    font-size: 6.7rem
}

.plan_img_wrap .cont .kaizyo {
    margin: 15px 0 0 45px;
    font-size: 1.45rem
}

.plan_img_wrap .cont .waribiki_att {
    margin: 5px 0 0 45px;
    font-size: 1.45rem;
    color: #c93a3a;
}

.plan_icon_list {
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 12px);
    margin-bottom: 10px
}

.plan_icon_list li {
    width: calc(100% / 12 - 12px);
    margin-right: 12px;
    margin-bottom: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    font-family: sans-serif;
    line-height: 1.3;
    color: #464646;
    font-feature-settings: "palt";
}

.plan_col9 li {
    width: calc(100% / 9 - 12px);
}

.plan_col8 li {
    width: calc(100% / 8 - 12px);
}



.plan_icon_list li span {
    font-size: 1.1rem;
    display: block
}

.plan_icon_list img {
    display: block;
    width: 100%;
    margin-bottom: 4px
}

.note-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: note;
}

.note-list li {
    position: relative;
    padding-left: 2.2em;
    /* 番号ぶんの余白を右側にだけ確保 */
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.note-list li + li {
    margin-top: .1em;
}

.note-list li::before {
    counter-increment: note;
    content: "※"counter(note);
    position: absolute;
    left: 0;
    /* 左端に固定 */
    top: 0;
    color: #666;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.note-list.mark-only {
    counter-reset: none;
    /* カウンタリセット不要 */
}

.note-list.mark-only li {
    position: relative;
    padding-left: 1.4em;
    /* ※ぶんの余白だけ確保 */
}

.note-list.mark-only li::before {
    content: "※";
    /* 数字なしで ※ だけ表示 */
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
    white-space: nowrap;
}

.saidan_list {
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 25px);
    margin-bottom: 20px
}

.saidan_list li {
    width: calc(100% / 4 - 25px);
    margin-right: 25px;
    text-align: center;
    font-size: 1.5rem
}

.saidan_list li img {
    margin-bottom: 10px
}

.saidan_list li .price {
    margin: 0 0 20px;
    color: #870015;
    font-size: 1.4rem
}

.saidan_list li .price span {
    font-size: 1.2rem
}

.sougi_flex {
    display: flex
}

.sougi_flex .left {
    width: 53%;
    padding-right: 50px
}

.sougi_flex .right {
    width: 47%
}

.sougi_flex h3 {
    margin: 0 0 30px;
    font-size: 2.4rem;
    border-radius: 5px;
    border: 1.5px solid #763740;
    padding: 18px 20px;
    line-height: 1;
    color: #763740
}

.sougi_flex .erabuhito {
    background: #F0EBE2;
    padding: 0 0 1px 0
}

.sougi_flex .erabuhito h4 {
    background: #400f16;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    padding: 10px;
    margin: 25px 0 15px;
}

.sougi_flex .right p {
    margin: 25px 0;
    font-size: 2rem;
    color: #870015
}

.dot-selectlist {
    margin: 22px 20px 20px;
    padding-left: 1.4em;
    list-style: disc;
    list-style-position: outside;
}

.dot-selectlist > li {
    margin: .35em 0;
}

.dot-selectlist > li::marker {
    content: "● ";
    font-size: 0.95em;
    color: currentColor;
}

.single_letter {
    position: relative;
    background: #fff;
    margin: 50px auto 0;
    overflow: hidden;
}

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

.letter {
    position: relative;
    width: 85%;
    margin: -100px auto 100px;
    background: #fff;
    padding: 55px 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.letter h3 {
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 2.6rem
}

.letter p {
    background-color: #fff;
    /* 背景色 */
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
        /* 点線1の色 */
        linear-gradient(180deg, #cbcac4 2px, transparent 2px);
    /* 点線2の色と太さ */
    background-size: 9px 100%,
        /* 点線1のサイズ */
        100% 3em;
    /* 点線2のサイズ */
    line-height: 3em;
    padding-bottom: 2px;
    font-size: 1.8rem;
}

.letter p:last-child {
    margin-bottom: 0;
}

.seizen_description {
    text-align: center;
    font-size: 1.7rem;
    line-height: 2
}

#zizensoudan_wrap {
    background: url("../img/plan/zizensoudan_bg.jpg") no-repeat center / cover;
}

#zizensoudan_wrap {
    color: #fff
}

#zizensoudan_wrap .contact-sec__tel {
    margin: 5px 0
}

#zizensoudan_wrap .sec-description {
    line-height: 2
}

.seizen_contact {
    text-align: center;
    margin: 45px 0 0 0
}

/* ヘッダースライド 
.flow-slider .swiper {
    overflow: hidden;
}

.flow-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.flow-slider .swiper-slide {
    width: auto;
}

.flow-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}
*/

@media screen and (max-width: 1110px) {
    #plan-all .ud_mv_plan {
        padding-top: 0;
    }



    .plan_wrap {
        margin-top: 45px;
        padding: 80px;
        background: #FCF9F7;
        border-radius: 15px
    }

    .plan_img_wrap {
        display: block
    }

    .plan_img_wrap .img {
        width: 100%;
    }

    .plan_img_wrap .cont {
        width: 100%;
    }

    .plan_img_wrap .cont h3 {
        font-size: 2.6rem;
        font-weight: 400;
        padding: 12px 15px;
        margin: 20px 0 20px 0;
        margin-left: 0px
    }


    .plan_img_wrap .cont .price p.fee {
        line-height: 1;
        font-size: 5.6rem
    }

    .plan_img_wrap .cont .kaizyo {
        margin: 15px 0 0
    }

    .plan_icon_list li,
    .plan_col9,
    plan_col10 {
        width: calc(100% / 6 - 12px);
    }

    .note-list {
        margin: 0;
        padding: 0;
        list-style: none;
        counter-reset: note;
    }

    .saidan_list {
        display: flex;
        flex-flow: wrap;
        width: calc(100% + 15px);
        margin-bottom: 15px
    }

    .saidan_list li {
        width: calc(100% / 3 - 15px);
        margin-right: 15px;
    }


    .sougi_flex {
        display: block
    }

    .sougi_flex .left {
        width: 100%;
        padding-right: 0
    }

    .sougi_flex .right {
        width: 100%
    }

    .sougi_flex h3 {
        margin: 0 0 30px;
        padding: 18px 20px;
    }

    .sougi_flex .erabuhito {
        padding: 0 0 1px 0;
        margin-bottom: 35px
    }

    .sougi_flex .right p {
        margin: 20px 0;
        font-size: 1.8rem;
    }

    .single_letter {
        margin: 30px auto 0;
    }

    .letter {
        width: 90%;
        margin: -35px auto 50px;
        padding: 40px 40px;
    }

    .letter h3 {
        margin: 0 0 15px;
        font-size: 2.0rem
    }

    .letter p {
        background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
            linear-gradient(180deg, #cbcac4 1px, transparent 1px);
        background-size: 6px 100%,
            100% 2.5em;
        line-height: 2.5em;
        padding-bottom: 1px;
        font-size: 1.6rem;
    }
}


@media (max-width: 767px) {


    .plan_desc {
        font-size: 1.6rem;
    }


    .plan_wrap {
        margin-top: 35px;
        padding: 20px;
        border-radius: 8px
    }


    .plan_img_wrap .img {
        font-size: 1.3rem
    }

    .plan_img_wrap .img img {
        margin-bottom: 8px
    }

    .plan_img_wrap .cont {
        padding-left: 0
    }

    .plan_img_wrap .cont h3 {
        font-size: 2.0rem;
        padding: 10px;
        margin: 30px 0 25px 0;
    }

    .plan_img_wrap .cont .price {
        flex-flow: column;
        align-items: flex-end;
    }

    .plan_img_wrap .cont .price p img {
        margin: 0 0 14px 6px;
        width: 30px
    }

    .plan_img_wrap .cont .price p.base_price {
        margin-right: 0;
        font-size: 1.8rem
    }

    .plan_img_wrap .cont .price p.fee {
        font-size: 5.7rem
    }

    .plan_img_wrap .cont .kaizyo {
        margin: 15px 0 0 0;
        font-size: 1.4rem
    }

    .plan_icon_list {
        display: flex;
        flex-flow: wrap;
        width: calc(100% + 10px);
        margin-bottom: 10px
    }


    .plan_icon_list li,
    .plan_col9 li,
    .plan_col8 li {
        width: calc(100% / 4 - 10px);
        margin-right: 10px;
        margin-bottom: 5px;
        font-size: 1.15rem;
        line-height: 1.2;
    }

    .plan_icon_list li span {
        font-size: 1.05rem;
    }

    .saidan_list {
        width: calc(100% + 15px);
        margin-bottom: 20px
    }

    .saidan_list li {
        width: calc(100% / 2 - 15px);
        margin-right: 15px;
        font-size: 1.4rem
    }

    .saidan_list li .price {
        margin: 0 0 15px;
        font-size: 1.3rem
    }

    .saidan_list li .price span {
        font-size: 1.1rem
    }

    .sougi_flex h3 {
        margin: 0 0 25px;
        font-size: 2.0rem;
        padding: 12px 15px;
    }


    .sougi_flex .erabuhito h4 {
        font-size: 1.6rem;
        padding: 8px;
    }

    .sougi_flex .right p {
        margin: 20px 0;
        font-size: 1.6rem;
    }

    .dot-selectlist {
        margin: 15px 15px 15px;
        padding-left: 1.4em;
    }

    .note-list li {
        padding-left: 1.8em;
        /* スマホはちょっと詰める */
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .flow-slider .swiper-slide img {
        max-height: 250px;
        /* SP上限 */
    }


    .single_letter {
        margin: 30px auto 0;
    }

    .letter {
        width: 92%;
        margin: -35px auto 50px;
        padding: 25px 20px;
    }

    .letter h3 {
        margin: 0 0 15px;
        font-size: 1.9rem;
        font-weight: 500
    }

    .letter p {
        background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
            linear-gradient(180deg, #cbcac4 1px, transparent 1px);
        background-size: 6px 100%,
            100% 2.5em;
        line-height: 2.5em;
        padding-bottom: 1px;
        font-size: 1.6rem;
    }

    .seizen_description {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left
    }

    #zizensoudan_wrap .contact-sec__tel {
        margin: 5px 0
    }

    #zizensoudan_wrap .sec-description {
        line-height: 2
    }

    .seizen_contact {
        text-align: center;
        margin: 45px 0 0 0
    }

}

/* ---------------------------------------------
*   湯灌サービス
--------------------------------------------- */

#yukan .service-block__title-inner {
    padding: 30px 120px 30px 30px;
}

#yukan .service-block__title {
    margin-top: 40px;
    margin-bottom: 40px
}

#yukan .ud_cont {
    padding-bottom: 0
}

.yukan_description {
    padding-left: 9%;
}

.yukan_description .copy {
    font-size: 2.2rem
}

.yukan_description .description {
    color: #655942;
    margin: 0;
}

.yukan_flow {
    background: #F7F7F7;
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 100px
}

.yukan_flow_wrap {
    margin-top: 60px
}

.yukan_flex {
    display: flex;
    width: 100%;
    margin-bottom: 45px
}

.yukan_flex .ttl_box {
    flex: 0 0 50px;
    background: #A09886;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem
}

.yukan_flex .img_box {
    flex: 0 0 40%;
}

.yukan_flex .com_box {
    flex: 1;
    padding: 45px 50px;
    background: #fff
}

.yukan_flex .com_box h4 {
    margin: 0 0 23px;
    font-size: 2.6rem;
    font-weight: 500
}

.yukan_flex .com_box p {
    line-height: 1.8;
    font-size: 1.7rem;
    margin: 0
}

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

    .yukan_flex .img_box {
        flex: 0 0 45%;
    }

    .yukan_flex .com_box {
        flex: 1;
        padding: 30px 30px;
        background: #fff
    }

    .yukan_flex .com_box h4 {
        margin: 0 0 20px;
        font-size: 2.2rem;
    }

    .yukan_flex .com_box p {
        line-height: 1.8;
        font-size: 1.6rem;
        margin: 0
    }
}

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

    #yukan .service-block__title-inner {
        padding: 20px 20px 20px 20px;
    }

    #yukan .service-block {
        display: block;
    }

    #yukan .service-block + .service-block {
        margin-top: 35px;
    }

    #yukan .service-block__title {
        font-size: 2.3rem;
        font-weight: 400;
        line-height: 1;
        margin: -37px 0 25px;
        position: relative;
        z-index: 10;
    }

    .service-block--odd .service-block__title {
        margin-left: 0;
    }

    .service-block--even .service-block__title {
        text-align: left;
        margin-right: 0;
    }

    .yukan_description {
        padding-left: 0%;
    }

    .yukan_description .copy {
        font-size: 1.9rem
    }

    .yukan_flow {
        margin-top: 50px;
        padding-top: 50px;
        padding-bottom: 50px
    }

    .yukan_flow_wrap {
        margin-top: 35px
    }

    .yukan_flex {
        display: block;
        width: 100%;
        margin-bottom: 30px
    }

    .yukan_flex .ttl_box {
        font-size: 2.0rem;
        padding: 3px
    }

    .yukan_flex .com_box {
        padding: 25px 25px;
    }

    .yukan_flex .com_box h4 {
        margin: 0 0 18px;
        font-size: 2.2rem;
        line-height: 1.6
    }

    .yukan_flex .com_box p {
        line-height: 1.8;
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------
*   お料理
--------------------------------------------- */

#funeral-food .ud_cont {
    padding-bottom: 0
}

.food_flex_col2 {
    display: flex;
    width: calc(100% + 45px)
}

.food_flex_col2 li {
    width: calc(100% / 2 - 45px);
    margin-right: 45px
}

.food_flex_col2 li .info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px
}

.food_flex_col2 li h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400
}

.food_flex_col2 li p {
    margin: 0;
    font-size: 1.6rem
}

.food_flex_col3 {
    display: flex;
    width: calc(100% + 30px);
    flex-flow: wrap;
    justify-content: center
}

.food_flex_col3 li {
    width: calc(100% / 3 - 35px);
    margin-right: 35px;
    margin-bottom: 35px
}

.food_flex_col3 li .info {
    margin-top: 8px
}

.food_flex_col3 li h3 {
    margin: 0;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 400
}

.food_flex_col3 li p {
    margin: 5px 0 0 0;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1
}

.food_bottom_img {
    margin-top: 40px
}

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

    .food_flex_col2,
    .food_flex_col3 {
        display: block;
        width: 100%;
    }

    .food_flex_col2 li,
    .food_flex_col3 li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px
    }

    .food_flex_col2 li .info,
    .food_flex_col3 li .info {
        display: block;
        margin-top: 9px
    }

    .food_flex_col2 li h3,
    .food_flex_col3 li h3 {
        margin: 0;
        font-size: 1.6rem;
        text-align: center
    }

    .food_flex_col2 li p,
    .food_flex_col3 li p {
        margin: 3px 0 0 0;
        font-size: 1.5rem;
        text-align: center;
        line-height: 1
    }

    .food_bottom_img {
        margin-top: 40px
    }
}

/* ---------------------------------------------
*   供花供物注文
--------------------------------------------- */
#order .ud_cont .container {
    max-width: 1180px
}

.order_list {
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 45px)
}

.order_list li {
    width: calc(100% / 3 - 45px);
    margin-right: 45px;
    margin-bottom: 30px;
    text-align: center
}

.order_list li h3 {
    margin: 15px 0 8px;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1
}

.order_list li p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6
}

.order_list li p span {
    font-size: 1.3rem
}

.order_col_4 {
    width: calc(100% + 40px)
}

.order_col_4 li {
    width: calc(100% / 4 - 40px);
    margin-right: 40px;
    margin-bottom: 25px;
    text-align: center
}

.order_lan {
    background: #E1EADC;
    display: flex;
    margin-bottom: 80px
}

.order_lan .cont {
    width: 75%
}

.order_lan .lan_img {
    width: 25%;
    background: url(../img/order/bg.jpg)no-repeat center center /cover;
}

.order_lan h3 {
    margin: 0;
    background: #44692F;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 13px 18px;
    display: inline-block
}

.order_lan .inner {
    padding: 30px 50px 35px
}

.order_lan p {
    font-size: 1.5rem;
}

.order_lan .order_lan_desc {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 18px
}

.hanakotoba {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 5px;
}

.hanakotoba h4 {
    margin: 0 0 10px;
    color: #870015;
    font-size: 1.8rem
}

.hanakotoba p {
    margin: 0
}

.order_howto {
    text-align: center;
    margin: 75px 0 55px
}

.order_howto .ba_icon_ttl {
    margin-bottom: 30px
}

.order_howto p {
    font-size: 1.7rem;
    line-height: 2;
    margin: 0
}

.order_tel_wrap {
    text-align: center;
    margin: 0 auto 65px
}

.order_tel_wrap .inner {
    display: inline-block;
    text-align: left
}

.order_tel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.order_tel:first-of-type {
    padding-bottom: 30px;
    border-bottom: 1px solid #CCCCCC
}

.order_tel:last-of-type {
    margin-bottom: 25px
}

.order_tel_wrap .att {
    margin: 10px 0 0;
    font-size: 1.5rem;
    color: #e50000
}

.order_tel img {
    margin: 0 25px 13px
}

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

    .order_list,
    .order_col_4 {
        width: calc(100% + 30px)
    }

    .order_list li,
    .order_col_4 li {
        width: calc(100% / 3 - 30px);
        margin-right: 30px;
    }
}

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

    .order_list,
    .order_col_4 {
        width: calc(100% + 20px)
    }

    .order_list li,
    .order_col_4 li {
        width: calc(100% / 2 - 20px);
        margin-right: 20px;
        margin-bottom: 15px
    }

    .order_list li h3 {
        margin: 12px 0 6px;
        font-size: 1.6rem;
    }

    .order_list li p {
        font-size: 1.4rem;
    }

    .order_lan {
        flex-flow: column;
        margin-bottom: 50px
    }

    .order_lan .cont {
        width: 100%
    }

    .order_lan .lan_img {
        width: 100%;
        height: 200px;
    }

    .order_lan h3 {
        font-size: 1.6rem;
        padding: 10px 14px;
    }

    .order_lan .inner {
        padding: 25px 25px 20px
    }

    .order_lan p {
        font-size: 1.5rem;
    }

    .order_list li p span {
        font-size: 1.2rem
    }

    .order_lan .order_lan_desc {
        font-size: 1.7rem;
        line-height: 1.7;
        margin: 0 0 18px
    }

    .hanakotoba {
        padding: 17px;
        margin-top: 0;
    }

    .hanakotoba h4 {
        margin: 0 0 10px;
        font-size: 1.6rem
    }

    .hanakotoba p {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .order_howto {
        margin: 45px 0 35px
    }

    .order_howto .ba_icon_ttl {
        margin-bottom: 30px
    }

    .order_howto p {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left
    }

    .order_tel_wrap {
        text-align: left;
        margin: 0 auto 45px
    }

    .order_tel {
        display: block;
        margin-bottom: 20px;
    }

    .order_tel:first-of-type {
        padding-bottom: 20px;
    }

    .order_tel:last-of-type {
        margin-bottom: 15px
    }

    .order_tel p {
        margin: 0;
        font-size: 1.4rem
    }

    .order_tel p.ttl {
        font-size: 1.6rem
    }

    .order_tel img {
        margin: 15px 0 8px
    }
}

/*Contact Form 7カスタマイズ*/
-------------------------------------------------------------------------*/ #application-thanks h3,
#contact-thanks h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: #292425;
    color: #fff;
    padding: 45px 15px;
    margin-bottom: 65px
}

#application-thanks .thanks_com,
#contact-thanks .thanks_com {
    text-align: center;
    margin-bottom: 60px
}


.inquiry_wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 960px;
    text-align: center;
    padding-bottom: 80px
}

.inquiry_wrap h2 {
    margin: 0 0 25px;
}

.inquiry {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    margin-top: 20px;
    margin-bottom: 15px
}

.inquiry tr {
    border-top: dotted 1px #b1b0b0;
}

.inquiry tr:first-child {
    border-top: none;
}

.inquiry th {
    text-align: left;
    padding: 20px 10px 5px 10px;
    width: 17em;
    vertical-align: middle;
    font-weight: 400;
    white-space: nowrap
}

.inquiry td {
    padding: 20px 10px 5px 10px;
    text-align: left
}

.haveto {
    font-size: 1.0rem;
    padding: 5px;
    background: #d60400;
    color: #fff;
    font-weight: normal;
    border-radius: 4px;
    margin-right: 7px;
    position: relative;
    bottom: 1px;
}

.any {
    font-size: 1.0rem;
    padding: 5px;
    background: #006edb;
    color: #fff;
    font-weight: normal;
    border-radius: 4px;
    margin-right: 7px;
    position: relative;
    bottom: 1px;
}

/* CF7チェックボックスとラジオボタンを縦並びに */
span.wpcf7-list-item {
    margin-top: 8px;
    display: block;
}

td.form_policy {
    text-align: center;
    padding-top: 25px;
}

td.form_policy a {
    font-weight: normal;
    margin-left: 0;
    padding-left: 0
}

td.form_policy .policy {
    font-size: 1.7rem;
    line-height: 2.5
}

p.check_att {
    text-align: center;
    font-size: 1.5rem
}

#formbtn {
    display: block;
    padding: 15px;
    width: 350px;
    background: #3e2a2a;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin: 10px auto 0;
    border: 2px solid #3e2a2a;
}

#formbtn:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.submit_wrap {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 00
}

.submit_wrap li {
    margin: 0 10px;
}

.confitm_btn {
    display: block;
    padding: 15px;
    width: 200px;
    background: #3e2a2a;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin: 10px auto 0;
    border: 2px solid #3e2a2a;
    transition: all 0.3s ease;
}

.confitm_btn:hover {
    background: rgba(62, 42, 42, 0.7) !important;
    border: 2px solid #3e2a2a;
}

#formbtn.confirm_back {
    width: auto;
    background: #fff;
    color: #3e2a2a;
}

#formbtn.confirm_back:hover {
    background: rgba(62, 42, 42, 0.72);
    border: 2px solid rgba(38, 53, 129, 0.3);
    color: #fff;
    opacity: 1;
}

.inquiry a {
    color: #D80235;
    font-weight: 600;
    margin-left: 1em
}

.inquiry textarea[name="your-message"] {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 10px;
    background: #fafafa;
    font-size: 1.6rem;
    margin-bottom: -6px !important;
}

.inquiry [type="file"] {
    margin: 10px 0 0 0;
}

.inquiry [type="text"],
.inquiry [type="email"],
.inquiry [type="tel"] {
    border: 1px #c1c1c1 solid;
    padding: 10px;
    max-width: 100% !important;
    background: #fafafa;
    font-size: 1.6rem
}

.inquiry .textsp {
    max-width: 100%
}

.inquiry .textfull {
    width: 100%
}

.inquiry .age {
    max-width: 6rem !important
}

.inquiry .content {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 8px;
    height: 150px
}

.inquiry select {
    border: 1px #c1c1c1 solid;
    cursor: pointer;
    line-height: 1.5;
    padding: 8px 10px
}

#your-year {
    width: 6em;
    margin-right: .3em;
    border: 1px #c1c1c1 solid;
    padding: 8px 10px;
    background: #fafafa;
    font-size: 1.6rem
}

#your-date,
#your-month {
    width: 4em;
    margin-left: .7em;
    margin-right: .3em;
    border: 1px #c1c1c1 solid;
    padding: 8px 10px;
    max-width: 100% !important;
    background: #fafafa;
    font-size: 1.6rem
}

#pref {
    width: 6em;
    margin-right: 8px
}

#city {
    width: calc(100% - 6.9em);
}


/*住所欄の幅*/
.inquiry #city {
    width: 100%;
}

.inquiry dl {
    margin-bottom: 8px
}

.inquiry dl dt {
    margin: 8px 0 5px 0
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #ff0000 !important;
    width: 100%
}

/*送信成功*/
div.wpcf7-mail-sent-ok {
    background: #d5edda;
    color: #185626;
    border: 1px solid #c4e5cc;
    padding: 10px
}

/*送信NG*/
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    background: #f7d7da;
    color: #711d26;
    border: 1px solid #f4c6cb;
    padding: 10px
}

/*送信失敗*/
div.wpcf7-mail-sent-ng {
    background: #f7d7da;
    color: #711d26;
    border: 1px solid #f4c6cb;
    padding: 10px
}

/*スパムなどで送信ブロックされた場合*/
div.wpcf7-spam-blocked {
    background: #fff2cf;
    color: #846314;
    border: 1px solid #feedbd;
    padding: 10px
}

.form_finish {
    margin: 60px 0 0 0
}

.form_finish p {
    margin: 20px 0;
    line-height: 2;
    font-size: 1.7rem
}

.wpcf7 input::placeholder {
    color: #503b3b;
}

/*ステップバー*/
.stepBar {
    display: flex;
    max-width: 600px;
    position: relative;
    margin: 50px auto 0;
    text-align: center;
    padding: 0
}

.stepBar li {
    font-size: 1.6rem;
    list-style: none;
    position: relative;
    width: 33.333%;
}

.stepBar li:after {
    background: #bababa;
    content: "";
    width: calc(100% - 50px);
    height: 2px;
    position: absolute;
    left: calc(-50% + 25px);
    top: 36.5px;
}

.stepBar li:first-child:after {
    display: none;
}

.stepBar li span {
    background: #bababa;
    color: #ffffff;
    display: inline-block;
    height: 50px;
    margin-bottom: 5px;
    line-height: 50px;
    width: 50px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.stepBar .visited:after {
    background: #bababa;
}

.stepBar .visited span {
    background: #b20000;
}

/*エラーメッセージ非表示*/
.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-form.invalid .wpcf7-response-output {
    display: none;
}

.wpcf7-not-valid-tip {
    margin-top: 5px !important;
    font-size: 1.4rem !important
}


@media(max-width:767px) {

    #application-thanks h3 {
        margin-bottom: 35px
    }

    #application-thanks .thanks_com {
        margin-bottom: 35px
    }

    .iq_ttl {
        font-weight: 600;
        color: #D80235;
        font-size: 2rem;
    }

    .inquiry_wrap {
        padding-bottom: 25px
    }

    .inquiry {
        margin-top: -15px
    }

    .inquiry th,
    .inquiry td {
        display: block !important;
        width: 100% !important;
        border-top: none !important;
        -webkit-box-sizing: border-box !important;
        box-sizing: border-box !important;
        text-align: left;
        font-size: 1.5rem;
    }

    .inquiry th {
        padding: 15px 0 0 0;
    }

    .inquiry td {
        padding: 0 0 5px;

    }

    .inquiry textarea[name="your-message"],
    .inquiry [type="text"],
    .inquiry [type="email"],
    .inquiry [type="tel"] {
        font-size: 1.5rem;
        width: 100%
    }

    /* CF7チェックボックスとラジオボタンを縦並びに */
    span.wpcf7-list-item {
        margin-left: 0
    }

    .submit_wrap li {
        margin: 0 2px;
    }

    td.form_policy {
        padding-top: 15px;
        padding-bottom: 0;
        text-align: center;
        margin: 0 !important
    }

    td.form_policy a {
        font-weight: normal;
        margin-left: 0;
        padding-left: 0
    }

    td.form_policy p.form_text {
        text-align: left
    }

    td.form_policy .policy {
        font-size: 1.6rem;
        line-height: 2.0
    }

    #formbtn {
        display: block;
        padding: 10px 20px;
        width: auto;
        font-size: 1.6rem;
        margin-top: 10px
    }

    .confitm_btn {
        margin: 15px 7px !important;
        padding: 8.5px 20px;
    }

    #formbtn.confirm_back {
        margin: 15px 7px;
    }

    /* CF7チェックボックスを縦並びに */
    span .wpcf7-checkbox .wpcf7-list-item {
        margin-top: 5px;
        display: block;
        margin-left: 0;
    }

    .form_finish {
        text-align: left
    }

    .form_finish h3 {
        margin: 40px 0 25px;
        font-size: 1.7rem
    }

    .form_finish p {
        margin: 15px 0;
        line-height: 1.6
    }

    /*ステップバー*/
    .stepBar {
        margin: 25px auto;
        text-align: center;
        padding: 0
    }

    .stepBar li {
        font-size: 1.2rem;
    }

    .stepBar li:after {
        width: calc(100% - 36px);
        left: calc(-50% + 18px);
        top: 18px;
    }

    .stepBar li span {
        height: 36px;
        margin-bottom: 5px;
        line-height: 36px;
        width: 36px;
    }

    #pref {
        width: 6em;
        display: block;
        margin-bottom: 10px
    }

    #city {
        width: 100%;
    }
}


/* ---------------------------------------------
  下階層　会員登録メールフォーム
  --------------------------------------------- */

.member-form {
    background: #fff;
    padding-top: 100px
}


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

    .member-form {
        padding: 60px 0 0
    }
}

/* ---------------------------------------------
  下階層　供花注文メールフォーム
  --------------------------------------------- */
.order_form th p,
.order_form td p {
    margin: 0
}

.order-sec {
    padding: 10px 0 0 0
}

.order_form {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    margin-top: 20px;
    margin-bottom: 35px
}

.order_form th,
.order_form td {
    border: 1px solid #887373;
    padding: 20px 18px;
    font-weight: 400
}

.order_form th {
    text-align: left;
    background: #faf6f2;
    padding: 15px 22px;
    white-space: nowrap
}

.order_form .th_head {
    text-align: center;
    background: #574545;
    color: #fff;
    font-size: 1.7rem;
    padding: 12px 22px;
}


.order-sec .pieces {
    width: 4em
}

.order_form .wpcf7-date,
.order_form select {
    padding: 10px 10px;
    background: #fafafa;
    font-size: 1.6rem;
    font-weight: 400;
    border: 1px #c1c1c1 solid;
}

.order_form textarea[name="your-message"] {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 10px;
    background: #fafafa;
    font-size: 1.6rem;
    margin-bottom: -6px !important;
}

.order_form [type="file"] {
    margin: 10px 0 0 0;
}

.order_form [type="text"],
.order_form [type="email"],
.order_form [type="tel"] {
    border: 1px #c1c1c1 solid;
    padding: 10px;
    max-width: 100% !important;
    background: #fafafa;
    font-size: 1.6rem
}

.order_form .textsp {
    max-width: 100%
}

.order_form .textfull {
    width: 100%
}

.order_form .wpcf7-radio {
    display: flex;

}

.order_form .wpcf7-radio span {
    margin: 0 10px 0 0
}

.order-sec .form_policy {
    text-align: center;
    margin: 45px 0 40px
}

.order-sec .form_policy p {
    margin: 0;
    line-height: 2
}

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

    .order-sec {
        padding: 10px 0 0
    }

    .order_form {
        max-width: 100% !important;
        border-bottom: 1px solid #887373;
    }

    .order_form th,
    .order_form td {
        display: block;
        width: 100%;
        padding: 18px 15px;
        font-size: 1.5rem;
        border-bottom: none;
    }

    .order_form th {
        padding: 12px 12px;
    }

    .order_form .th_head {
        font-size: 1.5rem;
        line-height: 0.8
    }

    .order_form [type="text"],
    .order_form [type="email"],
    .order_form [type="tel"],
    .order_form textarea[name="your-message"],
    .order_form .wpcf7-date,
    .order_form select {
        padding: 7px;
        font-size: 1.6rem;
        width: 100%
    }

    .order_form .textsp {
        width: 100%
    }

    .order_form .textfull {
        width: 100%
    }

    .order-sec .pieces {
        width: 4em;
        margin-top: 10px
    }

    .order_form #zip {
        width: 10em
    }

    .order_form #pref {
        display: block;
        margin-bottom: 10px
    }

    .order_form #city {
        width: 100%;
        max-width: 100% !important
    }

    .order-sec .form_policy {
        margin: 20px 0 20px;
        line-height: 1.8
    }

    .order-sec .form_policy .form_text {
        margin-bottom: -5px
    }
}

/* ---------------------------------------------
*   下階層　安心サポート support
--------------------------------------------- */

/*#support .ud_cont {
    padding: 0 0 120px !important
}*/

.support__list {
    margin-top: 45px
}

.support__list .service__item {
    text-decoration: none;
    color: #1A1311;
    display: flex;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #d6d6d6
}

.support__list .service__item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.support__list .service__item .img {
    width: 45%
}

.support__list .service__item .cont {
    width: 55%;
    padding-left: 50px;
    display: flex;
    flex-flow: column;
    justify-content: space-between
}

.support__list p {
    margin: 0
}

.support__list .service__item .ttl {
    font-size: 2.8rem;
    font-weight: 400;
    margin: 10px 0 20px 0;
}

.support__list .service__item .disc {
    line-height: 1.8;
}

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

    /*#support .ud_cont {
        padding: 0 0 60px !important
    }*/

    .support__list {
        margin-top: 30px
    }

    .support__list .service__item {
        display: block;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .support__list .service__item .img {
        width: 100%
    }

    .support__list .service__item .cont {
        width: 100%;
        padding-left: 0;
    }

    .support__list .service__item .ttl {
        font-size: 2.2rem;
        margin: 15px 0 13px 0;
    }

    .support__list .service__item .disc {
        line-height: 1.8;
        font-size: 1.5rem;
        margin-bottom: 15px
    }
}

/* ---------------------------------------------
  下階層　安心サポート 遺品整理
  --------------------------------------------- */


.ihin-description p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.3;
    margin: 0
}

.support_ihin img {
    margin-top: 40px
}

.ihin-list_wrap {
    padding: 0 0 5px 0;
    border: solid 1px #c3bba6;
    margin-top: 40px;
    background: #fafafa;
    border-radius: 10px;
}

.ihin-list {
    list-style: none;
    padding: 0;
    margin: 0 35px;
    display: flex;
    flex-flow: wrap;
    width: calc(100% - 45px);
}

.ihin-list li {
    width: calc(100% / 3 - 25px);
    margin-right: 25px;
    margin-bottom: 25px
}

.ihin-list_wrap h4 {
    font-size: 2.0rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px;
    color: #fff;
    background: #124D14;
    padding: 15px
}

.ihin-list img {
    width: 100%;
    margin: 0;
}

.ihin-list h5 {
    text-align: center;
    margin: 15px 0 7px;
    font-size: 1.8rem;
    font-weight: 400
}

.ihin-list p {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.6
}

.ihin-list p span {
    font-size: 1.3rem;
    font-weight: normal
}

.flow_ihin {
    padding: 30px 0
}

.ihin_flow {
    max-width: ;
    margin: 0 auto
}

.ihin_flow_wrap {
    display: flex;
    border: 1px solid #5a5a5a;
    background: #fff
}

.ihin_flow_wrap .nunber {
    background: #124D14;
    color: #fff;
    width: 100px;
    padding: 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.ihin_flow_wrap .nunber p {
    margin: 0;
    font-size: 3.6rem;
    line-height: 1.2;
    font-style: italic;
    font-weight: 600;
}

.ihin_flow_wrap .nunber span {
    font-size: 1.6rem;
    display: block;
    margin-left:
}

.ihin_flow_wrap .com {
    padding: 25px 30px;
    width: calc(100% - 100px)
}

.ihin_flow_wrap .com h3 {
    margin: 0 0 10px;
    font-size: 2.2rem
}

.ihin_flow_wrap .com p {
    margin: 0;
    line-height: 1.7;
}

.ihin-arrow {
    text-align: center;
    margin: 0 0 20px 0
}

.ihin-arrow img {
    width: 50px;
    height: auto
}


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


    .ihin-description p {
        text-align: left;
        font-size: 1.6rem;
        line-height: 1.9
    }

    .ihin-list_wrap {
        padding: 0 0 0 0;
        border: solid 1px #c3bba6;
        margin-top: 30px;
    }

    .ihin-list {
        width: 100%;
        margin: 0 15px
    }

    .ihin-list li {
        width: calc(100% - 30px);
        margin-right: 0;
        margin-bottom: 25px
    }



    .ihin-list_wrap h4 {
        font-size: 2.2rem;
        margin: 0 0 25px;
    }

    .ihin-list img {
        border-radius: 5px;
    }

    .ihin-list h5 {
        margin: 12px 0 5px;
        font-size: 1.8rem
    }

    .ihin-list p {
        font-size: 1.5rem;
    }

    .ihin-list p span {
        font-size: 1.3rem;
    }

    .flow_ihin {
        padding: 10px 0
    }

    .ihin_flow_wrap .nunber {
        width: 50px;
        padding: 0;
        white-space: nowrap
    }

    .ihin_flow_wrap .nunber p {
        margin: 0;
        font-size: 2.4rem;
        line-height: 1.3;

    }

    .ihin_flow_wrap .nunber span {
        font-size: 1.35rem;
    }

    .ihin_flow_wrap .com {
        padding: 18px 15px 15px;
        width: calc(100% - 50px)
    }

    .ihin_flow_wrap .com h3 {
        margin: 0 0 8px;
        font-size: 1.8rem
    }

    .ihin_flow_wrap .com p {
        font-size: 1.5rem;
        line-height: 1.65;
    }

    .ihin-arrow {
        text-align: center;
        margin: -3px 0 10px 0
    }

    .ihin-arrow img {
        width: 35px;
        height: auto
    }

}

/* ---------------------------------------------
  下階層　安心サポート 葬儀後の手続き
  --------------------------------------------- */


#tetsuduki .sec-title {
    line-height: 1.5
}

.support_lineup table {
    border-collapse: collapse;
    font-size: 1.6rem;
    background: #fff;
    width: 100%;
    margin: 45px 0 30px
}

.support_lineup table thead {
    text-align: center;
    background: #5a1621;
    color: #fff;
    white-space: nowrap
}

.support_lineup table th,
.support_lineup table td {
    border: 1px solid #414141;
    padding: 12px 15px;

}

.support_lineup table th {
    background: #f5ecec;
    width: 11em;
    font-weight: 400;
    vertical-align: middle;
    text-align: center
}

.support_lineup table td.check {
    width: 6em;
    white-space: nowrap
}

#tetsuduki p.att {
    line-height: 1.7
}


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


    .support_lineup table {
        font-size: 1.5rem;
        width: 100%;
        margin: 0 0 20px
    }

    .support_lineup table th,
    .support_lineup table td {
        border: 1px solid #414141;
        padding: 8px 8px;
    }

    .support_lineup table th {
        width: 6em;
        line-height: 1.5
    }

    .support_lineup table td.check {
        display: none
    }
}

/* ---------------------------------------------
  下階層　安心サポート 遺品整理
  --------------------------------------------- */
#henrei .support_ihin {
    padding: 0 0 100px !important
}

.osusume_set-col3 {
    margin: -25px 0 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 45px);
}


.osusume_set-col3 li {
    margin-right: 45px;
    margin-top: 40px;
    width: calc(100% / 3 - 45px);
}

.osusume_set-col3 img {
    margin: 0
}

.osusume_set-col3 p {
    font-size: 1.6rem;
    text-align: center;
    margin: 14px 0 0 0
}

.osusume_set-col3 p.price {
    color: #d82626;
    margin: 2px 0 0 0;
    font-size: 1.5rem;
}

.osusume_set-col3 p.price span {
    font-size: 1.4rem
}

.osusume_set-col3 .mr-1 {
    margin-left: 1em !important;
    display: block
}

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

    #henrei .support_ihin {
        padding: 0 0 100px !important
    }


    .osusume_set-col3 {
        width: calc(100% + 15px);
        margin: -5px 0 0 0;
    }


    .osusume_set-col3 li {
        margin-right: 15px;
        margin-top: 15px;
        width: calc(100% / 2 - 15px);
    }

    .osusume_set-col3 p {
        font-size: 1.4rem;
        margin: 10px 0 0 0
    }

    .osusume_set-col3 p.price {
        margin: 1px 0 0 0;
        font-size: 1.3rem;
    }

    .osusume_set-col3 p.price span {
        font-size: 1.2rem
    }

    .osusume_set-col3 .hidden-pc {
        margin: 0
    }
}


/* ---------------------------------------------
  下階層　安心サポート 仏具
  --------------------------------------------- */

#butsugu .sec-title {
    font-size: 3.8rem
}

.butsudan_ttl {
    font-size: 2.5rem;
    text-align: center;
    margin: 55px 0 15px;
    font-weight: 500
}

.butsudan_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 40px)
}

.butsudan_list li {
    margin-right: 40px;
    width: calc(100% / 3 - 40px);
    margin-bottom: 40px
}

.butsudan_list li p {
    text-align: center;
    margin: 11px 0 0 0;
    line-height: 1.4
}

.butsudan_list li p span {
    font-size: 1.3rem
}

.haka-description {
    margin-bottom: 80px;
    margin-top: 40px;
    font-size: 2.6rem;
    line-height: 1.8;
    text-align: center
}


@media only screen and (max-width: 991px) {
    .haka-description {
        font-size: 2.2rem;
        line-height: 1.75;
    }
}

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

    .butsudan_ttl {
        font-size: 2.0rem;
        margin: 35px 0 15px;
    }


    #butsugu .sec-title {
        font-size: 2.4rem
    }

    .butsudan_list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-flow: wrap;
        width: calc(100% + 15px)
    }

    .butsudan_list li {
        margin-right: 15px;
        width: calc(100% / 2 - 15px);
        margin-bottom: 15px
    }

    .butsudan_list li p {
        font-size: 1.5rem;
        margin: 8px 0 0 0;
        line-height: 1.3
    }

    .butsudan_list li p span {
        font-size: 1.2rem
    }

    .haka-description {
        margin-bottom: 50px;
        margin-top: 30px;
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left
    }
}



/* ---------------------------------------------
*   会社概要
--------------------------------------------- */

#about .ud_cont .container {
    max-width: 1080px
}

.about_img {
    max-width: 820px;
    margin: 0 auto 50px
}

.aisatsu {
    margin-bottom: 50px
}

.aisatsu h3 {
    font-size: 2.8rem;
    margin: 0 0 30px
}

.aisatsu p {
    line-height: 2.3
}

.aisatsu p.sign {
    text-align: right;
    font-size: 2.3rem;
    font-weight: 600
}

.rinen_flex {
    display: flex;
    margin-bottom: 35px
}

.rinen_flex .img {
    width: 35%
}

.rinen_flex .com {
    width: 65%;
    padding-left: 50px
}

.rinen_flex h4 {
    font-size: 4.0rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0 0 35px;
    padding-bottom: 6px;
    border-bottom: 2px solid #870015
}

.rinen_flex h4 span {
    font-size: 1.5rem;
}

.rinen_flex p {
    margin: 0 0 0 10px;
    line-height: 2;
    font-size: 1.8rem
}

.about_tbl {
    border-collapse: collapse
}

.about_tbl th,
.about_tbl td {
    padding: 15px 20px;
    border: 1px solid #8d8d8d
}

.about_tbl th {
    white-space: nowrap;
    width: 12em;
    background: #fafafa
}

.about_tbl ul {
    margin: 12px 0 0 0;
    padding-left: 1.5em
}

.about_tbl ul li {
    margin: 0 0 5px 0;
    line-height: 1.8
}

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

    .rinen_flex .com {
        padding-left: 40px
    }

    .rinen_flex h4 {
        font-size: 3.6rem;
        margin-bottom: 25px;
        display: flex;
        justify-content: space-between;
    }

    .rinen_flex p {
        margin: 0 0 0 0;
        line-height: 2;
        font-size: 1.6rem
    }
}

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

    .about_img {
        margin: 0 auto 35px
    }

    .aisatsu {
        margin-bottom: 40px
    }

    .aisatsu h3 {
        font-size: 1.85rem;
        margin: 0 0 20px
    }

    .aisatsu p {
        line-height: 2
    }

    .aisatsu p.sign {
        font-size: 2.0rem;
        margin: 0
    }

    .rinen_flex {
        flex-flow: column;
        margin-bottom: 35px
    }

    .rinen_flex .img {
        width: 100%;
        margin-bottom: 20px
    }

    .rinen_flex .com {
        width: 100%;
        padding-left: 0
    }

    .rinen_flex h4 {
        font-size: 3rem;
        margin: 0 0 25px;
        padding-bottom: 4px;
    }

    .rinen_flex h4 span {
        font-size: 1.4rem;
    }

    .rinen_flex p {
        margin: 0 0 0 10px;
        line-height: 1.8;
        font-size: 1.6rem
    }

    .about_tbl th,
    .about_tbl td {
        padding: 10px 12px;
    }

    .about_tbl th {
        width: auto;
    }

    .about_tbl ul {
        margin: 5px 0 0 0;
    }

    .about_tbl ul li {
        margin: 0 0 5px 0;
        line-height: 1.8
    }
}


/* ---------------------------------------------
*   事前相談
--------------------------------------------- */

#soudan .ud_cont {
    padding-bottom: 0
}

#soudan .ud_cont .container {
    max-width: 1100px
}

.soudan_text h3 {
    margin: 0 0 20px;
    color: #5F3120;
    font-size: 2.4rem;
    font-weight: 500;
}

.soudan_text p {
    line-height: 2
}

.float-right {
    float: right;
    margin: 0 0 15px 30px;
    width: 38%;
    height: auto;
}

.clear-both {
    clear: both;
}

.contact-soudan-wrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 45px
}

.contact-soudan-wrap .contact-form-btn {
    background: #124D14;
    width: 330px;
    padding: 18px;
    border-radius: 8px;
    margin: 0 auto 40px;
    font-size: 2.0rem;
    color: #fff;
    text-decoration: none;
    text-align: center
}

.soudan_howto_wrap {
    background: #F7F7F7;
    padding: 90px 0 90px;
    margin-top: 90px
}

.soudan_howto_wrap h3 {
    text-align: center;
    margin: 0 0 40px
}

.soudan_howto {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    max-width: 900px
}

.soudan_howto li {
    --icon-size: 28px;
    /* アイコンの縦横 */
    --icon-nudge-y: .13em;
    /* 上下微調整（↑に上げる）*/

    position: relative;
    padding-left: calc(var(--icon-size) + 12px);
    font-size: 1.9rem;
    line-height: 1.6;

    /* 仕切り線と余白 */
    border-bottom: 1px solid #A7A7A7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.soudan_howto li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.soudan_howto li::before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--icon-nudge-y);
    /* ← 1行目の上辺基準で配置 */
    width: var(--icon-size);
    height: var(--icon-size);
    background: url("../img/soudan/icon-qa.svg") no-repeat center;
    background-size: contain;
    /* 中央寄せは使わない */
    transform: none;
}

.voice_board {
    text-align: center;
    margin-top: 80px
}

.voice_board_ttl {
    font-size: 2.6rem;
    font-weight: 400;
    border-bottom: 3px dotted #897559;
    border-top: 3px dotted #897559;
    padding: 10px 15px;
    margin: 0 0 50px;
    display: inline-block
}

.soudan_flow {
    padding: 90px 0;
    text-align: center
}

.soudan_flow .fotm_entry_ttl {
    margin-bottom: 45px
}

.soudan_flow_img {
    margin: 50px 0 65px
}

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

    .soudan_text h3 {
        margin: 0 0 17px;
        font-size: 2.0rem;
    }

    .soudan_text p {
        line-height: 1.8
    }

    .float-right {
        float: none;
        margin: 5px 0 20px 0;
        width: 100%;
        height: auto;
    }

    .contact-soudan-wrap {
        margin-top: 30px
    }

    .contact-soudan-wrap .contact-form-btn {
        width: 260px;
        padding: 12px;
        margin: 0 auto 30px;
        font-size: 1.8rem;
    }

    .soudan_howto_wrap {
        background: #F7F7F7;
        padding: 50px 0 50px;
        margin-top: 50px
    }

    .soudan_howto_wrap h3 {
        text-align: center;
        margin: 0 0 40px
    }

    .soudan_howto_wrap h3 img {
        max-width: 90%;
    }

    .soudan_howto li {
        --icon-size: 20px;
        --icon-nudge-y: .18em;

        position: relative;
        padding-left: calc(var(--icon-size) + 8px);
        font-size: 1.6rem;
        line-height: 1.6;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .voice_board {
        margin-top: 50px
    }

    .voice_board_ttl {
        font-size: 2.0rem;
        padding: 10px 15px;
        margin: 0 0 45px;
    }

    .soudan_flow {
        padding: 50px 0;
    }

    .soudan_flow_img {
        max-width: 80%;
        margin: 30px auto 35px !important
    }

    .soudan_flow .fotm_entry_ttl {
        margin-bottom: 45px
    }
}

/* ---------------------------------------------
*   採用情報
--------------------------------------------- */

#recruit .ud_cont .container {
    max-width: 1100px
}

.rec_tel {
    text-align: center;
    margin-top: 50px
}

.rec_tel p {
    margin: 12px 0 0 0;
    font-family: sans-serif;
    font-size: 1.5rem;
    font-weight: 600
}

.youkou_wrap {
    background: #F7F7F7;
    padding: 55px 65px;
    margin-top: 60px
}

.youkou_wrap h3 {
    margin: 0 0 35px
}


.youkou_wrap .rec_description {
    line-height: 2;
    margin: 0
}

.rec_gaiyo {
    border-collapse: collapse;
    width: 100%;
    margin-top: 50px;
    background: #fff;
}

.rec_gaiyo th,
.rec_gaiyo td {
    border: 1px solid #adadad;
    padding: 15px 15px;
    line-height: 1.7;
    font-weight: 400
}

.rec_gaiyo th {
    background: #e3ebd5;
    width: 9em;
    padding: 8px 20px;
    text-align: left;
    white-space: nowrap
}

.rec_gaiyo th.head {
    background: #22232B;
    color: #fff;
    text-align: left
}

.rec_gaiyo ul {
    padding-left: 1.2em;
    margin: 0
}

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

    .rec_gaiyo {
        border-bottom: 1px solid #adadad;
        margin-top: 30px
    }

    .rec_gaiyo th,
    .rec_gaiyo td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 8px 8px;
        line-height: 1.6;
        font-size: 1.5rem;
        border-bottom: none
    }

    .rec_gaiyo th {
        background: #f0f0f0
    }

    .rec_gaiyo th.head {
        background: #22232B;
        color: #fff;
        text-align: left
    }
}

/* ---------------------------------------------
  下階層　個人情報保護方針 policy
  --------------------------------------------- */

.policy-sec {
    padding-bottom: 100px
}

.policy-sec .dot_ttl {
    margin-top: 0
}

.privasy-box h4 {
    border-left: 5px solid #870015;
    padding-left: 10px;
    font-size: 1.7rem;
    margin-bottom: 1em;
}

.privasy-box p {
    margin-left: 1em;
    margin-bottom: 1.5em;
    line-height: 1.8
}

.privasy-box .add {
    margin: 0
}

.privasy-box .add b {
    font-size: 1.8rem
}

.privasy-box .add a {
    text-decoration: none;
}

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

    .policy-sec {
        padding-bottom: 50px
    }

    .privasy-box h4 {
        padding-left: 7px;
        font-size: 1.6rem;
    }

    .privasy-box p {
        margin-left: .5em;
        margin-bottom: 1.5em;
        line-height: 1.7;
        font-size: 1.5rem;
    }

    .privasy-box .add b {
        font-size: 1.7rem
    }
}
