@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: 22px;
    line-height: 1.7;
    color: #333;
    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: 1020px;
    width: 100%;
    margin: 0 auto;
}

.maru {
    font-family: "Zen Maru Gothic", sans-serif;
}
/*終わり*/


/*<header class="header">*/
.header {
    width: 100%;
    height: 80px;
    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 {
    position: relative;
    width: auto;
    display: inline-block;
    color: #f149ab;
    font-weight: 600;
    font-size: 24px;
    z-index: 30;
}

.header-r {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 80px;
}

.line-btn {
    position: relative;
    background-color: #73BB56;
    border-radius: 50vh;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    z-index: 30;
}

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

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

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #f149ab;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.ham-txt {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 12px;
    color: #f149ab;
}

.hamburger span:nth-child(1) {
    top: 5px;
}

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

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

    /* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 15px;
    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: 15px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

.header-nav {
    position: fixed;
    z-index : 20;
    top  : 0;
    right: 0;
    background-color: #fff;
    color: #a88362;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.5s;
    width: 100%;
    height: 100vh;
    opacity: 0;
}

.header-nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 5vw;
}

.header-nav ul li {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: dotted 1px #f1f1f1;
}

.header-nav ul li:last-child {
    border-bottom: none;
}

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

.header-nav .line-btn-sp {
    display: none;
}

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


/*<footer class="footer">*/
.copyright {
    text-align: center;
    font-size: 12px;
    padding: 8px 5vw;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    body {
        font-size: clamp(calc(18px), calc(22 / 1024 * 100vw), 22px);
    }

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

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


/*700px以下*/
@media (max-width: 700px) {  
/*<header class="header">*/
    .line-btn {
        display: none;
    }

    .header-nav .line-btn-sp {
        background-color: #73BB56;
        border-radius: 50vh;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 24px;
        max-width: 240px;
        width: 100%;
        margin: 0 auto;
    }
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    body {
        font-size: clamp(calc(16px), calc(18 / 599 * 100vw), 18px);
    }

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

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


/*<header class="header">*/
    .header-logo {
        font-size: clamp(calc(18px), calc(24 / 599 * 100vw), 24px);
    }

    .header-r {
        width: auto;
    }
/*終わり*/ 
}