@charset "utf-8";

/* TOPへ戻るボタン */
.btn-top {
    display: none;
}

/* タブレット以上 */
@media screen and (min-width:850px) {

    /* 850以下で改行 */
    .br-850 {
        display: none;
    }
}

/* スマホ以上 */
@media screen and (min-width:450px) {

    /* 450以下で改行 */
    .br-450 {
        display: none;
    }
}

/* タブレット以下 */
@media screen and (max-width:850px) {

    .br-pc {
        display: none;
    }

    /* TOPへ戻るボタン */
    .btn-top {
        display: block;
    }

    .pagetop {
        display: none;
        width: 45px;
        height: 45px;
        position: fixed;
        bottom: 30px;
        right: 15px;
        border: none;
        background-color: rgba(116, 108, 137, 0.9);
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        cursor: pointer;
    }

    .pagetop__arrow {
        display: block;
        height: 10px;
        width: 10px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        transform: translateY(20%) rotate(-45deg);
        margin: 0 auto;
    }
}

/*------------- ヘッダー --------------*/

@media screen and (min-width:1023px) {
    .drawer {
        display: none;
    }
}

/* コンテンツ幅 */
@media screen and (min-width:850px) and (max-width:1159px) {
    .header-container {
        width: 94%;
        min-width: 789px;
    }
}

@media screen and (min-width:450px) and (max-width:850px) {
    .header-container {
        width: 92%;
        min-width: 390px;
    }
}

@media screen and (max-width:450px) {
    .header-container {
        width: 92%;
    }
}

@media screen and (max-width:1023px) {

    .nav-global {
        display: none;
    }

    .drawer {
        display: block;
    }

    /*ドロワー*/
    /*ボタン*/
    .drawer__btn {
        position: absolute;
        top: 26px;
        right: 30px;
        z-index: 10002;
        width: 18px;
        height: 22px;
        overflow: hidden;
        cursor: pointer;
    }

    /* ハンバーガー */
    .drawer__btn span {
        display: block;
        width: 18px;
        height: 4px;
        background-color: #707070;
        position: absolute;
        top: 51%;
        left: 120%;
        transition: 0.3s;
        border-radius: 10px;
    }

    .drawer__btn span:nth-of-type(1) {
        transform: translate(-120%, -10px);
    }

    .drawer__btn span:nth-of-type(2) {
        transform: translate(-120%, -50%);
    }

    .drawer__btn span:nth-of-type(3) {
        transform: translate(-120%, 6px);
    }

    /* 閉じる× */
    .drawer__btn.active span:nth-of-type(1) {
        transform: translate(-120%, -50%) rotate(45deg);
    }

    .drawer__btn.active span:nth-of-type(2) {
        transform: translate(100%, -50%);
        opacity: 0;
    }

    .drawer__btn.active span:nth-of-type(3) {
        transform: translate(-120%, -50%) rotate(-45deg);
    }

    .drawer__menu {
        position: fixed;
        top: 77px;
        right: 0;
        z-index: 10001;
        width: 100%;
        height: 100%;
        overflow-y: hidden;
        transition: 0.3s;
        transform: translateX(100%);
        opacity: 0;
    }

    .drawer__menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .drawer__bg {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        width: 100%;
        transition: 0.3s;
        transform: translateX(100%);
        opacity: 0;
        cursor: pointer;
    }

    .drawer__bg.active {
        transform: translateX(0);
        opacity: 1;
    }

    /*ドロワーメニュー*/
    .nav-drawer__list {
        background: rgba(116, 108, 137, 0.85);
        position: relative;
        padding: 60px 30px 500px 30px;
    }

    .nav-drawer__anchor {
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        border-bottom: 1px solid #fff;
        text-align: center;
        padding: 60px 0 10px 0;
    }
}

/*------------- フッター --------------*/

/* コンテンツ幅 */
@media screen and (min-width:850px) and (max-width:1159px) {

    .footer-container__1 {
        width: 94%;
        min-width: 789px;
    }

    .footer-container__2 {
        width: 94%;
        min-width: 789px;
    }
}

@media screen and (min-width:450px) and (max-width:850px) {

    .footer-container__1 {
        width: 92%;
        min-width: 390px;
    }

    .footer-container__2 {
        width: 92%;
        min-width: 390px;
    }
}

@media screen and (max-width:450px) {
    .footer-container__1 {
        width: 92%;
    }

    .footer-container__2 {
        width: 92%;
    }
}

@media screen and (max-width:1023px) {

    .footer {
        padding: 35px 0 100px 0;
    }

    .footer-container__2 {
        display: block;
    }

    .footer-address {
        font-size: 16px;
    }

    .nav-footer {
        display: none;
    }

    .footer-copyright {
        margin-top: 42px;
    }
}

@media screen and (max-width:850px) {
    footer small {
        font-size: 14px;
    }
}

@media screen and (max-width:710px) {
    .footer {
        padding: 35px 0 80px 0;
    }
}

@media screen and (max-width:450px) {
    .footer-copyright {
        margin-top: 40px;
    }
}

/*------------- 子ページ共通 --------------*/

/* コンテンツ幅 */
@media screen and (min-width:850px) and (max-width:1159px) {
    .breadcrumbs {
        width: 94%;
        min-width: 789px;
    }

    article {
        width: 94%;
        min-width: 789px;
    }

    .page-title h2 {
        width: 94%;
        min-width: 789px;
    }
}

@media screen and (min-width:450px) and (max-width:850px) {

    .breadcrumbs {
        width: 92%;
        min-width: 390px;
    }

    article {
        width: 92%;
        min-width: 390px;
    }

    .page-title h2 {
        width: 92%;
        min-width: 390px;
    }
}

@media screen and (max-width:450px) {
    .breadcrumbs {
        width: 92%;
    }

    article {
        width: 92%;
    }

    .page-title h2 {
        width: 92%;
    }
}

@media screen and (max-width:1023px) {
    .page-title h2 {
        font-size: 32px;
    }
}

@media screen and (max-width:850px) {
    .page-title h2 {
        font-size: 32px;
    }
}

/*------------- TOP --------------*/

.link-card__grid__tb {
    display: none;
}

.link-card__grid__sp {
    display: none;
}

/* コンテンツ幅 */
@media screen and (min-width:850px) and (max-width:1159px) {
    .header-container {
        width: 92%;
        min-width: 789px;
    }
}

@media screen and (min-width:450px) and (max-width:850px) {
    .header-container {
        width: 92%;
        min-width: 390px;
    }
}

@media screen and (max-width:450px) {
    .header-container {
        width: 92%;
    }
}

@media screen and (max-width:1159px) {

    /* 背景画像 */
    .section-top__1 {
        background-size: 42%, 42%;
        background-position: bottom 20px left -200px, bottom 30px right;
    }

    .section-top__2 {
        background-size: 45%, 55%, contain;
        background-position: top 210px left -260px, top 280px right -230px, center top 190px;
    }

    /* 本土神社について */
    .link-card__grid {
        display: none;
    }

    .link-card__grid__tb {
        display: block;
    }

    .link-card__grid__tb {
        color: #fff;
        max-width: 1100px;
        width: 94%;
        margin: 0 auto;
        padding-bottom: 175px;
    }

    .link-card__tb {
        display: flex;
    }

    .link-card__img__tb {
        max-width: 550px;
        width: 50%;
        height: auto;
    }

    .link-card__contents__tb {
        max-width: 550px;
        width: 50%;
        height: auto;
        background-color: #746C89;
        text-align: center;
    }

    .link-card__contents__tb img {
        margin-top: 137px;
        margin-bottom: 20px;
    }

    .link-card__contents__tb dt {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 0.065em;
        margin-bottom: 15px;
    }

    .link-card__contents__tb dd {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 40px;
        letter-spacing: 0.065em;
    }

    /* ご祈祷・出張祭典リンク */
    .link-wide__prayer {
        max-width: 1023px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 境内案内リンク */
    .link-wide__guide {
        max-width: 1023px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width:1023px) {

    /* ヘッダー */
    .header-top {
        background-image: url(../img/top-mv__1023.jpg);
    }

    /* 背景画像 */
    .section-top__1 {
        background-size: 46%, 46%;
        background-position: bottom 40px left -200px, bottom 45px right -120px;
    }

    .section-top__2 {
        background-size: 45%, 55%, contain;
        background-position: top 220px left -240px, top 305px right -330px, center top 190px;
    }

    /* 本土神社について */
    .link-card__contents__tb img {
        margin-top: 9.78vw;
        margin-bottom: 1.96vw;
    }

    .link-card__contents__tb dt {
        margin-bottom: 0.98vw;
    }

    .link-card__contents__tb dd {
        margin-bottom: 3.42vw;
    }

    /* 詳しく見るボタン1 */
    .btn-learnmore__1 {
        width: 22.1vw;
        height: 4.6vw;
        line-height: 4.6vw;
    }
}

@media screen and (max-width:850px) {

    .header-top {
        background-image: url(../img/top-mv__850.jpg);
        height: 668px;
    }

    /* 背景画像 */
    .section-top__1 {
        background-size: 30%, 30%;
        background-position: bottom 20px left -10px, bottom 25px right -20px;
    }

    .section-top__2 {
        background-image: url(../img/cloud-left__white.png), url(../img/cloud-right__white.png), url(../img/back_section-top__1__375.jpg);
        background-repeat: no-repeat;
        background-size: 30%, 40%, contain;
        background-position: top 135px left -120px, top 175px right -150px, center top 80px;
    }

    .section-top__2 h2 {
        background-color: #F9F8F7;
    }

    .section-top__1 img {
        width: 51.36px;
        height: auto;
        margin-bottom: 30px;
    }

    .p-prologue {
        font-size: 15px;
        line-height: 35px;
        max-width: 318px;
        padding-bottom: 87.5px;
    }

    .p-prologue__large {
        font-size: 15px;
        font-weight: 900;
    }

    .p-prologue rt {
        font-size: 9px;
        margin-left: 5px;
    }

    .about {
        padding-top: 60px;
    }

    /* 本土神社について */
    .section-top__2 h2 {
        font-size: 26px;
        padding-top: 87.5px;
    }

    .link-card__contents__tb dd {
        font-size: 16px;
    }

    /* セクション３ */
    .section-top__3 {
        margin-top: 60px;
    }

    /* ご祈祷・出張祭典リンク */
    .link-wide__prayer img,
    .link-wide__guide img {
        width: 52.32px;
    }

    .link-wide__prayer img {
        margin-top: 63px;
        margin-bottom: 35px;
    }

    .link-wide__prayer dt {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .link-wide__prayer dd {
        font-size: 16px;
        margin-bottom: 35px;
    }

    /* 境内案内リンク */
    .link-wide__guide {
        margin-bottom: 120px;
    }

    .link-wide__guide img {
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .link-wide__guide p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    /* 詳しく見るボタン2 */
    .btn-learnmore__2 {
        font-size: 16px;
        width: 226px;
        height: 47px;
        line-height: 47px;
    }
}

@media screen and (max-width:710px) {

    /* 本土神社について */
    .link-card__grid__tb {
        display: none;
    }

    .link-card__grid__sp {
        display: block;
    }

    .link-card__grid__sp {

        max-width: 652px;
        width: 92%;
        margin: 0 auto;
        padding-bottom: 175px;
        text-align: center;
    }

    .link-card__img__sp {
        max-width: 652px;
        width: 92%;
        height: auto;
        margin: 0 auto;
    }

    .link-card__contents__sp {
        width: 92%;
        max-width: 652px;
        height: 84.5vw;
        background-color: #746C89;
        text-align: center;
        color: #fff;
        margin: 0 auto;
    }

    .link-card__contents__sp img {
        width: 8.76vw;
        height: auto;
        min-width: 53.39px;
        margin-top: 16vw;
        margin-bottom: 2.81vw;
    }

    .link-card__contents__sp dt {
        font-size: 24px;
        margin-bottom: 1.54vw;
    }

    .link-card__contents__sp dd {
        font-size: 20px;
        margin-bottom: 8vw;
        letter-spacing: 0.065em;
    }

    /* 詳しく見るボタン1 */
    .btn-learnmore__1 {
        font-size: 18px;
        width: 226px;
        height: 47px;
        line-height: 47px;
    }
}

@media screen and (max-width:450px) {

    /* 背景画像 */
    .section-top__1 {
        background-size: 40%, 40%;
        background-position: top 15px left -10px, top -10px right -15px;
    }

    .section-top__2 {
        background-repeat: no-repeat;
        background-size: 35%, 45%, contain;
        background-position: top 125px left -30px, top 185px right -35px, center top 120px;
    }

    /* 本土神社について */
    .link-card__contents__sp img {
        width: 11.8vw;
        margin-top: 16.2vw;
        margin-bottom: 4vw;
    }

    .link-card__contents__sp dt {
        font-size: 4.4vw;
        margin-bottom: 2.44vw;
    }

    .link-card__contents__sp dd {
        font-size: 3.55vw;
        margin-bottom: 6.88vw;
    }

    /* 詳しく見るボタン1 */
    .btn-learnmore__1 {
        font-size: 3.55vw;
        width: 50.2vw;
        height: 10.4vw;
        line-height: 10.4vw;
    }

    /* ご祈祷・出張祭典リンク */
    .link-wide__prayer {
        margin-bottom: 95px;
    }

    /* 境内案内リンク */
    .link-wide__guide {
        margin-bottom: 140px;
    }
}


@media screen and (min-width:2000px){
    .section-top__2 {
        background-image: url(../img/cloud-left__white.png), url(../img/cloud-right__white.png), url(../img/back_section-top__1__2000.png );
    }
}




/*------------- 御由緒 --------------*/

@media screen and (max-width:1023px) {

    .article-history {
        margin: 90px auto 128px auto;
    }

    .article-history dt {
        font-size: 20px;
    }

    .article-history dd {
        font-size: 16px;
    }

    .sarutahiko dd {
        margin-left: 80px;
    }

    .article-history address p {
        margin-bottom: 12px;
        line-height: 30px;
        font-size: 16px;
    }

    .niwatsuhi dd {
        margin-top: 70px;
    }
}

@media screen and (max-width:450px) {

    .article-history dt {
        font-size: 16px;
    }

    .sarutahiko dd {
        margin-left: 0;
    }

    .br-niwatsuhi {
        margin-left: 45px;
    }

    .br-address {
        margin-left: 115px;
    }
}

/*------------- 摂社・末社 --------------*/

/* table幅変更 */
@media screen and (max-width:1159px) {
    .table-setumatusya table {
        width: 94%;
    }

    .table-setumatusya tr td:first-child {
        width: 42%;
    }
}


@media screen and (max-width:850px) {

    .tr-pc {
        display: none;
    }

    .table-setumatusya th,
    .table-setumatusya td {
        display: block;
    }

    .table-setumatusya {
        max-width: 782px;
        width: 100%;
    }

    .table-setumatusya tr td:first-child {
        width: auto;
    }

    .td-shrine {
        background-color: rgba(151, 143, 173, 0.3);
    }

    .table-setumatusya td {
        font-size: 16px;
    }

    .td-shrine {
        padding-left: 20px;
    }

    .td-deity {
        padding-left: 10px;
    }
}

@media screen and (max-width:450px) {

    .td-deity__small {
        font-size: 14px;
    }
}

/*------------- 祭典神事 --------------*/

@media screen and (max-width:1023px) {

    .event-list__date {
        font-size: 16px;
        width: 176px;
    }

    .event-list__title {
        height: 72px;
        font-size: 20px;
        line-height: 72px;
    }

    .event-list__title__furigana {
        line-height: 20px;
        padding-block: 16px;
    }

    .event-list__title__small {
        font-size: 16px;
    }

    .event-list__contents {
        width: 515px;
        font-size: 16px;
    }
}

@media screen and (max-width:850px) {

    .article-events {
        margin: 90px auto 140px auto;
    }

    .event-list {
        display: block;
    }

    .event-list__date {
        width: 300px;
        margin: 0 auto 30px auto;
    }

    .event-list__title {
        margin: 0 auto 20px auto;
    }

    .event-list__contents {
        font-size: 15px;
        width: 67%;
        margin: 0 auto;
    }

    .article-events h3 {
        text-align: center;
    }
}

@media screen and (max-width:450px) {
    .event-list__contents {
        font-size: 16px;
        width: 82%;
    }
}

/*------------- 境内案内 --------------*/

@media screen and (min-width:450px) {
    .guide-map__illustration__450 {
        display: none;
    }
}

@media screen and (max-width:1159px) {

    /* 画像サイズ変更 */
    .guide-img img {
        width: 42.9vw;
        max-width: 498px;
        min-width: 190px;
    }

    .guide-container {
        margin-top: 160px;
        margin-bottom: 180px;
    }

    /* Googleマップ */
    .google-map {
        max-width: 1097px;
        width: 94%;
    }

    iframe {
        width: 100%;
        height: 485px;
    }

    .guide-access {
        max-width: 1097px;
        width: 94%;
        margin: 0 auto;
    }
}

@media screen and (max-width:1023px) {

    .guide-map__illustration {
        max-width: 964px;
        width: 100%;
    }

    /* 番号 */
    .smooth_scroll img {
        width: 4.73vw;
    }

    .guide-map a:nth-child(1) {
        left: 38.8%;
        top: 66.8%;
    }

    .guide-map a:nth-child(3) {
        left: 44.8%;
        top: 22.0%;
    }

    .guide-map a:nth-child(5) {
        left: 35.8%;
    }

    .guide-map a:nth-child(6) {
        left: 53.0%;
    }

    .guide-map a:nth-child(7) {
        left: 19.3%;
    }

    .guide-map a:nth-child(9) {
        left: 57.4%;
        top: 49.7%;
    }

    .guide-map a:nth-child(10) {
        left: 81.5%;
        top: 76.1%;
    }

    .guide-map a:nth-child(11) {
        left: 23.9%;
        top: 51.8%;
    }

    .guide-map a:nth-child(12) {
        left: 16.4%;
        top: 45.9%;
    }

    .guide-map a:nth-child(13) {
        left: 33.5%;
        top: 59.5%;
    }

    .guide-map a:nth-child(14) {
        left: 76.3%;
        top: 81.5%;
    }

    .guide-map a:nth-child(15) {
        left: 75.8%;
        top: 7.2%;
    }

    /* Googleマップ */
    .google-map {
        max-width: 964px;
        width: 94%;
    }

    iframe {
        width: 100%;
        height: 485px;
    }

    /* アクセス */
    .guide-access {
        max-width: 964px;
        width: 94%;
        margin: 0 auto;
    }

    .guide-access th {
        font-size: 20px;
    }

    .guide-access td {
        font-size: 16px;
    }
}

@media screen and (max-width:850px) {

    /* 地図イラスト */
    .guide-map__illustration {
        max-width: 782px;
        width: 100%;
    }

    /* 番号 */
    .smooth_scroll img {
        width: 3.54vw;
    }

    .guide-map a:nth-child(1) {
        left: 39.2%;
        top: 67%;
    }

    .guide-map a:nth-child(2) {
        left: 19.4%;
        top: 71%;
    }

    .guide-map a:nth-child(3) {
        left: 45.5%;
        top: 21.3%;
    }

    .guide-map a:nth-child(4) {
        left: 16.5%;
        top: 32.9%;
    }

    .guide-map a:nth-child(5) {
        left: 36.4%;
        top: 14.2%;
    }

    .guide-map a:nth-child(6) {
        left: 54.0%;
        top: 14.2%;
    }

    .guide-map a:nth-child(7) {
        left: 19.7%;
        top: 20.2%;
    }

    .guide-map a:nth-child(8) {
        left: 26.2%;
        top: 25.5%;
    }

    .guide-map a:nth-child(9) {
        left: 58%;
        top: 49.9%;
    }

    .guide-map a:nth-child(10) {
        left: 82.2%;
        top: 75.1%;
    }

    .guide-map a:nth-child(11) {
        left: 24.6%;
        top: 52%;
    }

    .guide-map a:nth-child(12) {
        left: 17%;
        top: 46%;
    }

    .guide-map a:nth-child(13) {
        left: 34%;
        top: 58%;
    }

    .guide-map a:nth-child(14) {
        left: 76.8%;
        top: 80.5%;
    }

    .guide-map a:nth-child(15) {
        left: 76%;
        top: 6.8%;
    }

    /* 画像サイズ変更 */

    .guide-img-container p {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .guide-container {
        margin-top: 90px;
        margin-bottom: 145px;
        row-gap: 30px;
    }

    .guide-img img {
        width: 40vw;
        min-width: 190px;
    }


    /* Googleマップ */
    .google-map {
        max-width: 782px;
        width: 100%;
    }

    iframe {
        width: 100%;
        height: 485px;
    }

    /* アクセス */
    .guide-access {
        width: 100%;
        display: block;
    }

    .guide-access__1 {
        width: 100%;
        margin-bottom: 95px;
    }

    .guide-access__2 {
        width: 100%;
    }

    .guide-access th {
        font-size: 20px;
    }

    .guide-access td {
        font-size: 16px;
    }
}

@media screen and (max-width:450px) {

    /* 地図イラスト */
    .guide-map__illustration {
        display: none;
    }

    .guide-map__illustration__450 {
        display: block;
        max-width: 414px;
        width: 100%;
    }

    /* 番号 */
    .smooth_scroll img {
        width: 5.3vw;
    }

    .guide-map a:nth-child(1) {
        left: 38.4%;
        top: 69.5%;
    }

    .guide-map a:nth-child(2) {
        left: 21.5%;
        top: 71%;
    }

    .guide-map a:nth-child(3) {
        left: 44.5%;
        top: 22%;
    }

    .guide-map a:nth-child(4) {
        left: 16.5%;
        top: 36%;
    }

    .guide-map a:nth-child(5) {
        left: 35.5%;
        top: 17%;
    }

    .guide-map a:nth-child(6) {
        left: 52.8%;
        top: 17%;
    }

    .guide-map a:nth-child(7) {
        left: 18.5%;
        top: 23%;
    }

    .guide-map a:nth-child(8) {
        left: 24.5%;
        top: 28%;
    }

    .guide-map a:nth-child(9) {
        left: 56.7%;
        top: 53%;
    }

    .guide-map a:nth-child(10) {
        left: 81%;
        top: 78%;
    }

    .guide-map a:nth-child(11) {
        left: 24%;
        top: 52.5%;
    }

    .guide-map a:nth-child(12) {
        left: 14%;
        top: 47.5%;
    }

    .guide-map a:nth-child(13) {
        left: 35.5%;
        top: 57%;
    }

    .guide-map a:nth-child(14) {
        left: 78%;
        top: 83%;
    }

    .guide-map a:nth-child(15) {
        left: 79%;
        top: 9%;
    }

    .guide-img-container p {
        margin-top: 12px;
    }

    /* 写真 */
    .guide-container {
        display: block;
    }

    .guide-img img {
        width: 92vw;
        max-width: 414px;
    }

    /* 写真ズーム */
    .zoomimg {
        max-width: 92%;
        max-height: 85%;
        top: 50%;
        left: 50%;
    }

    /* Googleマップ */
    .google-map {
        max-width: 414px;
        width: 100%;
    }

    iframe {
        width: 100%;
        height: 485px;
    }
}


/*------------- ご祈祷・出張祭典 --------------*/

@media screen and (max-width:1023px) {

    .article-prayer ul {
        font-size: 14px;
        line-height: 24px;
        padding: 50px 100px 50px 120px;
    }

    .prayer-explanation {
        font-size: 16px;
        line-height: 24px;
    }

    .prayer-tel {
        font-size: 18px;
    }

    .prayer-reservation {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 50px;
    }

    .article-prayer table {
        width: 40%;
    }

    .article-prayer th {
        font-size: 20px;
    }

    .article-prayer td {
        font-size: 16px;
        height: 120px;
        border-top: 1px solid #707070;
        border-bottom: 1px solid #707070;
        vertical-align: middle;
        text-align: center;
    }
}

@media screen and (max-width:850px) {

    .article-prayer {
        margin: 90px auto 140px auto;
    }

    .article-prayer h3 {
        font-size: 16px;
        text-align: center;
    }

    .article-prayer ul li {
        padding-right: 10px;
    }

    .article-prayer ul {
        padding: 20px 5px 20px 15px;
    }

    .prayer-price {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .article-prayer table {
        width: 100%;
    }

    .prayer-price__1 {
        margin-bottom: 75px;
    }
}

@media screen and (max-width:450px) {
    .prayer-reservation__address {
        margin-left: 50px;
    }
}