@charset "utf-8";

/* リセットCSS */

*,::before,
::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol{
    list-style: none;
}

a{
    color: inherit;
    /* 文字の色は親要素と同じにします */
    text-decoration: none;
}

/* 共通設定 */
body{
    font-family: sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}

img{
    max-width: 100%;
    /* 最大幅を100％にする→100％より大きくならない→親要素からはみ出さない */
}

/* ここからheaderの設定 */

.header-inner{
    max-width: 1200px;
    height: 110px;
margin: 0 auto;
padding: 0 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.toggle-menu-button{
    display: none;
    /* ボタンを非表示にする */
}

.header-logo{
    display: block;
    /* 幅・高さの設定ができるようにブロック要素に変換する */
    width: 170px;

}

.site-menu ul{
    display: flex;
}

.site-menu ul li{
    margin: 0 20px;
}

.site-menu ul li a{
    font-family: "Montserrat", sans-serif;
}

/* ここからfooterの設定 */

.footer{
    color: #ffffff;
    background-color: #24211b;
    padding: 30px 0 15px;
    /* padding: 上　左右　下; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* display: grid;
    place-items: center; */
}

.footer-logo{
    display: block;
    width: 235px;
    margin-top: 90px;
}

.footer-tel{
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}

.footer-time{
    font-size: 13px;
    margin-top: 16px;
}

.copyright{
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}

/* メディアクエリ */
@media(max-width:800px){
/* この中に800px以下の端末で適用したいCSSをかく */
.site-menu ul{
    display: block;
    text-align: center;
}
.site-menu ul li{
    margin-top: 20px;
}
.header{
    /* 画面に固定 */
    position: fixed;
    top: 0;
    left: 0;
    /* position: fixed;かけると横幅が縮む */
right: 0;

height: 50px;
/* 重なり順　最前面に */
z-index: 9999999;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.header-inner{
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    /* 子要素でabsoliteを使うために */
    position: relative;
    background-color: #ffffff;
}

.header-logo{
    width: 100px;

}

.header-site-menu{
    position: absolute;
    /* 親要素の上から100%　つまり親要素にぴったりくっつく */
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding: 30px 0 50px;
    /* ボタンを押す前は非表示に */
    /* display: none; */
    /* 変形　縦方向の移動（子要素の大きさに対する100％ */
    transition: all 2s;
    z-index: -1;
    clip-path: ellipse(0 0 at 50%);
}

.header-site-menu.is-show{
    /* display: block; */
    clip-path: ellipse(150% 150% at 50%);
}

.toggle-menu-button{
    /* PC版で非表示にしていたものを表示する */
    display: block;
    width: 44px;
    height: 34px;
    /* background: url(../images/common/icon-menu.png) no-repeat center/50%; */
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    background-color: transparent;
}
.btn{
    display: block;
    width: 70%;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
}

.btn::before,.btn::after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
position: absolute;
top: 0;
left: 0;
transition: all 0.5s;
}
.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(30deg);
}

.toggle-menu-button.is-show .btn::after{
    top: 0;
    transform: rotate(-30deg);
}

.main{
    /* position: fixedでなくなったheaderが元居た場所を作る */
    padding-top: 50px;

}

.footer-logo{
    margin-top: 60px;
}
.footer-tel{
    font-size: 20px;
}
.copyright{
    margin-top: 50px;
}

}