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

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

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

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

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

.sec-title,
.sec-title--white {
    color: #22232B;
    font-weight: 500;
    margin: 0 0 70px;
    text-align: center;
}

.sec-title--white {
    color: #fff;
}

.sec-title__en {
    font-size: 4.2rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sec-title__ja {
    font-size: 2.0rem;
}

.sec-description {
    font-size: 1.6rem;
    line-height: 1.9;
    text-align: center;
    margin: 0;
}

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

    .sec-title,
    .sec-title--white {
        margin: 0 0 26px;
    }

    .sec-title::after,
    .sec-title--white::after {
        width: 120px;
        height: 5px;
        margin-left: -60px;
    }

    .sec-title__en {
        font-size: 3rem;
        margin-bottom: 8px;
    }

    .sec-title__ja {
        font-size: 1.7rem;
    }

    .sec-description {
        font-size: 1.5rem;
        line-height: 1.86;
    }
}


/* ---------------------------------------------
*   Header
--------------------------------------------- */
.header {
    background-color: transparent;
    display: flex;
    min-width: 0;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.5s, box-shadow 0.5s;
}

.header.scrolled {
    background-color: #262626;
}

.header__logo {
    flex: 0 0 auto;
    margin: 0;
    line-height: 1;
}

.header__logo a {
    transition: opacity 0.25s;
}

.header__logo a:hover {
    opacity: 0.8;
}

.header__logo-img--white,
.header__logo-img--color {
    width: 224px;
}

.header__logo-img--color {
    display: none;
}

.header__menu {
    margin-left: auto;
}

@media screen and (max-width: 991px) {
    .header {
        height: 60px;
        padding: 0 60px 0 15px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 800;
    }

    .header.scrolled {
        background-color: #fff;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }

    .header__logo-img--white,
    .header__logo-img--color {
        width: 150px;
    }

    .header.scrolled .header__logo-img--white {
        display: none;
    }

    .header.scrolled .header__logo-img--color {
        display: block;
    }
}


/* ---------------------------------------------
*   Global Nav
--------------------------------------------- */
.gnav-menu {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
}

.gnav-menu__item + .gnav-menu__item {
    margin-left: 30px;
}

.gnav-menu__link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.25s;
}

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

.gnav-toggle {
    display: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    background: #000;
    appearance: none;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

.gnav-toggle__bar {
    top: 23px;
    left: 14px;
    margin-top: -1px;
    transition: background-color 0s 0.15s;
}

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

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

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

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

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

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

.gnav-toggle__label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", " Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
    line-height: 1;
    text-align: center;
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    z-index: 0;
}

@media screen and (max-width: 991px) {
    .gnav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 100%;
        overflow: scroll;
        background-color: #22232B;
        transition: bottom 0.3s;
    }

    .gnav.is-active {
        bottom: 0;
    }

    .gnav-menu {
        display: block;
        padding: 90px 20px 80px;
        text-align: center;
    }

    .gnav-menu__item + .gnav-menu__item {
        margin-left: 0;
        margin-top: 25px;
    }

    .gnav-toggle {
        display: block;
    }
}


/* ---------------------------------------------
*   Footer
--------------------------------------------- */
.footer {
    color: #fff;
    background-color: #22232B;
    position: relative;
    z-index: 0;
}

.footer-top {
    text-align: center;
    padding: 80px 0 75px;
}

.footer__logo {
    margin: 0 0 25px;
    text-align: center;
}

.footer__logo img {
    width: 335px;
}

.footer__data {
    font-weight: 500;
    line-height: 1.875;
}

.footer__data p {
    margin-top: 0
}

.footer__copyright {
    font-size: 1.4rem;
    font-weight: 500;
    background-color: #000;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}

.footer-scroll {
    background-color: #7E6E66;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    position: absolute;
    bottom: 0;
    right: 0;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-scroll:hover {
    opacity: 0.9;
}

.footer-scroll__icon {
    display: block;
    width: 0;
    height: 0;
    border-bottom: 25px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
}

.footer-scroll__text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    margin: 8px 0 0;
    text-indent: 0.05em;
}

@media screen and (max-width: 767px) {
    .footer-top {
        padding: 50px 0 45px;
    }

    .footer__logo {
        margin: 0 0 30px;
    }

    .footer__logo img {
        width: 240px;
    }

    .footer__data {
        font-size: 1.4rem;
    }

    .footer__copyright {
        font-size: 1.2rem;
        padding: 8px 0;
    }

    .footer-scroll {
        width: 45px;
        height: 45px;
        bottom: 34px;
    }

    .footer-scroll__icon {
        border-bottom: 13px solid #fff;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }

    .footer-scroll__text {
        font-size: 1rem;
        margin: 5px 0 0;
    }
}


/* ---------------------------------------------
*   Top
--------------------------------------------- */
.top-sec {
    position: relative;
    z-index: 0;
}

.top-sec::before {
    content: '';
    display: block;
    height: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(128, 128, 128, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.top-slider .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
}

.top__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.top__message {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 500;
    writing-mode: vertical-rl;
    letter-spacing: 0.05em;
    border: 1px solid #fff;
    padding: 42px 47px;
}

.top-scroll {
    background-color: #fff;
    color: #B68933;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 60px;
    border-radius: 5px 5px 0 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -38px;
    text-decoration: none;
}

.top-scroll__text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    text-indent: 0.03em;
    margin: 0 0 6px;
}

.top-scroll__icon {
    width: 16px;
    height: 20px;
    background-image: url(../img/top/top_arrow_down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (max-width: 767px) {
    .top__message {
        font-size: 2.0rem;
        padding: 15px 15px;
    }

    .top-scroll {
        display: none;
    }
}


/* ---------------------------------------------
*   Corporate Attitudes
--------------------------------------------- */
.attitude-sec {
    padding: 120px 0 0;
    background-image: url(../img/top/attitude_bg.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
}

.attitude__box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 90px 20px 75px;
}

.attitude__box-inner {
    max-width: 790px;
    margin: 0 auto;
}

.attitude-list {
    margin: 0;
    text-align: center;
}

.attitude-list__item + .attitude-list__item {
    margin-top: 30px;
}

.attitude-list dt,
.attitude-list dd {
    margin: 0;
    padding: 0;
}

.attitude-list dt {
    background-color: #1D2A8E;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 auto 20px;
    padding: 6px 0;
    width: 270px;
}

.attitude-list dd {
    font-size: 3rem;
}

.attitude-detail-list {
    background-color: #E9E7E6;
    list-style: none;
    margin: 60px 0 0;
    padding: 50px 20px;
    text-align: center;
}

.attitude-detail-list__item + .attitude-detail-list__item {
    margin-top: 30px;
}

.attitude-detail__title {
    color: #C28C31;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
    margin: 0 0 15px;
}

.attitude-detail__title small {
    font-size: 2.1rem;
    display: block;
    letter-spacing: -0.02em;
    text-indent: -0.02em;
}

.attitude-detail__description {
    color: #1A1311;
    font-weight: 400;
    line-height: 1.8125;
    margin: 0;
}

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

    .attitude__box {
        padding: 40px 20px 35px;
    }

    .attitude-list__item + .attitude-list__item {
        margin-top: 20px;
    }

    .attitude-list dt {
        font-size: 1.5rem;
        margin: 0 auto 12px;
        padding: 5px 0;
        width: 200px;
    }

    .attitude-list dd {
        font-size: 1.8rem;
    }

    .attitude-detail-list {
        margin: 25px 0 0;
        padding: 35px 20px;
        text-align: center;
    }

    .attitude-detail__title {
        font-size: 2rem;
        margin: 0 0 12px;
    }

    .attitude-detail__title small {
        font-size: 1.5rem;
    }

    .attitude-detail__description {
        font-size: 1.4rem;
        text-align: left;
    }
}


/* ---------------------------------------------
*   Greetings
--------------------------------------------- */
.greeting-sec {
    padding: 110px 0;
}

.greeting-row {
    display: flex;
    min-width: 0;
}

.greeting-col--left {
    flex: 0 0 370px;
    margin-right: 6.14%;
}

.greeting-col--right {
    flex: 1 1 auto;
}

.greeting-col--right.is-pc {
    height: auto !important;
}

.greeting-sec__title {
    text-align: left;
    margin-bottom: 20px;
}

.greeting__img-container {
    margin-left: min(calc((100vw - 1140px) / 2 * -1), -20px);
}

.greeting__img-inner {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.greeting__img {
    background-image: url(../img/top/greeting.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 0 10px 10px 0;
    padding-top: 77%;
}

.greeting__message {
    font-weight: 500;
    line-height: 2;
    margin: 0;
}

.greeting__name {
    font-size: 2rem;
    font-weight: 500;
    text-align: right;
    margin: 35px 0 0;
}

.greeting-toggle {
    display: none;
}

.company__prof {
    margin-top: 50px;
    display: flex;
}

.company__prof .company__tbl {
    width: 60%
}

.company__prof .company__gaikan {
    width: 40%;
    padding-left: 50px
}

.company__prof table {
    border-collapse: collapse;
    width: 100%;

}

.company__prof table thead th {
    background: #22232B;
    color: #fff
}

.company__prof table th,
.company__prof table td {
    padding: 10px 20px;
    border: 1px solid #22232B;
    line-height: 1.8
}

.company__prof table th {
    background: #efefef;
    font-weight: 500
}

.company__prof table td iframe {
    margin-top: 15px;
    border: 1px solid #c1c1c1 !important
}

.company__prof table td ul {
    margin: 0;
    padding-left: 1em
}


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

    .greeting-row {
        display: block;
    }

    .greeting-col--left {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .greeting-col--right {
        height: 240px;
        transition: height 0.5s;
        position: relative;
        z-index: 0;
    }

    .greeting-col--right::after {
        content: '';
        display: block;
        height: 150px;
        background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 100%);
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        opacity: 1;
        transition: opacity 0.5s;
    }

    .greeting-col--right.is-active::after {
        opacity: 0;
    }

    .greeting-text-inner {
        overflow: hidden;
        height: 100%;
    }

    .greeting-sec__title {
        text-align: center;
        margin-bottom: 25px;
    }

    .greeting__img-container {
        margin-left: 0;
    }

    .greeting__img-inner {
        max-width: none;
        margin-left: 0;
    }

    .greeting__img {
        border-radius: 0;
        padding-top: 77%;
    }

    .greeting__message {
        font-size: 1.5rem;
    }

    .greeting__name {
        font-size: 1.8rem;
        margin: 25px 0 0;
    }

    .greeting-toggle {
        appearance: none;
        background: #fff;
        border: 1px solid #707070;
        border-radius: 50%;
        display: block;
        width: 45px;
        height: 45px;
        margin: 0 0 0 -22.5px;
        padding: 0;
        position: absolute;
        left: 50%;
        bottom: -35px;
        z-index: 100;
    }

    .greeting-toggle__inner,
    .greeting-toggle__inner::after {
        display: block;
        width: 25px;
        height: 1px;
        background-color: #707070;
        position: absolute;
        user-select: none;
    }

    .greeting-toggle__inner {
        left: 9px;
        top: 50%;
        margin-top: -0.5px;
    }

    .greeting-toggle__inner::after {
        content: '';
        transform: rotate(90deg);
    }

    .greeting-col--right.is-active .greeting-toggle__inner::after {
        display: none;
    }

    .company__prof {
        margin-top: 65px;
        display: block;
    }

    .company__prof .company__tbl {
        width: 100%
    }

    .company__prof .company__gaikan {
        width: 100%;
        max-width: 240px;
        padding-left: 0px;
        margin: 25px auto 0
    }

    .company__prof table {
        border-collapse: collapse;
        width: 100%;
        border-bottom: 1px solid #6a6e89;
    }

    .company__prof table th,
    .company__prof table td {
        display: block;
        width: 100%;
        padding: 10px 10px;
        border: 1px solid #6a6e89;
        border-bottom: none;
        line-height: 1.7;
        font-size: 1.5rem
    }

    .company__prof table th {
        padding: 5px 10px;
    }

    .company__prof table tbody th {
        text-align: left
    }

    .company__prof table td ul {
        margin: 0;
        padding-left: 1.5em
    }

}


/* ---------------------------------------------
*   History of Michiue
--------------------------------------------- */
.history-sec {
    color: #fff;
    background-color: #22232B;
    padding: 125px 0;
}

.history-sec__title {
    margin-bottom: 40px;
}

.history-sec__description {
    margin: 0 0 75px;
}

.history-list {
    position: relative;
    z-index: 0;
}

.history-list::before {
    content: '';
    background-color: #fff;
    display: block;
    width: 1px;
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.history {
    display: flex;
    min-width: 0;
    align-items: flex-start;
}

.history + .history {
    margin-top: 35px;
}

.history-col--year {
    flex: 0 0 130px;
    background-color: #22232B;
    line-height: 1;
    padding: 10px 0 15px;
    margin-right: 8.5%;
}

.history-col--text {
    flex: 1 1 auto;
    letter-spacing: 0.03em;
    padding-top: 10px;
}

.history-col--img {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 0 0 300px;
    margin-left: 30px;
    padding-top: 10px;
    text-align: right;
    position: relative;
    z-index: 0;
}

.history-col--img img {
    width: 240px;
}

.history-col--img img + img {
    margin-top: 15px;
}

.history__img--establishment {
    position: absolute;
    top: 0;
    right: 0;
}

.history__img--establishment img {
    width: 300px;
}

.history__year--western {
    font-size: 5.1rem;
}

.history__year--japanese {
    font-size: 1.5rem;
    margin-top: 15px;
}

.history-block + .history-block {
    margin-top: 25px;
}

.history__title {
    font-size: 2.0rem;
    font-weight: 400;
    margin: 0 0 7px;
}

.history__description {
    line-height: 1.9;
    margin: 0;
    font-size: 1.5rem;
    padding-left: 9px
}

.history__list {
    line-height: 2;
    list-style: none;
    padding-left: 0.75em;
}

.history__list li::before {
    content: '–　';
}

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

    .history-sec__title {
        margin-bottom: 25px;
    }

    .history-sec__description {
        margin: 0 0 35px;
        text-align: left;
    }

    .history-list {
        position: relative;
        z-index: 0;
    }

    .history-list::before {
        display: none;
    }

    .history {
        border-top: 1px solid #fff;
        display: block;
        padding: 25px 0;
    }

    .history + .history {
        margin-top: 0;
    }

    .history-col--year {
        display: flex;
        align-items: flex-end;
        padding: 0;
    }

    .history-col--text {
        padding-top: 0;
        margin: 20px 0 0;
    }

    .history-col--img {
        display: block;
        margin-left: 0;
        padding-top: 0;
    }

    .history-col--img img {
        width: 100%;
        margin-top: 15px;
    }

    .history-col--img img + img {
        margin-top: 15px;
    }

    .history__img--establishment {
        position: static;
    }

    .history__img--establishment img {
        width: 100%;
    }

    .history__year--western {
        font-size: 4rem;
    }

    .history__year--japanese {
        margin-top: 0;
        margin-left: 15px;
        padding-bottom: 3px;
    }

    .history-block + .history-block {
        margin-top: 15px;
    }

    .history__title {
        font-size: 1.8rem;
        margin: 0 0 5px;
    }

    .history__description {
        font-size: 1.4rem;
    }

    .history__list {
        font-size: 1.4rem;
    }
}


/* ---------------------------------------------
*   Our services
--------------------------------------------- */
.service-sec {
    padding: 130px 0 120px;
}

.service-block {
    margin-top: 80px;
}

.service__name {
    font-size: 3.1rem;
    font-weight: 500;
    margin: 0 0 50px;
}

.service__name--funeral {
    margin-bottom: 80px;
}

.service__name--with-border {
    position: relative;
    z-index: 0;
}

.service__name--with-border::before {
    content: '';
    background-color: #22232B;
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
}

.service__name--comunity {
    text-align: right;
}

.service__name-text {
    background-color: #22232B;
    color: #fff;
    display: inline-block;
    padding: 9px 40px;
    text-align: center;
}

.service-slider--main {
    margin-bottom: 3px;
}

.service-slide--main,
.service-slide--thumbnail {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.service-slide--main {
    padding-top: 51.3%;
}

.community-col--slider .service-slide--main,
.cooking-col--slider .service-slide--main {
    padding-top: 65.3%;
}

.service-slide--thumbnail {
    padding-top: 66.67%;
}

.funeral-sec {
    position: relative;
    z-index: 0;
    padding-bottom: 110px;
}

.funeral-sec::before {
    content: '';
    background-color: #F4F4F4;
    position: absolute;
    top: 33px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.funeral_michiue {
    display: flex;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #22232B
}

.funeral_michiue .funeral-card {
    width: 50%
}

.funeral_michiue .michiue_contents {
    width: 50%;
    background: ;
    border-radius: 0 10px 0 0;
    padding: 0 0 0 50px
}

.funeral_michiue .service-slide--main {
    padding-top: 60.3%;

}

.funeral_michiue .funeral-card {
    border-radius: 10px 0 0 0;
}


.funeral-list {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    margin: 0 -25px 60px;
}

.funeral-list__item {
    width: 50%;
    flex: 0 0 50%;
    padding: 0 25px;
    margin-top: 50px;
    box-sizing: border-box;
}

.funeral-list__item:nth-child(-n+2) {
    margin-top: 0;
}

.funeral-card {
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.funeral-card .funeral-card__slider--thumbnail {
    margin-top: 3px
}

.funeral-card__slider--main {
    margin-bottom: 0;
}

.funeral-card__data {
    padding: 25px 30px 30px;
}

.funeral-card__title {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 5px;
}

.funeral-card__title small {
    font-size: 1.6rem;
}

.funeral-card__address {
    font-size: 1.6rem;
    margin: 0 0 7px;
    display: flex;
    align-items: center
}

.funeral-card__address img {
    height: 27px;
    margin-left: 10px
}

.funeral-card__tel {
    display: flex;
    align-items: flex-end;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
}

.funeral-card__tel a {
    text-decoration: none;
    color: #1D2A8E
}

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

.funeral-detail {
    background-color: #fff;
    border: 1px solid #22232B;
}

.funeral-detail__title {
    background-color: #22232B;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    padding: 10px 15px;
}

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

.funeral-detail-list__item {
    padding: 15px 20px;
}

.funeral-detail-list__item + .funeral-detail-list__item {
    border-top: 1px dotted #22232B;
}

.cooking-row {
    display: flex;
    min-width: 0;
}

.cooking-col--text {
    flex: 1 1 auto;
    margin-right: 70px;
}

.cooking-col--slider {
    flex: 0 0 52%;
    width: 52%;
    margin-top: -115px;
}

.cooking__name {
    font-size: 2.3rem;
    font-weight: 500;
    margin: 0;
}

.cooking__description {
    font-weight: 500;
    line-height: 1.75;
    margin: 10px 0 0;
}

.cooking__logo {
    width: 272px;
    margin: 30px 0;
    vertical-align: bottom;
}

.hitoiki__logo {
    margin: 30px 0 30px;
    vertical-align: bottom;
}

.michiue__logo {
    margin: 25px 0 30px;
}

.cooking__data {
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}

.cooking__data img {
    height: 30px;
    width: auto;
    margin-left: 10px;
    padding-bottom: 5px
}

.cooking__data a {
    color: inherit;
    text-decoration: none;
}

.community-row {
    display: flex;
    flex-direction: row-reverse;
    min-width: 0;
}

.community-col--text {
    flex: 1 1 auto;
    margin-left: 70px;
}

.community-col--slider {
    flex: 0 0 52%;
    width: 52%;
}

.community__name {
    font-size: 2.3rem;
    font-weight: 500;
    margin: 0;
}

.community__description {
    font-weight: 500;
    line-height: 1.75;
    margin: 10px 0 0;
}

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

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

    .service__name {
        font-size: 1.8rem;
        margin: 0 0 30px;
    }

    .service__name--funeral {
        margin-bottom: 40px;
    }

    .service__name-text {
        padding: 8px 30px;
    }

    .funeral-sec {
        padding-bottom: 50px;
    }

    .funeral-sec::before {
        top: 21px;
    }

    .funeral_michiue {
        display: block;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .funeral_michiue .funeral-card {
        width: 100%;
        border-radius: 10px 10px 0 0
    }

    .funeral_michiue .michiue_contents {
        width: 100%;
        padding: 20px 0 0;
    }

    .funeral_michiue .service-slide--main {
        padding-top: 60.3%;

    }

    .funeral-list {
        display: block;
        margin: 0 0 30px;
    }

    .funeral-list__item {
        width: 100%;
        padding: 0;
        margin-top: 25px;
    }

    .funeral-list__item:nth-child(2) {
        margin-top: 25px;
    }

    .funeral-card__data {
        padding: 15px 20px 20px;
    }

    .funeral-card__title {
        font-size: 1.8rem;
        margin: 0 0 6px;
    }

    .funeral-card__title small {
        font-size: 1.3rem;
    }

    .funeral-card__address {
        font-size: 1.5rem;
        margin: 0 0 8px;
    }

    .funeral-card__tel {
        font-size: 1.9rem;
    }

    .funeral-card__tel::before {
        width: 15px;
        height: 15px;
        margin-right: 6px;
    }

    .funeral-detail__title {
        font-size: 1.6rem;
        padding: 10px;
    }

    .funeral-detail-list__item {
        font-size: 1.5rem;
        padding: 15px;
    }

    .cooking-row {
        display: block;
    }

    .cooking-col--text {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .cooking-col--slider {
        width: 100%;
        margin-top: 0;
    }

    .cooking__description {
        font-size: 1.5rem;
        margin: 5px 0 0;
    }

    .cooking__logo {
        width: 230px;
        margin: 30px 0;
    }

    .michiue__logo {
        width: 260px;
        margin: 20px 0 25px;
    }

    .community-row {
        display: block;
    }

    .community-col--text {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .community-col--slider {
        width: 100%;
    }

    .community__description {
        font-size: 1.5rem;
        margin: 5px 0 0;
    }
}


/* ---------------------------------------------
*   Recruit
--------------------------------------------- */
.recruit-sec {
    background-color: #E7EBF1;
    padding: 125px 0 110px;
}

.recruit-sec__title {
    margin-bottom: 40px;
}

.recruit-sec__description {
    margin-bottom: 40px;
}

.recruit-tel {
    color: #1D2A8E;
    margin-bottom: 50px;
    text-align: center;
}

.recruit-tel__number {
    width: 416px;
    vertical-align: bottom;
}

.recruit-tel__time {
    margin-top: 15px;
}

.recruit-block {
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 70px;
}

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

.recruit__category {
    color: #22232B;
    font-size: 3.8rem;
    font-weight: 500;
    border-bottom: 3px solid #282E60;
    padding-bottom: 10px;
    margin: 0 0 50px;
}

.recruit__description {
    line-height: 2;
    margin: 0 0 45px;
}

.recruit-img-list {
    display: flex;
    list-style: none;
    min-width: 0;
    margin: 0 -17px 55px;
    padding: 0;
}

.recruit-img-list__item {
    flex: 0 0 33.33%;
    box-sizing: border-box;
    padding: 0 17px;
}

.recruit__img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 66.45%;
}

.recruit-job {
    border: 1px solid #282E60;
}

.recruit-job + .recruit-job {
    margin-top: 25px;
}

.recruit-job__header {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 85px;
    background-color: #F0F4FA;
    position: relative;
    z-index: 0;
}

.recruit-job__header::before {
    content: '';
    background-color: #282E60;
    display: block;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}

.recruit-job__name {
    flex: 1 1 auto;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    padding: 0 30px 0 55px;
    position: relative;
    z-index: 0;
}

.recruit-job__name::before {
    content: '▶︎';
    line-height: 1;
    margin-top: -0.5em;
    position: absolute;
    left: 25px;
    top: 50%;
}

.recruit-job__btn {
    flex: 0 0 85px;
    appearance: none;
    background: #282E60;
    border: none;
    outline: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: opacity 0.25s;
}

.recruit-job__btn:hover {
    opacity: 0.8;
}

.recruit-job__btn-icon,
.recruit-job__btn-icon::before {
    display: block;
    width: 35px;
    height: 5px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -2.5px;
    user-select: none;
}

.recruit-job__btn-icon::before {
    content: '';
    left: 0;
    transform: rotate(90deg);
}

.recruit-job.is-opened .recruit-job__btn-icon::before {
    display: none;
}

.recruit-job__content-container {
    height: 0;
    overflow: hidden;
    transition: height 0.35s;
}

.recruit-job__content {
    line-height: 2;
    padding: 30px;
}

.rec_gaiyo {
    border-collapse: collapse;
    width: 100%;
}

.rec_gaiyo th,
.rec_gaiyo td {
    border: 1px solid #adadad;
    padding: 8px 12px;
    line-height: 1.7;
    font-weight: 400
}

.rec_gaiyo th {
    background: #f0f0f0;
    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 screen and (max-width: 767px) {
    .recruit-sec {
        padding: 50px 0;
    }

    .recruit-sec__title {
        margin-bottom: 25px;
    }

    .recruit-sec__description {
        margin-bottom: 30px;
        text-align: left;
    }

    .recruit-tel {
        margin-bottom: 30px;
    }

    .recruit-tel__number {
        width: 300px;
    }

    .recruit-tel__time {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .recruit-block {
        padding: 30px 20px;
    }

    .recruit-block + .recruit-block {
        margin-top: 40px;
    }

    .recruit__category {
        font-size: 2rem;
        padding-bottom: 6px;
        margin: 0 0 20px;
    }

    .recruit__description {
        font-size: 1.5rem;
        line-height: 1.86;
        margin: 0 0 25px;
    }

    .recruit-img-list {
        display: block;
        margin: 0 0 30px;
    }

    .recruit-img-list__item {
        padding: 0;
    }

    .recruit-img-list__item + .recruit-img-list__item {
        margin-top: 15px;
    }

    .recruit-job + .recruit-job {
        margin-top: 10px;
    }

    .recruit-job__header {
        height: 60px;
    }

    .recruit-job__name {
        font-size: 1.5rem;
        padding: 0 15px 0 43px;
    }

    .recruit-job__name::before {
        left: 15px;
    }

    .recruit-job__category {
        font-size: 1.4rem;
    }

    .recruit-job__btn {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        position: relative;
        z-index: 0;
        cursor: pointer;
        transition: opacity 0.25s;
    }

    .recruit-job__btn-icon,
    .recruit-job__btn-icon::before {
        width: 26px;
        left: 17px;
    }

    .recruit-job__btn-icon::before {
        left: 0;
    }

    .recruit-job__content {
        line-height: 1.86;
        padding: 15px;
    }

    .rec_gaiyo {
        border-bottom: 1px solid #adadad;
    }

    .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
    }

}


/* ---------------------------------------------
*   Contact
--------------------------------------------- */
.contact-sec {
    padding: 125px 0 110px;
}

.contact-sec__title {
    margin-bottom: 40px;
}

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

.contact-form {
    max-width: 955px;
    margin: 0 auto;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.form-table th,
.form-table td {
    padding-bottom: 25px;
    vertical-align: text-top;
}

.form-table th {
    font-weight: 400;
    text-align: left;
    width: 10px;
    white-space: nowrap;
    padding-right: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.form-label.required::after {
    content: '（必須）';
    color: #E00000;
    font-size: 1.3rem;
}

.form-input {
    font-size: 1.6rem;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", " Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
    font-weight: 400;
    background: #F0F4FA;
    border: 1px solid #D0D0D0;
    border-radius: 0;
    box-sizing: border-box;
    height: 40px;
    padding-left: 15px;
}

.form-input--name,
.form-input--zipcode {
    width: 220px;
}

.form-input--tel {
    width: 85px;
}

.form-input--email {
    width: 400px;
}

.form-input--textarea {
    width: 100%;
    height: 150px;
    padding-top: 12px;
    display: block;
}

.form-input--full {
    width: 100%;
}

.form-input::placeholder {
    color: #808080;
    font-size: 1.4rem;
    font-weight: 400;
}

.form-input-group {
    display: flex;
    align-items: center;
}

.form-input-group > * + * {
    margin-left: 15px;
}

.form-btn-container {
    text-align: center;
}

.form-btn {
    appearance: none;
    background: #1D2A8E;
    border: none;
    outline: none;
    padding: 0;
    width: 260px;
    height: 50px;
    cursor: pointer;
    transition: opacity 0.25s;
    color: #fff;
    font-size: 2rem;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", " Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
}

.form-btn:hover {
    opacity: 0.8;
}

.thanks_mv {
    height: 300px;
    background-color: #292c4a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.thanks_mv h1 {
    font-weight: normal
}

.thanks_cont {
    height: calc(100vh - 700px);
    padding: 80px 0 40px;
    text-align: center;
}

.thanks_cont h2 {
    font-weight: 500;
    margin-bottom: 40px
}

.thanks_cont p {
    line-height: 1.9
}

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

    .contact-sec__title {
        margin-bottom: 25px;
    }

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

    .contact-form {
        width: auto;
        padding: 0 20px;
    }

    .form-table {
        margin-bottom: 5px;
    }

    .form-table th,
    .form-table td {
        padding-bottom: 0;
        display: block;
    }

    .form-table th {
        width: 100%;
        white-space: normal;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .form-table td {
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 1.3rem;
        padding: 0;
    }

    .form-label.required::after {
        font-size: 1.1rem;
    }

    .form-input {
        font-size: 1.6rem;
        height: 35px;
        padding-left: 10px;
    }

    .form-input--name {
        flex: 1 1 50%;
        width: 50%;
    }

    .form-input--zipcode {
        width: 100%;
    }

    .form-input--tel {
        flex: 1 1 33.33%;
        width: 33.33%;
    }

    .form-input--email {
        width: 100%;
    }

    .form-input--textarea {
        width: 100%;
        height: 150px;
        padding-top: 10px;
        display: block;
    }

    .form-input--full {
        width: 100%;
    }

    .form-input::placeholder {
        font-size: 1.2rem;
    }

    .form-input-group > * + * {
        margin-left: 5px;
    }

    .form-btn {
        width: 160px;
        height: 34px;
        font-size: 1.6rem;
    }

    .thanks_mv {
        height: 160px;
    }

    .thanks_mv h1 {
        font-size: 2rem;
        margin: 40px 0 0
    }

    .thanks_cont {
        height: calc(100vh - 480px);
        padding: 40px 0 40px;
    }

    .thanks_cont h2 {
        font-size: 1.8rem;
        margin-bottom: 25px
    }

    .thanks_cont p {
        line-height: 1.7;
        font-size: 1.5rem;
        text-align: left
    }
}


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

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


/* ---------------------------------------------
*   村田昴
--------------------------------------------- */
#subaru .container {
    max-width: 1080px;
}

#subaru .sub_mv {
    background-color: #292c4a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;    
}

.subaru_murata {
    padding: 90px 0;
}

.subaru_murata h2 {
    max-width: 800px;
    margin: 0 auto
}

.subaru_poeter {
    max-width: 760px;
    margin: 60px auto 50px
}

.subaru_prof {
    text-align: center;
    font-size: 2rem;
    line-height: 1.8
}

.subaru_insta {
    text-align: center;

}

.subaru_img{
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 40px
}

.subaru_img li {
    margin: 0 15px
}

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


.subaru_murata {
    padding: 45px 0 35px;
}

.subaru_poeter {
    margin: 30px auto
}

.subaru_prof {
    text-align: center;
    font-feature-settings: "palt";
    font-size: 1.6rem;
    line-height: 1.8
}

.subaru_img{
    display: block;
    margin-top: 25px
}

.subaru_img li {
    margin: 15px 0 0 0
}
}


/* ---------------------------------------------
*   追加
--------------------------------------------- */

.banner_wrap ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 40px 0 0 0;
    width: calc(100% + 20px)
}

.banner_wrap ul li {
    width: calc(100% / 2 - 20px);
    margin-right: 20px;
}