@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Playwrite+RO:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

:root{
    --c_g:#0F7E1E;
    --c_dkg:#2f5521;
    --c_ltg:#F3F3EE;
    --c_ltgy:#EBEBDB;
    --c_ltbrun:#f0e3c8;
    --c_yel:#c2c211;
    --c_wte:#FFFFFF;
    --c_blk:#413c0b;
    --f_ibm:"IBM Plex Sans JP", sans-serif;
    --f_zmg:"Zen Maru Gothic", serif;
    --f_pwr:"Playwrite RO", cursive;
    --f_pop:"Poppins", sans-serif;
}

/* html { scroll-behavior: smooth;} */


h1,h2,h3,p,div{
    margin: 0;
    padding:0;
}

body{
    background-color: #fffbf0;
}

a:link,a:visited,a:active{
    color: var(--c_g);
    text-decoration: none;
}

a:hover{
    opacity: 0.6;
    transition: 0.6s ease;
}

.span-y{
    color: var(--c_yel);
}
.sp-only{
    display: none;
}

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

@media screen and (max-width:960px) {
    a:hover{
        opacity: 1;
        transition: none;
    }
}

@media screen and (max-width:960px) {
    .sp-only{
        display: block;
    }
}


ul,li{
    margin: 0;
    padding: 0;
}

/* --------------------------------
    A - Text Slide in
--------------------------------*/
  
  @keyframes showTextFromBottom{
    0%{
      transform: translateY( 100% );
    }
    50%{
      transform: translateY( -20% );
    }
    100%{
      transform: translateY( 0px );
    }
  }
  .anime-up.displayed span{
    animation: showText 0.2s backwards;
    display: inline-block;
  }
  .anime-up.displayed > span{
    overflow: hidden;
  }
  .anime-up.displayed > span > span{
    animation: showTextFromBottom 0.5s backwards;
  }


/* --------------------------------
    A - Slide in
--------------------------------*/
  .slideIn{
    opacity: 0;
    transform: translateY(100px);
    transition: 0.5s;
  }
/* --------------------------------
    header-pc
--------------------------------*/

.l-header_wrapper-pc{
    position: fixed;
    width: 100%;
    z-index: 200;
    top: 0;
}

.l-header_wrapper_inner_flex-pc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 20px;
    position: relative;
}

.l-header_item_logo{
    max-width: 160px;
}

.l-header_item_logo img{
width: 100%;
}

.l-header_wrapper_inner_flex{
    display: flex;
    margin: 20px auto;
}

.l-header_item_wrapper-pc{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    padding: 8px 8px 8px 24px;
    border: 1.5px solid var(--c_g);
    background-color: var(--c_wte);
    border-radius: 64px;
}

.l-header_item_wrapper-pc ul{
display: flex;
gap: 16px;
list-style: none;
}

.l-header_item_wrapper-pc ul li{
    margin: 0px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c_g);
    font-family: var(--f_zmg);
    align-items: center;
    display: flex;
}

.l-header_item_btn-pc{
    display: flex;
    justify-content: space-between;
    background-color: var(--c_g);
    border-radius: 50px;
    min-width: 96px;
    text-align: center;
    align-items: center;
    padding: 4px 10px 4px 32px;
}

.l-header_item_btn-pc p{
    font-weight: 700;
    margin: 16px 12px 16px 0px;
    font-size: 14px;
    color: var(--c_wte);
    font-family: var(--f_zmg);
}

.l-header_item_btn-pc img {
    width: 40px;
    height: 40px;
}

.l-header_item_btn-pc p::after{
    content: "";
}

@media screen and (max-width:960px) {
    .l-header_item_wrapper-pc{
        display: none;
    }
    .l-header_wrapper_inner_flex-pc{
        margin: 12px 16px;
    }
    .l-header_item_logo{
max-width: 160px;
        align-items: center;
        display: flex;
        top: 4px;
        position: relative;
    }
}

/* --------------------------------
    footer.l-mv_content_wrapper
--------------------------------*/

.p-footer_copyright_text{
    font-size: 12px;
    background-color: var(--c_dkg);
    text-align: center;
    padding: 8px;
    line-height: 1.2;
    color: var(--c_ltgy);
    font-family: var(--f_ibm);
    font-weight: 400;
}

/* --------------------------------
    header-sp
--------------------------------*/
#header_sp {
    display: none;
  }

@media screen and (max-width:960px)  {
    #header_sp {
      display: block;
    }
  
    .header_sp_inner {
      display: flex;
      width: 100%;
      margin: 0 auto;
      margin-top: 40px;
      margin-bottom: 32px;
      align-items: center;
    }
  
    #sp_nav.panelactive {
      position: fixed;
      z-index: 9999;
      top: 0;
      width: 100%;
      height: 100vh;
    }
  
    /*丸の拡大*/
    .circle-bg {
      position: fixed;
      z-index: 21;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--c_ltbrun);
      transform: scale(0);
      right: -50px;
      top: -50px;
      transition: all .6s;
    }
  
    .circle-bg.circleactive {
      transform: scale(50);
    }
  
    /*ナビゲーションの縦スクロール*/
    #sp_nav-list {
      display: none;
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    #sp_nav.panelactive #sp_nav-list {
      display: block;
    }
  
    #sp_nav ul {
      opacity: 0;
      position: absolute;
      width: 100%;
      z-index: 999;
      top: 280px;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    #sp_nav.panelactive ul {
      opacity: 1;
    }
  
    #sp_nav.panelactive ul li {
      animation-name: gnaviAnime;
      animation-duration: 1s;
      animation-delay: .2s;
      animation-fill-mode: forwards;
      opacity: 0;
    }
  
    @keyframes gnaviAnime {
      0% {
        opacity: 0;
      }
  
      100% {
        opacity: 1;
      }
    }
  
    #sp_nav li {
      text-align: center;
      list-style: none;
      padding: 0px 16px;
    }
  
    #sp_nav li a {
      color: var(--c_g);
      text-decoration: none;
      padding: 20px 0px 20px 10px;
      display: block;
      font-size: 16px;
      line-height: 1.6;
      font-family: var(--f_zmg);
      letter-spacing: 0.1em;
      font-weight: bold;
      text-align: left;
      border-bottom: 1.5px dashed var(--c_yel);
    }
  
    .openbtn1 {
      position: fixed;
      border-radius: 64px;
      background-color: var(--c_ltgy);
      top: 8px;
      right: 8px;
      z-index: 10000;
      cursor: pointer;
      width: 100px;
      height: 54px;
      border: 1.5px solid var(--c_g);
    }
  
    .openbtn1 span {
        transition: all .4s;
        height: 2px;
        top: 18px;
        left: 35px;
        position: absolute;
        background-color: var(--c_g);
        width: 30%;
        border-radius: 64px;
        margin: 0 auto;
    }
  
    .openbtn1 span:nth-of-type(1) {
      top: 16px;
    }
  
    .openbtn1 span:nth-of-type(2) {
      top: 26px;
    }
  
    .openbtn1 span:nth-of-type(3) {
      top: 36px;
    }
  
    .openbtn1.active span:nth-of-type(1) {
        top: 20px;
        left: 34px;
        transform: translateY(6px) rotate(-45deg);
        width: 32%;
    }
  
    .openbtn1.active span:nth-of-type(2) {
      opacity: 0;
    }
  
    .openbtn1.active span:nth-of-type(3) {
        top: 32px;
        left: 34px;
        transform: translateY(-6px) rotate(45deg);
        width: 32%;
    }
    .header_instagram_icon{
        position: fixed;
        top: 10px;
        z-index: 9999;
        right: 124px;
    }
    .header_instagram_icon img{
        width: 54px;
    }
  }
  

/* --------------------------------
    fixed-icon
--------------------------------*/

.l-fixed_pagetop_link{
    position: fixed;
    bottom: 20px;
    right: 20px;  
    z-index: 20;
}


@media screen and (max-width:960px) {
    .l-fixed_pagetop_link img{
        width:100px
    }
    .l-fixed_pagetop_link{
        right: 8px;  
    }
}

/* --------------------------------
    mv
--------------------------------*/

.l-mv_content_wrapper{
    width: 100%;
    margin: 0px auto 120px;
}

.l-mv_content_wrapper img{
    width: 100%;
}

.slick-track{
    display: flex;
    gap: 20px
}

.slick-slide{
    width: 800px;
}

.slick-slide img{
border-radius: 20px;
}

.l-mv_content_title_wrapper{
    margin: 180px auto 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
align-items: center;
padding: 0% 8%;
}

.l-mv_content_title_left_box{
    min-width: 40%;
}

.l-mv_content_title_left_box h2{
    font-size: 32px;
    font-family: var(--f_zmg);
    color: var(--c_g);
    line-height: 1.6;
}

.l-mv_content_title_right_box p {
    color: var(--c_blk);
    line-height: 1.8;
    font-family: var(--f_ibm);
    font-weight: 500;
}

@media screen and (max-width:960px) {
    .l-mv_content_wrapper{
        display: flex;
        margin: 48px auto 32px;
        flex-direction: column-reverse;
    }
    .l-mv_content_title_left_box h2{
        font-size: 28px;
    }
    .l-mv_content_title_wrapper{
        grid-template-columns: 1fr;
        margin: 16px 0px 0px;
        padding: 0px 16px;
    }
    .slick-slide{
        width: 320px;
    }
    .l-mv_content_title_right_box p{
        margin: 0px;
        font-size: 14px;
    }
}

/* --------------------------------
    TOP Contents
--------------------------------*/

.l-content_inner{
    margin: 80px auto;
    padding: 0% 8%;
}

.p-contents_heading_subject{
    color: var(--c_g);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--f_ibm);
    display: flex;
    align-items: center;
}

.p-contents_heading_subject::before{
    content: url("../images/top/heading_subject_icon.svg");
    margin-right: 12px;
}

.p-contents_heading_ttl{
font-size: 32px;
line-height: 1.6;
font-family: var(--f_zmg);
color: var(--c_blk);
margin: 16px 0px 24px;
}

.l-content_about_wrapper{
    width: 100%;
    background-color: var(--c_ltgy);
    padding: 48px 0px;
    border-radius: 20px 20px 0px 0px;
    margin: 80px auto 0px;
}
.l-content_about_flexbox{
    display: flex;
    justify-content: space-between;
    gap: 8%;
    align-items: center;
}

.p-content_p_text{
    font-size: 16px;
    font-weight: 500;
    font-family: var(--f_ibm);
    color: var(--c_blk);
    line-height: 1.6;
}
.l-content_about_right_column{
    width: 60%;
}

.l-content_about_right_column_image_box{
    margin: 24px auto;
}

.l-content_about_right_column_image_box img{
width: 100%;
border-radius: 20px;
}

.l-content_menu_wrapper{
    padding: 40px 0px;
    background-color: var(--c_ltbrun);
}
.l-content_menu_card_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.l-content_menu_card_list li{
    list-style: none;
}

.l-content_menu_card_list li img{
width: 100%;
border-radius: 20px;
}
.p-contents_menu_name{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--f_zmg);
    color: var(--c_g);
    margin: 4px 0px 8px;
}

.p-contents_menu_price{
    font-size: 16px;
    font-weight: 600;
    font-family: var(--f_ibm);
    color: var(--c_g);
}

.l-content_menu_card_wrapper{
    margin: 48px 0px 0px;
}

.p-content_btn_01{
    background-color: var(--c_g);
    padding:  24px;
    border-radius: 64px;
    max-width: 240px;
    text-align: center;
    color: var(--c_wte);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: center;
    margin: 40px auto 0px;
    font-family: var(--f_zmg);
}


.l-content_flexbox{
    display: flex;
    justify-content: space-between;
    gap: 8%;
    align-items: center;
}
.l-content_flexbox_l_box{
    width:44%;
}
.l-content_flexbox_r_box{
    width:44%;
}

.l-content_flexbox_r_box iframe{
    border-radius: 20px;
    height: 600px;
}

.l-content_flexbox_r_box img{
width: 100%;
border-radius: 20px;
}
.l-content_access_list li{
    display: flex;
    list-style: none;
    align-items: baseline;
    gap: 20px;
    padding: 20px 0px;
    border-bottom: 1.5px dashed var(--c_yel);
}

.l-content_access_list_ttl_box{
    width: 20%;
}

.l-content_access_list_ttl{
    font-size: 16px;
    font-weight: 600;
    color: var(--c_g);
    line-height: 1.6;
    font-family: var(--f_ibm);
}
.l-content_access_list_text{
    font-size: 16px;
    font-weight: 600;
    color: var(--c_blk);
    line-height: 1.6;
    font-family: var(--f_ibm);
}

.l-content_access_list_text_info{
    font-size: 14px;
    font-weight: 600;
    color: var(--c_blk);
    line-height: 1.6;
    font-family: var(--f_ibm);
    margin: 20px 0px 0px;
}
.l-content_access_wrapper{
    padding: 40px 0px 40px;
    background-color: var(--c_ltgy);
    border-radius: 20px 20px 0px 0px;
}



@media screen and (max-width:960px) {
    .l-content_inner{
        margin: 40px auto 0px;
        padding: 0px 16px;
    }
    .p-contents_heading_subject{
        color: var(--c_g);
        font-size: 16px;
        font-weight: 600;
        font-family: var(--f_ibm);
        display: flex;
        align-items: center;
    }
    .p-contents_heading_subject::before{
        margin-right: 8px;
    }
    .p-contents_heading_ttl{
        font-size: 24px;
        line-height: 1.6;
        font-family: var(--f_zmg);
        color: var(--c_blk);
        margin: 8px 0px 16px;
        }
        .l-content_about_wrapper{
            width: 100%;
            background-color: var(--c_ltgy);
            padding: 40px 0px;
        }
        .l-content_about_flexbox{
            flex-direction: column;
            gap: 20px;
        }
        .p-content_p_text{
            font-size: 14px;
            margin: 0px;
        }
        .l-content_about_right_column{
            width: 100%;
        }
        .l-content_about_right_column_image_box{
            margin: 0;
        } 
        .l-content_menu_card_wrapper{
            margin: 24px 0px 0px;
        }
        .l-content_menu_card_list{
            grid-template-columns: 1fr;
        }
        .p-contents_menu_name{
            font-size: 16px;
            font-weight: 600;
            font-family: var(--f_zmg);
            color: var(--c_g);
            margin: 4px 0px 8px;
        }
        
        .p-contents_menu_price{
            font-size: 14px;
            font-weight: 600;
            font-family: var(--f_ibm);
            color: var(--c_g);
        }
        .l-content_access_wrapper{
margin-top: 64px;
        padding: 20px 0px 64px;
        }
        .l-content_flexbox{
            flex-direction: column;
            gap: 24px;
        }
        .l-content_flexbox_l_box{
            width:100%;
        }
        .l-content_flexbox_r_box{
            width:100%;
        }
        .l-content_access_list_ttl{
            font-size: 14px;
            font-weight: 600;
            color: var(--c_g);
            line-height: 1.6;
            font-family: var(--f_ibm);
        }
        .l-content_access_list_text{
            font-size: 14px;
            font-weight: 600;
            color: var(--c_blk);
            line-height: 1.6;
            font-family: var(--f_ibm);
        }
        
        .l-content_access_list_text_info{
            font-size: 12px;
            font-weight: 600;
            color: var(--c_blk);
            line-height: 1.6;
            font-family: var(--f_ibm);
            margin: 20px 0px 0px;
        }

        .l-content_flexbox_r_box iframe{
            height: 360px;
        }

        .l-content_access_list li:first-child{
            padding: 0px 0px 20px;
        }
        
}


.loading {
    position: fixed;
    inset: 0;
    z-index: 20;
    height: 100svh;
    background-color: var(--c_ltbrun);
  }
  
  .loading__inner {
    width: 100%;
    height: inherit;
    display: grid;
    place-content: center;
    row-gap: 10px;
  }
  
  .loading__text {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: var(--c_g);
    font-family: var(--f_zmg);
    font-weight: 600;
  }
  
  .loading__logo {
    margin: 0 auto;
    width: min(200px, 100%);
  }
  
  .contents {
    display: block;
  }