@charset "utf-8";

*,
::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: #2f1818;
    line-height: 1;
    background-color: #fff0e9;
}

img {
    max-width: 100%;
}

.first-view {
    height: calc(100vh);
    background-image: url(./bg-main.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7e3d;
}

.toggle-menu-button {
    display: none;
}

.header-logo {
    display: block;
    width: 170px;
}

.site-menu ul {
    display: flex;
}

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

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner {
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
    padding: 65px 0 100px;
}


.sub_ttl {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}





.contact-wrapper {
    display: flex;
    flex-direction: column; /* 縦並び固定 */
    align-items: center; /* 中央揃え */
    text-align: center;
    background-color: #fffafc; /* 優しいピンク */
    border: 2px solid #ffb6c1; /* 枠線 */
    border-radius: 20px; /* 角丸 */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* 影で浮き上がり感 */
    padding: 70px 20px 20px 20px; /* 上部70px＝ヘッダー50px＋余裕20px */
    margin: 20px auto;
    max-width: 500px; /* ボックス幅固定 */
}
h2{
    margin: 10px 0;
    font-size: 26px;
    color: #5a3e36;
    text-align: center;
}
 .contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #5a3e36;
}

.contact-info a {
    color: #d6336c;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.button003 a {
    display: inline-block;
    background-color: #ffb6c1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.button003 a:hover {
    background-color: #ff85a2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* レスポンシブ対応 */
@media screen and (max-width: 800px) {
    .contact-wrapper {
        padding-top:  50px; /* ヘッダー50px＋余裕20pxのまま維持 */
        width: 90%; /* モバイルは幅調整 */
    }
    body{
     padding: 100px;   
    }
}






@media(max-width: 800px) {
    .site-menu ul {
        display: block;
        text-align: center;
    }

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

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff0e9;
        height: 50px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }

    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #a99797;
        background-color: #fabcbc;
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
    }

    .toggle-menu-button {
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(./img/22981878.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
    }

    .header-logo {
        width: 100px;
    }

    .header-site-menu.is-show {
        display: block;
    }

    .main {
        padding-top: 50px;
    }


}
