@charset "UTF-8";


body {
    font-family: "Noto Sans JP", sans-serif, Verdana, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    background-color: #F0EBEA;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

header {
    display: flex;
    /*ロゴとulを横に並べる*/
    justify-content: space-between;
    /*両端に配置*/
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    z-index: 100;
    background: transparent;
    mix-blend-mode: difference;
}

.hamburger-menu {
    display: none;
}

h1 {
    color: #fff;
    font-family: "Tangerine", cursive;
    font-style: normal;
    font-size: 40px;
    font-weight: bold;
    padding: 34px;
}


ul {
    display: flex;
    list-style: none;
    font-size: 22px;
    font-weight: bold;
    padding: 16px;
    gap: 24px;
}

li {
    margin-left: 40px;
}

a {
    font-family: "Tangerine", cursive;
    font-size: 40px;
    text-decoration: none;
    color: #655046;
}

nav {
    margin-left: auto;
    /*メニューを右寄せ*/
    padding: 20px;
}

.main-visual {
    background-image: url(img/sunset.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100dvh;
    height: auto;
    text-align: center;
}

h2 {
    color: #fff;
    font-size: 66px;
    font-weight: bold;
    padding-top: 264px;
    font-family: "Tangerine", cursive;
    font-style: normal;
}

h3 {
    color: #655046;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 14px;
    font-family: "Tangerine", cursive;
    font-style: normal;
}

h4 {
    color: #655046;
    font-size: 20px;
    margin-bottom: 40px;
}

h5 {
    color: #655046;
    font-size: 20px;
    padding: 20px;
}

h6 {
    color: #fff;
    font-size: 20px;

}

p {
    color: #655046;
    font-size: 18px;
    line-height: 1.8;
    padding: 10px;
}

.works {
    background-color: #fff;
    padding: 96px 0;
    text-align: center;
}

.about {
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
}

.contact {
    background-color: #fff;
    padding-top: 86px;
    padding-bottom: 96px;
    text-align: center;
}


.menu-wrapper {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
}

.menu-wrapper div {
    background: #fff;
    width: 30%;
    /*約3分の1*/
    padding: 10px;
}

.menu-wrapper img {
    width: 100%;
    aspect-ratio: 1 /1;
    object-fit: cover;
    display: block;
}

.menu-wrapper p {
    margin-top: 10px;
}

.box_flex {
    width: 80%;
    padding: 16px;
    padding-bottom: 100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

.box_flex img {
    width: 40%;
    object-fit: contain;
    padding: 30px;
    filter: sepia(50%) brightness(1.05) contrast(0.95);
}

a:hover {
    background-color: #ab9072;
    padding: 10px;
    border-radius: 999px;
    transition: all .85s;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.coconala-btn {
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
    padding: 12px 24px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 20px;
}

footer {
    background-color: #655046;
    color: #fff;
    font-size: 16px;
    padding: 26px;
    text-align: center;
}


/*＝＝＝ここからタブレットサイズ（画面の横幅が560px〜959px）＝＝＝*/

@media screen and (max-width: 959px) {
    nav {
        display: none
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-weight: 700;
        padding-left: 14px;
    }

    .hamburger-menu {
        display: block;
        width: 50px;
        height: 50px;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 0;
        cursor: pointer;
    }

    .hamburger-menu__bar {
        display: inline-block;
        width: 44%;
        height: 2px;
        background: #242424;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .5s;
    }

    .hamburger-menu__bar:first-child {
        top: 16px;
    }

    .hamburger-menu__bar:nth-child(2) {
        top: 24px;
    }

    .hamburger-menu__bar:last-child {
        top: 32px;
    }

    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }

    .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }

    .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
        display: none;
    }

    .navigation {
        display: none;
        background: #242424;
        position: absolute;
        top: 50px;
        width: 100%;
        z-index: 9999;
    }

    .navigation__list {
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
    }

    .navigation__list-item {
        border-bottom: solid 1px #474747;
    }

    .navigation__list-item:first-child {
        border-top: solid 1px #474747;
    }

    .navigation__link {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        display: block;
        padding: 24px 0;
        transition: .5s;
    }

    @media (hover: hover) and (pointer: fine) {
        .navigation__link:hover {
            background: #333;
        }
    }




    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 48px;
        padding-top: 222px;
    }

    h3 {
        font-size: 35px;
    }

    h4 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    p {
        font-size: 14px;
    }

    .about {
        padding: 65px 0;
    }

    .menu {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .menu-wrapper {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-wrapper div {
        width: 100%;
        max-width: 400px;
        /*最大幅400px*/
        padding: 20px;
        margin-bottom: 30px;
        box-sizing: border-box;
        /*paddingまでをwidthに含める*/
    }

    .box_flex {
        flex-direction: column;
        object-fit: contain;
        padding: 30px;

    }

    .box_flex img {
        width: 80%;
    }

    footer {
        font-size: 12px;
    }

}

/*＝＝ ここからスマホサイズ（画面の横幅が559pxまで）＝＝*/

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

    nav {
        display: none
    }

    h1 {
        font-size: 30px;
        padding: 13px;
    }

    h2 {
        font-size: 38px;
        padding-top: 137px;
    }

    .about {
        padding: 45px 0;
    }

    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 16px;
        margin-bottom: 25px;
    }



    p {
        font-size: 16px;
        width: 80%;
        margin: 0 auto;
    }

    .menu {
        padding-top: 45px;
        padding-bottom: 75px;
    }

    .menu-wrapper {
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-wrapper div {
        padding: 10px 30px 5px;
        background: #fff;
    }

    .menu-wrapper img {
        width: 100%;
    }

    .menu-wrapper p {
        margin-top: 5px;
    }


    a {
        font-size: 18px;
    }

    .box_flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 559px;
        margin: 0 auto;
    }

    .works img {
        max-width: 100%
    }

    .box_flex img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }


    footer {
        font-size: 18px;
    }

}