@charset "UTF-8";

/* ------------------------------
  mv
--------------------------------*/

.mv-inner {
  position: relative;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;

  background-image: url("../img/04-mv.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-contact{
  position: relative;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;

  background-image: url("../img/05-mv.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒背景を重ねるなら */
}

.mv-title {
  color: var(--color-white);
  text-align: center;
  margin: 0;
  padding: 0;
}

/*2 運営会社など*/

.mv-inner2 {
  position: relative;
  height: 160px;
  border-bottom: 1px solid var(--color-gray3);

  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-title2 {
  color: var(--color-black);
  text-align: center;
  margin: 0;
  padding: 0;
}


/* ------------------------------
  テーブル
--------------------------------*/

.table-row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  
}

.table-label {
  width: 30%;
  font-weight: bold;
  color: var(--color-black);
  border-bottom: 2px solid var(--color-yellow);
  padding: 24px 1rem;
  box-sizing: border-box;
}

.table .table-row:nth-of-type(1) .table-label,
#info .table-row:nth-of-type(1) .table-label{
  border-top: 2px solid var(--color-yellow);
}

.table-value {
  width: 70%;
  color: var(--color-black);
  border-bottom: 2px solid var(--color-gray2);
  padding: 24px 1rem;
  box-sizing: border-box;
}

.table .table-row:nth-of-type(1) .table-value,
  #info .table-row:nth-of-type(1) .table-value{
  border-top: 2px solid var(--color-gray2);
}

.p-bottom{
  padding-bottom:16px;
}


/* ------------------------------
  アイコン
--------------------------------*/

.slide-right-content {
  width: 30%;
  padding: 2rem;
  background-color: var(--color-white);
  box-sizing: border-box;
}

.slide-right-content h2,.intro-text h2{
      border-left: none;
      padding:0;
      margin:0;
}


.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  max-width: 100%;
  margin-top: 1.5rem;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.icon-bg {
  width: 90px;
  height: 90px;
  background-color: var(--color-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-direction: column;
}

.icon-bg img{
  padding:4px 0;
}

.icon-label {
  height:36px;
  display: flex;
  align-items: center;   /* ← 縦中央揃え */
  justify-content: center; /* ← 横中央（必要なら） */
  font-size: var(--font-14);
  color: var(--color-black);
  line-height: 1.2;
  margin: 0;           /* ブラウザ初期値のmargin打ち消し */
  padding: 0;
}

/* ------------------------------
　ボタン
--------------------------------*/

button{
    margin:0;
    padding:0;
  }

.button-wrap {
  text-align: center;
  margin: 30px auto 0;
}

.button-item {
  display: inline-block;
  padding: 12px 32px;
  font-size: var(--font-16);
  color: var(--color-white);
  background-color: var(--color-black); /* お好みで */
  border-radius: 9999px; /* 完全な角丸ボタンに */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.button-item:hover {
  opacity: 0.8;
  transform: translateY(-4px); /* ふわっと浮く演出 */
}

/**/



  

@media screen and (max-width:1400px){

  .slide-right-content h2 br{
    display: none;
  }

}

@media screen and (max-width:1200px){

  .news-detail-container{
      margin:0 auto;
  }
  
  .news-detail-section{
  width:94%;
  }

  .slide-right-content{
    width:100% !important;
  }

  .slide-right-content h2{
    text-align: center;
  }
  .slide-right-content h2 br{
    display: block;
  }
  
  .icon-grid{
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 8px;
  }

  }

@media screen and (max-width:900px){

  .icon-grid{
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

}

@media screen and (max-width: 768px) {

  .mv-inner{
    height:15vh;
  }

  .mv-inner2{
    height:20vh;
  }

  .table-label,
  .table-value {
    width: 100%;
    padding:16px .5rem;
  }
  
  .table-label {
    background: var(--color-yellow);
    text-align: center;
    padding: 8px 0;
  }

  .table-value{
    border-bottom:none;
  }

  .table .table-row:nth-of-type(1) .table-label,
  .table .table-row:nth-of-type(1) .table-value,
  #info .table-row:nth-of-type(1) .table-label,
  #info .table-row:nth-of-type(1) .table-value{
    border-top: none;
  }


  .shop-intro {
    flex-direction: column;
  }

  .intro-image {
    order: 2;
  }

  .intro-text {
    order: 1;
  }

  .button-wrap{
    margin-top:20px;
  }


}

@media screen and (max-width: 600px) {



  .intro-text p{
    margin:0;
  }

  .slide-right-content{
    padding:1rem;
  }

    .icon-grid{
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
  }

}