@charset "UTF-8";

/* ------------------------------
  mv
--------------------------------*/

.mv-sub {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.mv-sub picture,
.mv-sub img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-sub-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black-40); /* varがrgb用なら */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mv-sub-overlay h1 {
  color: #fff;
  font-size: var(--font-mv-sub);
  margin: 0;
}


/*2 運営会社など*/

.mv-sub h1,.mv-sub2 h1{
  font-size: var(--font-mv-sub)!important;
}

.mv-sub2 {
  position: relative;
  height: 160px;
  background-color: var(--color-blue2);
  

  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-title2 {
  color: var(--color-black);
  text-align: center;
  margin: 0;
  padding: 0;
}


/* パンくずリスト */
.breadcrumb {
  font-size: var(--font-14);
  margin: 1.5rem auto;
  max-width: 1000px;
  padding: 0;
  color: var(--color-gray1);
  display: flex;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-link);
}

.breadcrumb a::after{
  content:">";
  padding: 0 .3rem;
  color: var(--color-gray1);
  pointer-events: none !important; /* ← 矢印部分はリンク無効 */
}

.breadcrumb > *:last-child::after {
  content: none;
}

.breadcrumb span {
  color: var(--color-gray3);
}


/* ------------------------------
  テーブル
--------------------------------*/

.table-row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  
}

.table-label {
  width: 30%;
  font-weight: bold;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  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-primary);
}

.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;
}



/* ------------------------------
  イメージ画像
--------------------------------*/



/* ------------------------------
  アイコン
--------------------------------*/


/* ------------------------------
　ボタン
--------------------------------*/

button{
    margin:0;
    padding:0;
  }

.button-wrap, .button-wrap-l {
  text-align: center;
  margin: 30px auto 0;
}

.button-wrap-l a {
  width:80%;
  max-width: 400px;
  display: inline-block;
  padding: 12px 1.5rem;
  font-size: var(--font-30);
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-primary); /* お好みで */
  border-radius: 9999px; /* 完全な角丸ボタンに */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.button-wrap a,.button-wrap button {
  display: inline-block;
  padding: 12px 32px;
  font-size: var(--font-16);
  color: var(--color-white);
  background-color: var(--color-primary); /* お好みで */
  border-radius: 9999px; /* 完全な角丸ボタンに */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.button-wrap a:hover,.button-wrap-l a:hover,.button-wrap button:hover {
  opacity: 0.8;
  transform: translateY(-4px); /* ふわっと浮く演出 */
}

/**/

@media screen and (max-width:1200px){
.breadcrumb{
  padding:0 1rem;
}
  }


@media screen and (max-width: 768px) {

  .mv-sub {
  height: 80px;
}

  .mv-sub2{
    height:80px;
  }

  .table-label,
  .table-value {
    width: 100%;
    padding:16px .5rem;
  }
  
  .table-label {
    background: var(--color-primary);
    text-align: center;
    padding: 8px 0;
    color: var(--color-white);
  }

  .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;
  }

  .button-wrap{
    margin-top:20px;
  }
}