@charset "utf-8";

/* リセットcss */
.bg-1 {
    background-color: rgb(253, 239, 87, 0.8)
}

*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 14px;
    color: #716864;
    line-height: 2;
    letter-spacing: 3px;
}

img {
    max-width: 100%;
    vertical-align: top;
    vertical-align: bottom;
}

.site-menu ul {
    display: block;
    text-align: center;
}

.site-menu ul li {
    margin-top: 20px;
}

.atrmenu {
    width: 40%;
    margin: 0 auto;
}

.header {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    /* 重なり順のこと */
    z-index: 9999999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #CD8858;
    padding: 30px 30px;
    height: 100%;
    /* 子要素でabsolute */
    position: relative;
}

.header-logo {
    width: 100px;
}

.manu-flex {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto
}

.header-site-menu {
    position: absolute;
    /* 親要素の１番下につく */
    top: 100%;
    left: 0;
    right: 0;
    color: #fff;
    background-color: #CD8858;
    padding: 30px 0 100%;
    /* 表示にする */
    /* ボタンを押す前は非表示 */
    /* display: none; */
    /* 縦方向の移動 */
    /* transform: translateY(-100%); */
    transition: all 1s;
    /* 重なり順後ろに */
    z-index: -1;
    clip-path: inset(0 0 100% 0%);
}

/* .is-showを持っている場合 */
.header-site-menu.is-show {

    clip-path: inset(0 0 0 0);
}

/* ハンバーガーメニュー */
.toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
}

.btn {
    display: block;
    width: 70%;
    height: 3px;
    background-color: #fff;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
    border-radius: 3px;
}

.btn::after,
.btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    border-radius: 3px;
}

.btn::before {
    top: -10px;
}

.btn::after {
    top: 10px;
}

.toggle-menu-button.is-show .btn {
    background-color: transparent;
}

.toggle-menu-button.is-show .btn::before {
    top: 0;
    transform: rotate(45deg);
}

.toggle-menu-button.is-show .btn::after {
    top: 0;
    transform: rotate(-45deg);
}





/* ここからフッター */
footer {
    margin-top: 100px;
    background-color: #CD8858;
    width: 100%;
    height: 200px;
}