@charset "UTF-8";
ul.gnavi li.plan a p::after {
  width: 80%;
}
/* MV
=========================== */
.mv_area {
  margin-top: 140px;
  position: relative;
  aspect-ratio: 1200 / 300;
  overflow: hidden;
}
.mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.mv .mv_01 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  filter: blur(50px);
  transition: opacity 0.5s ease, filter 1.5s ease;
}
.mv img.active {
  opacity: 1;
  filter: blur(0);
}

@media only screen and (max-width: 768px) {
  .mv_area {
    margin-top: 60px;
    aspect-ratio: 750 / 654;
  }
}

/* ============================
inner
============================ */
.inner {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin-inline: auto;
}

/* main_contents
=========================== */
.main_contents {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section_title {
  position: relative;
  font-size: 30px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.section_title::before {
  content: "";
  position: absolute;
  left: calc((100vw - 980px) / 2 * -1);
  bottom: 0;
  width: 50vw;
  height: 1px;
  background-color: #000;
}
.section_title_jp {
  font-size: 15px;
  letter-spacing: 0.1em;
}
.section_lead {
  margin-top: 60px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 768px) {
  .main_contents {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .section_title {
    font-size: 24px;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  .section_title::before {
    left: 0px;
    width: 100%;
  }
  .section_title_jp {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .section_lead {
    margin-top: 30px;
    font-size: 18px;
  }
}

/* contents_area
================================== */
.contents_area {
  margin-top: 60px;
}
.contents_head {
  display: flex;
}
.contents_head_body {
  flex: 1;
}
.contents_head_title {
  display: flex;
  align-items: baseline;
  column-gap: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid #796a56;
}
.contents_head_title_en {
  font-size: 15px;
  letter-spacing: 0.1em;
}
.contents_head_title_en .ico {
  color: #796a56;
  margin-right: 5px;
}
.contents_head_title_en .num {
  font-size: 26px;
  margin-left: 4px;
  line-height: 1;
}
.contents_head_title_jp {
  font-size: 15px;
  line-height: 1.5;
}
.contents_head_list {
  margin-top: 8px;
}
.contents_head_list li {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-left: 20px;
  text-indent: -20px;
}
.contents_head_list li::before {
  content: "●";
  font-size: 12px;
  line-height: 1;
  color: #796a56;
  margin-right: 4px;
}
.contents_head_img {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
}
.plan_wrap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 35px;
}
.plan_item {
  display: block;
  transition: all 0.4s;
}
.plan_item:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media only screen and (max-width: 768px) {
  .contents_area {
    margin-top: 30px;
  }
  .contents_head {
    flex-direction: column;
    row-gap: 14px;
  }
  .contents_head_body {
    flex: 1;
  }
  .contents_head_title {
    flex-direction: column;
    row-gap: 10px;
    column-gap: 15px;
    padding-bottom: 6px;
    border-bottom: none;
  }
  .contents_head_title_en {
    font-size: 13px;
    border-bottom: 1px solid #796a56;
    width: 100%;
    padding-bottom: 5px;
  }
  .contents_head_title_en .num {
    font-size: 22px;
  }
  .contents_head_title_jp {
    font-size: 13px;
  }
  .contents_head_list {
    margin-top: 8px;
  }
  .contents_head_list li {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-left: 14px;
    text-indent: -14px;
  }
  .contents_head_list li::before {
    font-size: 10px;
    margin-right: 4px;
  }
  .contents_head_img {
    max-width: 100%;
  }
  .plan_wrap {
    margin-top: 18px;
    column-gap: 10px;
    row-gap: 15px;
  }
}

