@charset "UTF-8";

/*===============================
 
	基本設定
 
================================*/
html {
    font-size: 16px;
}

body {
    font-family: "Noto Serif JP", "Open Sans",
        serif;
    line-height: 1.7;
    color: #736357;
}

/* フォント（メモ用） "Not Serif", */

img {
    width: 100%;
}

.wrap {
    max-width: 1000px;
    margin: auto;
    padding: 0 4%;
}

/*===============================
 
	ヘッダー(PC)
 
================================*/
.drawer-hamburger,
.global-nav-sp {
    display: none;
    /* スマホ用のメニューを隠す */
}

.global-nav-pc {
    display: block;
    /* PC用のメニューを表示 */
}

header {
    height: 12vh;
    width: 100%;
    background-color: #c7977fd8;
    position: fixed;
    z-index: 10;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 12vh;
}

.header nav ul {
    display: flex;
    gap: 50px;
    color: #33292C;
    margin-right: 30px;
}

header h1 img {
    width: 30%;
    margin-left: 10%;
    vertical-align: middle;
}

nav ul li {
    font-size: 1.3rem;
}

nav ul li:hover {
    opacity: 0.5;
}


/*===============================
 
	メイン
 
================================*/
main {
    padding: 100px 0 0 0;
    /* font-size: 1rem; */
}

/* 共通設定 =====================*/
.title {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 60px;
}

#AboutSection,
#WorksSection,
#ContactSection {
    padding-top: 80px;
}


/* Aboutエリア =====================*/
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.box-1 {
    width: 285px;
}

.box-2 {
    width: 685px;
    font-size: 0.8rem;
    padding: 20px 0;
}

p.text-1 {
    margin-bottom: 20px;
}

/*　Worksエリア =====================*/
.works {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 2%;
    row-gap: 60px;
    margin-bottom: 60px;
}

.works-box {
    width: 30%;
}

.works-box img {
    margin-bottom: 20px;
}

h3 {
    color: #33292C;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 16px;
}

.works-box p {
    font-size: 0.8rem;
}

p.month {
    margin-bottom: 16px;
}

p.coming {
    text-align: center;
}

.more {
    background-color: #C7977F;
    width: 25%;
    text-align: center;
    padding: 10px 0;
    margin: auto;
    border-radius: 50px;
}

.more a {
    display: block;
    font-size: 1.2em;
    color: #33292C;
}

.more:hover {
    opacity: 0.7;
}


/* Contactエリア =====================*/
.contact{
    text-align: center;
}

.contact ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact ul li{
    width: 30px;
}



.contact {
    margin-bottom: 80px;
}

.contact p.contact{
    margin-bottom: 30px;
}



/*===============================
 
	フッター
 
================================*/

footer {
    height: 65px;
    font-size: 0.8rem;
    text-align: center;
}

footer p {
    line-height: 65px;
}

/* トップへ戻る */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #C7977F;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #33292C;
    text-align: center;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.page-top::after {
    content: "";
    display: block;
    position: absolute;
    top: 23px;
    left: 50%;
    height: 10px;
    width: 10px;
    border-top: 2px solid #33292C;
    border-right: 2px solid #33292C;
    transform: translateX(-50%) rotate(-45deg);
    transition: 0.2s;
}

.page-top:hover {
    opacity: 0.8;
    text-decoration: none;
}


/*===============================
 
	SP
 
================================*/

@media screen and (max-width:767px) {

    /* 共通設定 =====================*/

    .title {
        width: 250px;
        margin: auto;
        margin-bottom: 32px;
    }

    #AboutSection,
    #WorksSection,
    #ContactSection {
        padding-top: 40px;
    }

    /*===============================
     
    	ヘッダー(SP)
     
    ================================*/

    header {
        height: 50px;
    }

    .header {
        line-height: 50px;
    }

    .header h1 img {
        width: 150px;
    }

    .global-nav-pc {
        /* スマホではPC用のナビゲーションを消しています */
        display: none;
    }

    .drawer-hamburger,
    .global-nav-sp {
        display: block;
        /* スマホ用のメニューを隠す */
    }

    .header nav ul {
        display: block;
    }

    /* アイコンの色 */
    .drawer-hamburger-icon,
    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        background: #33292C;
    }

    /* アイコンの太さ */
    .drawer-hamburger-icon,
    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        height: 2px;
    }

    /* 位置調整 */
    .drawer-hamburger {
        /* padding-top: 15px;
        padding-right: 20px; */
        padding: 15px 20px;
    }

    /* ×印の位置 */
    .drawer--right.drawer-open .drawer-hamburger {
        right: 0px;
        top: 0;
    }

    /* ドロワーの背景 */
    .drawer-nav {
        background: #FBF5F2;
    }

    /* 開いた時のメイン画面のオーバーレイ */
    .drawer-overlay {
        background-color: rgba(0, 0, 0, 0.6);
    }

    /* リストの下線 */
    .drawer-menu li {
        text-align: center;
        border-bottom: 1px solid #ccc;
    }

    .drawer-menu li a {
        position: relative;
        display: block;
        /* padding: 20px; */
        text-decoration: none;
        color: #333;
    }

    .drawer-nav {
        width: 164px;
    }

    .drawer-menu li a.menu-top {
        padding-top: 40px;
    }

    header h1 img {
        width: 200px;
    }

    .header {
        display: inline-block;
        margin-left: 8%;
    }

    /*===============================
    
	　メイン
     
    ================================*/


    /* メインビジュアル */
    .mainvisual {
        padding: 100px 0;
        text-align: center;
    }

    .mainvisual img {
        width: 80%;
    }

    /* aboutエリア */
    .box-2 p {
        font-size: 0.9rem;
    }

    .about {
        flex-direction: column;
        gap: 32px;
    }

    .box-1 {
        width: 80%;
    }

    .box-2 {
        width: 100%;
    }

    /* Workエリア */
    .works {
        flex-direction: column;
        row-gap: 46px;
    }

    .works-box {
        width: 100%;
    }

    .works-box p {
        font-size: 0.8rem;
    }

    /* Contactエリア */

}