@charset "utf-8";

body,
p,
a,
a:link,
a:visited,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    font-weight: 400;
}

a:hover {
    opacity: 0.8;
}

@media (min-width: 1200px) {

    /* PC */
    .container {
        max-width: 1230px;
    }
}


/* -------------------------

フォント

------------------------- */
.font_Noto {
    font-family: 'Noto Serif JP', serif;
}

.font_Mont {
    font-family: 'Montserrat', sans-serif;
}

/* -------------------------

カラー

------------------------- */
.darkgreen {
    color: #273612;
}

.white {
    color: #fff;
}

.green_gradation {
    background: linear-gradient(#9FCE63, #6BA520);
}

/* -------------------------

h2

------------------------- */
.h2 {
    font-family: 'Montserrat', sans-serif;
    color: #273612;
    font-weight: 700;
    line-height: 1;
    font-size: 6rem;
}

@media (max-width: 1199px) {
    .h2 {
        font-size: 4.8rem;
    }
}

@media (max-width: 767px) {
    .h2 {
        font-size: 3.2rem;
    }
}

/* -------------------------

ボタン

------------------------- */
.btn_viewMore,
.btn_viewMore:link,
.btn_viewMore:visited {
    color: #273612;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    display: inline-block;
}

.btn_viewMore span {
    width: 84px;
    height: 84px;
    background: linear-gradient(#9FCE63, #6BA520);
    border-radius: 50%;
    margin-left: 25px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.btn_viewMore span img {
    width: 100%;
    height: 100%;
    padding: 30px;
}

@media (max-width: 1199px) {

    .btn_viewMore,
    .btn_viewMore:link,
    .btn_viewMore:visited {
        margin-top: 20px;
        font-size: 2rem;
    }

    .btn_viewMore span {
        width: 70px;
        height: 70px;
    }

    .btn_viewMore span img {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .btn_viewMore span {
        width: 60px;
        height: 60px;
        margin-left: 15px;
    }

    .btn_viewMore span img {
        padding: 22px;
    }
}

@media (max-width: 767px) {

    .btn_viewMore,
    .btn_viewMore:link,
    .btn_viewMore:visited {
        font-size: 1.8rem;
    }

    .btn_viewMore span {
        width: 50px;
        height: 50px;
    }

    .btn_viewMore span img {
        padding: 18px;
    }
}

/* -------------------------

ヘッダー

------------------------- */
.header {
    z-index: 99999;
    overflow: hidden;
}

.header.active {
    overflow: initial;
}

.header .inner {
    padding: 20px;
}

.header_h1 img {
    width: 540px;
    max-width: 100%;
}

/* ハンバーガーボタン */
.btn_hamburger {
    width: 90px;
    height: 90px;
    background: linear-gradient(#9FCE63, #6BA520);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transition: 0.5s;
}

.btn_hamburger .bar_box {
    display: inline-block;
    position: relative;
    width: 45%;
    height: 75px;
    margin-bottom: 0;
}

.btn_hamburger .bar {
    width: 100%;
    height: 4px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}

.btn_hamburger .bar:first-of-type {
    top: calc(50% - 13px);
}

.btn_hamburger .bar:nth-of-type(3) {
    top: calc(50% + 13px);
}

.btn_hamburger .menu {
    position: absolute;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
}

/* ハンバーガーボタン-open */
.btn_hamburger.open {
    background: transparent;
    box-shadow: none;
}

.btn_hamburger.open .bar:first-of-type,
.btn_hamburger.open .bar:nth-of-type(2) {
    top: 35px;
    left: 0px;
    transform: rotate(45deg);
}

.btn_hamburger.open .bar:nth-of-type(3) {
    top: 35px;
    left: 0px;
    transform: rotate(-45deg);
}

/* ハンバーガー中身 */
.hamburger_box {
    position: relative;
}

.content_hamburger {
    position: absolute;
    background: linear-gradient(#9FCE63, #6BA520);
    width: 540px;
    height: 700px;
    left: -450px;
    top: 0px;
    padding: 75px 50px 0 50px;
    /* display: none; */
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    overflow-y: scroll;
    height: calc(100vh - 40px);
    max-height: 700px;
}

.content_hamburger .inner {
    height: 625px;
}

.content_hamburger.active {
    opacity: 1;
    z-index: 100;
}

/* body */
body.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

/* overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1;
}

.overlay.active {
    display: block;
}

/* nav */
.header_nav {
    margin-bottom: 40px;
}

.header_nav .list_item a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    font-style: italic;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #fff;
}

.header_nav .list_item a span {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: initial;
    font-size: 1.8rem;
    display: inline-block;
    margin-left: 30px;
}

.header_nav .list_item.current a {
    /* color: #273612;
    border-bottom: 2px solid #273612; */
    color: #5A7A2E;
    border-bottom: 2px solid #5A7A2E;
    ;
}

.header_nav .list_item.current a::before {
    font-family: "Font Awesome 6 Free";
    content: '\f00c';
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
    font-size: 2.2rem;
}

.header_nav .list_item.current a:hover {
    opacity: 1;
}

.header .tel_box {
    width: 100%;
    text-align: center;
}

.header .tel_box .p_tel,
.header .tel_box .p_tel a {
    background-color: #fff;
    font-size: 3.2rem;
    color: #6BA520;
    padding: 6px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.header .tel_box .p_tel span.small {
    font-size: 2.2rem;
}

.header .tel_box .p_time {
    color: #fff;
    margin-top: 5px;
}

@media (max-width: 1199px) {
    .header .inner {
        padding: 5px 20px;
    }

    .header_h1 img {
        width: 460px;
    }
}

@media (max-width: 991px) {
    .header .inner {
        padding: 10px;
        background-color: #fff;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    }

    .header .content_hamburger .inner {
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }

    .header_h1 img {
        width: 420px;
    }
}

@media (max-width: 767px) {
    .header .inner {
        padding: 5px;
    }

    .header_h1 img {
        width: 240px;
    }

    .btn_hamburger {
        width: 60px;
        height: 60px;
    }

    .btn_hamburger .bar {
        top: 34%;
        height: 2px;
    }

    .btn_hamburger .bar:first-of-type {
        top: calc(34% - 8px);
    }

    .btn_hamburger .bar:nth-of-type(3) {
        top: calc(34% + 8px);
    }

    .btn_hamburger .menu {
        font-size: 1rem;
        bottom: 6px;
    }

    .btn_hamburger.open .bar:first-of-type,
    .btn_hamburger.open .bar:nth-of-type(2),
    .btn_hamburger.open .bar:nth-of-type(3) {
        top: 25px;
    }

    .content_hamburger {
        top: -5px;
        left: calc(65px - 100vw);
        width: 100vw;
        padding: 65px 20px 0 20px;
        height: 100vh;
        max-height: 100vh;
    }

    .header_nav .list_item a {
        font-size: 1.4rem;
    }

    .header_nav .list_item.current a::before {
        font-size: 1.6rem;
        margin-right: 5px;
    }
}

/* -------------------------

フッター

------------------------- */
.footer {
    background-color: #BEEA85;
    padding: 60px 0 30px;
    position: relative;
}

.img_footer_top {
    width: 100%;
    max-width: 1600px;
    position: absolute;
    left: 50%;
    top: -110px;
    transform: translateX(-50%);
}

.img_footer_top img {
    width: 500px;
    max-width: 100%;
}

.footer_logo {
    width: 400px;
    margin-bottom: 25px;
    max-width: 100%;
}

.footer .p_addr {
    margin-bottom: 40px;
}

.footer .p_addr .fa-solid {
    font-size: 1.5em;
    margin-left: 5px;
}

.footer .p_tel,
.footer .p_tel a {
    font-size: 2.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.footer .p_tel span.small {
    font-size: 1.5rem;
    display: inline-block;
    margin-right: 5px;
}

/* footer_nav */
.footer_list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer_list_item:not(:last-of-type):after {
    content: '｜';
    padding: 0 2px;
}

.footer_list_item a {
    font-weight: 700;
    font-size: 1.4rem;
}

/* copyright */
.copyright {
    padding-top: 70px;
    font-size: 1.1rem;
    text-align: right;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .footer {
        padding: 40px 0 30px;
    }

    .img_footer_top img {
        width: 460px;
    }

    .footer_list_item a {
        font-size: 1.4rem;
    }

    .footer_list_item:not(:last-of-type):after {
        padding: 0 0px;
    }

    .footer_logo {
        margin-bottom: 10px;
    }

    .footer .p_addr {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .footer .p_time {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 45px 0 30px;
    }

    .footer .row {
        flex-direction: column-reverse;
    }

    .footer_nav {
        margin-bottom: 40px;
    }

    .footer_list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer_list_item a {
        font-size: 1.4rem;
    }

    .img_footer_top {
        top: -55px;
    }

    .img_footer_top img {
        width: 250px;
    }

    .footer_logo {
        width: 280px;
    }

    .footer .p_addr {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .copyright {
        padding-top: 80px;
        font-size: 1rem;
    }
}

/* -------------------------

アニメーション

------------------------- */
.fadeUpTrigger,
.fadeLeftTrigger,.fadeLeftTrigger_02,
.fadeRightTrigger,.fadeRightTrigger_02,
.fadeDownTrigger {
    opacity: 0;
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation-delay: 0.3s; */
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* fadeLeft */
.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation-delay: 0.3s; */
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeLeft_02 {
    animation-name: fadeLeftAnime_02;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation-delay: 0.3s; */
}

@keyframes fadeLeftAnime_02 {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: rotate(2deg) translateX(0);
    }
}

/* fadeRight */
.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation-delay: 0.3s; */
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeRight_02 {
    animation-name: fadeRightAnime_02;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation-delay: 0.3s; */
}

@keyframes fadeRightAnime_02 {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: rotate(2deg) translateX(0);
    }
}

/* fadeDown */
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    /* animation-delay: 0.3s; */
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* img_wrap */
.img_wrapTrigger {
    opacity: 0;
}

.img_wrap {
    animation: img_opacity 1.5s cubic-bezier(.4, 0, .2, 1);
    animation-fill-mode: forwards;
    overflow: hidden;
    position: relative;
}

.img_wrap:before {
    animation: img_wrap 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
    animation-fill-mode: forwards;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img_opacity {
    100% {
        opacity: 1;
    }
}

@keyframes img_wrap {
    100% {
        transform: translateX(100%);
    }
}

/* eachTextAnime */
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 0.5s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}

/* -------------------------
animation-delay
------------------------- */
.delay_03 {
    animation-delay: 0.3s;
}

.delay_05 {
    animation-delay: 0.5s;
}

.delay_1 {
    animation-delay: 1s;
}