/* Setting
=============================================== */
:root{
  --info-category-border-color: var(--main-color);
  --info-category-bg-color: #fff;
  --info-category-font-color: var(--main-color);
}

/* ///// MAIN VISUAL ////////////////////////// */
.swiper {
  min-height: 700px;
  max-height: 900px;
  width: 100%;
  height: calc(100vh - 110px);
  position: relative;
  overflow: hidden;
  @media (max-width: 767px){
    min-height: 500px;
    max-height: 500px;
  }
}
.slide-caption {
  z-index: 3;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  color: #fff;
  @media (max-width: 767px){
    font-size: 28px;
  }
}
.mv-slide__overlay {
  z-index: 2;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 150, 193, 0.1);
}
.swiper-wrapper {
  z-index: 1;
  display: flex;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* //////////////////////////////////////////// */

/* SECTION PADDING
--------------------------- */
/* -- PC -- */
@media (min-width: 768px) {
  section.ContentArea .ContentBody{
    padding: 120px 10px !important;
    max-width: 1200px;
  }
}
/* -- SP -- */
@media (max-width: 767px) {
  section.ContentArea .ContentBody{
    padding: 50px 10px !important;
  }
}

/* INFORMATION
--------------------------- */
.info_area {
  margin: 0 auto 30px;
  max-width: 1100px;
  @media (max-width: 767px) {
    width: 100%;
  }
}
ul#information_list {
  display: block;
  margin: 0 auto 30px;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  list-style-type: none;
}
#information_list li {
  clear: both;
  border-bottom: 1px dotted gray;
  padding: 15px;
  overflow: hidden;
}
#information_list span {
  display: inline-block;
  padding: 3px 0;
  @media (max-width: 767px) {
    padding: 2px 0;
  }
}
#information_list .Date {
  width: 120px;
  font-weight: bold;
}
#information_list .Category{
  border-radius: 5px;
  border: 1px solid var(--info-category-border-color);
  width: 110px;
  background-color: var(--info-category-bg-color);
  text-align: center;
  font-size: 12px;
  color: var(--info-category-font-color);
  @media (max-width: 767px) {
    font-size: 11px;
  }
}
#information_list .Title {
  float: right;
  display: block;
  width: calc(100% - 270px);
  @media (max-width: 767px) {
    float: none;
    margin-top: 5px;
    width: 100%;
  }
}

/* BLOG
--------------------------- */
#blog_area .ImageBox_{
  position: relative;
  margin-bottom: 0;
  width: 100%;
  height: 170px;
  overflow: hidden;
}
#blog_area .ImageBox_ img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  width: 100%;
  height: auto;
}
#blog_area .TextArea {
  padding: 10px;
  overflow: hidden;
}
/* カテゴリ */
#blog_area h2 {
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 2px 10px;
  background-color: #ff8900;
  text-align: center;
  font-size: 11px;
  font-weight: normal;
  color: #fff;
}
/* タイトル */
#blog_area h1 {
  margin: 0 0 10px 0;
  padding-bottom: 7px;
  line-height: 1.2em;
}
#blog_area h1 a {
  font-size: 15px;
  font-weight: bold;
  color: #444;
}
/* 掲載日 */
#blog_area .ListReleaseDate {
  padding-top: 5px;
  border-top: 1px gray dotted;
  width: 100%;
  text-align: right;
}
#blog_area time {
  display: inline-block;
  padding-left: 20px;
  background: url(/img/com/ps01/ic-blog-clock.png) 0px center no-repeat;
  line-height: 16px;
  font-size: 13px;
  font-weight: bold;
}

/* -- PC -- */
@media screen and (min-width: 768px) {
  /* BLOG */
  #blog_area article {
    border-radius:10px;
    background-color: #fff;
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
  }
  /* タイトル */
  #blog_area h1 { height: 70px; }

}
/* -- SMP -- */
@media screen and (max-width: 767px) {
  /* BLOG */
  #blog_area article {
    border-radius:10px;
    padding: 10px;
    background-color: #fff;
  }
  #blog_area .ImageBox_ img{
    max-width: 280px;
  }
}

/* -- ごあいさつ -- */
.CardWrap .SetBox_ {
  background-color: rgba(255, 255, 255, 0.9);
}
.CardWrap .HeadingBox_ h2{
  font-size: 24px;
}
/* -- PC -- */
@media screen and (min-width: 768px) {

  .CardWrap{
    display: flex;
    margin-bottom: 70px;
    padding: 0;
    width: 100%;
  }
  .CardWrap.Reverse{
    flex-direction: row-reverse;
  }
  .CardWrap:last-child{
    margin-bottom: 0;
  }

  .CardWrap .ImageBox_ {
    z-index: 1;
    width: 60%;
  }
  .CardWrap .ImageBox_ img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .CardWrap .SetBox_ {
    z-index: 2;
    box-sizing: border-box;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
    margin-top: 6%;
    margin-left: -10%;
    padding: 40px;
    width: 60%;
    height: 380px;
    height: auto;
  }
  .CardWrap.Reverse .SetBox_{
    margin-left: 0;
    margin-right: -10%;
  }
  .CardWrap .HeadingBox_ {
    margin-bottom: 20px;
  }
  .CardWrap .TextBox_ {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
  }
}
/* -- SP -- */
@media screen and (max-width: 767px) {
  .CardWrap{
    display: block;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
  }
  .CardWrap .SetBox_ {
    padding: 20px;
  }
  .CardWrap .ImageBox_ {
    width: 100%;
    margin-bottom: 0;
    line-height: 0;
  }
  .CardWrap .ImageBox_ img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .CardWrap .HeadingBox_ {
    margin-bottom: 10px;
  }
}

.btn_320 a {
  padding: 10px;
  max-width: 320px;
  width: 320px;
}

.btn_240 a {
  padding: 10px;
  width: 250px;
}

/* -- 次回ライブのご案内 -- */
/* -- 背景画像 -- */
#effort_area {
  background:url(/img/fm/mdf01/home/bg-effort-area.webp) center center no-repeat;
  background-size:cover;
  background-attachment: fixed;
}
#effort_area .ContentBody {
  padding: 30px;
  background-color: rgba(255,255,255,0.8);
}



/* -- スライダーの上にロゴ画像を配置 -- */
.swiper-slide {
  position: relative;
}

.logo-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none; /* ロゴの上でクリック操作を無効化 */
}

.logo-overlay img {
  width: 500px; /* ロゴサイズは調整可能 */
  height: auto;
}