@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --gray-color: #aaa;
  --gray-color02: #fafafa;
  --primary-color: #669900;
  --bgc-color: #FFFBE0;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
    color: var(--black-color);
    font-size: 22px;
    /*font-family: "Noto Sans JP", sans-serif;*/
    font-family: "Zen Old Mincho", serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ---------- aside ---------- */
.page_aside {
  display: none;
}

.aside-nav_item {
  display: none
}



.aside_left {
  background-image: linear-gradient(rgba(0,0,0,0.6)),url('../img/aside1.jpg');
  background-position: center center; /* 中央寄せ */
  background-repeat: no-repeat;
  background-size: cover;
  width: calc((100% - 500px) / 2);
}

.aside_left-txtbox {
  font-weight: bold;
  font-size: 36px;
  margin-left: 20px;
  margin-top: 20px;
  color: var(--white-color);
}

.aside_sns {
  margin-left: 20px;
  margin-right: 30px;
}

.aside-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 960px) {

.page-wrapper{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    width: 100vw;
  }

.sm {
    max-width: 500px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: auto;
}

.page_aside {
    z-index: var(--z-index-default);
    display: block;
    height: 100vh;
    flex-shrink: 0;
    position: sticky;
    top: 0;
}

.aside-nav_item {
  display: block;
}
  
}

.aside_right {
  background-image: linear-gradient(rgba(0,0,0,0.6)),url('../img/aside3.jpg');
  background-position: center center; /* 中央寄せ */
  background-repeat: no-repeat;
  background-size: cover;
  width: calc((100% - 500px) / 2);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aside-nav {
  height: 100vh;  
  z-index: 9999;
  display: block; 
  color: var(--white-color);
  font-weight: bold;
  font-size: 44px;
  display: flex;
  align-items: center;
}



.aside-nav_item:not(:first-child) {
  margin-top: 30px;
}

.aside_sns {
  margin-top: 30px;
}

.aside-nav_link {
  padding: 8px;
  border-radius: 10px;
}

.aside-nav_link:hover {
  
  background-color: var(--white-color);
  color: var(--primary-color);
}






/* ---------- layout ---------- */
.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_contents {
  padding: 60px 20px;
  background-color: var(--bgc-color);
}



.l_header {
    position: absolute;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    background: transparent;
    z-index: var(--z-index-header);
}

.l_header-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;                 
  height: 100vh;              
  background: var(--primary-color);
  opacity: 0;
  transform: translateX(100%); 
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: var(--z-index-menu);
  pointer-events: none;
}

.l_header-nav_list {
  display: flex;
  gap: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.l_header-nav_item {
  text-align: center;
  font-size: 24px;
  color: var(--white-color);
  font-weight: bold;
}

/* -----module----- */
.m_hamburger {
  position: relative;
    width: 44px;
    height: 28px;
    position: relative;
    z-index: var(--z-index-menu);
}

.m_hamburger::after{
  position: absolute;
  content: "MENU";
  color: var(--white-color);
  transform: translate(-50%, 40%);
}

.m_hamburger-bar {
    width: 100%;
    height: 3px;
    position: absolute;
    background: var(--white-color);
    left: 50%;
    transition: 0.3s;
}

.m_hamburger-bar:first-child {
    top: 0;
    transform: translate(-50%, -0);
}

.m_hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
    top: 100%;
    transform: translate(-50%, -100%);
}

.m_kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.m_title-box {
  color: var(--white-color);
  margin-bottom: 30px;
}

.m_title-box__black {
  background-color: rgba(255, 251, 224, 0.8);
  border-radius: 8px;
  margin: 0 20px;
  color: var(--black-color);
}

.m_section_title{
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 44px;
}

.m_section_sub-title {
  margin-top: -10px;
}

.m_section_title::after {
  position: absolute;
  content: "";
  display: block;
  top: 80%;
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
}

.__black::after {
  position: absolute;
  content: "";
  display: block;
  top: 80%;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
}


/*---top----*/

.top_kv_overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.top_kv_slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 
}


.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(50%);
}

.slide.active {
  opacity: 1;
  z-index: 1; 
}

.top_kv_contents {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 80%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_kv-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
}

.top_kv-scroll_txt {
    text-align: center;
}

.top_kv-scroll_arrow {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 8px auto 0;
    border: 1px solid;
}

/* -------news------- */
.top_news-box{
  background-color: var(--primary-color);
  padding: 30px 0;
}

.top_news_item {
  padding-left: 10px;
  color: var(--white-color);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--white-color);
}

.top_news_date {
  font-size: 14px;
}


/* ------consept----- */
.top_consept {
  padding: 60px 20px;
  color: var(--white-color);
  background-image: linear-gradient(rgba(0,0,0,0.6)),url('../img/consept.png');
}

.cons_shima{
  position: relative;
  white-space: nowrap;
}

.cons_shima-img{
  margin-top: 60px;
}

.cons_shima-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  writing-mode: vertical-rl;
}

.cons_text-box{
  margin-top: 60px;
}

.cons_img{

  margin-top: 120px;
}

.cons_matsue{
  position: relative;
  width: 80%;
  max-width: 400px;
  transform: translateX(-20%);
}

@media screen and (min-width: 650px) {
  .cons_matsue{
  position: relative;
  width: 80%;
  max-width: 500px;
  left: 0;
}
}

.cons_paudar{
  position: absolute;
  width: 60%;
  max-width: 300px;
  right: 0;
  transform: translate(0%, 65%);
}

@media screen and (min-width: 500px) {
  .cons_paudar{
  position: absolute;
  width: 60%;
  max-width: 400px;
  right: 0;
  transform: translate(0%, 65%);
}
}

@media screen and (min-width: 800px) {
  .cons_paudar{
  position: absolute;
  width: 80%;
  max-width: 500px;
  right: 0;
  transform: translate(0%, 50%);
}
}

@media screen and (min-width: 960px) {
  .cons_paudar{
  position: absolute;
  width: 80%;
  max-width: 300px;
  right: calc((100% - 500px) / 2);
  transform: translate(10%, 50%);
}
}



/* ------menu----- */
.top_menu {
  background-color: var(--bgc-color);
  background-image: url('../img/模様2.png');
}

.menu_contents {
  padding-top: 160px;
  padding-bottom: 120px;
  padding-right: 20px;
}

.menu_list {
  margin-top: 60px;
}

.menu_item.menu_item {
  position: relative;
}

.menu_item:not(:first-child) {
  margin-top: 60px;
}

.menu_item_img {
  width: 90%;
  max-width: 500px;
}

.menu_item-tem {
  display: flex;
  position: absolute;
  top: 0%;
  left: 60%;
}

@media screen and (min-width: 670px) {
  .menu_item-tem {
  display: flex;
  position: absolute;
  top: 0%;
  left: 45%;
}
}

@media screen and (min-width: 960px) {
  .menu_item-tem {
  display: flex;
  position: absolute;
  top: 0%;
  left: 55%;
}
}

.hot {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  color: var(--white-color);
  background-color: #FF5050;
  border-radius: 50px;
}

.iced {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  color: var(--white-color);
  background-color: #64CEFB;
  border-radius: 50px;
}

@media screen and (min-width: 620px) {

  .hot {
  font-size: 32px;
  width: 110px;
  height: 110px;

}

.iced {
  font-size: 32px;
  width: 110px;
  height: 110px;
}
}

.menu_item-txtbox {
  background-color: var(--white-color);
  margin-right: 20px;
  margin-top: -60px;
  padding: 70px 20px 60px 20px;
}

.menu_item-title {
  font-size: 28px;
  font-weight: bold;
}

/* ------introduction----- */

.intro_title-box {
  display: flex;
  align-items: stretch;
}

.intro_title_txtbox {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--gray-color);
}

.intro_title-txt {
  font-weight: 900;
  font-size: 54px;
  margin: 0 -22px;
  padding: 0;
}

@media screen and (min-width: 960px) {
  .intro_title-txt {
  font-weight: 900;
  font-size: 64px;
  margin: 0 -22px;
  padding: 0;
}
}

.intro_title_txtbox {
  background: linear-gradient(rgba(0,0,0,0.6));
}

.intro_txt-box {
  color: var(--white-color);
  background-image: linear-gradient(rgba(0,0,0,0.6)),url('../img/back_intro.jpg');
  background-position: center;
  background-size: cover;
}

.intro_container {
  padding: 20px 20px 120px 20px;
}

.intro_txt1 {
  font-size: 24px;
}

.intro_txt2 {
  font-size: 44px;
  font-weight: bold;
  margin-top: -10px;
}

.intro_txt3 {
  font-size: 24px;
  margin-top: -10px;
  margin-bottom: 20px;
}


/* ------infomation----- */
.info_map {
  margin-top: 30px;
}

.info_map-box{
  display: flex;
  justify-content: center;
}

.map2 {
  display: none;
}

@media screen and (min-width: 600px) {
  .map1 {
    display: none;
  }

  .map2 {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .map1 {
    display: block;
  }

  .map2 {
    display: none;
  }
}

.info_box {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.info_txt {
  font-weight: bold;
}

.info_txt-list {
  margin-top: 20px;
}

.info_txt-item:not(:first-child) {
  margin-top: 20px;
}

.info_txt-mein {
  display: inline-block;
  border-radius: 15px;
  color: var(--white-color);
  padding:  0 8px;
  background-color: var(--primary-color);
}

.info_sns {
  border-bottom: var(--black-color) 1px solid;
}


/* ------js----- */
.js_body.is-active {
  overflow: hidden;
}

.js_nav.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}






/* (省略) ... .js_hamburger.is-active .m_hamburger-bar:last-child { ... } */


/* ---------- footer ---------- */
.l_footer {
    background-color: var(--primary-color); /* main.cssで定義された緑色 */
    color: var(--white-color); /* main.cssで定義された白色 */
    padding: 60px 20px;
    font-family: "Noto Sans JP", sans-serif; /* お知らせや店舗情報とフォントを合わせる */
}

.l_footer-container {
    max-width: var(--content-width); /* main.cssで定義されたコンテンツ幅 */
    margin: 0 auto;
    text-align: center;
}

.l_footer-logo {
    margin-bottom: 30px;
}

.l_footer-logo img {
    width: 150px;
    height: auto;
}

.l_footer-nav_list {
    display: flex;
    flex-wrap: wrap; /* スマホで折り返すように */
    justify-content: center;
    gap: 16px 24px; /* 縦横の隙間 */
    margin-bottom: 30px;
}

.l_footer-nav_link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.l_footer-nav_link:hover {
    opacity: 0.8;
}

.l_footer-info {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.l_footer-sns {
    margin-bottom: 30px;
}

.l_footer-sns p {
    font-weight: bold;
    font-size: 20px;
}

.l_footer-sns_link {
    display: block;
    display: flex;
    align-items: center;
    margin: 0 auto 10px;
    padding: 10px;
    border: 1px solid var(--white-color);
    border-radius: 8px;
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.footer_insta {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.l_footer-sns_link:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.l_footer-copyright {
    font-size: 12px;
    text-align: center;
}