@charset "UTF-8";
:root{
    --base-bg: #F4F4F4;
    --font-body: #000000;
    --font-hover:#125D7D
}
html{
    font-size: 62.5%; /*16px * 0.65 =10px */
    width: 100%;
}
body{
    position: relative;
    background-color: var(--base-bg);
    font-family: "Kozuka Gothic Pr6N", "Kozuka Gothic Pro", "Noto Sans JP", "Yu Gothic", "游ゴシック", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--font-body);
    font-weight: 400;
    display: flex;
    flex-direction: column;
}
body.is-open{
    overflow-y: hidden;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}
/******************* ヘッダー PC ******************/
.header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
    height: 80px;
    padding: 0 10%;
    background-color: transparent;
}
.header-bg{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.header-bg::before{
    content: "";
    position: absolute;
    z-index: 1000;
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.65);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
}
.header-content-wrapper{
    position: relative;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    min-width: 200px;
    height: 100%;
    margin: 0 auto;
}
.header-contents{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header-contents h1{
    width: fit-content;
}
.header-logo-link{
    display: block;
    width: 80%;
    max-width: 280px;
    transition: 0.3s ease-in-out;
}
.header-logo-link:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}
.header-logo{
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}
.header-content-list{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 24px;
}
.header-content{
    list-style: none;
    text-align: center;
    width: 100%;
    height: 100%;
}
.header-content h4{
    color: var(--font-body);
    transition: 0.2s ease-in-out;
}
.header-content:hover h4{
    color: var(--font-hover);
    transition: 0.2s ease-in-out;
}
.header-content h4{
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--font-body);
    padding: 0 16px;
}
.header-content span{
    display: block;
    width: 100%;
    font-size: 1rem;
    color: var(--font-body);
}
.header-content__link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header-category{
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.header-category:hover{
    cursor: pointer;
}
.header__category-list{
    display: flex;
    position: absolute;
    opacity: 0;
    top: -600%;
    left: 0;
    width: 170%;
    transform: translate(-10%, 0);
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255,255,255,0.65);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    transition: top 0.2s ease-in-out 0.1s, 0.15s opacity ease-in-out;
}
.header__category-content{
    width: 100%;
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
    color: var(--font-body);
    border-bottom: solid 1px #000000;
    transition: ease-in-out 0.2s;
}
.header__category-content:hover{
    color: var(--font-hover);
    cursor: pointer;
    transition: ease-in-out 0.2s;
}
.header__category-content a{
    display: block;
    width: 100%;
    padding: 6px 16px;
    text-decoration: none;
}
.header__category-list.active{
    top: 80px;
    opacity: 1;
    transition: top 0.2s ease-in-out, opacity 0.15s ease-in-out 0.1s;
}
.header__sns-logo-link{
    display: block;
    flex-shrink: 0;
    width: 32px;
}
.instagram{
    width: 32px;
    object-fit: cover;
    object-position: center;
    transition: 0.2s ease-in-out;
}
.instagram:hover{
    transform: scale(1.2);
    transition: 0.2s ease-in-out;
}
.header-nav{
    display: none;
}
/******************* ヘッダー SP ******************/
@media(max-width:768px){
    .header{
        position: relative;
        height: 70px;
        padding: 0 4%;
    }
    .header-bg{
        right: 0;
    }
    .header-bg.is-open::before{
        background-color: transparent;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    .header-content-wrapper{
        height: 70px;
    }
    .header-logo-link{
        width: 160px;
    }
    .header-content-list.pc{
        display: none;
    }
    .header__sns-logo-link{
        display: none;
    }
    .header__category-list.active{
        display: none;
    }
    .searchbox form{
        height: 30px;    
    }
    .nav-button{
        position: relative;
        display: block;
        height: 18px;
        width: 36px;
        flex-shrink: 0;
    }
    .nav-button span {
        position: absolute;
        display: block;
        top: 8px;
        height: 2px;
        width: 36px;
        opacity: 1;
        background-color: #000000;
        transition: transform 0.2s 0s ease-in, top 0.2s 0.3s ease-in;
    }
    .nav-button.is-open span {
        transition: transform 0.2s 0.3s ease-in;
        transform: rotate(45deg);
    }
    .nav-button span::before {
        content: "";
        position: absolute;
        display: block;
        top: -10px;
        height: 2px;
        width: 36px;
        background-color: #000000;
        transition: transform 0.2s 0s ease-in, top 0.2s 0.3s ease-in;
    }
    .nav-button.is-open span::before {
        top: 0px;
        transition: top 0.2s 0s ease-in, opacity 0.2s 0.3s ease-in;
        opacity: 0;
    }
    .nav-button span::after {
        content: "";
        position: absolute;
        display: block;
        top: 10px;
        height: 2px;
        width: 36px;
        background-color: #000000;
        transition: transform 0.2s 0s ease-in, top 0.2s 0.3s ease-in;
    }
    .nav-button.is-open span::after {
        top: 0px;
        transition: top 0.2s 0s ease-in, transform 0.2s 0.3s ease-in;
        transform: rotate(-90deg);
    }
/******************* ヘッダーナビゲーションメニュー SP ******************/
    .header-nav{
        position: fixed;
        display: block;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        user-select: none;
        background-color: rgba(255,255,255,0.65);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);        
        padding: 100px 4% 100px 4%;
        transform: translate(0, -100%);
        transition: 0.2s ease-in;
    }
    .header-nav.is-open{
        height: 100vh;
        user-select: auto;
        overflow-y: scroll;
        transform: translate(0,0);
        transition: 0.2s ease-out;
    } 
    .nav-content-list-sp{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .nav-content{
        width: 100%;
        height: fit-content;
        border-left: none;
        text-align: center;
    }
    .nav-content__link{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0 8%;
        width: 100%;
        height: 100%;
        gap: 10%;
    }
    .nav-category{
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0 8%;
        width: 100%;
        height: 100%;
        gap: 10%;
    }
    .nav-content h4{
        font-size: 3.6rem;
        font-weight: 300;
        line-height: 1.5;
        text-align: left;
        color: var(--font-body);
        width: fit-content;
        transition: ease-in-out 0.2s;
    }
    .nav-content h4:hover{
        color: var(--font-hover);
        transition: ease-in-out 0.2s;
    }
    .nav-content h4 span{
        padding-left: 8px;
        font-weight: 400;
    }
    .nav__category-list-sp{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        margin-left: 60px;
        border-left: solid 1px #000000 ;
    }
    .nav__category-content {
        width: fit-content;
        font-size: 2.4rem;
        font-weight: 300;
    }
    .nav__category-content a{
        display: block;
        width: 100%;
        padding: 3px 24px;
        text-decoration: none;
        text-align: left;
        line-height: 1.4;
        color: var(--font-body);
        transition: ease-in-out 0.2s;

    }
    .nav__category-content a:hover{
        color: var(--font-hover);
        transition: ease-in-out 0.2s;
    }
    .nav__sns-logo-link-sp{
        display: block;
        width: 32px;
        margin: 24% auto;
    }
}

/******************* フッター ******************/
.footer{
    width: 100%;
    padding: 48px 0 16px 0;
    margin-top: auto;
}
.copyright{
  display: block;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}