@charset "utf-8";

 
/* =============================
メニューヘッダー
============================= */
main{
  color: #000;
}
main h2{
  color: #1a5b7a;
}
.main-header{
height: 100px;
margin-top: 102px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
position: relative;
}
.main-header h1{
  color: #b6854f; 
  margin-top: 8px;
}
.main-header p{
  font-size: 16px;
}
/* 矢印 */
.jumppage{
position: absolute;
bottom: -100%;
right: 14%;}

.arrow-wrap {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
  text-decoration: none;
}

.arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11em;
  height: 5em;
  transform: translate(1em, -2em);
}
.arrow::before, .arrow::after {
  box-sizing: border-box;
}
.arrow::before {
  content: '';
  position: absolute;
  left: 0;
   width: 100%;
  height: 0.18em;
  background-color: #b6854f;
}
.arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 0.09em);
  width: 12%;
  height: 0.18em;
  background-color: #b6854f;
  transform-origin: right top;
  transform: rotate(40deg);
}

/* ==========
LP
=========== */
@media (max-width: 768px) {
  .main-header {
    height: auto;
    padding: 0 20px; }

  .main-header h1 {
    font-size: 36px; 
  }

  .main-header p {
    font-size: 14px; 
  }
  .jumppage {
    position: static;    
    margin-top: 20px;       /* テキストとの間に隙間を作る */
  }

  .arrow-wrap {
    font-size: 18px; 
  }

  .arrow {
    transform: translate(0, 0); 
    width: 12.5em;             /* 横幅を少しコンパクトに */
    height: 1em;            /* 高さを少しコンパクトに */
  }
}

/* =============================
menu
============================= */
/* udon */
.udon-all-menu{
  width: 80vw;
  margin: 0 auto; 
  text-align: center;
}
.udon-menu{
  width: 100%;
}
.menu-category{
 margin: 36px 0 16px;
}
.item{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item .ue,.shita{
  display: flex;
  justify-content: center;

}
  .menu-card{
    width: 240px;
    font-weight: 600;
  line-height: 1.1em;
  }
  .menu-card .price{
    font-size: 20px;
    font-weight: 500;
  }
  .menu-card .small{
    font-size: 16px;
    line-height: 1em;
  }

  /* ===============
  LP
  =============== */
  @media (max-width: 720px) {
    .item .ue,.shita{
      flex-wrap: wrap;
    }
    .nabe-course {
      width: 95%;
    }
    .nabe-course .menu-header {
      margin-bottom: 16px;
    }
    .nabe-course .nabe-item {
      width: 100%;
      justify-content: center;
    }
    .nabe-course .nabe-menu-card {
      width: 42%; 
      margin: 12px 3%;
    }
    .nabe-course .nabe-menu-card .menu-title,
    .nabe-course .nabe-menu-card .menu-title-btn {
      font-size: 14px;   
      margin-top: 12px;
    }
    .nabe-course .nabe-menu-card .price {
      font-size: 15px; 
      margin-top: 4px;
    }
  }

  /* =============================
その他のメニュー
============================= */

.other{
  width: 90%;
  max-width: 1100px;
  margin: 36px auto ;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 1em;
}

.other-card{
  height:  auto; 
  margin-bottom: 24px;
}
.other h3{
  color: #1a5b7a;
}
.other h3 small{
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
}
.card-inner{
  background-color: #fff;
  padding:  16px;
  border: solid 1px #000;
  min-height: 160px;
  line-height: 1.8;
}
.card-inner ul li{
  list-style: square;
  padding-left: 20px;
}

/* 麺大盛り */
.men .card-inner{
  text-align: center;
}

.men .big{
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
}
.men p{
  font-size: 20px;
  text-decoration: underline;
}

/* トッピング */
.topping ul{
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.topping ul li{
  display: flex;
  justify-content: space-between;
  width: 45%;
}

/* ご飯 */
.gohan {
  width: 100%;
}
.gohan ul li{
  display: flex;
  justify-content: space-between;
}

/* おでん */
.oden{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 160px;
}

.oden ul{
  display: flex;
  flex-direction: row;        
  flex-wrap: wrap;     
} 

.oden ul li {
  display: inline-block;
  width: auto;              
}
.oden .gyusuji{
  border-top: 1px dashed #ccc;
}
.oden .gyusuji li{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.oden .oden150en{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.oden150en ul{
  display: flex;

}
.oden150en  .price-150 {
  margin-left: auto;
 }

/* ==================
LP
===================== */
@media (max-width: 768px) {
  .other {
    width: 90%;         
    grid-template-columns: 1fr; 
    grid-template-rows: auto;  
    row-gap: 24px;            
  }

  .other-card {
    height: auto;
  }
  
  .card-inner {
    height: auto;
    min-height: 120px;
    padding: 20px;   
  }

  .topping ul li {
    width: 100%; 
    margin-bottom: 8px; 
  }
  
  .gohan ul li {
    margin-bottom: 8px;
  }

  .oden .oden150en {
    flex-direction: column;  
    align-items: flex-start;
  }

  .oden150en ul {
    gap: 8px 12px;         
    margin-bottom: 12px;   
  }

  .oden p {
    margin: 0 0 0 auto;  
  }
  
  .oden .gyusuji {
    margin-top: 16px;     
    padding-top: 12px;
  }
}

/* ===============================================
DINNER MENU
=============================================== */

/* 全体設定 */
.dinner{
  color: #000;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.dinner .main-header .text{
  color: #1a5b7a;
}
.dinner h2{
  color: #b6854f;
  margin-top: 80px; 
  margin-bottom: 24px;
}
.dinner h3{
  color: #1a5b7a;
  font-size: 36px;  
  margin-top: 64px;
  margin-bottom: 20px; 
}
.small{
  font-size: 16px;
  color: #c00; 
}
/* ==============
コース
============== */
.enkai-course .goannai{
  margin-top: 48px ;
}
.goannai p{
  font-size: 24px;
}
.goannai span{
  text-decoration: underline;
} 
/* のみほ */
.nomiho{
  height: fit-content;
  width: fit-content;
  margin: 0 auto;
}
.nomiho h3 {
  color: #b6854f;
}
.nomiho span{
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

.nomiho-drink-list{
  background-color: #fff;
  border: solid 1px #000;
  padding: 16px;
  text-align: left;
}

.nomiho-drink-list ul{
  list-style: square;
  padding-left: 30px;
}

/* 鍋コース */
.nabe-course{
  height: fit-content;
  width: 80%;
  margin: 0 auto;
}

.nabe-course .nabe-item{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;  
}
.nabe-course .nabe-menu-card{
  width: 240px;
  font-weight: 600;
line-height: 1.1em;
margin: 24px 36px 0;
}

.nabe-course  .nabe-item-img{
  aspect-ratio: 1/1;
  object-fit: cover;
}

.nabe-course .nabe-menu-card .menu-title{
  margin-top: 24px;
}

.nabe-course .nabe-menu-card  .price{
  font-weight: 500;
}

.dotedline{
  width: 100%;
  height: 1em;
  border-top: 2px dotted #ccc;
  margin-top: 80px;
  margin-bottom: 40px;
}

/* 通常コース */
.normal-course{
  width: 100%;
  margin: 0 auto;
  }
.normal-course span{
font-size: 36px;
letter-spacing: 0.05em; 
margin-left: 8px;
font-weight: 600;
}
.normal-course .dinner-pic{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}
.normal-course img{
  width: 15%;
  aspect-ratio: 3/2;
  margin: 24px auto;
}

/* ==============================
一品
=============================== */
.alacarte {
  margin: 120px auto;
}

.nabe-tanpin {
  width: 70%;
  display: flex;
  justify-content: space-between;
  margin: 36px auto;
}

.nabe-tanpin .nabe-img {
  width: 30%;
  margin: 0 auto;
}

.nabe-img .img-top img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 8px;
 }

.nabe-img .img-bottom {
  display: flex;
  justify-content: space-between;
}

.nabe-img .img-bottom img {
  width: 31%; 
  aspect-ratio: 1/1;
  object-fit: cover;
}


.nabe-list {
  width: 70%;
  margin: 24px auto;
}

.nabe-list ul {
  list-style: square;
  padding-left: 30px;
  margin-left: 60px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.nabe-list ul li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.nabe-list ul li span {
  font-weight: 500;
}

/* おでんの価格調整 */
.nabe-list .oden150en {
  text-align: left;
  padding-left: 30px;
  margin-left: 60px;
}

.nabe-list .oden150en p {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  line-height: 1.6;
}

.nabe-list .oden150en p span {
  font-weight: 500;
  margin-left: auto;
}

.nabe-list .gyusuji ul {
  margin-top: 0;
}

/* 一品料理 */
.alacarte-menu {
  width: 80%;
  margin: 36px auto;
  background-color: #fff;
  border: solid 1px #000;
  padding: 36px;
}

.alacarte-list {
  margin-top: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.alacarte-list ul {
  width: 45%; 
  list-style: square;
  padding-left: 30px;
  margin: 0;
}

.alacarte-list ul li {
  margin-bottom: 12px;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  
  /* ▼ メニューと金額の間にドットの点線を入れる設定 */
  background: repeat-x bottom 4px left;
  background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
  background-size: 6px 1px;
}

/* メニュー名と金額の背景を白にして、点線と重ならないようにする */
.alacarte-list ul li {
  background-color: #fff;
}
.alacarte-list ul li span {
  font-weight: 500;
  background-color: #fff;
  padding-left: 4px;
}

/* 「※季節のおすすめ〜」の注意書き設定 */
.alacarte-list .nondecolation {
  display: block; 
  list-style: none;
  margin-top: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: none; 
}

/* 5枚の画像を横並びにする親要素 */
.alacarte-pic {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}

/* 中にある5枚の画像自体の設定 */
.alacarte-pic img {
  width: 18%;   
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* ===============================================
タブレットサイズ（画面幅 769px 〜 1024px）
=============================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* 全体設定 */
  html, body {
    overflow-x: hidden; /* 画面が横にズレるのを防ぎます */
    width: 100%;
  }

  .content {
    display: block; 
    width: 100%;
    overflow: hidden; /* 中身のメニューがはみ出すのを防ぎます */
  }
  .dinner {
    width: 95%;
  }
  .dinner h2 {
    font-size: 40px;
  }
  .dinner h3 {
    font-size: 30px;
  }

  /* 鍋コース */
  .nabe-course {
    width: 90%;
  }
  .nabe-course .nabe-item {
    width: 100%;
    justify-content: center;
  }
  .nabe-course .nabe-menu-card {
    width: 28%; 
    margin: 20px 2%;
  }

  /* 一品 */
  .nabe-tanpin {
    width: 90%;
  }
  .nabe-tanpin .nabe-img {
    width: 35%;
  }
  .nabe-list {
    width: 60%;
    margin: 0;
  }
  .nabe-list ul,
  .nabe-list .oden150en {
    margin-left: 20px; 
  }

  .alacarte-menu {
    width: 90%;
    padding: 24px;
  }
}

/* ===============================================
スマートフォンサイズ（画面幅 768px 以下）
=============================================== */
@media screen and (max-width: 768px) {
  .dinner h2 {
    font-size: 24px;   
    margin-top: 48px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
  }
  .dinner h3 {
    font-size: 18px;     
    margin-top: 24px;
    margin-bottom: 8px;
    font-weight: 700;
  }
  .menu-header p {
    font-size: 14px;    
    color: #444;
    line-height: 1.6;
    margin-bottom: 6px;
    padding: 0 8px; 
  }
  .dinner .small {
    font-size: 12px;    
    color: #c00;    
    margin-top: 4px;
    font-weight: 600;
  }
  .goannai {
    margin-top: 32px;
  }
  .goannai p {
    font-size: 15px;      
    margin-bottom: 6px;
    line-height: 1.4;
  }

  /* のみほ */
  .nomiho {
    width: 90%;         
    margin-top: 24px;
  }
  .nomiho span {
    font-size: 15px;      
    display: block;      
    margin-top: 4px;
  }
  .nomiho-drink-list {
    padding: 12px 16px;   
  }
  .nomiho-drink-list ul li {
    font-size: 14px;   
    margin-bottom: 8px;
    line-height: 1.4;
  }

  /* 鍋コース */
  .nabe-course {
    width: 95%;
  }
  .nabe-course .menu-header {
    margin-bottom: 16px;
  }
  .nabe-course .nabe-item {
    width: 100%;
    justify-content: center;
  }
  .nabe-course .nabe-menu-card {
    width: 42%; 
    margin: 12px 3%;
  }
  .nabe-course .nabe-menu-card .menu-title,
  .nabe-course .nabe-menu-card .menu-title-btn {
    font-size: 14px;   
    margin-top: 12px;
  }
  .nabe-course .nabe-menu-card .price {
    font-size: 15px;    
    margin-top: 4px;
  }

  /* 通常コース*/
  .normal-course {
    margin-top: 24px;
  }
  .normal-course span {
    font-size: 24px;  
  }
  .normal-course .dinner-pic {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .normal-course img {
    width: 28%; 
    margin: 0;
  }

  /* 一品 */
  .nabe-tanpin {
    width: 100%;
    flex-direction: column; 
    align-items: center;
    margin: 20px auto;
  }
  .nabe-tanpin .nabe-img {
    width: 90%; 
    margin-bottom: 24px;
  }
  

  .nabe-list {
    width: 100%;
    margin: 0;
  }
  .nabe-list ul,
  .nabe-list .oden150en {
    margin-left: 0; 
    padding-left: 12px;
    padding-right: 12px;
  }
  .nabe-list ul li {
    font-size: 15px; 
    margin-bottom: 12px;
    gap: 8px; 
  }
  .nabe-list ul li span {
    white-space: nowrap; 
    text-align: right;
  }

  .nabe-list .oden150en p {
    font-size: 15px;
    margin-bottom: 12px;
    gap: 8px;
  }
  .nabe-list .oden150en p span {
    white-space: nowrap; 
  }

  /* 一品料理 */
  .alacarte-menu {
    width: 95%;
    padding: 16px; 
  }
  .alacarte-list {
    flex-direction: column; 
  }
  .alacarte-list ul {
    width: 100%; 
    padding-left: 16px;
    padding-right: 16px;
  }
  .alacarte-list ul li {
    font-size: 15px;
    margin-bottom: 10px;
    gap: 8px;
  }
  .alacarte-list ul li span {
    white-space: nowrap; 
  }
  .alacarte-list ul:last-child {
    margin-top: 0; 
  }
  .alacarte-list .nondecolation {
    font-size: 13px;
    margin-top: 12px;
    padding-left: 0;
  }

  .alacarte-pic {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  .alacarte-pic img {
    width: 30%; 
  }
}
