@charset "utf-8";
/*
Theme Name: 三河別院
Description: 三河別院様用のテンプレートです
Version: 1.0
Author: Ryuya Yamada
*/

/* reset.css */
@import url('css/destyle.css');
@import url('css/destyle.min.css');


/* =========================
common
========================= */
:root {
    --primary-black: #273201;
    --primary-white: #f8f8f8;
    --primary-whiteLow: #F7F3E9;
    --primary-whiteNormal: #FFFFFF;
    --primary-gray: #dddddd;
    --primary-grayLow: #A0A0A0;
    --primary-green: #2C7046;
    --primary-orange: #D86632;
    --primary-blue: #536EF7;
    --contentWidth: 88%;
    --contentPadding: 6%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:
        'Zen Old Mincho',
        'Cormorant Garamond';
    font-style: normal;
    color: var(--primary-black, #273200);
    background-color: var(--primary-white, #f8f8f8);
    line-height: 1.5;
}

section {
    scroll-margin-top: 70px;
}

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

.btn {
    color: var(--primary-black, #273200);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    line-height: 1;
    border: 2px solid var(--primary-gray, #dddddd);
    padding: 13px 20px 14px 16px;
    position: relative;
    transition: 0.4s;
    width: 140px;
    height: 38px;
    margin: 0 auto;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 8%;
    height: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.btn.reverse.letter-space:hover {
    background: var(--primary-green);
    color: var(--primary-white);
    letter-spacing: 0.15em;
}

/* common pc */
@media screen and (min-width: 769px) {
    html {
        font-size: 62.5%;
        scroll-behavior: smooth;
    }

    .btn {
        width: 240px;
        height: 52px;
        font-size: 1.4rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

/* pc 769px */

/*===============================
header
===============================*/
.header {
    position: fixed;
    width: 100%;
    height: 63px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 2vw 4.8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-white);
    backdrop-filter: blur(7px);
}

.header__logo-sp {
    width: auto;
    height: 50px;
}

.header__logo-pc {
    display: none;
}

.header__logo {
    opacity: 0.75;
}

/*menu*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 9999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background-color: var(--primary-whiteLow);
    /*動き*/
    transition: all 0.7s ease-in-out;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    /* z-index: 999;  */
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 99999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .5s linear;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primary-black);
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
    width: 50%;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
    width: 40%;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
    width: 30%;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.nav__item {
    color: var(--primary-black);
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 18px;
}

.nav__item--sns {
    margin-top: 42px;
}

.nav__item--sns img {
    width: 106px;
    height: auto;
}

/* header pc */
@media screen and (min-width: 769px) {
    .openbtn {
        display: none;
    }

    .container {
        z-index: 1000;
        position: fixed;
        top: 0;
        left: 0;
        width: 200px;
        height: 100vh;
        border: 1px solid #f0ede8;
        background-color: var(--primary-whiteNormal);
    }

    .header {
        position: initial;
        height: 220px;
        width: auto;
        margin: 0 auto;
        padding: 0;
        background-color: var(--primary-whiteNormal);
    }

    .header>h1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: auto;
        background-color: var(--primary-whiteNormal);
    }

    .header>h1>a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header__logo-pc {
        display: block;
        width: 70%;
        height: auto;
    }

    .header__logo-sp {
        display: none;
    }

    #g-nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
        z-index: 100;
        position: fixed;
        top: 0;
        bottom: 100px;
        left: 0;
    }

    #g-nav ul {
        width: 200px;
        transform: initial;
        top: 42%;

        display: flex;
        flex-flow: column;
    }

    #g-nav li a {
        display: inline-block;
        padding: 0;
        margin-top: 6px;
    }

    .nav__list {
        /* margin-top: 100px; */
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
        white-space: nowrap;
    }

    .nav__item:first-child {
        display: none;
    }

    .nav__item {
        color: var(--primary-black);
        text-align: start;
        font-size: 1.4rem;
        line-height: 1;
    }

    .nav__item--deco {
        position: relative;
        display: inline-block;
        transition: .3s;
    }

    .nav__item--deco::after {
        position: absolute;
        bottom: -5px;
        left: 50%;
        content: '';
        width: 0;
        height: 1px;
        background-color: var(--primary-green);
        transition: .5s;
        transform: translateX(-50%);
    }

    .nav__item--deco:hover::after {
        width: 100%;
    }

    .nav__item:nth-child {
        margin-top: 0;
    }


    /* グローバルメニューの幅分マージン */
    .main {
        margin-left: 200px;
    }

}

/* pc 769px */

/*===============================
footer
===============================*/
.footer {
    position: relative;
    background-color: var(--primary-whiteLow);
    padding: 42px 0 0;
    text-align: center;
}

.pagetop {
    position: absolute;
    top: -38px;
    text-align: center;
    width: 100%;
}

.btn--pagetop img {
    display: inline-block;
    width: 54px;
    height: 54px
}

.btn--pagetop:hover {
    opacity: 0.75;
}

.footer__logo {
    width: 150px;
    margin: 0 auto;
}

.footer__logo:hover {
    opacity: 0.5;
}

.footer__information__txt {
    margin-top: 4px;
    text-align: center;
    font-size: 1.2rem;
}

.footer__information__txt:first-of-type {
    margin-top: 32px;
}

.sns {
    margin-top: 30px;
    text-align: center;
}

.sns img {
    width: 106px;
    height: auto;
}

.sns img:hover {
    opacity: 0.5;
}

.copy {
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .08em;
    padding: 40px 0 14px;
}

.copy small {
    font-family: "Cormorant Garamond";
    font-size: 1rem;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 42px 0 0;
    }

    .pagetop {
        top: 68%;
        padding-left: 86%;
    }

    .btn--pagetop img {
        width: 70px;
        height: 70px
    }

    .footer__group {
        display: flex;
        text-align: center;
        justify-content: space-between;
        width: 91%;
        padding-left: 300px;
    }

    .footer__address {
        display: flex;
        flex-direction: column;
    }

    .footer__logo {
        padding: 0;
        margin-left: 0;
    }

    .footer__information__txt {
        margin-top: 10px;
        text-align: start;
        font-size: 1.6rem;
    }

    .sns {
        margin-top: 0;
        padding-right: 138px;
    }

    .sns img {
        display: none;
    }

    .copy {
        font-family: "Cormorant Garamond";
        font-size: 1rem;
        line-height: 1;
        padding: 60px 0 40px 200px;
    }

    .copy small {
        font-size: 1.2rem;
    }

}

/* pc 769px */

/*===============================
loading
===============================*/
.loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

.loading.is-active {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    width: 50%;
    text-align: center;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.loading-animation.is-active {
    opacity: 1;
    visibility: visible;
}

/* loading pc */
@media screen and (min-width: 769px) {
    .loading-animation {
        width: 22%;
    }

}

/* pc 769px */

/*===============================
fadeIn
===============================*/
.fadeIn {
    transition: 1s ease-in-out;
    transform: translateY(10px);
    opacity: 0;
}

.fadeIn.animated {
    transform: translateY(0);
    opacity: 1;
}

.fadeIn--2 {
    transition: 0.4s ease-in-out;
    transform: translateY(30px);
    opacity: 0.4;
}

.fadeIn--2.animated {
    opacity: 1;
}


/*===============================
article header
===============================*/
.article__header {
    position: relative;
}

.slider--pc {
    display: none;
}

/* spスライドショー */
.slider--sp {
    width: 100%;
    margin-top: 63px;
}

.items {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 150%;
}

.item-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}

.current {
    opacity: 1;
}

img {
    height: 100%;
    object-fit: cover;
}

/* スクロールダウン */
/* スクロールダウンの位置 */
.scroll {
    position: absolute;
    right: 34px;
    bottom: 116px;
    writing-mode: vertical-rl;
    font-size: 1.4rem;
    color: var(--primary-whiteLow);
    font-family: Cormorant Garamond;
}

/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 3s infinite;
    background-color: var(--primary-whiteLow);
    bottom: -116px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
}

/* 線の背景色 */
.scroll::after {
    background-color: var(--primary-grayLow);
    bottom: -116px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/* article header pc */
@media screen and (min-width: 769px) {
    .slider--sp {
        display: none;
        margin-top: 0;
    }

    /* pcスライドショー */
    .slider--pc {
        display: block;
    }

    .slider--pc {
        width: 100%;
    }

    .items {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-bottom: 45.8%;
    }

    .item-pc {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.6s ease-in-out;
    }

    .current {
        opacity: 1;
    }

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

    .scroll {
        right: 60px;
        bottom: 116px;
        font-size: 1.6rem;
    }

    .scroll span {
        position: absolute;
        left: -11px;
        bottom: 62px;
    }

    .scroll::before {
        height: 160px;
        width: 1px;
    }

    .scroll::after {
        height: 160px;
        width: 1px;
    }

}

/* pc 769px */

/*===============================
news
===============================*/
.section--news {
    margin: 20px 6%;
    padding: 10px 4% 20px;
    background-color: var(--primary-whiteNormal);
    text-align: center;
}

.topic__news {
    position: relative;
    font-size: 1.6rem;
}

.topic__news::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    display: inline-block;
    width: 90px;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--primary-gray);
}

.box--latest__content {
    margin-top: 20px;
    font-size: 1.4rem;
}

.box--latest__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.box--latest__item__time {
    color: var(--primary-grayLow);
    width: 65px;
    text-align: start;
}

.box--latest__item__title {
    text-align: start;
}

.btn--news {
    margin-top: 20px;
    width: 140px;
    height: 38px;
}

/* news pc */
@media screen and (min-width: 769px) {
    .section--news {
        padding: 54px 20%;
        margin: 0;
        background-color: var(--primary-whiteNormal);
        display: flex;
        align-items: flex-start;

        flex-direction: column;
    }

    .topic__news {
        position: relative;
        font-size: 2rem;
    }

    .topic__news::after {
        content: '';
        position: absolute;
        left: 100%;
        bottom: 17px;
        display: inline-block;
        width: 83px;
        height: 3px;
        background-color: var(--primary-gray);
        transform: rotate(90deg);
    }

    .box--latest__content {
        margin: 0 0 0 100px;
    }

    .box--latest__item {
        display: flex;
        align-items: flex-start;
        margin-top: 10px;
        gap: 30px 0;
    }

    .box--latest__item:hover {
        opacity: 0.75;
    }

    .box--latest__item:first-of-type {
        margin-top: 0;
    }

    .box--latest__item__time {
        color: var(--primary-grayLow);
        width: 90px;
        text-align: start;
        font-size: 1.6rem;
    }

    .box--latest__item__title {
        font-size: 1.6rem;
        text-align: start;
        padding-left: 10px;
    }

    .news__group {
        display: flex;
        align-items: center;
        margin: 0 auto;
    }

    .btn--news {
        margin-top: 40px;
        width: 240px;
        height: 52px;
        font-size: 1.4rem;
    }

}

/* pc 769px */

/*===============================
about
===============================*/
.section--about {
    padding: 60px 0 100px;
}

.topic__about {
    color: var(--primary-green);
    writing-mode: vertical-rl;
    letter-spacing: 0.22em;
    font-size: 2rem;
    line-height: 1.7;
    font-weight: 500;
    width: auto;
    margin: 0 auto;
    font-feature-settings: "pkna";
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.mainCaption {
    width: 80%;
    margin: 40px auto 22px;
}

.mainCaption__txt {
    text-align: start;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* about pc */
@media screen and (min-width: 769px) {
    .section--about {
        padding: 160px 0 0;
        margin-bottom: 200px;
    }

    .topic__about {
        color: var(--primary-green);
        writing-mode: horizontal-tb;
        width: 100%;
        text-align: center;
        letter-spacing: 0.28em;
        font-size: 2.4rem;
        font-weight: 700;
    }

    .topic__about .spBr {
        display: none;
    }

    .mainCaption {
        width: 80%;
        margin: 40px auto;
    }

    .mainCaption__txt {
        margin-top: 60px;
        text-align: center;
        font-size: 1.8rem;
        line-height: 2.2;
    }

    .btn--about {
        margin-top: 60px;
    }

}

/* pc 769px */

/*===============================
tour
===============================*/
.section--tour {
    padding: 0 0 120px;
}

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

.tour__img--pc {
    display: none;
}

.tour__list {
    margin: 15px auto 0;
    width: 88%;
    text-align: center;
}

.tour__item {
    margin-top: 60px;
}

.tour__item img {
    width: 100%;
    height: auto;
}

.tour__title {
    margin-top: 20px;
    font-size: 1.8rem;
}

.tour__item:nth-child(3) {
    width: 75%;
    margin: 60px auto;
}

.tour__item:nth-child(4) {
    width: 75%;
    margin: 60px auto;
}

.tour__txt {
    margin: 10px auto 0;
    text-align: start;
    width: 90%;
    font-size: 1.4rem;
}

.tour__txt--vt {
    margin: 10px auto 0;
    text-align: start;
    width: 100%;
    font-size: 1.4rem;
}

/* tour pc */
@media screen and (min-width: 769px) {
    .section--tour {
        padding-bottom: 280px;
    }

    .tour__img--pc {
        display: block;
    }

    .tour__img--sp {
        display: none;
    }

    .tour__list {
        margin: 120px auto 0;
        width: 88%;
    }

    .tour__list img {
        width: 60%;
        height: auto;
    }

    .tour__item {
        margin-top: 100px;
    }

    .tour__title {
        font-size: 2.4rem;
        margin-top: 14px;
    }

    .tour__item:nth-child(3) {
        width: 50%;
        margin-top: 100px;
        display: flex;
        align-items: center;
        gap: 35px;
    }

    .tour__item:nth-child(4) {
        width: 51%;
        margin-top: 100px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 35px;
    }

    .tour__txt {
        text-align: center;
        width: 90%;
        font-size: 1.8rem;
    }

    .tour__txt--vt {
        margin: 10px auto;
        text-align: start;
        width: 280px;
        font-size: 1.8rem;
    }

    .item--vt {
        flex-direction: column;
    }

}

/* pc 769px */

/*===============================
event
===============================*/
.section--event {
    padding: 0 0 80px;
}

.topic__event {
    color: var(--primary-whiteNormal);
    position: absolute;
    padding: 8px 10px;
}

.event__group img {
    width: 100%;
}

.event__img--pc {
    display: none;
}

.event__txt {
    padding: 16px var(--contentPadding) 22px;
    font-size: 1.4rem;

}

/* event pc */
@media screen and (min-width: 769px) {
    .section--event {
        padding: 20px var(--contentPadding) 120px;

    }

    .topic__event {
        writing-mode: vertical-rl;
        text-align: center;
        font-size: 3.6rem;
        font-weight: 700;
        position: absolute;
        top: 86px;
        left: 80px;
        height: 324px;
    }

    .event__group {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .event--bg {
        width: 50%;
    }

    .event__group img {
        width: 100%;
    }

    .event__img--sp {
        display: none;
    }

    .event__img--pc {
        display: block;
    }

    .event__detail {
        width: 50%;
    }

    .event__txt {
        font-size: 2rem;
        padding: 0;
    }

    .btn--event {
        margin-top: 20px;
    }


}

/* pc 769px */

/*===============================
other
===============================*/
.section--other {
    padding: 60px var(--contentPadding) 120px;
    background-color: var(--primary-whiteLow);
}

.other--each {
    margin-top: 30px;
    background-color: var(--primary-white);
    padding: 24px 4% 36px;
    background-color: var(--primary-white);
    box-shadow: 0px 20px 25px 3px rgba(0, 0, 0, 0.08);
}

.topic__other {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 30px;
}

.topic__other:first-of-type {
    margin-top: 0px;
}

.other__group {
    text-align: center;
    margin-top: 14px;
}

.other__group img {
    width: 88%;
}

.other__txt {
    margin-top: 14px;
    text-align: start;
}

.other__txt--list {
    margin-top: 6px;
    text-align: start;
}

.other__item {
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em;
}

.other__item--space {
    margin-top: 6px;
}

.other__item--sl {
    text-align: start;
    font-size: 1.1rem;
    margin-top: 6px;
    text-indent: -1em;
    padding-left: 1.3em;
}

.other__txt {
    font-size: 1.4rem;
}

/* other pc */
@media screen and (min-width: 769px) {
    .section--other {
        padding: 80px 20% 120px;
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    .other--each {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

    .topic__other {
        font-size: 2rem;
        margin-top: 0px;
    }

    .other__group {
        display: flex;
        flex-direction: column;
        margin-top: 22px;
    }

    .other__group img {
        margin-top: 0;
        width: 330px;
        height: 220px;
    }

    .other__txt--list {
        margin-top: 12px;
    }

    .other__txt {
        margin-top: 30px;
        width: 330px;
        font-size: 1.8rem;
    }

    .other__item {
        font-size: 1.8rem;
        text-indent: -1em;
        padding-left: 1em;
    }

    .other__item--space {
        margin-top: 12px;
    }

    .other__item--sl {
        text-align: start;
        font-size: 1.4rem;
        margin-top: 10px;
        text-indent: -1em;
        padding-left: 1.4em;
        width: 330px;
    }

}

/* pc 769px */

/*===============================
access
===============================*/
.section--access {
    padding: 40px var(--contentPadding) 120px;
}

.topic__access {
    text-align: center;
    font-size: 2rem;
}

.block--map {
    margin-top: 15px;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    /*16:9の比率にしたい場合、9/16=56.25%*/
}

.block--map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.block--traffic {
    padding: 20px 2%;
    background: var(--primary-whiteNormal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.block--traffic__ttl {
    text-align: center;
    font-size: 1.4rem;
    width: 67px;
    border-right: 1px solid var(--primary-gray);
    padding-right: 6px;
    height: 52px;
    display: flex;
    align-items: center;
    word-break: keep-all;
}

.block--traffic__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 8px;
}

.block--traffic__txt {
    font-size: 1.4rem;
}

.block--worship {
    margin: 30px auto 0;
    width: 80%;
    flex-direction: column;
}

.worship__ttl {
    text-align: center;
    font-size: 1.4rem;
    position: relative;
    margin-top: 30px;
}

.worship__ttl::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 143px;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--primary-gray);
}

.worship__group--time {
    margin: 20px auto 0;
    width: 130px;
}

.worship__group--recp {
    margin: 20px auto 0;
    width: 130px;
    padding-left: 9px;
}

.worship__txt {
    font-size: 1.4rem;
}

.worship__txt--hondou {
    text-align: center;
}

.worship__txt--sl {
    text-align: start;
    font-size: 1.2rem;
    margin-top: 10px;
    text-indent: -1em;
    padding-left: 1em;
    width: 160px;
}

/* access pc */
@media screen and (min-width: 769px) {
    .section--access {
        padding: 0 var(--contentPadding) 140px;
        margin-top: 80px;
    }

    .topic__access {
        font-size: 2.4rem;
    }

    .block--map {
        width: 60%;
        margin: 24px auto 0;
        padding: 200px;
    }

    .block--traffic {
        padding: 10px 0;
        justify-content: center;
        width: 60%;
        min-width: 560px;
        margin: 0 auto;
    }

    .block--traffic__ttl {
        font-size: 2.4rem;
        height: 90px;
        width: 126px;
    }

    .block--traffic__item {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 50px;
    }

    .block--traffic__txt {
        font-size: 1.8rem;
        position: relative;
        width: 310px;
    }

    .block--traffic__txt::after {
        width: 25px;
        height: 25px;
        left: -40px;
    }

    .worship__vt {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 780px;
        margin: 60px auto 0;
    }

    .block--worship {
        margin: 0;
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .worship__ttl {
        text-align: center;
        font-size: 2.4rem;
        position: relative;
        margin-top: 0px;
    }

    .worship__ttl::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        display: inline-block;
        width: 300px;
        height: 1px;
        transform: translateX(-50%);
        background-color: var(--primary-gray);
    }

    .worship__group--time {
        margin: 30px auto 0;
        width: 208px;
    }

    .worship__group--recp {
        margin: 30px auto 0;
        width: 170px;
    }

    .worship__txt {
        font-size: 1.8rem;
    }

    .worship__txt--sl {
        font-size: 1.6rem;
        width: 210px;
    }

}

/* pc 769px */

/*===============================
article header
===============================*/
.article__header {
    margin-top: 63px;
}

.mainImg--sp {
    width: 100%;
}

.mainImg--pc {
    display: none;
}

/* .article__header pc */
@media screen and (min-width:769px) {
    .article__header {
        margin-top: 0px;
    }

    .mainImg--sp {
        display: none;
    }

    .mainImg--pc {
        display: block;
        width: 100%;
    }

}

/* pc 769px */

/*==========================
news
==========================*/
.news {
    margin-top: 60px;
}

.news__item {
    padding: 0 var(--contentPadding) 60px;
    position: relative;
}

.news__item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: inline-block;
    width: 88%;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--primary-gray);
}

.news__img {
    text-align: center;
}

.news__img img {
    width: 200px;
    height: auto;
}

.news__img--open {
    min-height: 100vh;
}

.news__box {
    margin-top: 30px;
}

.news__box time {
    color: var(--primary-grayLow);
    font-size: 1.1rem;
}

.news__box--ttl {
    margin-top: 5px;
    font-size: 1.6rem;
    text-decoration: underline var(--primary-black) 1px;
    text-underline-offset: 5px;
}

.news__box--txt {
    margin-top: 20px;
    font-size: 1.4rem;
    position: relative;
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.news__box--txt a {
    color: var(--primary-orange);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: 94% 82%;
    padding-right: 20px;
}

.news__box--txt a:hover {
    color: var(--primary-green);
}

/* 文中の画像 */
.txt__img {
    width: 300px;
    display: block;
    margin: 0 auto;
}


/* .pagination */
.pagination {
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
}

.pagination__item {
    line-height: 1;
}

.pagination__item a {
    display: block;
    font-size: 1.4rem;
}

.pagination__item:nth-child(3) {
    position: relative;
}

.pagination__item:nth-child(3):after {
    display: block;
    content: '';
    width: 11px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: -15px;
    top: 1px;
}

.pagination__item--current a {
    text-underline-offset: 5px;
}

.pagination__item:last-of-type a {
    color: var(--primary-grayLow);
    font-size: 1.4rem;
}

/* news　pc */
@media screen and (min-width:769px) {
    .news {
        margin: 0px auto;
        padding: 100px 15% 100px;
    }

    .news__item {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        /* padding: 0 var(--contentPadding) 120px; */
        padding: 0 0 120px;

    }

    .news__item::after {
        bottom: 60px;
        width: 80%;
    }

    .news__img img {
        width: 211px;
        height: auto;
        margin-top: 40px;
    }


    .news__img {
        margin: 0 auto;
    }

    .news__img img:hover {
        transform: scale(1.1, 1.1);
        transition: 1s all;
    }

    .news__box {
        margin-top: 0;
        width: 70%;
    }

    .news__box time {
        font-size: 1.8rem;
    }

    .news__box--ttl {
        font-size: 2.4rem;
    }

    .news__box--txt {
        margin-top: 30px;
        font-size: 1.6rem;
    }

    .news__box--txt a {
        background-size: 14px;
        padding-right: 25px;
        background-position: 95% 69%;
    }

    /* .pagination */
    .pagination__item:nth-child(3):after {
        display: block;
        content: '';
        width: 14px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        right: -20px;
        top: 1px;
    }

    .pagination__item {
        line-height: 1;
    }

    .pagination__item a {
        display: block;
        font-size: 2.0rem;
    }

    .pagination__item:last-of-type a {
        font-size: 2.0rem;
    }

}

/* pc 769px */

/*===============================
article header
===============================*/
.article__header {
    margin-top: 63px;
}

.mainImg--sp {
    width: 100%;
}

.mainImg--pc {
    display: none;
}

/* .article__header pc */
@media screen and (min-width:769px) {
    .article__header {
        margin-top: 0px;
    }

    .mainImg--sp {
        display: none;
    }

    .mainImg--pc {
        display: block;
        width: 100%;
    }

}

/* pc 769px */

/*==========================
event
==========================*/
.event {
    padding: 60px var(--contentPadding) 140px;
}

.jump {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 51px;
    padding: 60px 0 100px 24px;
}

.jump--btn {
    font-size: 1.8rem;
    position: relative;
}

.jump--btn:hover {
    opacity: 0.5;
}

.jump-l::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.jump-r::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
}

/* 定期開催行事 */
.reg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reg__box {
    margin-top: 50px;
}

.reg__topic {
    font-size: 2rem;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

.reg__topic::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.reg__box {
    margin-top: 83px;
    border: solid var(--primary-green) 1px;
    padding: 10px;
}

.reg__box:last-child {
    margin-top: 50px;
}

.reg__date {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.4rem;
    border-radius: 5px;
    background: var(--primary-green);
    width: 120px;
    height: 22px;
    padding: 1px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg__ttl {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-top: 10px;
}

.reg__txt {
    font-size: 1.4rem;
    margin-top: 16px;
}

.event__img {
    width: 100%;
    max-width: 261px;
    height: auto;
    margin: 50px auto 0;
}

/* 月ごとの行事 */
.mo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mo__list {
    margin-top: 50px;
}

.mo__topic {
    font-size: 2rem;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

.mo__topic::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.mo__list {
    margin-top: 83px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mo--event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-left: 52px;
}

.mo--event--03::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mo--event--04::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mo--event--07::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mo--event--08::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mo--event--09::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mo--event--11::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mo--event--12::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 34%;
    transform: translateY(-50%);
}

.mo--event__name {
    font-size: 1.6rem;
}

.date {
    font-size: 1.2rem;
}

.mo--event__txt {
    margin-top: 14px;
    font-size: 1.4rem;
    padding-left: 52px;
}

.supp {
    font-size: 1.2rem;
    margin-top: 40px;
}

.supp__txt {
    padding-left: 1em;
    text-indent: -1em;
}

.supp__txt a {
    color: var(--primary-orange);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: 94% 82%;
    padding-right: 20px;
}

.supp__txt a:hover {
    color: var(--primary-green);
}

/* event pc */
@media screen and (min-width:769px) {
    .event {
        padding: 100px var(--contentPadding) 160px;
    }

    .jump {
        gap: 100px;
    }

    .jump--btn {
        font-size: 2.4rem;
    }

    .jump-l::after {
        width: 26px;
        height: 26px;
        left: -35px;
    }

    .jump-r::after {
        width: 26px;
        height: 26px;
        left: -35px;
    }

    /* 定期開催行事 */
    .reg {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reg__group {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-top: 150px;
        gap: 100px;
    }

    .reg__box {
        margin-top: 0px;
        border: solid var(--primary-green) 1px;
        padding: 15px 22px;
    }

    .reg__box:last-child {
        margin-top: 0px;
    }

    .reg__topic {
        font-size: 2.4rem;
        margin-top: 150px;
    }

    .reg__topic::after {
        width: 40px;
        height: 40px;
        top: 54px;
    }

    .reg__date {
        font-size: 1.6rem;
        width: 140px;
        height: 30px;
        padding: 1px 5px;
        line-height: 1;
    }

    .reg__ttl {
        font-size: 2.4rem;
        margin-top: 14px;
    }

    .reg__txt {
        font-size: 1.6rem;
        margin-top: 6px;
    }

    .event__img {
        max-width: 840px;
        margin-top: 100px;
        text-align: center;
    }

    /* 月ごとの行事 */
    .mo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mo__topic {
        font-size: 2.4rem;
        margin-top: 150px;
    }

    .mo__topic::after {
        width: 40px;
        height: 40px;
        top: 54px;
    }

    .mo__list {
        margin-top: 150px;
        gap: 60px;
    }

    .mo--event {
        padding-left: 117px;
        flex-basis: 130px;
        word-break: keep-all;
    }

    .mo--event--03::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo--event--04::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo--event--07::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo--event--08::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo--event--09::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo--event--11::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo--event--12::after {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .mo__item {
        display: flex;
        align-items: flex-start;
        padding-left: 15%;
    }

    .mo--event__name {
        font-size: 2.4rem;
    }

    .date {
        font-size: 1.6rem;
        width: 130px;
    }

    .mo--event__txt {
        margin-top: 4px;
        font-size: 1.8rem;
        padding-left: 28px;
        width: 60%;
    }

    .supp {
        font-size: 1.8rem;
        margin-top: 50px;
        width: 60%;
    }

    .supp__txt a {
        background-size: 18px;
        background-repeat: no-repeat;
        background-position: 96% 75%;
        padding-right: 30px;
    }

}

/* pc 769px */

/*===============================
article header
===============================*/
.article__header {
    margin-top: 63px;
}

.mainImg--sp {
    width: 100%;
}

.mainImg--pc {
    display: none;
}

/* .article__header pc */
@media screen and (min-width:769px) {
    .article__header {
        margin-top: 0px;
    }

    .mainImg--sp {
        display: none;
    }

    .mainImg--pc {
        display: block;
        width: 100%;
    }

}

/* pc 769px */

/*==========================
about
==========================*/
.about {
    padding: 60px var(--contentPadding) 0;
}

.about__topic--ttl {
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.about__topic--ttl::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.about__topic--txt {
    margin-top: 83px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.about__group {
    margin-top: 40px;
}

.about__ttl {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-green);
}

.about__txt {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.about__img {
    margin-top: 20px;
    text-align: center;
}

/* about　pc */
@media screen and (min-width:769px) {
    .about {
        padding: 100px 10% 120px;
    }

    .about__topic--ttl {
        font-size: 2.4rem;
    }

    .about__topic--ttl::after {
        width: 40px;
        height: 40px;
        top: 54px;
    }

    .about__topic--txt {
        margin-top: 100px;
        font-size: 1.6rem;
        line-height: 1.6;
        text-align: center;
    }

    .about__group {
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about__box {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    .about__group:last-of-type {
        flex-direction: row-reverse;
    }

    .about__ttl {
        text-align: center;
        font-size: 2rem;
    }

    .about__txt {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .about__img {
        margin: 0px;
        width: 500px;
    }

    .about__img img {
        width: 470px;
    }

    .img-1 {
        padding-left: 30px;
    }

    .img-2 {
        padding-right: 30px;
    }

}

/* pc 769px */

/*==========================
history
==========================*/
.history {
    padding: 185px var(--contentPadding);
    position: relative;
    background-size: 200px 45px;
    background-repeat: no-repeat;
    background-position: right 20px top 100px, left 5px top 400px, right 9px bottom 400px, left 5px bottom 100px;
}

.history__topic {
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.history__topic::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.history__list {
    width: fit-content;
    margin: 83px auto 0;
}

.history__item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 0;
}

.history--year {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-basis: 46px;
    max-width: 46px;
    word-break: keep-all;
}

.history--year::before {
    position: absolute;
    top: 0;
    right: -20px;
    content: "";
    display: block;
    width: 2px;
    min-height: 68px;
    height: 64px;
    background: var(--primary-green);
}

.history--year:first-child:before {
    top: 21px;
}

.history__item:last-child .history--year::before {
    display: none;
}

.history--year::after {
    position: absolute;
    top: 15px;
    right: -24px;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
}

.history--ad {
    color: var(--primary-green);
    font-size: 1.6rem;
}

.history--jy {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.history__txt {
    padding-left: 45px;
    font-size: 1.4rem;
}

/* history　pc */
@media screen and (min-width:769px) {
    .history {
        padding: 100px 25% 200px;
        background-size: 600px 136px;
        background-position: right 20px top 100px, left 5px top 480px, right 9px bottom 580px, left 5px bottom 160px;
    }

    .history__topic {
        font-size: 2.4rem;
    }

    .history__topic::after {
        width: 40px;
        height: 40px;
        top: 54px;
    }

    .history__list {
        margin: 70px auto 0;
    }

    .history__item {
        padding: 30px 0;
    }

    .history--year::before {
        right: -58px;
        height: 117px;
        min-height: 130px;
        width: 4px;
    }

    .history--year::after {
        right: -68px;
        width: 26px;
        height: 26px;
    }

    .history--ad {
        font-size: 2.4rem;
    }

    .history--jy {
        font-size: 1.6rem;
    }

    .history__txt {
        padding-left: 117px;
        font-size: 2rem;
    }

}

/* pc 769px */