#page_help_guide section,#page_help_guide .box{
    margin: 50px 0;
}
#page_help_guide p{
    margin: 10px 0;
}
#page_help_guide table{
    margin-bottom: 30px;
    width: 100%;
    font-size: 14px;
}

#page_help_guide table th {
    background: var(--color-main);
    color: var(--color-white);
    padding: 10px;
    text-align: center;
    border: 1px solid var(--color-white);
}
#page_help_guide table td{
    text-align: center;
    border: 1px solid var(--color-main);
}

#page_help_guide h2,
#page_help_guide h3,
#page_help_guide h4{
    margin-bottom: 10px;
}

#page_help_guide h3,
#page_help_guide h4{
    font-family: var(--mainFont);
    font-weight: bold;
}
#page_help_guide h3{
    border-bottom: 1px solid var(--color-main);
    padding-bottom: 5px;
    font-size: clamp(18px, 3vw,20px);
}
#page_help_guide h4{
    font-size: clamp(16px,3vw,18px);
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
}
#page_help_guide h4::before{
    display: inline-block;
    content: "";
    width: 5px;
    height: 100%;
    background: var(--color-main);
    position: absolute;
    left: 0;
    top: 0;
}

.guide-nav{
    background: var(--color-white);
    padding: 20px 20px 20px 40px;
}
.head-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 0;
}
.head-nav a {
    display: flex;
    align-items: center;
    border-right: 1px solid;
    margin-right: 20px;
    width: 100%;
    justify-content: center;
}
.head-nav a:nth-child(3n){
    border: none;
}
.head-nav a .arrow{
    rotate: 90deg;
}

@media screen and (max-width:767px){
    .head-nav {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .head-nav a{
        border: none;
        justify-content: flex-start;
    }
}

/* 店舗案内 */
#page_help_about .shop-image {
    display: flex;
    gap: 20px;
    justify-content: center;
    border: 1px solid;
    padding: 20px;
    max-width: 720px;
    margin: 30px auto;
}
#page_help_about .shop-image>div {
    display: flex;
    flex-direction: column;
    justify-content: end;
}
#page_help_about .shop-image img{
    width: 250px; 
}
#page_help_about .shop-image p {
    text-align: center;
    margin-top: 10px;
}
#page_help_about .shop-map iframe{
    border: 1px solid !important;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 720px;
    display: block;
}
#page_help_about .shop-staff{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}
#page_help_about .shop-staff img {
    width: auto;
}
#page_help_about .shop-staff .shop-staff-comment{
    border: 1px solid;
    border-radius: 3px;
    padding: 20px;
    position: relative;
}
#page_help_about .shop-staff .shop-staff-comment::before {
    width: 10px;
    height: 12px;
    background: var(--color-main);
    position: absolute;
    content: "";
    left: -10px;
    top: calc(50% - 5px);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
#page_help_about .shop-content {
    margin: 50px 0 100px;
}
#page_help_about .shop-content-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#page_help_about .shop-content-list .item-container {
    width: calc(100% / 4 - 10px);
}
@media screen and (max-width:767px){
    #page_help_about .shop-content-list .item-container{
        width: calc(100% / 2 - 5px);
    }
}

/* よくある質問 */
.faq {
    max-width: 1000px;
    margin: 0 auto;
}
.faq .box{
    margin: 30px 0;
}
.faq details h3{
    display: flex;
    align-items: center;
    gap: 20px;
}
.faq details[open] .plus::after{
    opacity: 0;
}
#page_help_guide.faq details p{
    margin-bottom: 30px;
}
#page_help_guide.faq h3{
    font-size: 16px;
}

.faq .que,
.faq .ans{
    position: relative;
}
.faq .que::before{
    content: "Q.";
}
.faq .ans::before{
    content: "A.";
}
.faq .que::before,
.faq .ans::before{
    
}
.faq a{
    color: #6f4283;
}

/* サイトマップ */
#sitemap{
    padding: 0 15px;
}
#sitemap .sitemap{
    margin-top: 50px;
}
#sitemap .sitemapWrap{
    display: flex;
    gap: 50px;
    justify-content: center;
}
#sitemap .sitemapList{
    margin-bottom: 50px;
}
#sitemap .sitemapList li a{
    display: flex;
    align-items: center;
}
#sitemap .sitemapList-child{
    margin-left: 2em;
}
#sitemap .sitemapBox h2{
    margin-bottom: 20px;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
}
#sitemap .sitemapBox>.sitemapList>li>a{
    font-weight: 600;
}

@media screen and (max-width:767px){
    #sitemap .sitemapWrap{
        flex-direction: column;
        gap: 0;
    }
}

/* ヘルプ */
#page_help_index ul {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 10px;
}

#page_help_index ul li {
    border: 1px solid;
    width: calc(100% / 3);
    padding: 20px;
    text-align: center;
}
/* ご利用ガイド */
.ec-role.guide a{
    color: #6f4283;
}