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

.body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #565656;
}

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

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

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

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

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

main {
    padding: 70px 0 0 0;
}

address {
  font-style: normal;
}

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

    .pc {
        display: none !important;
    }

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

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

    main {
        padding: 50px 0 0 0;
    }
}

/* header */
.header01 {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
}

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    height: 70px;
    padding: 0;
    background: rgba(255,255,255,1);
}

.header-logo {
    width: min(16.25vw, 195px);
    margin: 0 0 0 20px;
}

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

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

.header-li {
    margin: 0 10px 0 0;
    box-sizing: border-box;
}

.header-li._last {
    margin: 0 10px;
}

.header-text1 {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #565656;
    margin: 0;
}

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

.header-link1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFB12D 0% 0% no-repeat padding-box;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    padding: 7px 29px;
    box-sizing: border-box;
}

.header-tel {
    width: 25px;
    margin: 0 5px 0 0;
}

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

    .nav01 {
        height: 50px;
        padding: 0;
    }

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

    .header-logo {
        width: 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;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .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 #56565629; */
    }

    .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 #565656;
        padding: 20px 0;
        margin: 0;
        border-right: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
      background: #FFB12D 0% 0% no-repeat padding-box;
      position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #ffffff;
      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;
    }
}
/* 共通 スクロール位置 見出し */
#about,
#access,
#guidance,
#greeting,
#faq,
#news,
#features,
#overview,
#group {
    scroll-margin-top: 70px;
}

.common-h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #565656;
    margin: 0 0 40px 0;
    text-decoration: none;
    position: relative;
}

.common-h2-en {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FFB12D;
    margin: 0 0 5px 0;
    text-decoration: none;
    line-height: 1;
}

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

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

.common-h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFB12D;
    margin: 0 0 10px 0;
}

.common-h3._center {
    text-align: center;
    font-size: 28px;
    margin: 0 0 20px 0;
}

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

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

.common-text1._last {
    margin: 0;
}

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

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

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

/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    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;
    border-radius: 30px;
    max-width: 400px;
    width: 100%;
    padding: 14px 0;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.btn-more1._tel {
    background: #A0CE57 0% 0% no-repeat padding-box;
}

.btn-more1._fax {
    background: #A3D2EE 0% 0% no-repeat padding-box;
}

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

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

.btn-icon1 {
    width: 35px;
    margin: 0 8px 0 0;
}

@media screen and (max-width: 960px) {
    .btn-icon1 {
        width: min(9.333vw, 35px);
    }
}

/* 共通 index single archive 404 */
._minheight {
    min-height: 44vh;
}

.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

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

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

/* about */
.about {
    background: rgba(247,238,19,0.3);
}

.about-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    padding: min(2.5vw, 30px) min(3.333vw, 40px);
    box-sizing: border-box;
    margin: 0 0 20px 0;
}

.about-text1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.8;
}

.about-text1 ._green {
    color: #A0CE57;
}

@media screen and (max-width: 960px) {
    .about-text1 {
        font-size: 17px;
    }

}

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

.about-time table {
    width: 100%;
    border-collapse:collapse;
    margin: 0 0 10px 0;
}

.about-time thead th {
    background: #A3D2EE 0% 0% no-repeat padding-box;
    border: 1px solid #8FBEDA;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    height: 50px;
}

.about-time tbody th {
    background: #F3F9FC 0% 0% no-repeat padding-box;
    border: 1px solid #8FBEDA;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #A3D2EE;
    height: 50px;
}

.about-time tbody td {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #8FBEDA;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #565656;
}

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

.about-access adress {
    display: block;
}

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

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

.guidance-area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.guidance-img1 {
    width: min(10vw, 120px);
    margin: 0 auto;
}

.bnr-link {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #D8121A;
    border-radius: 30px;
    padding: 30px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.guidance-block ul {
    list-style: none;
    padding: 0;
}

.guidance-block ul li {
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #565656;
    margin: 0 0 10px 0;
}

.guidance-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #A0CE57;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
    .guidance-block {
        width: 100%;
    }

    .guidance-img1 {
        width: min(26.667vw, 100px);
    }
}
/* cta */
.cta {
    background: #FFB12D 0% 0% no-repeat padding-box;
}

.cta-text1 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 960px) {
    .cta-text1 {
        font-size: min(4.8vw, 18px);
    }
}

/* overview */
.overview-block {
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
}
.overview-text1 {
    font-size: 16px;
    font-weight: 700;
    color: #A3D2EE;
    margin: 0 0 5px 0;
}

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


/* group */
.group {
    background: #FAFAFA 0% 0% no-repeat padding-box;
}
.group-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.group-block {
    text-decoration: none;
    width: 19%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #C6C6C6;
    border-radius: 5px;
    padding: min(0.833vw, 10px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.group-text1 {
    font-size: min(1vw, 12px);
    font-weight: 700;
    color: #565656;
    margin: 0;
}

.group-icon1 {
    width: min(2.5vw, 30px);
    margin: 0 4px 0 0;
}

@media screen and (max-width: 960px) {
    .group-block {
        width: 47%;
    }

    .group-text1 {
        font-size: min(3.2vw, 12px);
    }

    .group-icon1 {
        width: min(8vw, 30px);
    }

}


/* footer */
.footer {
    margin: -1px 0 0 0;
    background: #FAFAFA 0% 0% no-repeat padding-box;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.common-text1._footer {
    color: #383427;
    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) {

    .footer {
        height: 50px;
    }
    .arrow-fixed {
        bottom: 60px;
    }

    .common-text1._footer {
        font-size: 13px;
        text-align: center;
    }


    .cta-fixed {
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        height: 50px;
        z-index: 999;
        display: flex !important;
    }

    .cta-fixed-btn1,
    .cta-fixed-btn2 {
        width: 50%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: min(5.333vw, 20px);
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
        text-decoration: none;
    }

    .cta-fixed-btn1 {
        background: #A0CE57 0% 0% no-repeat padding-box;
    }
    .cta-fixed-btn2 {
        background: #A3D2EE 0% 0% no-repeat padding-box;
    }

    .fixed-btn-icon1 {
        width: min(6.667vw, 25px);
        margin: 0 4px 0 0;
    }

}



/* page02 common */
.page02 {
    background: #ffffff 0% 0% no-repeat padding-box;
}

.fv2 {
    display: flex;
    align-items: center;
    content: '';
    background-image: url('../img/acrhive-fv-bg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;  
    height: 18.333vw;
}

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

.archive-common-block {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.archive-link {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #F2F2F2;
    text-decoration: none;
}

/* page02 page03 パンくずリスト */
#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;
    color: #D8121A;
}

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

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

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

}

/* page02 ページネーション */
.pagenum-area {
    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;
    background: #FAFAFA 0% 0% no-repeat padding-box;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    font-family: 'Anton';
    color: #565656;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
        background: #D8121A 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 common */
.fv3 {
    height: 20px;
}
.detail {
    color: #565656;
    font-size: 16px;
}

.single-thumbnail {
    width: 80%;
    margin: 0 auto 20px auto;
}

.detail-text1 {
    font-size: 18px;
    color: #B2A9AE;
    margin: 0 0 10px 0;
}

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

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

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

.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: #D8121A;
    border-bottom: 1px solid #D8121A;
    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: #565656;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #565656;
}
.detail-common-area a {
    font-size: 16px;
    color: #D8121A;
    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: #565656;
    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: #D8121A;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

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

}

