
/* ===============================
   meal共通
================================= */
.meal-menu {
  display: none;
}    
.meal-menu.show{
  display: block;
}
.meal-fade {
	animation: fadein 5s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}




/* ===============================
   meal-top
================================= */
.meal-top {
  position: relative;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: url("../img/meal/meal-top.jpg") no-repeat center center / cover;
}
.meal-top .text h1 {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  border: 1px solid #fff;
  padding: 15vh 3vw; /* 画面比率で調整 */
  font-size: 2em;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  white-space: nowrap;
}
.meal-top .text h1::before{
    content: "";
    position: absolute;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid white;
    pointer-events: none;
    transition: all 0.5s;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    }
@media (max-width: 768px) {
.meal-top {
    background-position: 40% center;
}
.meal-top .text h1 {
  padding: 15vh 7vw;
  left: 50%;
}
}




/* ===============================
   meal-sec01
================================= */
.meal-sec01{
  padding: 15% 0 0 0;
}
.meal-sec01 .area{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  z-index: 3;
  color: white;
}
.meal-sec01 .col{
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 500px;
}
.meal-sec01 .col img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.meal-sec01 .left{
  margin-top: 5%;
  transition-delay: 1s;
}
.meal-sec01 .center{
  margin-top: 2.5%;
  transition-delay: 0.5s;
}
@media (max-width: 768px) {
    .meal-sec01{
  padding: 20% 0 0 0;
}
}




/* ===============================
   meal-sec02
================================= */
.meal-sec02 {
  padding: 5% 0 0 0;
  color: white;
}
.meal-sec02 .area {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 30% 0 0;
  gap: 5rem;
  align-items: center;
}
.meal-sec02 .wrap01 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #7F6000;
  font-size: 1.5rem;
}
.meal-sec02 .wrap02{
  font-size:1.25rem;
}
.meal-sec02 .wrap02 .line {
  width: 75px;
  height: 1px;
  background-color: #ccc;
  margin: 1rem 0;
}
.meal-sec02 .indent{
        
    }
@media (max-width: 768px) {
    .meal-sec02{
        padding:20% 0 0 0;
    }
.meal-sec02 .area {
  padding: 0 0 0 0;
  flex-direction:column;
  gap: 1rem;
}
.meal-sec02 .wrap01 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}
.meal-sec02 .indent{
      text-indent: 0;
    text-align: left;
    display: block;
}
}




/* ===============================
   meal-sec03
================================= */
.meal-sec03 {
  color: white;
  padding: 20% 0 0 0;
}

.meal-sec03 .area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.meal-sec03 .area .wrap01 {
  position: relative;
  display: flex;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
  font-weight: bold;
  gap: 1rem;
  white-space: nowrap;
}

.meal-sec03 .area .wrap01 .line {
  height: 5px;
  background-color: #7F6000;
}

.meal-sec03 .wrap02 {
  display: flex;
  gap: 5rem;
  font-size: 2rem;
}

.meal-sec03 .meal-button {
  padding: 20px;
  text-align: center;
  background: url(../img/meal/tab-arrow.png) no-repeat 50% 100% / 200px;
    transition: 0.5s;
    cursor: pointer;
}
.meal-sec03 .meal-button:hover{
  color: #7F6000;
    transition: 0.5s;
}
.meal-sec03 .meal-button.active {
  color: #7F6000;
  background-image: url(../img/meal/tab-arrow-active.png);
    pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
    .meal-sec03 .wrap02 {
  gap: 1rem;
  font-size: 1.25rem;
}
}




/* ===============================
   meal-sec04
================================= */
.meal-sec04{
  position: relative;
  z-index: 1;
  padding: 10% 0 0 0;
}.meal-sec04::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/meal/menu01-bg.png") no-repeat center/cover;
  opacity: 0.6;
  z-index: 0;
}.meal-sec04.wa-bg::before {
  background: url("../img/meal/menu02-bg.png") no-repeat center/cover;
}
.meal-sec04 .area{
  position: relative;
  display: flex;
  justify-content:space-between;
    align-items:flex-start;
    flex-direction: row;
  z-index: 3;
  color: white;
    width:80%;
    margin:0 auto;
}
.meal-sec04 .area.wa-pic{
    flex-direction: row-reverse;
}
.meal-sec04 .col-l{
    width:45%;
}
.meal-sec04 .col-c{
    width:20%;
    margin-top:20%;
}
.meal-sec04 .col-r{
    width:30%;
    margin-top:25%;
}
.meal-sec04 .area img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
    .meal-sec04{
  position: relative;
  z-index: 1;
  padding: 20% 0 0 0;
}
  .meal-sec04 .area {
    width:90%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .meal-sec04 .col-l{
    width: 100%;
    margin-bottom: 1rem;
  }
  .meal-sec04 .col-c,
  .meal-sec04 .col-r {
    width: 48%;
    margin-top:0%;
  }
}




/* ===============================
   meal-sec05
================================= */
.meal-sec05{
  padding: 10% 0 0 0;
  color: white;
}
.meal-sec05 .area{
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.meal-sec05 .area .wrap01{
    display: flex;
    flex-direction:column;
    gap:1rem;
    margin:0 auto;
}
.meal-sec05 .area .wrap01 .ttl{
    display: flex;
    font-size:2rem;
    font-weight: bold;gap:1rem;
}
.meal-sec05 .area .wrap01 .line{
    width:5px;
  background-color: #7F6000;
}
.meal-sec05 .area .wrap01 .text{
    font-size:1.5rem;
}
.meal-sec05 .area .wrap01 .list{
    font-size:1rem;
}
.meal-sec05 .area .wrap01 .list li{
  display: flex;
    align-items: center;
    border-bottom: 1px solid white;
    padding:2.5px;
}
.meal-sec05 .area .wrap01 .label{
  font-weight: bold;
  flex: 0 0 20%; /* 例えば6文字分の幅で揃える */
  text-align: right;
  padding-right: 1rem;
}

 .meal-sec05 .area .wrap01 .desc {
  min-width: 0;
}
.meal-sec05 .area .wrap02{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap:1rem;
}
.meal-sec05 .area .wrap02 .meal-splide01,.area .wrap02 .meal-splide02 {
  position: relative;
  padding-bottom: 1rem;
}

.meal-sec05 .splide__pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.25rem;
  width: 100%;
}

.meal-sec05 .splide__pagination li {
  list-style: none;
}
.meal-sec05 .splide__pagination button {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 0px;
  border: none;
  opacity: 0.25;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.meal-sec05 .splide__pagination button.is-active {
  width: 30px;      /* サイズを固定化 */
  height: 4px;
  border-radius: 0px;
  background-color: #7F6000;
  opacity: 1;
    transform: scale(1.0);
} 
@media screen and (max-width: 768px) {
.meal-sec05{
  padding: 5% 0 0 0;
  color: white;
}
.meal-sec05 .area .wrap01{
  max-width: 100%;
  padding: 0 5%;
}
.meal-sec05 .area{
    flex-direction: column;
    gap: 3rem;
}
.meal-sec05 .area .wrap02{
    width: 100%;
}
.meal-sec05 .area .wrap02 .text{
  padding: 0 5%;
}
}




/* ===============================
   meal-sec06
================================= */
.meal-sec06{
  padding: 5% 0 0 0;
  color: white;
    display:flex;
    justify-content: center;
}
.meal-sec06 .area{
    display:flex;
    justify-content:space-between;
    align-items: center;
    gap:5rem;
    border: 2px solid white;
    padding:3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.meal-sec06 .area .wrap01 .ttl{
    font-size:2rem;
}
.meal-sec06 .area .wrap02 {
    display:flex;
    flex-direction: column;
    gap:1rem;
}
.meal-sec06 .area .wrap02 ul{
    font-size:1.5rem;
    display:flex;
    gap:1rem;
    flex-wrap: wrap;
}
.meal-sec06 .area .wrap02 .line{
  height: 1px;
  background-color: #7F6000;
}
@media screen and (max-width: 768px) {
  .meal-sec06 {
    padding: 5% 2% 0 2%;
  }

  .meal-sec06 .area {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
  }

  .meal-sec06 .area .wrap01 .ttl {
    text-align: center;
  }

  .meal-sec06 .area .wrap02 ul {
    flex-direction: column;
    gap:0;
      text-align: center;
  }
}




/* ===============================
   meal-sec07
================================= */
.meal-sec07{
  padding: 20% 0 0 0;
  color: white;
}
.meal-sec07 .area{
}
.meal-sec07 .area .wrap{
    display:flex;
    justify-content:center;
    gap:5%;
}
.meal-sec07 .area .wrap .left{
    max-width:50%;
}
.meal-sec07 .area .wrap .left img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.meal-sec07 .area .wrap .right{
  display: flex;
    flex-direction: column;
  justify-content: center;
    align-items: center;
  gap: 5%;
}
.meal-sec07 .area .wrap .right .inr{
  display: flex;
    flex-direction: column;
  gap: 1rem;
}
.meal-sec07 .area .wrap .right .inr .line{
  height: 5px;
  background-color: #7F6000;
}
.meal-sec07 .area .wrap .right .inr .ttl{
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
}
.meal-sec07 .area .wrap .right .inr .text{
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
.meal-sec07{
  padding: 40% 0 0 0;
  color: white;
}
  .meal-sec07 .area .wrap {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
  .meal-sec07 .area .wrap .left,
  .meal-sec07 .area .wrap .right {
  max-width: 100%;
  }
  .meal-sec07 .area .wrap .right{
      gap:2rem;
      padding:0 5%;
  }
}




/* ===============================
   meal-sec08
================================= */
.meal-sec08{
  padding: 5% 0 0 0;
  color: white;
}
.meal-sec08 .area{
}
.meal-sec08 .area .wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
    flex-wrap: wrap;
}
.meal-sec08 .area .wrap .box{
  background-color: #666;
  color: white;
  padding: 1rem 2rem;
  max-width: 100%;
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
.meal-sec08 {
    padding: 5% 5%;
}
.meal-sec08 .area .wrap .box{
  max-width: 600px;
  width: 100%;
}
}




/* ===============================
   meal-sec09
================================= */
.meal-sec09 {
  padding: 20% 0 0 0;
  color: white;
}
.meal-sec09 .area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:3rem;
}
.meal-sec09 .wrap01 {
    display: flex;
    align-items: center;
    gap:1rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.meal-sec09 .wrap01 .line {
  width: 50%;
  background-color: #7F6000;
    height:5px;
}
.meal-sec09 .wrap01 .ttl {
  font-size: 2rem;
  font-weight: bold;
}
.meal-sec09 .wrap02{
    display: flex;
    gap: min(10vw, 50px);
}
.meal-sec09 .wrap02 .inr {
    display: flex;
    flex-direction: column;
    gap:1rem;
  max-width: 500px;
}
.meal-sec09 .image {
  text-align: right;
}
.meal-sec09 .ttl-sub {
  font-size: 1.5rem;
}
.meal-sec09 .line.thin {
  height: 1px;
  background-color: #7F6000;
  margin-top: 0.5rem;
}
.meal-sec09 .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.meal-sec09 .note {
  color: red;
}
.meal-sec09 .link {
  color: cyan!important;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
.meal-sec09 {
  padding: 30% 5% 0 5%;
}
.meal-sec09 .wrap02 {
    flex-direction: column;
}
}




/* ===============================
   meal-sec10
================================= */
.meal-sec10{
color: white;
padding: 20% 0 0 0;
}
.meal-sec10 .area{
display: flex;
align-items: center;
justify-content: center;
gap:5rem;
}
.meal-sec10 .wrap01 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap:3rem;
}
.meal-sec10 .wrap01 .ttl{
  position: relative;
  display: flex;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
  font-weight: bold;
}
.meal-sec10 .area .wrap01 .inr{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.meal-sec10 .area .wrap01 .line{
  background-color: #7F6000;
    height:5px;
}
.meal-sec10 .wrap01 .text{
font-size:1rem;
}
.meal-sec10 .wrap01 .box{
font-size:1rem;
    gap:5rem;
    border: 1px solid white;
    padding:2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.meal-sec10 .wrap02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:1rem;
  width:35%;
}
.meal-sec10 .wrap02 img{
        width:100%;
        object-fit: cover;
}
.meal-sec10 .wrap02 .red {
  grid-column: 1 / span 2;
        overflow: hidden;
}
.meal-sec10 .wrap02 .red.fade-dw {
  transition-delay: 0s;
}
.meal-sec10 .wrap02 .blue.fade-dw {
  transition-delay: 0.5s;
}
.meal-sec10 .wrap02 .green.fade-dw {
  transition-delay: 1s;
}
    
@media (max-width: 768px) {
    .meal-sec10 .area{
        flex-direction: column;
        gap: 2rem;
    }
.meal-sec10 .wrap01 {
    padding:0 5%;
}.meal-sec10 .wrap02 {
        width:100%;
}
}




