@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* 変数 */
:root {
    --main-color: #A1BC67;
    --sb-color: #FFBA8B;
    --sb-sb-color: #9AD0D4;
    --main-txt-color: #6B583F;
    --accent-color: #f33d24;
    --main-background-color: #FFF9E4;
    --section-background-color: #F0E9CE;
    --main-border-color: #fff;
    --main-font-size: 16px;
    --headding-font-size: 32px;
    --headding-font-size-sp: 24px;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-700: 700;
    --main-border-radius: 6px;
    --hover-transition: .4s;
}

/* アニメーション */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-5px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
    40% {
        transform: translateY(0);
    }
    }
    .anime-object {
    animation: bounce2 6s linear infinite;
}

/* 基本設定
------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--font-weight-400);
    font-style: normal;
    font-size: var(--main-font-size);
    color: var(--main-txt-color);
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: left;
    background: var(--main-background-color);
}
html, body {
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2vw 3.6vw;
    z-index: 30;
    transition: var(--hover-transition);
}
.header-logo a img {
    width: 18vw;
}
.hamburger,
.sp-nav-menu {
    display: none;
}
.globalnav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    font-weight: var(--font-weight-700);
}
.globalnav-list li a {
    display: block;
}
.menu-item-123 a {
    background: var(--main-background-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    display: block;
    padding: 8px 24px;
    border-radius: 50px;
    transition: var(--hover-transition);
}
.menu-item-123 a:hover {
    background: var(--main-color);
    color: var(--main-background-color);
    transition: var(--hover-transition);
}
.fv {
    position: relative;
    height: 98vh;
}
.splide__slide img {
    height: 98vh;
}
.fv-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-background-color);
    font-size: 40px;
}
.lh-l {
    position: absolute;
    width: 100%;
}
.b1 {
    top: 0;
    left: 0;
    width: 33%;
}
.b2 {
    bottom: 0;
    left: 0;
}
.b2 img {
    width: 100%;
}
.headding-title {
    margin-bottom: 40px;
}
.headding-title span {
    font-size: 48px;
    font-weight: var(--font-weight-500);
}
.headding-title h2 {
    font-weight: var(--font-weight-500);
    color: var(--sb-color);
}
.news-list ul article li .news-item{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}
.news-item span {
    font-size: 14px;
    letter-spacing: .05em;
}
.news-item p {
    font-size: 11px;
    padding: 2px 12px;
    border: 1px solid #a0a0a0;
    border-radius: 20px;
}
.btn a {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    text-align: right;
    width: fit-content;
}
/* Width Adjustment
-------------------------------------*/
@media only screen and (min-width: 1440px) {}
@media only screen and (max-width: 1440px) {}
/* タブレット
-------------------------------------*/
@media screen and (max-width: 1140px) {
    .header-logo a img {
        width: 32vw;
    }
    .b1 img {
        width: 160%;
    }
}
/* スマートフォン
-------------------------------------*/
@media screen and (max-width: 767px) {
    .header-logo a img {
        width: 43vw;
    }
    .b1 img {
        width: 200%;
    }
    .wrap {
        padding: 64px 24px;
    }
    .fv {
        height: 60vh;
    }
    .splide__slide img {
        height: 60vh;
    }
    .fv-copy {
        font-size: 20px;
    }
    .add {
        font-size: 13px;
        letter-spacing: .01em;
        text-align: center;
        margin-bottom: 40px;
    }
    small {
        text-align: center;
        display: block;
        line-height: 1.4;
        font-size: 10px !important;
    }
}
/* tel-sp
-------------------------------------*/
@media (min-width: 767px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media screen and (max-width: 350px) {}