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


}



/* ===== 求人セクション ===== */
.recruit {
    padding: 80px 20px;
}

/* PCでも装飾を維持するため固定 */
.recruit-card {
    background: #fff;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(212, 90, 134, 0.15);
    position: relative;
    overflow: hidden;
}

/* 背景ふわ丸（PCでも表示） */
.recruit-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: #ffe3ef;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    z-index: 0;
}

/* 中身を前面に */
.recruit-card * {
    position: relative;
    z-index: 1;
}

/* 各項目 */
.recruit-item {
    margin-bottom: 25px;
}

/* ラベル */
.tag {
    display: inline-block;
    background: #ffd1e6;
    color: #d45a86;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* 給与強調 */
.salary {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d45a86;
}

/* リスト */
.recruit-item ul {
    padding-left: 20px;
    line-height: 1.6;
}

.recruit-item li {
    margin-bottom: 6px;
}

/* ボタン */
.recruit-btn {
    display: block;
    text-align: center;
    margin-top: 35px;
    background: linear-gradient(135deg, #f3a6c8, #d45a86);
    color: white;
    padding: 16px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.recruit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(212, 90, 134, 0.4);
}

/* ===== PC専用余白調整 ===== */
@media(min-width: 769px){

.recruit-card{
    padding: 60px 70px;
}

.salary{
    font-size: 1.5rem;
}

}

/* ===== スマホ ===== */
@media(max-width: 768px){

.recruit-card{
    padding: 25px;
}

.salary{
    font-size: 1.2rem;
}

}
}