@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&family=Noto+Serif+JP:wght@200..900&display=swap");
.flex-box{
  display: flex;
}

.pcBlock {
  display: block;
}
@media only, screen and (max-width: 768px) {
  .pcBlock {
    display: none;
  }
}

.pcInline {
  display: inline-block;
}
@media only, screen and (max-width: 768px) {
  .pcInline {
    display: none;
  }
}

.spBlock,
.sp_only {
  display: none;
}
@media only, screen and (max-width: 768px) {
  .spBlock,
  .sp_only {
    display: block;
  }
}

.spInline {
  display: none;
}
@media only, screen and (max-width: 768px) {
  .spInline {
    display: inline-block;
  }
}

main nav {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic ProN", Helvetica, "Helvetica Neue", sans-serif;
  font-weight: 500;
  background: #ececec;
  position: sticky;
  top: 8.9344262295vw;
  z-index: 5;
}
@media screen and (min-width: 1221px) {
  main nav {
    /* top: 109px; */
    top: 133px;
  }
}
@media only, screen and (max-width: 768px) {
  main nav {
    top: 49px;
  }
}
@media only, screen and (max-width: 768px) {
  main nav p {
    padding: 15px 20px;
    font-size: clamp(14px, 2.2135416667vw, 17px);
    border-bottom: solid 1px #ccc;
    position: relative;
  }
  main nav p:before {
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    margin: auto;
    background: #333;
    transform-origin: center;
    transform: rotate(90deg);
    transition: all 0.5s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
  }
  main nav p:after {
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    margin: auto;
    background: #333;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
  }
}
main nav .spMenu {
  display: block;
}
@media only, screen and (max-width: 768px) {
  main nav .spMenu {
    display: none;
  }
}
main nav ul.flex-box {
  padding: 0;
  border-top: solid 3px #999;
  border-bottom: solid 3px #999;
  list-style: none;
  justify-content: space-between;
}
@media only, screen and (max-width: 768px) {
  main nav ul.flex-box {
		display: block;
		border-top: none;
		border-bottom: none;
  }
}
main nav ul.flex-box li {
  width: calc(100% / 4);
}
@media only, screen and (max-width: 768px) {
  main nav ul.flex-box li {
    width: 100%;
  }
}
main nav ul.flex-box li a {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  text-align: center;
  transition: color 0.3s;
}
@media only, screen and (max-width: 768px) {
  main nav ul.flex-box li a {
    padding: 15px 20px;
    font-size: clamp(14px, 2.2135416667vw, 17px);
    text-align: left;
    position: relative;
  }
}
main nav ul.flex-box li a:hover {
  color: #af0119;
  text-decoration: underline!important;
}
@media only, screen and (max-width: 768px) {
  main nav ul.flex-box li a:after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    margin: auto;
    border-right: solid 3px #333;
    border-bottom: solid 3px #333;
    transform-origin: center;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 23px;
  }
  main nav ul.flex-box li a.no-arrow:after {
    content: none;
  }
}
main nav ul.flex-box li:not(:last-of-type) {
  border-right: solid 3px #999;
}
@media only, screen and (max-width: 768px) {
  main nav ul.flex-box li:not(:last-of-type) {
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
}


@media only, screen and (max-width: 768px) {
  main nav.open p:before {
    transform: rotate(540deg);
  }
}
main nav.open ul {
  display: block;
}

/*.db2024-sol-main {
  contain: paint;
  overflow: clip;
}*/

.pcItem {
  display: block;
}
@media only, screen and (max-width: 820px) {
  .pcItem {
    display: none;
  }
}

.spItem {
  display: none;
}
@media only, screen and (max-width: 820px) {
  .spItem {
    display: block;
  }
}

.flex-box {
  display: flex;
}

.line-box {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .line-box {
    bottom: 25.6097560976vw;
  }
}
@media only, screen and (max-width: 768px) {
  .line-box {
    bottom: 30px;
  }
}

#line-move {
  fill: none;
  mask: url(#mask-line);
}

#mask-line {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 9362px;
  stroke-dashoffset: 9362px;
}
@media only, screen and (max-width: 768px) {
  #mask-line {
    stroke-width: 5px;
  }
}

.scroll_container {
  height: 700vh;
}

.horizontal_scroll {
  position: absolute;
  top: 0;
  height: 100%;
  width: 700vw;
  will-change: transform;
  display: flex;
  justify-content: space-between;
}

.scroll_contents {
  height: 100%;
  width: 100vw;
  position: relative;
  z-index: 2;
}
.scroll_contents img {
  width: 100%;
  height: auto;
}

.sticky_wrap {
  overflow: hidden;
  position: sticky;
  top: 163px;
  height: calc(100vh - 60px);
  background: #AF0019;
}
@media only, screen and (max-width: 768px) {
  .sticky_wrap {
    top: 100px;
  }
}

#scene1 .copy01 {
  margin-right: 30px;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-align: right;
  transform: skew(-20deg, 0);
}
@media screen and (max-width: 820px) {
  #scene1 .copy01 {
    font-size: 8.2926829268vw;
  }
}
@media only, screen and (max-width: 768px) {
  #scene1 .copy01 {
    font-size: 5.9895833333vw;
  }
}
#scene1 .item-box {
  max-width: 1380px;
  margin: 0 auto;
}
#scene1 .item-box .flex-box {
  margin: 100px 0 65px;
}
@media only, screen and (max-width: 768px) {
  #scene1 .item-box .flex-box {
    margin: 40px auto;
    width: 80%;
    flex-wrap: wrap;
  }
}
#scene1 .item-box .flex-box figure {
  width: calc(100% / 3);
  max-width: 460px;
  margin: 0;
}
@media only, screen and (max-width: 768px) {
  #scene1 .item-box .flex-box figure {
    width: 44.9275362319vw;
    max-width: 186px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 375px) {
  #scene1 .item-box .flex-box figure {
    width: 200px;
  }
}
#scene1 .item-box .flex-box figure img {
  vertical-align: bottom;
}

#scene2 .flex-box {
  width: 100%;
  height: calc(100% - 109px);
  align-items: center;
  justify-content: center;
}
#scene2 .flex-box p {
  padding: 0 40px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
@media only, screen and (max-width: 768px) {
  #scene2 .flex-box p {
    padding: 0 20px;
    font-size: 4.6875vw;
    line-height: 3;
  }
}
#scene2 .flex-box p span {
  display: block;
  color: #fff;
  transform: skew(-20deg, 0);
}

#scene3 .scene-block {
  width: 100%;
  max-width: 1380px;
  height: 100%;
  position: relative;
}
#scene3 .scene-block p {
  color: #fff;
}
#scene3 .scene-block p.catch {
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  position: absolute;
  top: 13%;
  left: 24.6%;
}
@media only, screen and (max-width: 768px) {
  #scene3 .scene-block p.catch {
    padding-left: 20px;
    font-size: 4.1666666667vw;
    line-height: 2;
    top: 38.6473429952vw;
    left: 20px;
  }
}
#scene3 .scene-block p.catch span {
  display: block;
  color: #fff;
  transform: skew(-20deg, 0);
}
#scene3 .scene-block p.catch span:first-child {
  margin-bottom: 1em;
}
@media only, screen and (max-width: 768px) {
  #scene3 .scene-block p.catch span:first-child {
    margin-bottom: 0;
  }
}
#scene3 .scene-block p.exp {
  font-size: 46px;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1.5;
  text-align: right;
  position: absolute;
  right: 30px;
  bottom: 7.2463768116vw;
}
@media screen and (min-width: 1381px) {
  #scene3 .scene-block p.exp {
    bottom: 10.5797101449vw;
  }
}
@media only, screen and (max-width: 768px) {
  #scene3 .scene-block p.exp {
    font-size: 26px;
    bottom: 30.193236715vw;
  }
}
#scene3 .scene-block p.exp span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
}
@media only, screen and (max-width: 768px) {
  #scene3 .scene-block p.exp span {
    font-size: 14px;
  }
}
#scene3 .scene-block figure:first-of-type {
  width: 230px;
  position: absolute;
  left: 0;
  bottom: 161px;
}
@media only, screen and (max-width: 768px) {
  #scene3 .scene-block figure:first-of-type {
    width: 26.0416666667vw;
    bottom: 100px;
  }
}
#scene3 .scene-block figure:last-of-type {
  width: 230px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only, screen and (max-width: 768px) {
  #scene3 .scene-block figure:last-of-type {
    width: 33.8541666667vw;
  }
}
#scene3 .scene-block figure img {
  vertical-align: bottom;
}

#scene4 .scene-block {
  width: 100%;
  max-width: 1380px;
  height: 100%;
  position: relative;
}
#scene4 .scene-block p {
  color: #fff;
}
#scene4 .scene-block p.catch {
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  position: absolute;
  top: 13%;
  left: 24.6%;
}
@media only, screen and (max-width: 768px) {
  #scene4 .scene-block p.catch {
    padding-left: 20px;
    font-size: 4.1666666667vw;
    line-height: 2;
    top: 147px;
    left: 20px;
  }
}
#scene4 .scene-block p.catch span {
  display: inline-block;
  color: #fff;
  transform: skew(-20deg, 0);
}
#scene4 .scene-block p.catch span:first-child {
  margin-bottom: 1em;
}
@media only, screen and (max-width: 768px) {
  #scene4 .scene-block p.catch span:first-child {
    margin-bottom: 0;
  }
}
#scene4 .scene-block p.exp {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1.5;
  text-align: right;
  position: absolute;
  right: 30px;
  bottom: 7.2463768116vw;
}
@media screen and (min-width: 1381px) {
  #scene4 .scene-block p.exp {
    bottom: 10.5797101449vw;
  }
}
@media only, screen and (max-width: 768px) {
  #scene4 .scene-block p.exp {
    font-size: 26px;
    bottom: 30.193236715vw;
  }
}
#scene4 .scene-block p.exp span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
}
@media only, screen and (max-width: 768px) {
  #scene4 .scene-block p.exp span {
    font-size: 14px;
  }
}
#scene4 .scene-block figure:first-of-type {
  width: 258px;
  position: absolute;
  left: 0;
  bottom: 110px;
}
@media only, screen and (max-width: 768px) {
  #scene4 .scene-block figure:first-of-type {
    width: 36.4583333333vw;
    bottom: 110px;
  }
}
#scene4 .scene-block figure:last-of-type {
  width: 364px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only, screen and (max-width: 768px) {
  #scene4 .scene-block figure:last-of-type {
    width: 62.5vw;
  }
}
#scene4 .scene-block figure img {
  vertical-align: bottom;
}

#scene5 .scene-block {
  width: 100%;
  max-width: 1380px;
  height: 100%;
  position: relative;
}
#scene5 .scene-block p {
  color: #fff;
}
#scene5 .scene-block p.catch {
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  position: absolute;
  top: 13%;
  left: 24.6%;
}
@media only, screen and (max-width: 768px) {
  #scene5 .scene-block p.catch {
    padding-left: 20px;
    font-size: 4.1666666667vw;
    line-height: 2;
    top: 150px;
    left: 20px;
  }
}
#scene5 .scene-block p.catch span {
  display: block;
  color: #fff;
  transform: skew(-20deg, 0);
}
#scene5 .scene-block p.catch span:first-child {
  margin-bottom: 1em;
}
#scene5 .scene-block p.exp {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1.5;
  text-align: right;
  position: absolute;
  right: 30px;
  bottom: 7.2463768116vw;
}
@media screen and (min-width: 1381px) {
  #scene5 .scene-block p.exp {
    bottom: 106.231884058vw;
  }
}
@media only, screen and (max-width: 768px) {
  #scene5 .scene-block p.exp {
    font-size: 26px;
    bottom: 30.193236715vw;
  }
}
#scene5 .scene-block p.exp span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
}
@media only, screen and (max-width: 768px) {
  #scene5 .scene-block p.exp span {
    font-size: 14px;
  }
}
#scene5 .scene-block figure:first-of-type {
  width: 270px;
  position: absolute;
  left: 0;
  bottom: 128px;
}
@media only, screen and (max-width: 768px) {
  #scene5 .scene-block figure:first-of-type {
    width: 41.6666666667vw;
    bottom: 100px;
  }
}
#scene5 .scene-block figure:last-of-type {
  width: 357px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only, screen and (max-width: 768px) {
  #scene5 .scene-block figure:last-of-type {
    width: 41.6666666667vw;
  }
}
#scene5 .scene-block figure img {
  vertical-align: bottom;
}

#scene6 .scene-block {
  width: 100%;
  max-width: 1380px;
  height: 100%;
  position: relative;
}
#scene6 .scene-block p {
  color: #fff;
  position: absolute;
}
#scene6 .scene-block p:first-of-type {
  padding-left: 10px;
  font-weight: 700;
  font-size: 40px;
  line-height: 2;
  top: 80px;
  left: 80px;
}
@media only, screen and (max-width: 768px) {
  #scene6 .scene-block p:first-of-type {
    font-size: 24px;
    top: 100px;
    left: 20px;
  }
}
@media screen and (max-width: 320px) {
  #scene6 .scene-block p:first-of-type {
    font-size: 22px;
  }
}
#scene6 .scene-block p:first-of-type span {
  display: block;
  color: #fff;
  transform: skew(-20deg, 0);
}
#scene6 .scene-block p:last-of-type {
  width: 6em;
  height: 1em;
  margin: auto;
  font-size: 120px;
  font-weight: 700;
  color: #fff;
  text-align: right;
  transform: skew(-20deg, 0);
  bottom: 0;
  top: 0;
  right: 0;
}
@media only, screen and (max-width: 768px) {
  #scene6 .scene-block p:last-of-type {
    font-size: 46px;
    text-align: left;
    top: 45%;
    bottom: inherit;
    right: inherit;
    left: 30px;
  }
}
@media screen and (max-width: 360px) {
  #scene6 .scene-block p:last-of-type {
    font-size: 48px;
    top: 60%;
  }
}
#scene6 .scene-block p:last-of-type span {
  color: #fff;
}

#scene7 p {
  margin: 40px 0 20px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transform: skew(-20deg, 0);
}
@media only, screen and (max-width: 768px) {
  #scene7 p {
    font-size: 36px;
  }
}
#scene7 .movie-content {
  width: 740px;
  height: 416px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only, screen and (max-width: 768px) {
  #scene7 .movie-content {
    width: 90%;
    height: 54.0364583333vw;
  }
}
#scene7 .movie-content iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

#scene2 .flex-box p span.line,
#scene3 .scene-block p span.line,
#scene4 .scene-block p span.line,
#scene5 .scene-block p span.line,
#scene6 .scene-block p span span.line,
#scene6 .scene-block span.line {
  display: inline;
  transform: none;
  position: relative;
}

.line-move:after {
  animation-name: line-anime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background-color: #ff7c6d;
  z-index: -1;
}

@keyframes line-anime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
main nav ul.flex-box {
  padding: 0;
  border-top: solid 3px #999;
  border-bottom: solid 3px #999;
  list-style: none;
  justify-content: space-between;
}
@media only, screen and (max-width: 768px) {
  main nav ul.flex-box {
  display: block;
  border-top: none;
  border-bottom: none;
  }
}
main nav ul.flex-box li:not(:last-of-type) {
  border-right: solid 3px #999;
}
.db2024-sol-bottomnav {
width: 100%;
border-top: 1px solid #AF0019;
position: fixed;
left: 0;
bottom: -38px !important;
height: 34px !important;
z-index: 1000;
padding: 9px 0 9px 0;
background-color: white;
transition: transform 500ms, opacity 500ms;
}
.db2024-sol-bottomnav--active {
transform: translate(0, -38px) !important;
}
@media screen and (max-width: 768px){
.db2024-sol-bottomnav {
bottom: -17.3333333333vw !important;
height: 17.3333333333vw !important;
padding: 4vw 0 4vw 0;
}
.db2024-sol-bottomnav--active {
transform: translate(0, -17.3333333333vw) !important;
}