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


.service {
    padding: 40px 20px;
    background: #fffafc;
    /* やわらかいピンクホワイト */
    border-radius: 20px;
    /* 角丸で可愛く */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.service h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #4f412f;
    font-weight: bold;
    margin-top: 40px;
    /* h2 の上に余白追加 */
    scroll-margin-top: 80px;
    /* アンカーリンクで飛んだときも隠れない */
}

.service-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 40px;
    flex-wrap: wrap;
    /* レスポンシブ対応 */
}

.service-list ul {
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    background: #f8e0d5;
    /* 淡いピンク背景 */
    padding: 12px 16px;
    border-radius: 12px;
    list-style: none;
    transition: background 0.2s ease;
}

.service-list li:hover {
    background: #e5f1b8;
    /* ホバーで少し濃く */
}

.service-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    /* やわらかい角丸 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


/* =============================
   特徴ブロック
============================= */
.feature {
    max-width: 1100px;
    margin: 30px auto;
    padding: 30px 20px;
    background: #fffafc;
    /* 優しいピンクホワイト */
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    /* PCは縦→テキストのみなので縦でOK */
    gap: 20px;
}

.feature h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4f412f;
    /* 柔らかいピンク系 */
    font-weight: bold;
}

.feature-text p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
    background: #f8e0d5;
    /* 淡いピンク背景 */
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.feature-text p:hover {
    background: #e5f1b8;
}

/* =============================
   イラストラッパー
============================= */
.irasuto-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    /* スマホで縦並びに対応 */
    max-width: 750px;
    margin: 30px auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.irasuto-item img {
    width: 400px%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0)
    
}








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


}

/* レスポンシブ */
@media (max-width: 768px) {
    .service-wrapper {
        flex-direction: column;
        align-items: center;
        /* ← 中央寄せ */
        text-align: center;
        /* ← テキストも中央寄せ */
    }

    .service-image {
        margin-top: 20px;
    }

    .service-list {
        width: 100%;
        max-width: 600px;
        /* 中央で読みやすい幅に制限 */
    }

}