/* =========================
  メインビジュアル
========================= */
.mv {
  width: 100%;
  overflow: hidden;
}
.mv__bg {
  position: relative;
  display: flex;
  align-items: center;

  min-height: 70vh;
  background-image: url("/img/fm/nl01/mv/mv01.webp");
  background-size: cover;
  background-position: center;

  /* TABLET */
  @media (max-width: 1024px) {
    min-height: 60vh;
  }
  /* SP */
  @media (max-width: 767px) {
    min-height: 55vh;
  }
}
/* オーバーレイ（文字の視認性UP） */
.mv__bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15)
  );
  content: "";
}

/* インナー */
.mv__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0 5vw;
  margin: 0 auto;

  @media (max-width: 767px) {
    padding: 0 6vw;
  }
}

/* キャッチコピー */
.mv__catch {
  display: block;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-size: clamp(20px, 3.0vw, 44px);
  font-family: "Sawarabi Mincho";
  color: #9c7e23;
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff,
     0   2px 6px rgba(0, 0, 0, 0.35);

  @media (min-width: 768px) {
    padding-left: 1em;
    text-indent: -0.5em;
  }
}
.mv__catch span {
  /* SP */
  @media (max-width: 767px) {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}

/* //////////////////////////////////////////// */

/* COM STYLE
--------------------------- */
.is-heading-left {
  /* PC */
  @media (min-width: 768px) {
    text-align: left;
  }
}

/* COMPANY
--------------------------- */
.ContentBody.is-col2 {
  display: flex;
  align-items: center;
  gap: 10px;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

/* テキスト側 */
.ContentBody.is-col2 .CT_ {
  flex: 1 1 0;
}
/* 画像側 */
.ContentBody.is-col2 .ImageBox_ {
  flex: 1 1 0;
}
/* SPでは余白を狭く */
.section-company .TextBox_.MgnB70_ {
  /* sp */
  @media (max-width: 767px) {
    margin-bottom: 20px !important;
  }
}
.ButtonBox_.is-button-left a {
  /* PC */
  @media (min-width: 768px) {
    margin-left: 0;
  }
}

/* FEATURES
--------------------------- */
.section-features {
  background: url(/img/fm/nl01/home//bg-features.webp) bottom center no-repeat;
  background-size: cover;

  /* PC */
  @media (min-width: 768px) {
    background-attachment: fixed;
  }
}

.section-features .HdgStyleE_ h1,
.section-features .HdgStyleE_ span,
.section-features .TextBox_ p,
.section-features .HeadingBox_ h2 {
  color: var(--font-colorE) !important;
}

/* SPでは余白を狭く */
.section-features .TextBox_.MgnB70_ {
  /* sp */
  @media (max-width: 767px) {
    margin-bottom: 20px !important;
  }
}

.section-features .ImageBox_ img {
  display: inline;
  text-align: center !important;
}
.section-features .HeadingBox_ h2 {
  text-align: center;
  font-size: 20px;

  /* SP */
  @media (max-width: 767px) {
    font-size: 16px;
  }
}

/* BUSINESS
--------------------------- */
/* SPでは余白を狭く */
.section-business .TextBox_.MgnB50_ {
  /* sp */
  @media (max-width: 767px) {
    margin-bottom: 30px !important;
  }
}
/* 写真とセットボックスの段差横並び */
.CardWrap .SetBox_ {
  background-color: #fff;
}
/* -- PC -- */
@media screen and (min-width: 768px) {
  .CardWrap{
    position: relative;
    margin-bottom: 90px;
    padding: 70px 0 0;
    width: 100%;
  }
  .CardWrap:last-child{
    margin-bottom: 0;
  }
/* -------------------------------------------- */
  .CardWrap .ImageBox_ {
    z-index: 2;
    position: absolute;
    top: 0;
    right: calc(50% - 65px);
    max-width: 785px;
    width: calc(50vw + 65px);
    height: 440px;
    height: 400px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  }
  .CardWrap.Reverse .ImageBox_ {
    top: 0;
    right: auto;
    left: calc(50% - 65px);
  }
  .CardWrap .ImageBox_ img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* -------------------------------------------- */
  .CardWrap .SetBox_ {
    z-index: 1;
    border: 1px solid #ccc;
    margin-left: auto;
    padding: 75px 70px 75px 260px;
    min-width: 700px;
    width: 63%; /* 760px */
  }
  .CardWrap.Reverse .SetBox_{
    margin-left: 0;
    padding-left: 70px;
    padding-right: 260px;
  }
  .CardWrap .HeadingBox_ {
    margin-bottom: 20px;
  }
  .CardWrap .TextBox_ {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
  }
  .CardWrap .ButtonBox_{
    display: inline-block !important;
  }
}
/* -------------------------------------------- */
@media (min-width: 768px) and (max-width: 1100px) {
  .CardWrap .ImageBox_ {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: calc(100vw - 500px) !important;
  }
  .CardWrap.Reverse .ImageBox_ {
    top: 0;
    right: 0 !important;
    left: auto;
  }
}
/* -- SP -- */
@media screen and (max-width: 767px) {
  .CardWrap{
    margin-bottom: 10px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  }
  .CardWrap .SetBox_ {
    padding: 20px;
  }
  .CardWrap .ImageBox_ {
    width: 100%;
    margin-bottom: 0;
  }
  .CardWrap .ImageBox_ img{
    width: 100%;
    height: auto;
  }
  .CardWrap .HeadingBox_ {
    margin-bottom: 10px;
  }
  .CardWrap .TextBox_ {
    margin-bottom: 15px;
  }
}

/* 背景色あり（右下がほんのり明るい） */
.SetBox_.CardBusiness {
  background-color: var(--main-color);
  background-image: radial-gradient(
    circle at right 12% bottom 12%,
    rgba(255,255,255,.20) 0%,
    rgba(255,255,255,.10) 35%,
    rgba(255,255,255,0) 75%
  );
}
/* 背景色ありではフォントを白く */
.CardBusiness .HeadingBox_ h2,
.CardBusiness .HeadingBox_ h2 span,
.CardBusiness .TextBox_ p {
  color: #fff;
}
.CardBusiness .ButtonBox_ a.BtnStyleA_ {
  border: 1px solid #fff;
}

/* INFORMATION
--------------------------- */
ul#information_list {
  display: block;
  margin: 0 auto 35px;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  list-style-type: none;
}
#information_list li {
  display: flex;
  align-items: center;
  gap: 20px;

  border-bottom: 1px dotted gray;
  padding: 15px;
}
#information_list span {
  display: inline-block;
  padding: 3px 0;
}
#information_list .Date {
  font-weight: bold;
  flex-shrink: 0;
}
#information_list .Category{
  width: 120px;
  background-color: var(--main-color);
  text-align: center;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}
#information_list .Title {
  flex: 1;
  min-width: 0;
}
/* SP */
@media screen and (max-width: 767px) {
  #information_list li {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 5px;
  }
  #information_list span {
    padding: 2px 0;
  }
  #information_list .Category{
    width: 110px;
    font-size: 11px;
  }
  #information_list .Title {
    flex: 0 0 100%;
  }
}

