/********************
    commune CSS
********************/
@charset "UTF-8";
html{
    font-size: 100%;
}
body {
   /* background-color: rgb(203, 200, 200);*/
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 0.05em;
    width: 100vw;
    height: 100vh;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
}
img {
    width: 100%;
}
.title{
   /* background-color: #27a666;*/
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
  
  footer{
    text-align: center;
  }
/********************
      header
********************/
.logo-area{
  width: 60px;
  height: 60px;
  align-items: center;
  transition: none;
  /*background-color: black;*/
}
#header{
  position: fixed;/*barを固定*/
  margin: 0 auto;
  width: 80vw;
  height: 70px;
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
  align-items: center;
  position: relative; /* 親要素にrelativeを追加 */
  z-index: 1; /* 親要素のz-indexを設定 */
   /*background-color: #dfdc9e;*/
}
.header-nav-items{
  display: flex;
  justify-content: space-around;
}
.header-nav ul li{
  display: inline-block;
  padding: 10px;
}
/********************
   pour hamburger
********************/
.hamburger {
  display: none; /* 初期状態では非表示 */
  cursor: pointer;
}
/********************
 top-logo(mainvisual)
********************/
.top-visual-logo{
    object-fit: cover;
    width: 60vw;
    margin: 0 auto;
    padding: 2% 0 ;
}
/********************
    imageが回転CSS
********************/
.transscaleX {
    animation: transscaleX 2.7s ease 0s 1 normal;
  }
/* transscaleX */
@keyframes transscaleX {
  0% {
    transform:scaleX(0);
  }
  100% {
    transform:scaleX(1);
  }
}
/********************
    about
********************/
.about-container{
  background-color: rgb(236, 233, 233);
}
.about-inner{
  width: 80vw;
  margin:  0 auto;
  padding: 5%;
  /*background-color: #e83b3b;*/
}
.about-text{
  padding-top: 30px;
  /*background-color: #13517d;*/
}
/********************
      chef
********************/
.chef-container{
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  padding-top: 30px;
}
.chef-inner{
  width: 80vw;
  margin:  0 auto;
  padding: 5%;
}
.chef-img{
  width: 45%;
}
.chef-text{
  width: 45%;
}
.chef-text h3{
  font-size: 24px;
  margin-bottom: 5px;
}
/********************
    obento 
********************/
.obento-container{
  width: 100vw;
  background-color: rgb(236, 233, 233);
  margin: 0 auto;
  align-items: center;
}
.obento-inner{
  width: 80vw;
  margin:  0 auto;
  padding: 5%;
}
.obento-text-sub{
  padding-top: 30px;
}

/********************
    ギャラリーmenu
    Modal実装
********************/
.menu-container{
  width: 100vw;
  background-color: rgb(236, 233, 233);
}
.menu-inner{
  width: 100vw;
  margin: 0 auto;
  padding-bottom: 50px;
}
.menu-item + .menu-item{
  margin-left: 10px;

}
.menu-list{
  display: flex;
  /*justify-content: space-around;*/
}

.menu-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal {
  display: none; /* 初期は非表示 */
  position: fixed; /* 固定表示 */
  z-index: 1000; /* 上に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 背景の透明度0.4より濃いのは、黒に近いのは1 */
  justify-content: center; /* 中央揃え */
  align-items: center; /* 縦中央揃え */
}

.js-modal{
  cursor: pointer;
}

.modal-content {
  max-width: 50%; /* 最大幅を設定 */
  max-height: 50%; /* 最大高さを設定 */
}

.close {
  position: absolute; /* 終了ボタンの位置 */
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/********************
  commnade tel ou insta
********************/
.section__inner{
  width: 80vw;
  margin:  0 auto;
  padding: 5%;
}
.commande-text{
  text-align: center;
}
.flow {
  background-color: #fff;
}
.flow__list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2カラム */
  gap: 16px;
  padding: 2%;
}
.flow__item {
  position: relative;
  border: 2px solid #454544;
  padding: 46px 16px 24px;
}

.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background-color: #4a4a4a;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
/********************
    Instagram
********************/
.instagram-container{
  background-color: rgb(236, 233, 233);
}
.instagram-inner{
  width: 80vw;
  margin:  0 auto;
  padding: 5%;}

/********************
    media query
********************/
@media screen and (max-width: 767px) {
  .header-nav-items {
    display: none; /* 初期状態では非表示 */
    flex-direction: column; /* 縦に並べる */
    position: absolute; /* ポジションを絶対に */
    width: 70%; /* 幅を100%に */
    top: 50px; /* ヘッダーの下に配置 */
    left: 0;
    display: none; /* 初期状態では非表示 */
    flex-direction: column; /* 縦に並べる */
    position: absolute; /* ポジションを絶対に */
    background-color: #eadcdc; /* 背景色 */
    width: 100%; /* 幅を100%に */
    top: 60px; /* ヘッダーの下に配置 */
    left: 0;
    z-index: 2; /* メニューのz-indexを設定 */
      /* background-color: #a4ce62;*/
  }
/********pour hamburger**********/
  .header-nav-items.show {
    display: flex; /* メニューを表示 */
  }
  .hamburger {
    display: block; /* ハンバーガーメニューを表示 */
  }
  .hamburger.active {
  content: "✖"; /* ✕印に変更 */
  }
/********************
   about responsive
********************/

/********************
   chef responsive
********************/
.chef-container{
  flex-direction: column;
  padding: 0;
  
}
.chef-img{
  margin: 0 auto;
  width: 100%;
}
.chef-text{
  margin: 0 auto;
  margin-top: 10px;
  width: 100%;
}
.chef-text h3{
  font-size: 24px;
  margin-bottom: 10px;
}
/********************
  obento responsive
********************/
.obento-container{
 flex-direction: column;
 align-items: center;
}
.obento-text{
 margin: 0 auto;
  width: 100%;
}
.obento-text h3{
  font-size: 24px;
  margin-bottom: 10px;
}
/********************
  menu modal responsive
********************/

.menu-inner{
  width: 100%;
}
.menu-list{
 display: block;
}

.menu-item + .menu-item{
  margin: 0 auto;
}
.menu-img{
  padding-top: 10px;
}

.section__inner{
  width: 100%;
  margin:  0 auto;
  padding: 5%;
}
.flow__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 2%;
}
.flow__item + .flow__item {
  margin-top: 0;
}



}