@charset 'utf-8';
/*--------------------------------------------------------------------------------
  general
--------------------------------------------------------------------------------*/
body {
  width: 100%;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, 'Hiragino Kaku Gothic ProN', 'MS PGothic', sans-serif;
  overflow-x: hidden;
  color: #444;
}
body[class*='EDGE-'] {
  position: static !important;
  z-index: auto !important;
  width: auto !important;
  height: auto !important;
  right: auto !important;
  bottom: auto !important;
  background-color: transparent !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  text-overflow: clip !important;
  background-size: auto !important;
}
sup {
  white-space: nowrap;
}
strong {
  color: #E60013 !important;
}
@media (min-width: 781px) {
  .l-container__inner {
    position: absolute;
  }
}
.pc {
  display: inherit !important;
}
.sp {
  display: none !important;
}
@media screen and (max-width: 780px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*============
nav
=============*/
nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}
.is-opened nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  width: 100%;
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 2px dotted #333;
  margin-bottom: 10px;
}
nav .inner ul li.link_active {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 1em 0 1em 1em;
  text-decoration: none;
  transition-duration: 0.2s;
  background-color: #555;
  border-radius: 5px;
  border-bottom: none;
}
nav .inner ul li a {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
  display: block;
  color: #333;
  font-size: 18px;
  padding: 1em 0 1em 0.2em;
  text-decoration: none;
  transition-duration: 0.2s;
  border-radius: 5px;
  margin-bottom: 3px;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
nav .inner ul li:first-child a::after {
  content: '';
  background-image: url("../images/kv_right_arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: auto;
  width: 21px;
  height: 15px;
}
nav .inner ul li a::after {
  content: '';
  background-image: url("../images/kv_bottom_arrow_gray.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 14px;
  height: 25px;
}
nav .inner ul li:first-child a:hover::after {
  animation: fuwafuwa2 1s linear infinite;
}
@keyframes fuwafuwa2 {
  0% {
    transform: translateX(0)
  }
  50% {
    transform: translateX(-8px)
  }
  100% {
    transform: translateX(0)
  }
}
nav .inner ul li a:hover::after {
  animation: fuwafuwa 1s linear infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-8px)
  }
  100% {
    transform: translateY(0)
  }
}
@media screen and (max-width: 780px) {
  nav {
    left: -250px;
    width: 250px;
  }
  nav .inner {
    padding-top: 50px;
  }
  nav .inner ul li.link_active, nav .inner ul li a {
    font-size: 16px;
  }
  nav .inner ul li a::after {
    top: 10px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.is-opened #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #011938;
  opacity: .8;
  z-index: 15;
  cursor: pointer;
}
.btn_fixed {
  position: sticky;
  top: 14%;
  margin: 0 auto;
  max-width: 1920px;
  z-index: 15;
}
.btn_position {
  position: absolute;
  right: 1%;
  display: flex;
  gap: 10px;
  margin-top: 1.5%;
}
.btn_position_sp {
  position: sticky;
  top: 20vw;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  z-index: 20;
  margin: 10px 0 40px;
}
.btn_position_sp.is-opened_sp {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  margin-top: 0;
}
@media screen and (min-width: 781px) {
  .btn_position_sp {
    display: none !important;
  }
}
.btn_position button:hover {
  opacity: .7;
}
.menu-button_wrap {
  height: 43px;
  border-radius: 30px;
  background-color: #000000;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  padding: 0 28.5px;
}
.menu-button_wrap.is-opened {
  width: 43px;
  padding: 0;
}
.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 6px;
  width: 24px;
}
.menu-button__line, .menu-button::before, .menu-button::after {
  content: "";
  width: 18px;
  height: 1px;
  background-color: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-button_wrap.is-opened .menu-button__line {
  opacity: 0;
}
.menu-button_wrap.is-opened .menu-button::before {
  transform: translateY(7px) rotate(-45deg);
}
.menu-button_wrap.is-opened .menu-button::after {
  transform: translateY(-7px) rotate(45deg);
}
.menu-text {
  font-family: "barlow-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 23px;
  margin-bottom: 4px;
}
.menu-button_wrap.is-opened .menu-text {
  display: none;
}
.fixed-bg {
  position: relative;
  background-size: cover; /*--背景画像のサイズ--*/
  background-attachment: fixed; /*--背景画像の固定--*/
  background-repeat: no-repeat; /*--背景画像の繰り返し--*/
  background-position: center center; /*--背景画像の位置--*/
  z-index: 2;
  background-image: url('../images/bg.jpg');
}
.kv {
  max-width: 1420px;
  width: 80%;
  margin: 0 auto;
}
.story_kv_title {
  max-width: 1420px;
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 0;
}
.story_kv_title p {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 45px;
  line-height: 87px;
}
.kv_pc_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kv_pc_flex > div {
  margin-right: -30px;
  z-index: 1;
}
.kv_pc_flex > div img {
  margin-bottom: 60px;
}
@media screen and (max-width: 1775px) {
  .story_kv_title {
    padding: 4.51vw 0;
  }
  .story_kv_title p {
    font-size: 2.535vw;
    line-height: 4.9vw;
  }
  .kv_pc_flex > img {
    width: 22.902vw;
  }
  .kv_pc_flex > div img {
    width: 42.5vw;
    margin-bottom: 3.38vw;
  }
}
@media screen and (max-width: 780px) {
  .story_kv_title {
    width: inherit;
  }
  .story_kv_title p {
    font-size: 5.83vw;
    line-height: 9.5vw;
    text-align: center;
  }
  .kv_pc_flex > img {
    width: 34.744vw;
  }
  .kv_pc_flex > div {
    margin-right: 1vw;
  }
  .kv_pc_flex > div img {
    width: 50vw;
  }
}
.area {
  max-width: 1420px;
  width: 80%;
  margin: 0 auto;
  padding: 80px 20px 0;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 100px -100px #000 inset;
}
@media screen and (max-width: 780px) {
  .fixed-bg {
    background-image: unset;
    z-index: auto;
  }
  .kv, .area {
    width: 100%;
  }
}
.inner {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 120px;
}
@media screen and (max-width: 1775px) {
  .inner {
    padding-top: 6.76vw;
  }
}
.fukidashi:first-child {
  padding-top: 0;
}
.fukidashi {
  position: relative;
  width: fit-content;
  padding-top: 80px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  margin: 0 auto 35px;
}
.fukidashi::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 15px;
  height: 3px;
  box-sizing: border-box;
  background-color: #fff;
  translate: -50%;
}
.fukidashi::after {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: calc(50% - 10px);
  width: 24px;
  height: 1px;
  transform: rotate(120deg);
  box-sizing: border-box;
  background-color: #000;
}
.fukidashi h3 {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 34px;
  line-height: 40px;
  text-align: center;
}
.fukidashi h3 span {
  color: #39b9ff;
}
@media screen and (max-width: 1175px) {
  .area {
    padding-top: 6.81vw;
  }
  .fukidashi h3 {
    font-size: 2.89vw;
    line-height: 3.41vw;
  }
}
@media screen and (max-width: 780px) {
  .area {
    padding-top: 12vw;
  }
  .fukidashi {
    padding-top: 40px;
    padding-bottom: 1.2vw;
  }
  .fukidashi h3 {
    font-size: 5.64vw;
    line-height: 8.7vw;
  }
}
.inner p {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  line-height: 64px;
  margin-bottom: 40px;
}
.inner ul {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.inner p + ul {
  margin-bottom: 40px;
}
.story_img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 60px;
}
.story_img > div > img {
  margin-bottom: 10px;
}
.story_img small {
  font-size: 17px;
  line-height: 34px;
}
@media screen and (max-width: 1175px) {
  .inner p {
    font-size: 2.04vw;
    line-height: 5.44vw;
  }
  .story_img {
    flex-direction: column;
  }
  .story_img small {
    font-size: 1.45vw
  }
}
@media screen and (max-width: 780px) {
  .inner p {
    font-size: 4.1vw;
    line-height: 8.7vw;
    margin-bottom: 20px;
  }
  .inner p + ul {
    margin-bottom: 20px;
  }
  .story_img {
    margin-bottom: 30px;
  }
  .story_img > div > img {
    margin-bottom: 0;
  }
  .story_img small {
    font-size: 3.4vw;
  }
}
/*--------------------------------------------------------------------------------
  link banner
--------------------------------------------------------------------------------*/
.dbk-link-banner {
  display: block;
  margin-top: 60px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.dbk-link-banner img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dbk-link-banner a:hover img {
  filter: brightness(0.8);
}
.btn--orange, a.btn--orange {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 23px;
  line-height: 37px;
  letter-spacing: 0.1em;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  color: #fff;
  background: #e97236;
  border: 2px solid #e97236;
  border-radius: 100vh;
  width: 700px;
  height: 175px;
}
.btn--orange::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.btn--orange:hover::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 1px solid #e97236;
  border-right: 1px solid #e97236;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.btn--orange:hover, a.btn--orange:hover {
  color: #e97236;
  background: #fff;
}
.direct_member {
  font-weight: 700;
  font-size: 15px;
  line-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -8px;
  margin-bottom: 10px;
}
.direct_member::before, .direct_member::after {
  width: 1px;
  height: 20px;
  background-color: #ffffff;
  content: '';
  margin-top: 10px;
}
.direct_member::before {
  transform: rotate(-35deg);
  margin-right: 15px;
}
.direct_member::after {
  transform: rotate(35deg);
  margin-left: 15px;
}
.btn--orange:hover .direct_member::before, .btn--orange:hover .direct_member::after {
  background-color: #e97236;
}
@media screen and (max-width: 960px) {
  .btn--orange, a.btn--orange {
    width: 100%;
    height: 18.23vw;
  }
}
@media screen and (max-width: 780px) {
  .dbk-link-banner {
    margin-top: 7.7vw;
  }
  .btn--orange, a.btn--orange {
    font-size: 3.6vw;
    line-height: 5.2vw;
    height: 22.44vw;
  }
  .btn--orange::after {
    right: 20px;
    width: 3vw;
    height: 3vw;
  }
  .btn--orange:hover::after {
    right: 20px;
    width: 3vw;
    height: 3vw;
  }
  .direct_member {
    font-size: 2.6vw;
    line-height: 0;
    margin-top: 0;
    margin-bottom: 0.7vw;
  }
  .direct_member::before, .direct_member::after {
    height: 3.4vw;
    margin-top: 0.7vw;
  }
}
.g_spec_wrap {
  max-width: 900px;
  margin: 150px auto;
}
table, td, th {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  border-top: 1px solid #4c4948;
  border-collapse: collapse;
}
td, th {
  padding: 45px 7px;
}
tr:last-child td, tr:last-child th {
  padding-bottom: 0;
}
table b {
  font-weight: 700;
  font-size: 23.5px;
}
table sup {
  font-size: 14px;
}
@media (max-width: 780px) {
  .g_spec_wrap {
    margin: 13vw auto;
  }
  table, td, th, table b {
    font-size: 100%;
  }
  td, th {
    padding: 20px 7px;
  }
}
/*--------------------------------------------------------------------------------
  n2  -  Features
--------------------------------------------------------------------------------*/
.dbk-front-02 {
  padding: 50px 0;
}
.dbk-front-02 sup {
  line-height: 0;
}
.v-notes__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0 20px;
}
.v-notes__item {
  display: table;
  margin: 0;
  font-size: 11px;
  line-height: 24px;
}
.v-notes__item span {
  display: table-cell;
}
.v-notes__item span:first-of-type {
  padding: 0 0.5em 0 0;
  width: 3.5em;
}
@media (max-width: 780px) {
  .dbk-front-02 {
    padding: 20px 0;
  }
  .v-notes__inner {
    padding-top: 60px;
  }
}