@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s
}

a:hover {
    opacity: 0.8;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #222531;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
}

.wrap {
    position: relative;
    overflow: hidden;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 0 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.serif {
    font-family: "Noto Serif JP", serif;
}

.oswald {
    font-family: "Oswald", sans-serif;
}
/*終わり*/


/*<header class="header">*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 5vw;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 10;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.header-logo {
    max-width: 100px;
    width: 100%;
}

.header-site-menu {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.sp-nav {
    display: none;
}

.header-ul {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
}

.drop-wrap {
    position: relative;
    transition: 0.2s;
    padding: 16px 0;
}

.drop-wrap:hover {
    cursor: pointer;
}

.drop-txt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drop-txt .triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    transition: 0.2s;
}

.drop-con {
    left: -100%;
    position: absolute;
    top: 100%;
    transform: scaleY(0); /* ドロップダウンメニューの非表示 */
    transform-origin: center top; /* 変形を適応する基準を設定 */
    transition: .3s; /* 表示の変化をアニメーション化 */
    width: max-content;
    background-color: #fff;
    z-index: 10;
}

.drop-con li {
    width: 100%;
    display: block;
    font-size: 14px;
}

.drop-con a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
}

.drop-wrap:hover .drop-con {
    transform: scaleY(1);
}

.drop-wrap:hover .drop-txt .triangle {
    transform: rotate(180deg);
}

.drop-con a:hover {
    color: #EB6301;
}

.h-contact {
    display: inline-block;
    text-align: center;
    padding: 4px 16px;
    color: #fff;
    background: #EB6301;
    transition: 0.2s;
}

.header-instagram {
    display: flex;
    align-items: center;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    background-color: #222531;
    color: #fff;
    position: relative;
    padding: 40px 5vw 16px 5vw;
    font-weight: 300;
    font-size: 14px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90%;
    height: 1px;
    border-top: solid 1px #fff;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-l {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo {
    max-width: 80px;
    width: 100%;
}

.footer-txt-01 {
    font-weight: 600;
    font-size: 16px;
}

.footer-instagram {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 30px;
}

.footer-r {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-li-first {
    color: #EB6301;
    font-weight: 500;
    border-bottom: solid 1px #EB6301;
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
    .header-site-menu {
        position: relative;
        width: 50%;
        height: 100%;
    }    

    .pc-nav {
        display: none;
    }

    .sp-nav {
        display: block;
    }

    /*ハンバーガーボタン*/
    .hamburger {
        display: block;
        z-index: 999;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        width: 64px;
        height: 64px;
        cursor: pointer;
        text-align: center;
        color: #fff;
    }

    .hamburger::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        width: 64px;
        height: 64px;
        background-color: #EB6301;
        border-radius: 50vh;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 32px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        background: #fff;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: calc(50% - 8px);
    }

    .hamburger span:nth-child(2) {
        top: 50%;
    }

    .hamburger span:nth-child(3) {
        top: calc(50% + 8px);
    }

        /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top: 50%;
        left: 16px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
        
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        top: 50%;
        left: 16px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-nav {
        position: fixed;
        z-index : 20;
        top  : 80px;
        right: 0;
        background-color: #fff;
        text-align: center;
        transform: translateX(100%);
        transition: all 0.5s;
        width: max-content;
        height: calc(100vh - 80px);
        font-size: 16px;
        opacity: 0;
    }

    .header-ul {
        width: 100%;
        margin: 0 auto;
        height: 100%;
        padding: 0 5vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        font-size: 16px;
        font-weight: 700;
        z-index: 15;
    }

    .header-ul li {
        display: block;
        width: 100%;
        padding: 16px 0;
        text-align: left;
        border-bottom: dotted 1px #EB6301;
    }

    .header-nav ul li a {
        display: flex;
        gap: 8px;
    }

    .header-ul .sp-logo-li {
        text-align: center;
        border-bottom: none;
        margin-bottom: 40px;
    }

    .sp-drop-ul {
        margin-left: 16px;
    }

    .sp-drop-ul .last-li {
        border-bottom: none;
        padding-bottom: 0;
    }

    .sp-nav .none-border {
        border-bottom: none;
    }

    .sp-nav .none-border a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
        transform: translateX(0);
        opacity: 1;
    }
    /*終わり*/     
/*終わり*/ 


/*<footer class="footer">*/
    .footer-flex {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .footer-r {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }
/*終わり*/ 

}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
/*終わり*/  


/*<header class="header">*/
    .header-logo {
        max-width: clamp(calc(80px), calc(100 / 599 * 100vw), 100px);
    }

    .header-logo-name {
        font-size: clamp(calc(14px), calc(16 / 599 * 100vw), 16px);
    }

    .header-site-menu {
        width: auto;
    }

    .header-nav {
        width: 100%;
    }

    .sp-drop-ul {
        margin-left: 0;
    }

    .sp-drop-ul li {
        font-size: 14px;
    }
/*終わり*/  

}