.page-header{
    margin-bottom: 80px;
}
.pagelink-list{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    width: 100%;
}
.pagelink-list li{
    font-size: clamp(12px, 1.6vw, 16px);
    width: 25%;
    text-align: center;
    border-left: 1px solid #1F1F1F;
    position: relative; 
}
.pagelink-list li:last-child{
    border-right: 1px solid #1F1F1F;
}
.pagelink-list li::after{
    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid #1F1F1F;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
}
.section-title{
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
}
.section-title span{
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title::before{
    content: "";
    width: calc((100% - 1000px)/2);
    height: 1px;
    background-color: #1F1F1F;
    position: absolute;
    top: 12px;
    left: 0;
}
#philosophy{
    margin-bottom: 120px;
    overflow: hidden;
    position: relative;
}
#philosophy .img-top{
    width: clamp(390px, 50vw, 460px);
    position: absolute;
    top: 70px;
    left: 50%;
}
#philosophy .text-area{
    width: 70%;
    background-color: #fafafa;
    padding: 7% 0 10% 6%;
    margin-top: 120px;
}
#philosophy .text-area .inner{
    width: clamp(250px, 34vw, 350px)
}
#philosophy .text-area .inner .title{
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.6;
    margin-bottom: 40px;
}
#philosophy .text-area .inner .text{
    font-size: clamp(11px, 1.5vw, 15px);
    line-height: 2;
    margin-bottom: 30px;
}
#philosophy .img-bottom{
    max-width: 280px;
    margin: -60px 0 0 10%;
}
#service{
    margin-bottom: 120px;
}
#service .item{
    display: flex;
    align-items: center;
    box-shadow: 5px 5px 25px #ccc;
    margin-bottom: 40px;
}
#service .item.store{
    flex-direction: row-reverse;
}
#service .item .text{
    width: 44%;
    padding: 1% 5%;
}
#service .item .text .title-ja{
    font-size: 12px;
    margin-bottom: 5px;
}
#service .item .text .title-en{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}
#service .item .text .description{
    font-size: 14px;
    margin-bottom: 20px;
}
#service .item .text .view-more{
    font-size: 14px;
    text-align: right;
    text-decoration: underline;
}
#service .item .img{
    width: 56%;
    overflow: hidden;
}
#service .item.interior .img{
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
#service .item.store .img{
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
#service .item .img img{
    transition: transform 0.8s ease;
}
#service .item:hover .img img{
    transform: scale(1.1);
}
#overview{
    margin-bottom: 120px;
}
#overview .orverview-list{
    display: flex;
    flex-wrap: wrap;
}
#overview .orverview-list dt{
    width: 200px;
    border-top: solid 1px #1F1F1F;
    font-size: 15px;
    padding: 40px 0;
}
#overview .orverview-list dt:last-of-type{
    border-bottom: solid 1px #1F1F1F;
}
#overview .orverview-list dd{
    width: calc(100% - 200px);
    border-top: solid 1px #ccc;
    font-size: 15px;
    padding: 40px 0;
    line-height: 1.8;
}
#overview .orverview-list dd:last-of-type{
    border-bottom: solid 1px #ccc;
}
#access{
    margin-bottom: 120px;
}
#access .info{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
}
#access .info a{
    width: 90px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #1F1F1F;
    font-size: 12px;
}
#access .map iframe{
    width: 100%;
    height: 400px;
}

@media screen and (max-width: 767px){
    .page-header{
        margin-bottom: 40px;
    }
    .pagelink-list{
        margin-bottom: 40px;
    }
    .pagelink-list li{
        font-size: 12px;
    }
    #access{
        margin-bottom: 60px;
    }
    .section-title{
        margin-bottom: 10px;
    }
    .section-title::before{
        content: none;
    }
    #philosophy{
        margin-bottom: 60px;
        position: static;
    }
    #philosophy .img-top{
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    #philosophy .text-area{
        width: 100%;
        padding: 20px;
        margin: 0 0 20px;
    }
    #philosophy .text-area .inner{
        width: 100%;
    }
    #philosophy .img-bottom{
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    #service{
        margin-bottom: 60px;
    }
    #service .item{
        flex-direction: column;
        margin-bottom: 20px;
    }
    #service .item.store{
        flex-direction: column;
    }
    #service .item .text{
        width: 100%;
        padding: 20px;
    }
    #service .item .text .title-en{
        font-size: 26px;
    }
    #service .item .img{
        width: 100%;
    }
    #service .item.interior .img,
    #service .item.store .img{
        clip-path: none;
    }
    #overview{
        margin-bottom: 60px;
    }
    #overview .orverview-list dt{
        width: 100px;
        padding: 20px 0;
    }
    #overview .orverview-list dd{
        width: calc(100% - 100px);
        padding: 20px 0;
    }
}