@charset "UTF-8";

p,
.side_list {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.bnr {
    margin-top: 103px;
    text-align: center;
}

.bnr a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

p {
    color: #4A302D;
}

.head_2 {
    position: relative;
    padding: 30px 0 5px 20px;
    font-size: 1.5rem;
    color: #4A302D;
    border-bottom: 2px solid rgb(252, 200, 0);
}

.head_2 span {
    position: relative;
    z-index: 2;
}

.head_2::before {
    content: attr(data-en);
    position: absolute;
    top: 0px;
    left: 0;
    color: rgba(252, 200, 0, 0.5);
    font-size: 40px;
    text-transform: uppercase;
    z-index: 1;
}



.head_h3 {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4A302D;
}

.head_h3::before {
    content: attr(data-number);
    display: inline-block;
    margin-right: 20px;
    color: #6b8e23;
    font-size: 30px;
    border-bottom: 3px solid #6b8e23;
    font-weight: 400;
}



/* h3 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    font-style: normal;
    color: #4A302D;
    position: relative;
    padding: 0 0.5rem;
    border-bottom: 10px solid #896331;
    border-radius: 3px 3px;
}
h3:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30%;
    height: 10px;
    content: '';
    background: #4A302D;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
h3:first-letter {
    font-size: 150%;
    color: #896331;
}
*/

.news_box {
    padding: 1.5rem;
    border: 3px solid #4A302D;
    border-radius: 10px;
    width: 100%;
}

.news_text {
    padding-top: 1rem;
    line-height: 1.8rem;
}


.main-contents_wrapper {
    max-width: 980px;
    margin: 0 auto;
}

#slider {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url("./images/top_img.jpg");
    background-repeat: no-repeat;
}

#slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent 0 60%, #e8edf1 100%);
}

#slider h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 3rem;
    font-weight: 300;
    padding: 2% 0 0 10%;
}

#slider p {
    text-align: center;
    text-shadow: -1px -1px 3px #fff;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.openbtn1 .openbtn1_menu {
    display: none;
}

.slider_h1 {
    text-shadow: 0px 0px 3px #808080;
}



.container {
    display: flex;
    justify-content: space-between;
}

.main-contents {
    width: 100%;
}

.main-contents_wrapper {
    padding: 0 5rem;
}

.block_mgt40 {
    margin-top: 2.5rem;
}

.block_mgt80 {
    margin-top: 5rem;
}

.about_text {
    font-size: 1rem;
    line-height: 2rem;
}

.text_wrapper {
    text-align: center;
}

.text_mid {
    font-size: 1.2rem;
    margin: 103px 0 40px 0;
}

.text_sm {
    margin-bottom: 20px;
}

.block_mgt160 {
    margin-top: 10rem;
}

.main-contents_about_block {
    display: flex;
    justify-content: space-between;

}


.footer_wrapper_img {
    width: 5rem;
}

.next_text {
    text-align: right;
    font-size: 1.5rem;
}

.menu_grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

.menu_grid_text {
    padding-bottom: 10px;
    text-align: center;
}

.menu_grid_text_second {
    text-align: justify;
    line-height: 1.5rem;
}

.menu_grid_item img {
    padding-bottom: 20px;
}

.menu_grid_item {
    box-shadow: 0 0 8px gray;
    padding: 20px;
}

/* footer */
.footer_copy {
    text-align: center;
    background-color: #b0d7f8;
}

/* hover */

.next_text a {
    position: relative;
}

.next_text p a:hover {
    color: #29a2ff;
}

.next_text p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 9999%;
    background: #29a2ff;
    transition: all .3s;
    transform: scale(0.04, 1);
    transform-origin: center bottom;
}

.next_text p a:hover::after {
    height: 2px;
    border-radius: 0;
    transform: scale(0.8, 1);
}

/*---------LoadingのためのCSS---------*/

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #e8edf1;
    text-align: center;
    color: #000;
}

#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#splash_logo img {
    width: 260px;
}


.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

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

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



/*------------- レイアウトのためのCSS-------------*/

#container {
    width: 100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a {
    color: #ffffff;
}

.next_text a {
    color: #4A302D;
}

a:hover {
    text-decoration: none;
}

/*レスポンシブ*/

@media screen and (min-width: 428px) {
    .acsess_tell {
        pointer-events: none;
    }
}

@media (max-width: 800px) {

    .slider_h1 {
        font-size: 2rem;
    }


    #slider::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(180deg, transparent 0 10%, #e8edf1 100%);
    }

    #slider h1 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 3rem;
        font-weight: 300;
        padding: 2% 0 0 10%;
    }

    #slider p {
        text-align: center;
        text-shadow: -1px -1px 3px #fff;
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        line-height: 1.5rem;
    }

    .head_2 {
        position: relative;
        padding: 20px 0 5px 20px;
        font-size: 1.5rem;
        color: #4A302D;
        border-bottom: 2px solid rgb(252, 200, 0);
    }

    .head_2 span {
        position: relative;
        z-index: 2;
        font-size: 1.5rem;
    }

    .head_2::before {
        content: attr(data-en);
        position: absolute;
        top: 0px;
        left: 0;
        color: rgba(252, 200, 0, 0.5);
        font-size: 2rem;
        text-transform: uppercase;
        z-index: 1;
    }



    .head_h3 {
        position: relative;
        font-size: 1.05rem;
        font-weight: 700;
        color: #4A302D;
    }

    .head_h3::before {
        content: attr(data-number);
        display: inline-block;
        margin-right: 20px;
        color: #6b8e23;
        font-size: 1.5rem;
        border-bottom: 3px solid #6b8e23;
        font-weight: 400;
    }




    .side_icon {
        margin-bottom: 0;
        padding: 0;
    }

    .side_icon img {
        width: 5rem;
    }


    .menu_grid {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .main-contents {
        width: 100%;
    }

    .main-contents_wrapper {
        padding: 0 2rem;
    }

    .side-menu_position {
        position: initial;
    }

    .point_img_rig {
        text-align: right;
    }

    .point_img img {
        width: 90%;
        height: 90%;
    }

   
    .about_item {
        width: 100%;
    }


    .next_text {
        text-align: center;
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .about_text {
        font-size: 1rem;
        line-height: 2rem;
        margin-top: 1rem;
    }

    #acsess .acsess_wrapper {
        display: block;
    }

    .acsess_info {
        width: 100%;
        padding-left: 5px;
        margin-bottom: 2rem;
    }

    .acsess_map {
        width: 100%;
    }

    .acsess_info p {
        line-height: 2rem;
        font-size: 1rem;

    }

    .acsess_info_mark {
        color: #29a2ff;
        width: 1rem;
    }

    .acsess_info_img {
        width: 100px;
    }

    .block_mgt160 {
        margin-top: 5rem;
    }

    #g-nav {
        position: fixed;
        z-index: 999;
        top: -120%;
        left: 0;
        width: 100%;
        height: 50vh;
        background: #4A302D;
        transition: all 0.6s;
    }

    #g-nav.panelactive {
        top: 0;
    }


    /*ナビゲーション*/
    #g-nav ul {
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*--------------- ボタンのためのCSS----------------*/
    .openbtn1 {
        position: fixed;
        background: #4A302D;
        cursor: pointer;
        top: 10px;
        right: 10px;
        z-index: 9999;
        width: 50px;
        height: 50px;
        border-radius: 9999px;
    }


    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
    }

    .openbtn1 span:nth-of-type(1),
    .openbtn1 span:nth-of-type(3) {
        height: 2px;
        background: #fff;
        width: 62%;
        left: 10px;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 21px;
        left: 11px;
        font-size: 0.6rem;
        text-transform: uppercase;
        color: #fff;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 36px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    #slider {
        position: relative;
        width: 100%;
        height: 80vh;
        background-image: url("./images/top_sp_img.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }
    .bnr img {
        width: 100%;
        height: 100%;
    }
    .bnr-t{
        padding: 0 2rem;
    }
}

@media (max-width: 450px) {
    .menu_grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    .about_text {
        line-height: 1.4rem;
    }

    .main-contents .slider_h1_menu {
        top: 5%;
        margin: auto;
        font-size: 6vw;
        color: #fff;
        width: 80%;
    }

    #slider h1 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 2rem;
        font-weight: 300;
        padding: 2% 0 0 10%;
    }

    #slider p {
        font-size: 1.2rem;

    }

    .head_2 {
        position: relative;
        padding: 15px 0 5px 20px;
        font-size: 1.2rem;
        color: #4A302D;
        border-bottom: 2px solid rgb(252, 200, 0);
    }

    .head_2 span {
        position: relative;
        z-index: 2;
        font-size: 1.2rem;
    }

    .head_2::before {
        content: attr(data-en);
        position: absolute;
        top: 0px;
        left: 0;
        color: rgba(252, 200, 0, 0.5);
        font-size: 1.5rem;
        text-transform: uppercase;
        z-index: 1;
    }



    .head_h3 {
        position: relative;
        font-size: 1.2rem;
        font-weight: 700;
        color: #4A302D;
    }

    .head_h3::before {
        content: attr(data-number);
        display: inline-block;
        margin-right: 5px;
        color: #6b8e23;
        font-size: 1.5rem;
        border-bottom: 3px solid #6b8e23;
        font-weight: 400;
    }

    .about_item-1 {
        order: 2;
    }

    .about_item-2 {
        order: 1;
    }


    .main-contents_about_block {
        display: flex;
        flex-direction: column;
    }

    .point_img img {
        width: 100%;
        height: 100%;
    }

    .bnr img {
        width: 100%;
        height: 100%;
    }
    #slider {
        position: relative;
        width: 100%;
        height: 50vh;
        background-image: url("./images/top_sp_img.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }
}