@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;
}


.arrow {
    width: 25px;
    height: 1px;
    background: #707070;
    position: absolute;
    top: 50%;
    right: 0;
}

.arrow::after {
    content: "";
    display: block;
    width: 6px;

    height: 1px;
    background: #707070;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    bottom: 2px;
}


/* ご挨拶セクション全体 */
.greetings {
    background: #fffafc;
    /* 淡い背景色 */
    padding: 3rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 2rem auto;
}

/* 横並び（PC時） */
.greetings-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* 画像部分 */
.greeting-image img {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.greeting-image img:hover {
    transform: scale(1.05);
}

/* テキスト部分 */
.greeting-text-block {
    flex: 1;
    color: #4b2c2c;
    line-height: 1.8;
    font-size: 1rem;
}

.greeting-text-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #d45a86;
    border-bottom: 3px dotted #f3a6c8;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.greeting-text-block p {
    margin-bottom: 1rem;
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}




@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;
    }


}

/* スマホ対応（768px以下は縦並び） */
@media (max-width: 768px) {
    .greetings-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .greeting-image img {
        max-width: 200px;
    }

    .greeting-text-block {
        font-size: 0.95rem;
    }

}