/* ==========================================================================
  Reset
  ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

html {
  *zoom: 1;
  /* firefox */
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

p {
  margin: 0;
}

/* ==========================================================================
  base
========================================================================== */
body.boulder {
  position: relative;
  color: #fff;
  background: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body.boulder {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

img, video {
  width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
  font-size: 0;
}

a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover img {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

/* ==========================================================================
  anime
========================================================================== */
.hide-l {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
  transform: translate(-40px, 0);
}

.hide-r {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
  transform: translate(40px, 0);
}

.moves {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
  movie
========================================================================== */
.movie-outer {
  width: 100%;
  max-width: 1100px;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  overflow: hidden;
  z-index: 0;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ==========================================================================
  menu
========================================================================== */
.menu {
  position: absolute;
  cursor: pointer;
  top: 9px;
  left: 10px;
  width: 30px;
  height: 22px;
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

.menu span {
  transition: all 0.2s;
  background: #d0974a;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}
.menu span:nth-child(1) {
  top: 0;
}
.menu span:nth-child(2) {
  top: 10px;
}
.menu span:nth-child(3) {
  bottom: 0;
}

.active span {
  transition: all 0.2s;
}
.active span:nth-child(1), .active span:nth-child(3) {
  transform-origin: center center;
  -webkit-transform-origin: center center;
}
.active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 10px;
}
.active span:nth-child(2) {
  display: none;
}
.active span:nth-child(3) {
  transform: rotate(45deg);
  top: 10px;
}

.boulder-main {
  overflow-x: hidden;
}

/* ==========================================================================
  module
========================================================================== */
.module {
  width: 100vw;
  min-height: 100svh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .module {
    padding: 50px 0;
  }
}

.module-inner {
  position: relative;
  z-index: 1;
}

.module-box {
  text-align: center;
}
.module-box:last-child {
  margin: 0;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100svh;
  z-index: 0;
  transform: scale(1.6);
}
@media screen and (max-width: 767px) {
  .bg-img {
    min-height: 100%;
  }
}
.bg-img.start {
  animation: 6s linear bgmove forwards;
}

@keyframes bgmove {
  from {
    transform: scale(1.6);
  }
  to {
    transform: scale(1);
  }
}
.module-h2 {
  font-family: Helvetica;
  font-size: 3em;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .module-h2 {
    margin-bottom: 20px;
    font-size: 2em;
  }
}

.module-text {
  font-size: 0.9em;
  line-height: 2;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .module-text {
    max-width: 80vw;
    text-align: left;
  }
}

.text-left {
  text-align: left;
}

.hide {
  transition: all 0.6s;
  opacity: 0;
}

.appear {
  transition: all 0.6s;
  opacity: 1;
}

/* ==========================================================================
  module 01
========================================================================== */
.module-01 {
  background-color: rgba(255, 255, 255, 0);
}

.module-box-01 h1 {
  display: block;
  width: 40%;
  max-width: 600px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .module-box-01 h1 {
    width: 70%;
    max-width: 480px;
  }
}

.module-01-img {
  width: 100vw;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  transform: scale(1);
  transform-origin: top center;
}
.module-01-img p {
  position: relative;
  width: calc(100vw / 6);
}
@media screen and (max-width: 767px) {
  .module-01-img {
    width: 100%;
    flex-wrap: wrap;
  }
  .module-01-img p {
    width: calc(100vw / 3);
  }
}

/* ==========================================================================
  module 02
========================================================================== */
.module-box-02 {
  width: 46%;
  margin: 0 auto 100px;
}
.module-box-02:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .module-box-02 {
    width: 100%;
    margin: 0 auto 50px;
  }
}

.bg-img-02 {
  background-image: url(../img/bg_module_02.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
}

.module-02-img {
  width: 80vw;
  margin: 60px auto 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .module-02-img {
    margin: 30px auto 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.module-02-img p {
  margin: 0 20px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.module-02-img p.start {
  animation: 0.3s linear icons forwards;
}
.module-02-img p.icon-01 {
  animation-delay: 1s;
}
.module-02-img p.icon-02 {
  animation-delay: 1.2s;
}
.module-02-img p.icon-03 {
  animation-delay: 1.4s;
}
.module-02-img p.icon-04 {
  animation-delay: 1.6s;
}
.module-02-img p.icon-05 {
  animation-delay: 1.8s;
}
.module-02-img p.icon-06 {
  animation-delay: 2s;
}
.module-02-img p.icon-07 {
  animation-delay: 2.2s;
}
@media screen and (max-width: 767px) {
  .module-02-img p {
    width: calc(100% / 4);
    margin: 0;
    text-align: center;
  }
  .module-02-img p:nth-child(n+5) {
    margin-top: 20px;
  }
}
.module-02-img p img {
  height: 6vw;
  width: auto;
}
@media screen and (max-width: 767px) {
  .module-02-img p img {
    height: 10vw;
  }
}

@keyframes icons {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.module-box-02-outer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .module-box-02-outer {
    display: block;
    width: 100%;
  }
}

/* ==========================================================================
  module 03
========================================================================== */
.module-03 {
  min-height: 0;
}

.module-box-03 {
  width: 90vw;
  margin: 0 auto !important;
}
@media screen and (max-width: 767px) {
  .module-box-03 {
    width: 100vw;
  }
}

@media screen and (min-width: 768px) {
  .module-03-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .module-03-list {
    width: 80vw;
    margin: 0 auto;
  }
}
.module-03-list li {
  width: 33.333%;
  margin: 50px 0 0 0;
  padding: 0 20px;
}
.module-03-list li img {
  opacity: 0;
}
.module-03-list li img.start {
  animation: 0.8s linear pers forwards;
}
@media screen and (max-width: 767px) {
  .module-03-list li {
    width: 100%;
    padding: 0;
    margin: 25px 0 0 0;
  }
}
.module-03-list li p:first-child {
  margin-bottom: 15px;
}
.module-03-list li p:last-child {
  line-height: 1.7;
  font-size: 0.8em;
}

@keyframes pers {
  from {
    transform: perspective(700px) rotateX(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(700px) rotateX(0deg);
    opacity: 1;
  }
}
/* ==========================================================================
  module 04
========================================================================== */
.module-04 {
  padding: 0;
  min-height: 0;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .module-04 {
    padding-bottom: 50px;
  }
}

.module-box-04 {
  width: 70vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .module-box-04 {
    width: 100vw;
  }
}

.module-04-img {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .module-04-img {
    margin-top: 25px;
  }
}

/* ==========================================================================
  module 05
========================================================================== */
.bg-img-05 {
  background-image: url(../img/bg_module_05.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken;
}

.module-box-05 {
  width: 70vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .module-box-05 {
    width: 100vw;
  }
}

.caption {
  margin-top: 80px;
  font-size: 0.8em;
  padding: 30px 0;
  border-top: 1px dotted #666;
  border-bottom: 1px dotted #666;
}
@media screen and (max-width: 767px) {
  .caption {
    margin-top: 25px;
  }
}

/* ==========================================================================
  module 06
========================================================================== */
.module-box-06 {
  width: 70vw;
  margin: 0 auto;
}
.module-box-06:last-child {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .module-box-06 {
    width: 100vw;
  }
}

.module-06 {
  background-image: url(../img/bg_module_06.webp);
  background-size: cover;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
}

.module-06-list {
  margin: 0 auto 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .module-06-list {
    width: 80vw;
    margin: 0 auto 50px;
  }
}
.module-06-list li {
  width: 46%;
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .module-06-list li {
    width: 100%;
  }
}
.module-06-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .module-06-list li {
    margin-bottom: 20px;
    text-align: left;
  }
}
.module-06-list li h3 {
  margin-bottom: 10px;
}

.module-h2-s {
  font-size: 2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .module-h2-s {
    font-size: 1.4em;
  }
}

/* ==========================================================================
  module 07
========================================================================== */
.module-box-07 {
  width: 100vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .module-box-07 {
    width: 100vw;
  }
}
.module-box-07:last-child {
  margin: 0 auto;
}

.module-07-img {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  margin: 50px 0 100px;
}
.module-07-img p {
  transform: translate(0, 30px);
  opacity: 0;
}
.module-07-img p.start {
  animation: 0.8s linear lasts forwards;
}
.module-07-img p:nth-child(even) {
  transform: translate(0, -30px);
  animation-delay: 0.2s;
  animation: 0.8s linear lasts2 forwards;
}
@media screen and (max-width: 767px) {
  .module-07-img {
    flex-wrap: wrap;
    margin: 30px 0 50px;
  }
  .module-07-img p {
    width: 50%;
  }
}

.module-copy {
  text-align: center;
}
.module-copy a {
  color: #fff;
}

@keyframes lasts {
  from {
    transform: translate(0, 30px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes lasts2 {
  from {
    transform: translate(0, -30px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
