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

body {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    letter-spacing: 0.1em;
    font-family: "Noto Serif JP", serif;
}

img {
    max-width: 100%;
}

.wrap {
    overflow: clip;
    position: relative;
}

.tb-br,
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.parent {
    padding: 0 5vw;
}

.child {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.poppins {
    font-family: "Poppins", sans-serif;
}

.flag-logo {
    max-width: 40px;
    width: 100%;
}

.flag-h1,
.flag-h2 {
    color: #d3c59d;
    font-size: 24px;
    font-weight: 800;
}
/*終わり*/


/*<header class="header">*/
.header {
    padding: 0 2vw;
    background-color: #111;
    width: 100%;
    height: 80px;
    color: #d3c59d;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-logo-wrap {
    position: relative;
    max-width: 320px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: calc(52vw + 50%);
    height: 110%;
    border-radius: 0 0 24px 0;
    background: #501216;
    background: linear-gradient(90deg,rgba(80, 18, 22, 1) 0%, rgba(154, 36, 63, 1) 100%);    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.header-logo {
    position: relative;
    width: 100%;
    padding-top: 5%;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-site-menu {
    width: calc(100% - 320px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.sp-nav {
    display: none;
}

.header-ul {
    display: flex;
    align-items: center;
    gap: 64px;
    font-weight: 600;
}

.header-link:hover {
    color: #fff;
}

.drop-wrap {
    position: relative;
    transition: 0.2s;
}

.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 #d3c59d;
    transition: 0.2s;
}

.drop-con {
    left: -50%;
    position: absolute;
    top: 100%;
    transform: scaleY(0); /* ドロップダウンメニューの非表示 */
    transform-origin: center top; /* 変形を適応する基準を設定 */
    transition: .3s; /* 表示の変化をアニメーション化 */
    width: max-content;
    background-color: #111;
    font-family: "Noto Sans JP", sans-serif;
    padding-top: 16px;
}

.drop-con li {
    width: 100%;
    display: block;
    font-weight: 500;
}

.drop-con a {
    width: 100%;
    display: block;
    padding: 8px 16px;
}

.drop-wrap:hover .drop-con {
    transform: scaleY(1);
}

.drop-wrap:hover .drop-txt .triangle {
    transform: rotate(180deg);
}

.drop-con a:hover {
    background-color: #d3c59d;
    color: #111;
}

.h-contact {
    font-weight: 500;
    max-width: 240px;
    width: 100%;
    margin: 24px auto 0 auto;
    padding: 8px 16px;
    border: solid 1px #d3c59d;
    color: #d3c59d;
}

.h-contact:hover {
    background-color: #d3c59d;
    color: #222;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    position: relative;
    background-color: #4e1115;
    padding: 40px 5vw;
    color: #d3c59d;
}

.footer-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
}

.footer-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-weight: 600;
}

.footer-ul small {
    font-size: 12px;
}

.footer a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 12px;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  
  

/*<header class="header">*/
    .header-logo-wrap {
        max-width: initial;
        width: calc(40% - 2vw);
    }

    .header-site-menu {
        position: relative;
        width: 50%;
        height: 100%;
    }    

    .pc-nav {
        display: none;
    }

    .sp-nav {
        display: block;
        font-family: "Noto Serif JP", serif;
    }

    /*ハンバーガーボタン*/
    .hamburger {
        display : block;
        z-index : 999;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);      
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }

    .hamburger span {
        display : block;
        position: absolute;
        width   : 32px;
        height  : 2px ;
        left    : 6px;
        background : #d3c59d;
        -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: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top : 20px;
        left: 6px;
        -webkit-transform: rotate(315deg);
        -moz-transform   : rotate(315deg);
        transform        : rotate(315deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 20px;
        -webkit-transform: rotate(-315deg);
        -moz-transform   : rotate(-315deg);
        transform        : rotate(-315deg);
    }

    .header-nav {
        position: fixed;
        z-index : 20;
        top  : 0;
        right: 0;
        background-color: #4e1115;
        text-align: center;
        transform: translateX(130%);
        transition: all 0.5s;
        width: 60%;
        height: 100vh;
        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 #d3c59d;
    }

    .header-nav ul li a {
        display: block;
    }

    .header-ul .sp-logo-li {
        text-align: center;
        border-bottom: none;
        margin-bottom: 40px;
    }

    .sp-header-logo {
        max-width: 240px;
        width: 100%;
    }

    .sp-drop-ul {
        margin-left: 16px;
    }

    .sp-drop-ul .last-li {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
        transform: translateX(0%);
        opacity: 1;
    }
    /*終わり*/     
/*終わり*/ 


/*<footer class="footer">*/
    .footer-ul {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .footer-ul li {
        padding: 16px 0;
        text-align: left;
        border-bottom: dotted 1px #d3c59d;
    }

    .footer-ul li a {
        display: block;
    }

    .sp-footer-ul {
        margin-left: 16px;
    }

    .sp-footer-ul .last-li {
        border-bottom: none;
        padding-bottom: 0;
    }
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .flag-h1,
    .flag-h2 {
        font-size: clamp(calc(20px), calc(24 / 599 * 100vw), 24px);
    }

/*終わり*/ 


/*<header class="header">*/
    .header {
        height: 64px;
        padding: 0 5vw;
    }

    .header-logo-wrap {
        max-width: initial;
        width: 70%;
    }

    .header-logo-wrap::before {
        width: calc(55vw + 50%);
    }


    .header-site-menu {
        width: 30%;
    }

    .header-nav {
        width: 100%;
    }

    .header-ul {
        font-size: 14px;
    }

    .header-ul li {
        padding: 8px 0;
    }

    .header-ul .sp-logo-li {
        margin-bottom: 24px;
    }
/*終わり*/ 


/*<footer class="footer">*/
    .footer-ul {
        font-size: 14px;
    }

    .footer-ul li {
        padding: 8px 0;
    }

    .copyright {
        font-size: 10px;
    }

/*終わり*/ 

}