html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
}

.body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.page01::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/bg-pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 100px min(15%, 180px);
    box-sizing: border-box;
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

address {
  font-style: normal;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 80px min(5.333%, 20px);
    }

    .page01::before {
            background-image: url('../img/bg-sp.png');
    }

}

/* header */
.header01 {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    z-index: 999;
    transition: background-color 0.3s, padding 0.3s;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 35px;
}

/* .header01.is-scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 0 0 20px;
    background: rgba(255,255,255,0);
    box-sizing: border-box;
}

.header-logo {
    text-decoration: none;
    width: min(14.667vw, 176px);
    margin: 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    height: 80px;
}

.header-ul {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-li {
    margin: 0 min(0.8333vw, 10px) 0 0;
}

.header-text1 {
    text-decoration: none;
    color: #383427;
    font-size: min(1.083vw, 13px);
    font-weight: 700;
    margin: 0;
}

.header-text1:hover {
    text-decoration: none;
    color: #50A512;
}

/* .header01.is-scrolled .header-text1 {
 color: #000000;
} */

.header-insta {
    width: 28px;
    margin: 0 min(0.8333vw, 10px);
}

.header-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: min(10vw, 120px);
    height: 50px;
    margin: 0;
    background: #50A512 0% 0% no-repeat padding-box;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: min(1.5vw, 18px);
}

.header-btn2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: min(13.333vw, 160px);
    text-decoration: none;
    background: #383427 0% 0% no-repeat padding-box;
    border-radius: 25px;
    text-align: center;
    color: #ffffff;
    font-size: min(1.5vw, 18px);
    font-weight: 700;
    text-decoration: none;
    height: 50px;
    line-height: 0.8;
}

.header-btn2 ._small {
    white-space: nowrap;
    text-align: center;
    font-size: min(1.167vw, 14px);
    color: #ffffff;
    margin: 0 0 -12px 0;
}

@media screen and (max-width: 960px) {
    .header01 {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
    }

    .nav01 {
        width: 100%;
        height: 50px;
        padding: 0;
        border-radius: 0;
        margin: 0;
    }

    .header-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .header-left ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        width: min(26.667vw,100px);
        margin: 0;
        position: relative;
        z-index: 1001;
        transition: opacity 0.2s ease-in-out;
        /* display: none;
        opacity: 0; */
     }   

    .header-logo.visible {
        display: block;
        opacity: 1;
    }

/* ハンバーガーモーダル */
    .header-text1 {
        font-size: 16px;
        /* padding: 0 20px; */
        margin: 0;
        display: flex;
        font-weight: 700;
        justify-content: space-between;
        box-sizing: border-box;
        color: #383427;
    }

    .header-icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

    .header-icon2 {
        width: 30px;
    }

    .header-modal {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
        /* box-shadow: 0px 1px 6px #00000029; */
    }

    .header-modal.is-active {
        right: 0;
        display: flex;
    }

    .header-ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header-ul2 {
        width: 100%;
        padding: 20px 0;
    }

    .header-img1 {
        margin: 0 15px 0 0;
        padding: 20px 0 0 0;
    }

    .header-li {
        width: 100%;
        border-bottom: 1px solid #F2F2F2;
        padding: 20px 0;
        margin: 0;
        border-right: none;
    }

    .header-li._last {
        border-bottom: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
        background: #383427 0% 0% no-repeat padding-box;
        position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .ham-btn span:nth-of-type(1) {
      width: 30px;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ham-btn span:nth-of-type(2) {
      width: 30px;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ham-btn.is-active span:nth-of-type(1),
    .ham-btn.is-active span:nth-of-type(2) {
      width: 30px;
      left: 10px;
      top: 25px;
      transform: rotate(45deg);
      transform-origin: center;
    }

    .ham-btn.is-active span:nth-of-type(2) {
      transform: rotate(-45deg);
    }

    body.no-scroll {
        overflow: hidden;
    }
}
/* 共通 スクロール位置 見出し */
#news,
#access,
#cguidance,
#features,
#greeting,
#faq,
#overview,
#reservation,
#contact {
    scroll-margin-top: 80px;
}

.common-h2 {
    color: #50A512;
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 40px 0;
    text-decoration: none;
    position: relative;
}

.common-h2-en {
    color: #FE8109;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-decoration: none;
}

.common-h2._wh {
    color: #fff;
}

.common-h2-en._wh {
    color: #fff;
}

.common-h3 {
    color: #383427;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-decoration: none;
}

.common-text1 {
    font-size: 16px;
    color: #383427;
    margin: 0;
    text-decoration: none;
}

.common-text1._center {
    text-align: center;
}

.common-text1._bold {
    font-weight: 700;
}

.common-text1._large {
    font-size: 18px;
}


.common-text1._wh {
    color: #ffffff;
}

@media screen and (max-width: 960px) {
    #news,
    #access,
    #cguidance,
    #features,
    #greeting,
    #faq,
    #overview,
    #reservation,
    #contact {
        scroll-margin-top: 50px;
    }

    .common-h2 {
        font-size: 34px;
    }

    .common-h3 {
        font-size: 22px;
    }
}

/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 20px 0 0 0;
}

.btn-wrapper1._nomargin {
    margin: 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 210px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
    background: #50A512 0% 0% no-repeat padding-box;
    border-radius: 30px;
    cursor: pointer;
    padding: 13px 0;
}

.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-more1._wh {
    background: #FFFFFF 0% 0% no-repeat padding-box;    
    color: #57994E;
}

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

/* 共通 index single archive 404 */
._minheight {
    min-height: 56vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

._error {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}

/* カテゴリー タグ */
/* .cat-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: stretch;
    margin: 0 0 5px 0;
}

.tag-cat-link {
    padding: 3px 10px;
    box-sizing: border-box;
    background: #57994E 0% 0% no-repeat padding-box;
    border-radius: 15px;
}

.cat-link,
.tag-cat-link {
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.12px;
}

.cat-link {
    font-size: 16px;
    color: #57994E;
}

.tag-cat-link {
    font-size: 14px;
    color: #FFFFFF;
}

.cat-wrapper {
    margin: 0 0 20px 0;
}

@media screen and (max-width: 960px) {
    .tag-cat-link {
        font-size: 13px;
    }

    .cat-link {
        font-size: 12px;
    }

} */

/* fv */
.fv {
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    margin: -1px 0 0 0;
}

.fv-movie,
.video-wrapper {
    width: 100%;
}

.fv-title-block {
    position: absolute;
    left: 6.66%;
    bottom: 6.66vw;
}

.fv-h1 {
    width: fit-content;
    font-size: 3.833vw;
    margin: 0 0 0.833vw 0;
    color: #383427;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 0.417vw 1.667vw;
    box-sizing: border-box;
}

.fv-h1 ._green {
    color: #50A512;
}

.fv-text1 {
    font-size: 3.833vw;
    color: #383427;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 0.417vw 1.667vw;
    margin: 0;
}


@media screen and (max-width: 960px) {
    .fv-title-block {
        left: 4%;
        bottom: 5.333vw;
    }
    .fv-h1 {
        font-size: 5.333vw;
        margin: 0 0 2.667vw 0;
    }

    .fv-text1 {
        font-size: 5.333vw;
    }
}

/* movie */
/* .youtube-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

@media screen and (max-width: 960px) {
} */

/* about */
.about {
    background: #F9F7EE 0% 0% no-repeat padding-box;
}

.division-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    margin: 0 0 50px 0;
}

.division-block:last-child {
    margin: 0;
}

@media screen and (max-width: 960px) {
    .archive-block {
        padding: min(2.667vw, 10px);
    }

    .division-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* news */
.news {
    background-image: url('../img/news-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.news-area {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #EFECE4;
    border-radius: 20px;
    padding: min(40px, 3.333vw);
    box-sizing: border-box;
}

.news-block {
    padding: 20px 0;
    border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 960px) {
    .news-area {
        padding: min(20px, 5.333vw);
    }
}

/* access */
.access {
    background: #F9F7EE 0% 0% no-repeat padding-box;
}

.access-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.access-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 0 20px 0;
}

.access-ul li {
    font-size: min(1.667vw, 20px);
    font-weight: 700;
    color: #50A512;
}

.access-ul li ._square {
    background: #EDF6E6 0% 0% no-repeat padding-box;
    border: 1px solid #6BAE3A;
    padding: min(0.25vw, 3px) min(1vw, 12px);
    box-sizing: border-box;
    font-size: min(1.333vw, 16px);
    font-weight: 700;
    color: #50A512;
    margin: 0 10px 0 0;
}

.access-ul li ._orange {
    color: #FE8109;
}

.access-hours table {
    width: 100%;
    border-collapse:collapse;
}

.access-hours thead th,
.access-hours thead td {
    background: #50A512 0% 0% no-repeat padding-box;
    border: 1px solid #6BAE3A;
    height: 50px;
    font-size: min(1.5vw, 18px);
    font-weight: 700;
    color: #FFFFFF;
}

.access-hours tbody th {
    width: 21.25%;
    text-align: center;
    vertical-align: middle;
    background: #EDF6E6 0% 0% no-repeat padding-box;
    border: 1px solid #6BAE3A;
    height: 50px;
    font-size: min(1.5vw, 18px);
    font-weight: 700;
    color: #50A512;
}


.access-hours tbody td {
    width: 11.25%;
    text-align: center;
    vertical-align: middle;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #6BAE3A;
    font-size: min(1.5vw, 18px);
    font-weight: 700;
}

.access-hours {
    margin: 0 0 20px 0;
}

.access-remarks {
    display: grid;
    grid-template-columns: 23fr 377fr;
    margin: 0 0 10px 0;    
}

.access-text1 {
    font-size: 18px;
    font-weight: 700;
    color: #FE8109;
    margin: 0;    
}

._batu {
    font-size: 18px;
    font-weight: 700;
    color: #383427;
    margin: 0;    
}

.map-wrapper {
    margin: 0 0 20px 0;
}

.access-text2 {
    font-size: 16px;
    font-weight: 700;
    color: #50A512;
    margin: 0 0 10px 0;
}

.access-text3 {
    font-size: 16px;
    font-weight: 700;
    color: #FE8109;
    margin: 0 0 10px 0;
}

.access-right address {
    margin: 0 0 20px 0;
}

@media screen and (max-width: 960px) {
    .access-area {
        grid-template-columns: 1fr;
    }

    .access-ul {
        gap: 0.7rem;
    }

    .access-ul li {
        font-size: min(5.333vw, 20px);
    }

    .access-ul li ._square {
        padding: min(0.8vw, 3px) min(3.2vw, 12px);
        font-size: min(4.267vw, 16px);
    }

    .access-hours thead th,
    .access-hours thead td {
        font-size: min(4vw, 15px);
        height: 42px;
    }

    .access-hours tbody th {
        height: 42px;
        font-size: min(4vw, 15px);
    }

    .access-hours tbody td {
        font-size: min(4vw, 15px);
    }

    .access-remarks {
        grid-template-columns: 23fr 312fr;
    }

    ._batu {
        font-size: min(4vw, 15px);
    }

}

/* reservation */
.reservation {
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.reservation-h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #50A512;
    margin: 0 0 3px 0;
}

.reservation-text1 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #383427;
    margin: 0 0 15px 0;
}

.reservation-text2 {
    text-align: center;
    text-decoration: underline;
    font-size: 18px;
    font-weight: 700;
    color: #FE8109;
}

.reservation-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 0 0 40px 0;
}

.reservation-btn1,
.reservation-btn2,
.reservation-btn3 {
    border-radius: 10px;
    height: 80px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
}


.reservation-btn1 {
    background: #50A512 0% 0% no-repeat padding-box;
    font-size: min(1.833vw, 22px);
    color: #FFFFFF;
    line-height: 1.1;
}

.reservation-btn1 img {
    width: min(4.167vw, 50px);
    margin: 0 3px 0 0;
}

.reservation-btn2 {
    background: #FE8109 0% 0% no-repeat padding-box;
    line-height: 0.7;
    text-align: center;
}

.reservation-btn2 img {
    width: min(2.833vw, 34px);
    margin: 0 3px 0 0;
}

.reservation-btn2 ._tel {
    font-size: min(2.417vw, 29px);
    color: #FFFFFF;
}

.reservation-btn2 ._small {
    font-size: 16px;
    color: #FFFFFF;
}

.reservation-btn3 {
    background: #F9F7EE 0% 0% no-repeat padding-box;
    color: #383427;
    font-size: min(1.833vw, 22px);
    line-height: 1.1;
}

.reservation-btn3 img {
    width: min(5.333vw, 60px);
    margin: 0 3px 0 0;
}

.reservation-text3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #383427;
    margin: 0 0 15px 0;
}

.reservation-text4 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #50A512;
}

.reservation-btn-wrapepr {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-btn4 {
    max-width: 320px;
    width: 100%;
    height: 80px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    background: #383427 0% 0% no-repeat padding-box;
    border-radius: 10px;
    line-height: 1;
}

.reservation-btn4 img {
    width: 32px;
    margin: 0 3px 0 0;
}


.reservation-btn4 ._tel {
    font-size: min(2.667vw, 32px);
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.reservation-btn4 ._small {
    font-size: 16px;
    color: #FFFFFF;
}

@media screen and (max-width: 960px) {
    .reservation-area {
        grid-template-columns: 1fr;
    }

    .reservation-btn1 {
        font-size: min(5.867vw, 22px);
    }

    .reservation-btn1 img {
        width: min(13.333vw, 50px);
    }

    .reservation-btn2 {
        background: #FE8109 0% 0% no-repeat padding-box;
        line-height: 0.7;
        text-align: center;
    }

    .reservation-btn2 img {
        width: min(9.067vw, 34px);
    }

    .reservation-btn2 ._tel {
        font-size: min(7.733vw, 29px);
    }

    .reservation-btn2 ._small {
        font-size: min(4.267vw, 16px);
    }

    .reservation-btn3 {
        font-size: min(5.867vw, 22px);
    }

    .reservation-btn3 img {
        width: min(16vw, 60px);
    }

    .reservation-text3,
    .reservation-text4 {
        font-size: min(4.8vw, 18px);
    }

    .reservation-btn4 {
        max-width: 335px;
    }

    .reservation-btn4 img {
        width: min(9.067vw, 34px);
    }


    .reservation-btn4 ._tel {
        font-size: min(8.533vw, 32px);
    }

    .reservation-btn4 ._small {
        font-size: min(4.267vw, 16px);
    }
}

/* guidance */
.guidance-wrapper {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .guidance-wrapper {
        padding: min(5.333vw, 20px);
    }

}

/* features */
.features {
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

/* greeting */
.greeting {
    background: #F9F7EE 0% 0% no-repeat padding-box;
}

.greeting-upper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 0 50px 0;
}


.greeting-img1 {
    margin: 0 0 20px 0;
}

.greeting-text1 {
    color: #50A512;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 3px 0;
}

.greeting-text2 {
    font-size: 24px;
    font-weight: 700;
    color: #383427;
    margin: 0;
}

.greeting-down {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.greeting-down-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
    height: fit-content;
}

.greeting-text3 {
    color: #FE8109;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.greeting-down-block th,
.greeting-down-block td {
    vertical-align: top;
    font-size: 14px;
    color: #383427;
    font-weight: 400;
}
.greeting-down-block th {
    padding: 0 10px 0 0;
}

.greeting-text4 {
    font-size: 14px;
    color: #383427;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .greeting-upper {
        grid-template-columns: 1fr;
    }

    .greeting-img1 {
        max-width: 180px;
        margin: 0 auto 10px auto;
    }

    .greeting-down {
        grid-template-columns: 1fr;
    }

    .greeting-text1,
    .greeting-text2 {
        text-align: center;
    }

    .greeting-down-block {
        padding: min(5.333vw, 20px);
    }
}




/* faq */
.faq {
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.faq-accordion {
    width: 100%;
    padding: 20px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    /* margin: 0 0 40px 0; */
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

.faq-accordion-q {
    background: #50A512 0% 0% no-repeat padding-box;
    font-size: 20px;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
}

.faq-accordion-a {
    background: #FFF2E5 0% 0% no-repeat padding-box;
    font-size: 20px;
    color: #FE8109;
    width: 40px;
    height: 40px;
    border-radius: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
    font-weight: 700;
}

.faq-accordion-head {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 0 10px 0;
    cursor: pointer;
}


.faq-accordion-head::after {
    content: '';
    transform: translateY(-25%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #3C617E;
    border-right: 2px solid #3C617E;
    transition: transform .4s;
    top: 45%;
    right: 6px;
    position: absolute;
}

.faq-accordion[open] .faq-accordion-head::after {
    transform: rotate(225deg);
}

.faq-accordion-body {
    display: flex;
    align-items: center;
}

.faq-accordion-body-content{
    width: 100%;
    /* padding: 15px 0; */
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .faq-accordion {
        padding: min(2.667vw, 10px);
    }
    .faq-accordion-head-img1,
    .faq-accordion-body-img1 {
        width: min(9.333vw, 35px);
        height: min(9.333vw, 35px);
        margin: 0 min(2.133vw, 8px) 0 0;
    }

    .faq-accordion-body-content{
    }

    .faq-accordion-head-text1 {
        width: 80%;
    }
    .faq-accordion-q,
    .faq-accordion-a {
        width: 35px;
        height: 35px;
        font-size: 21px;
    }
}

/* faq archive */
.faq-accordion-head-content p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #383427;
}

.faq-accordion-body-content h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #383427;
}

.faq-accordion-body-content h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #383427;
}

.faq-accordion-body-content h4 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #383427;
}

.faq-accordion-body-content p {
    font-size: 16px;
    line-height: 1.3;
    color: #383427;
     margin: 0 0 20px 0;
}

.faq-accordion-body-content p:last-child {
    margin: 0;
}

.faq-accordion-body-content a,
.faq-accordion-body-content p a {
    text-decoration: underline;
    font-size: 16px;
    color: #50A512;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.faq-accordion-body-content img {
    width: 50%;
}

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


/* overview */
.overview {
    background: #F9F7EE 0% 0% no-repeat padding-box;
}
.company-block {
    padding: 20px 0;
    border-bottom: 1px solid #dddddd;
}

.company-text1 {
    font-size: 16px;
    font-weight: 700;
    color: #50A512;
    margin: 0 0 8px 0;
}

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




/* footer */
.footer {
    background: #383427 0% 0% no-repeat padding-box;
}

.heading._footer {
    padding: 30px min(15%, 180px) ;
}

.footer-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text1 {
    color: #A3A19B;
    font-size: 14px;
    margin: 0;
}

.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
}

.arrow-link {
    width: 50px;
    height: auto;
}

@media screen and (max-width: 960px) {
    .heading._footer {
        padding: 30px min(5.333%, 20px) ;
    }

    .footer-block {
        display: block;
        text-align: center;
    }

    .footer-text1:last-child {
        margin: 10px 0 0 0;
    }

    .cta-fixed {
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 13;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .cta-fixed-link1,
    .cta-fixed-link2 {
        width: 50%;
        height: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }

    .cta-fixed-link1 {
        background: #50A512 0% 0% no-repeat padding-box;
        font-size: min(4.8vw,18px);
        font-weight: 700;
        color: #FFFFFF;
    }

    .cta-fixed-link2 {
        background: #383427 0% 0% no-repeat padding-box;
        font-weight: 700;
        margin: 0;
        line-height: 1;
        text-align: center;
    }

    .cta-fixed-link2 ._tel {
        font-size: min(4.8vw, 18px);
        color: #fff;
    }

    .cta-fixed-link2 ._small{
        font-size: min(3.733vw, 14px);
        color: #fff;
    }

    .arrow-fixed {
        bottom: 60px;
    }
}

/* page02 common */
.page02 {
    background: #fff;
    padding: 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.heading._page02 .cat-wrapper {
    justify-content: start;
}

.fv2 {
    display: flex;
    justify-content: center;
    align-items: end;
    background: #F9F7EE 0% 0% no-repeat padding-box;
    height: 308px;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #50A512;
}

.archive-link {
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    display: block;
}

.news-block a {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 10px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.44px;
    color: #50A512;
}

.crumbs-separator {
    margin: 0 8px;
    color: #383427;
}

.crumbs-current {
    font-size: 16px;
    color: #383427;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .heading._crumbs {
        padding: 10px min(5.333%, 20px);
    }

}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #F9F7EE 0% 0% no-repeat padding-box;
    border-radius: 24px;
    color: #383427;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #50A512 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {
    background: #F9F7EE 0% 0% no-repeat padding-box;
    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3.36px;
    color: #383427;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #FE8109;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #50A512;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
   color: #383427;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    color: #50A512;
    border-bottom: 1px solid #50A512;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}

.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #383427;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #333;
}
.detail-common-area a {
    font-size: 16px;
    color: #50A512;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    color: #383427;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #50A512;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}

