html,
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    scroll-behavior: smooth;

}

img {
    max-width: 100%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 900px) {
    body {
        font-size: 20px;
    }
}

@media screen and (max-width: 810px) {
    body {
        font-size: 18px;
    }
}

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


#layout {
    background: #AFF6E3;
    position: fixed;
    height: 100vh;
    width: 100vw;
}




.wrap {
    width: 40vw;
    position: relative;
    left: 0;
    height: 100vh;
}

.pc_outline {
    padding: 1rem;
    position: fixed;
    width: 50%;
    height: 100vh;
    top: 15%;
    left: 0;
    z-index: 999;
    text-align: center;

}

.pc_outline h1 {
    max-width: 600px !important;
    margin: 0 auto;
}

.pc_outline p {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1em;
    padding: 0.5rem 0.5rem;
    color: var(--primary);
    text-align: center;
}

#pc_nav {
    width: 15vw;
    position: fixed;
    right: 0;
    height: 100vh;
    bottom: 0;
}


.pc_nav {
    position: absolute;
    width: 100%;
    height: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.pc_nav ul li {
    padding: 2% 0;
    font-weight: 600;
}

@media screen and (max-width: 900px) {

    #layout,
    #pc_nav {
        display: none;
    }

}


/* <!--＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊レスポンシブでハンバーガーメニュー表示＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊-->
<!--＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊--> */



#hmbmenu{
    overflow: hidden;
    display: none;
    background-color: #ffffff;
    z-index: 100;
    position: fixed;
    width: 66px;
    height: 50px;
    right: 0;
    top: 9px;
    border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 900px) {

#hmbmenu{

    display: block;
    top: 19px;
        right: 0;
}
}



/* 非アクティブ */
#hmb{
    z-index: 110;
   width: 32px;
   height: 27px; 
   cursor: pointer;
   position:relative;
   top: 11px;

margin: 0 auto;


}
#hmb span{
    width: 32px;
    height: 3px;
    display: block;
    background-color: #000000;
    border-radius: 2px;
    position: absolute;
    transition: .2s;
    
}
#hmb span:first-child{
    top: 0;
}
#hmb span:nth-child(2){
    top:12px
}
#hmb span:last-child{
    top: 24px;
}
#hmbmenu nav{
    z-index: 100;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100vh;
display: flex;
align-items: center;
padding: 20px;
background-color: #ffffff;
opacity: 0;
visibility: hidden;
transform: translateX(100%);
transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}

#hmbmenu nav ul li a{
display: inline-block;
margin-bottom: 16px;
position: relative;
}

#hmbmenu nav ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 3px;
background: #000000;
border-radius: 6px;
bottom: -1px;       /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
visibility: hidden; /*ホバー前に、アンダーラインを可視化しない*/
}

#hmbmenu nav ul li a:hover::after {
visibility: visible; /*ホバー後、アンダーラインを可視化する*/
}


/* アクティブ */
#hmbmenu.active #hmb span:first-child{
    top: 12px;
    transform: rotate(45deg);
}
#hmbmenu.active #hmb span:nth-child(2){
opacity: 0;
}
#hmbmenu.active #hmb span:last-child{
top: 12px;
transform: rotate(-45deg);
}

#hmbmenu.active nav{
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
#hmbmenu.active::before{
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    background-color: #000000;
    width: 100vw;
    height: 100vh;
    opacity: 0.4;
    z-index: 80;
    transition: opacity 0.3s ease;
}

/* <!--＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊-->
<!--＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊--> */


/* -------------------------------------------------------------------------------------------- */
main {
    position: fixed;
    border-right: 10px solid #FFF;
    border-left: 10px solid #FFF;
    width: 25vw;
    min-width: 340px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    background-color: #AFF6E3;
    z-index: 30;
    top: 0%;
    left: 50%;
}

#mv {
    position: relative;
}

.mv_bg {
    display: block;
    position: relative;
    top: 0;
    z-index: 1;
    margin-bottom: -1rem;
}

.mv_inner {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    padding-top: 60%;
    text-align: center;
}

.mv_inner h1 img {
    max-width: 80%;
}

.mv_inner h2 img {
    max-width: 80%;
}

#about {
    width: 100%;
    padding: 5% 8% 0;
    text-align: center;
    padding-bottom: 50%;
}

h3 {
    font-size: 25px;
    font-weight: bold;
    line-height: 2.5;
    padding-bottom: 1px;
    display: inline;
    background: linear-gradient(transparent 50%, #ffffff 50%);
}


.about_txt {
    font-size: 72%;
    line-height: 31px;
    padding: 30px 0 90px;
    font-weight: bold;
}

.about_txt span {
    background: linear-gradient(transparent 50%, #ffa551 50%);
    font-weight: bold;
}

#recommend {
    top: 0;
    z-index: 10;
    width: 100%;
    padding: 5% 0;
    text-align: center
}

.recommend {
    position: relative;
    margin-bottom: 45%;
    margin: 35% 5%;
}

#recommend span {
    position: absolute;
    left: 0;
    top: -69px;
    width: 75px;
    height: 100px;
    margin-bottom: -100px;
}


#recommend .title {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

#recommend .title img {
    width: 35px;
}

#recommend .title h2 {
    font-size: 50px;
    line-height: 58px;
    font-weight: bold;
    padding: 0 5px;
}



#recommend .sub_title {
    font-size: 15px;
    font-weight: bold;
    line-height: 100%;
}

#recommend .recommend_img img {
    border-radius: 15px;
    border: solid 5px #000000;
}

#recommend .text {
    font-size: 10px;
    line-height: 12px;
    text-align: left;
    margin: 4% 2%
}

@media screen and (max-width: 900px) {
    main {
        width: 100vw;
        left: 0%;
        border: none;
    }

    .inner {
        max-width: 600px;
        margin: 0 auto;
    }

    h3 {
        font-size: 29px;
    }



    #recommend span {
        left: 10%;
    }

    #recommend .title h2 {
        font-size: 60px;
    }

    #recommend .title img {
        width: 39px;
    }

    #recommend .sub_title {
        font-size: 17px;
    }

    #recommend .text {
        font-size: 12px;
    }
}

@media screen and (max-width:810px) {
    /* html, body {
      font-size: 16px;
    } */
    .inner {
      max-width: 500px;
      margin: 0 auto;
    }
}
@media screen and (max-width:6000px) {
#recommend span {
    left: 3%;
}
}

/* -------------------------------------------------------------------------------------------- */
#event {
    text-align: center;
    padding: 60px 0;
}

.event {
    padding: 7% 5%;
    background-color: #ffffff;
    border-radius: 15px;
    margin: 5%;
    letter-spacing: normal
}

#event h5 {
    font-size: 2rem;
    color: #04945f;
    letter-spacing: 0.12em;
}

#event .desc {
    line-height: 1.4;
    font-size: 10px;
}


#event .label {
    display: flex;
    justify-content: center;
}

#event .label div {
    display: inline-block;
    background-color: #04945f;
    border-radius: 60px;
    margin: 5px;
    padding: 3px 0.5rem;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

#event img {
    width: 75%;
}

.event_text {
    font-size: 12px;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: bold;
}

.event_note {
    font-size: 8px;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn {
    background-color: #ffa551;
    border-radius: 60px;
    margin: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    padding: 12px 60px;
    transition: all 0.2s ease 0s;
}

.btn:hover {
    opacity: 0.6;
    transition: all 0.2s ease 0s;
}


.btn a {
    display: inline-block;
    padding: 0.5rem 1rem;
}
@media screen and (max-width: 900px) {


#event .desc{
font-size: 0.9rem;
}

#event .label div{
    font-size: 0.8rem;
}

.event_text{
    font-size: 0.9rem;
}
}
/* -------------------------------------------------------------------------------------------- */

#food {
    text-align: center;
    padding: 60px 0;
}


#food .wrap {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;

    overflow: hidden;
}

#food .slideshow {
    display: flex;
    animation: loop-slide 30s infinite linear 1s both;
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

#food .content {
    width: 200px;
    height: 100%;
    margin: 10px 3px 30px;
}


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

#timetable {
    text-align: center;
    padding: 60px 0;
        margin: 0 5%;
}


#timetable img {
    width: 100%;
}

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

#access {
    margin: 0 5%;
    text-align: center;
}

#access .access {
    padding: 39px 10px;
    margin-bottom: 45px;

}

#access h4 {
    font-size: 14px;
    border-bottom: solid;

}

#access h4:nth-child(n+2) {
    margin-top: 35px;
}


#access .access_inner {
    margin: 0 22px;
    font-size: 11px;
    text-align: left;
}

#access .access_inner table th {
    padding-right: 15px;
}

@media screen and (max-width: 900px) {

    #access {
        margin: 0 10%;
    }

    #access h4 {
        font-size: 16px;

    }


    #access .access_inner {

        font-size: 12px;

    }
}

/* --------------------------------------------------------------------------- */
#contact {
    margin: 0 5%;
}

#contact div {
    text-align: center;
}

#contact form {
    margin-bottom: 140px;
}

#contact p {
    margin: 0 0 20px 0;
    font-size: 13px;
}


input {
    background-color: #ffffff;
    height: 25px;
}

input[type=text] {
    width: 70%;
}

input[type=email] {
    width: 100%;
}


select {
    background-color: #ffffff;
    width: 200px;
    appearance: auto;
    height: 25px;
}


.comment {
    align-items: flex-start;
    height: 25px;
}

textarea {
    width: 100%;
    height: 11.5em;
    overflow-y: auto;
    background-color: #ffffff;
}

.submit div {
    text-align: center;

}



input[type=submit] {
    width: 30%;
    border-radius: 15px;
    font-size: 70%;
    color: #000000;
    background-color: #ffffff;
    border: solid 3px ;
}


input[type=submit]:hover {
    color: #ffffff;
    background-color: #000000;
    border: solid 3px #000000;
}



@media screen and (max-width: 900px) {

    #contact {
        margin: 0 10%;
    }


    input[type=text] {
        width: 40%;
    }

    input[type=email] {
        width: 70%;
    }
}


/* --------------------------------------------------------------------------- */
#copyright {
    height: 200px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 10px;
    padding-top: 85px;

}

#copyright p {
    margin-bottom: 5px;
}


@media screen and (max-width: 900px) {
    #copyright {
        font-size: 70%;
    }
}

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

#pagetop{
    margin: 0 5%;
}

.pagetop{
       text-align: right;
       font-size: 13px;
       
}


.icon-circle-up:before {
  content: "\ea41";
}
/* --------------------------------------------------------------------------- */

@media screen and (max-width: 1100px) {
    .pc_outline h1 {
        max-width: 350px !important;
        margin: 0 auto;
    }
}


@media screen and (max-width: 1300px) {
    .pc_outline h1 {
        max-width: 400px !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1500px) {
    .pc_outline h1 {
        max-width: 500px !important;
        margin: 0 auto;
    }
}