@charset "UTF-8";
.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

.delay11 {
  transition-delay: 1.1s !important;
}

.delay12 {
  transition-delay: 1.2s !important;
}

.delay13 {
  transition-delay: 1.3s !important;
}

.delay14 {
  transition-delay: 1.4s !important;
}

.delay15 {
  transition-delay: 1.5s !important;
}

.delay16 {
  transition-delay: 1.6s !important;
}

.delay17 {
  transition-delay: 1.7s !important;
}

.delay18 {
  transition-delay: 1.8s !important;
}

.delay19 {
  transition-delay: 1.9s !important;
}

.delay20 {
  transition-delay: 2s !important;
}

.delay21 {
  transition-delay: 2.1s !important;
}

.delay22 {
  transition-delay: 2.2s !important;
}

.delay23 {
  transition-delay: 2.3s !important;
}

.delay24 {
  transition-delay: 2.4s !important;
}

/* スクロール時のアニメーション */
.laser {
  position: relative;
  overflow: hidden;
}
.laser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 3s ease;
  transition: all 3s ease;
}
.laser .hide {
  opacity: 0;
  transition: all 3s ease;
  transition-delay: 1s !important;
}
.laser.inview-on::after {
  left: 100%;
}
.laser.inview-on .hide {
  opacity: 1;
}

/* fade in */
.fade-in {
  opacity: 0;
  transition: all 1.5s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in up */
.fade-in-up {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.5s ease;
}
.fade-in-up.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-up {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in left */
.fade-in-left {
  transform: translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-left.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-left {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in right */
.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-right.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-right {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?e4vfqk");
  src: url("../fonts/icomoon.eot?e4vfqk#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e4vfqk") format("truetype"), url("../fonts/icomoon.woff?e4vfqk") format("woff"), url("../fonts/icomoon.svg?e4vfqk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
}

.icon-formdl:before {
  content: "\e901";
}

.sec--01 {
  position: relative;
}
.sec--01:before {
  content: "";
  position: absolute;
  top: 5rem;
  width: 100%;
  height: 17.5rem;
  background: #35453F;
}
@media screen and (max-width: 767px) {
  .sec--01:before {
    top: 1.5rem;
    height: 15.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sec--01 .wrap {
    width: 24rem;
  }
}
.sec--01 .wrap > * {
  position: relative;
  z-index: 2;
}
.sec--01 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  padding: 0 2rem;
  color: #ffffff;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .sec--01 .grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
}
.sec--01 .grid .ttl {
  font-size: 0.6rem;
}
@media screen and (max-width: 767px) {
  .sec--01 .grid .ttl {
    font-size: 0.45rem;
  }
}
.sec--01 .grid .text {
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .sec--01 .grid .text {
    margin-top: 1rem;
  }
}
.sec--01 .caution {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec--01 .caution {
    padding: 0 0.5rem;
  }
}
.sec--01 .caution .inner {
  display: inline-block;
  background: #971C47;
  color: #ffffff;
  text-align: center;
  padding: 0.4rem 0.8rem;
  font-size: 0.28rem;
}
@media screen and (max-width: 767px) {
  .sec--01 .caution .inner {
    text-align: left;
    padding: 0.3rem;
  }
  .sec--01 .caution .inner p {
    padding-left: 1em;
    text-indent: -1em;
  }
}

.sec--02 {
  margin-top: 2.2rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .sec--02 {
    margin-top: 1.5rem;
  }
}
.sec--02 .process .image {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .sec--02 .process .image {
    margin-top: 0.3rem;
    margin-left: -0.4rem;
    margin-right: -0.4rem;
  }
}
.sec--02 .equipment {
  margin-top: 2rem;
}
.sec--02 .equipment .box_wrap {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .sec--02 .equipment .box_wrap {
    margin-top: 1rem;
    gap: 0.4rem;
  }
}
.sec--02 .equipment .box_wrap .box {
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .sec--02 .equipment .box_wrap .box {
    grid-template-columns: 1fr;
    padding: 0.4rem 0.4rem 1rem;
    gap: 0.4rem;
  }
}
.sec--02 .equipment .box_wrap .image img {
  width: 100%;
}
.sec--02 .equipment .box_wrap .cont .ttl {
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .sec--02 .equipment .box_wrap .cont .ttl {
    font-size: 0.4rem;
    gap: 0.3rem;
  }
}
.sec--02 .equipment .box_wrap .cont .ttl span {
  background: #35453F;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec--02 .equipment .box_wrap .cont .ttl span {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.sec--02 .equipment .box_wrap .cont .text {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec--02 .equipment .box_wrap .cont .text {
    margin-top: 0.3rem;
  }
}
.sec--02 .equipment .caption {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2rem auto;
  gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .sec--02 .equipment .caption {
    display: block;
  }
}

.sec--03 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .sec--03 {
    padding-bottom: 3rem;
  }
}
.sec--03 .lead {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .sec--03 .lead {
    text-align: center;
  }
}
.sec--03 .grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .sec--03 .grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
}
.sec--03 .grid img {
  width: 100%;
}/*# sourceMappingURL=content.css.map */