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

/* 変数 */
:root {
    --main-color: #006B53;
    --sb-color: #053026;
    --main-txt-color: #006B53;
    --accent-color: #E58A11;
    --main-background-color: #fff;
    --section-background-color: #ebebeb;
    --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;
    width: 100%;
    z-index: 30;
    transition: var(--hover-transition);
}
.header-logo a img {
    width: 180px;
}
.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);
}
.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);
}
.fv {
    height: 100vh;
}
.splide__slide img {
    height: 100vh;
}
.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;
}
.fv-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-background-color);
    font-size: 32px;
    text-align: center;
}
.footer {
    position: absolute;
    bottom: 0;
    left: 4%;
    color: var(--main-border-color);
}
/* Width Adjustment
-------------------------------------*/
@media only screen and (min-width: 1440px) {}
@media only screen and (max-width: 1440px) {}
/* タブレット
-------------------------------------*/
@media screen and (max-width: 1140px) {
    .fv-copy {
        font-size: 16px;
    }
    .wrap {
        padding: 24px;
    }
    .footer {
        width: 100%;
        top: 92%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    small {
        font-size: 10px !important;
        display: block;
        text-align: center;
        margin: 0 auto;
    }
    
}
/* スマートフォン
-------------------------------------*/
@media screen and (max-width: 767px) {}
/* tel-sp
-------------------------------------*/
@media (min-width: 767px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media screen and (max-width: 350px) {}