@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #263669;
  color: white;
}

.content {
  max-width: 1180px;
  margin: auto;
  width: 90%;
}

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

a:hover {
  opacity: 0.7;
}

.en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

.w500_on {
  display: none;
}

.w800_on {
  display: none;
}

.w850_on {
  display: none;
}

.w950_on {
  display: none;
}

@media screen and (max-width: 950px) {
  .w950_on {
    display: block;
  }
}

@media screen and (max-width: 850px) {
  .w850_off {
    display: none;
  }
  .w850_on {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .w800_on {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .w500_on {
    display: block;
  }
  .w500_off {
    display: none;
  }
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid #8a8a8a;
  font-weight: 600;
  padding: 7px 40px 7px 40px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: black;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 400;
}

.btn:hover {
  background-color: black;
  color: white;
}

i.cssArrow {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 20px 0 0;
  border-bottom: 1px solid #747474;
  left: 20px;
  top: -3px;
}

i.cssArrow::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  border-right: 5px solid #fff;
  border-bottom: 4px solid #747474;
  content: "";
}

.mv {
  height: 100vh;
  background: url("/images/mv-main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 80px;
}

.mv__nav {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 55px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mv__nav.active {
  position: fixed;
  z-index: 100;
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mv__nav.active a {
  color: #111;
}

.mv__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv__nav ul li {
  margin-right: 40px;
}

.mv__nav ul a {
  color: #ffffff;
  font-weight: 600;
}

.mv__nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv__nav-insta {
  background-color: #005d97;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
}

.mv__nav-insta img {
  width: 19px;
}

.mv__nav-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  background-color: #e60012;
}

.mv__nav-store img {
  width: 96px;
}

.mv__main {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mv__main img {
  width: 489px;
}

.mv__main p {
  position: absolute;
  bottom: -135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  font-weight: 600;
  font-size: 30px;
  width: 100%;
  text-align: center;
  letter-spacing: 5px;
}

.mv__scroll {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
  font-size: 11px;
  letter-spacing: 3px;
  height: 60px;
  overflow: hidden;
}

.mv__scroll-line {
  position: absolute;
  height: 40px;
  width: 42px;
  overflow: hidden;
  top: 26px;
}

.mv__scroll-line::before {
  content: "";
  width: 1px;
  height: 45px;
  background-color: #fff;
  position: absolute;
  left: 45%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 7px;
  -webkit-animation: loop3 3s linear infinite;
          animation: loop3 3s linear infinite;
}

@media screen and (max-width: 880px) {
  .mv__nav {
    padding-left: 0;
  }
  .mv__nav ul {
    display: none;
  }
  .mv__nav.active {
    background-color: transparent;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media screen and (max-width: 700px) {
  .mv__main img {
    width: 300px;
    max-width: initial;
  }
  .mv__main p {
    width: 330px;
    font-size: 26px;
  }
}

@media screen and (max-width: 500px) {
  .mv {
    margin-bottom: 60px;
  }
}

@media screen and (max-height: 850px) {
  .mv__scroll {
    bottom: 10px;
  }
}

.side {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
  z-index: 100;
}

.side_right {
  right: 20px;
}

.side_left {
  left: 20px;
}

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

.trigger {
  position: relative;
  margin-bottom: 130px;
  overflow: hidden;
}

.trigger__bg {
  opacity: 0.18;
  font-size: 318px !important;
  position: absolute;
  right: -12px;
  line-height: 0.8 !important;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}

.trigger__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1380px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.trigger__img-wrapper {
  position: relative;
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
}

.trigger__imgDwn {
  position: absolute;
  bottom: -229px;
  right: 0px;
}

.trigger__txt-wrapper {
  -ms-flex-preferred-size: 36%;
      flex-basis: 36%;
  margin-top: 50px;
}

.trigger__copy {
  margin-bottom: 15px;
}

.trigger__copy h2 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 3px;
  line-height: 1.4;
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.trigger p {
  line-height: 2.4;
  font-weight: 600;
  font-size: 15px;
}

.trigger__txtmb {
  margin-bottom: 15px;
}

.trigger__txt-en {
  font-size: 33px;
}

.trigger__txt_lr {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 20px;
}

.trigger__border {
  border: solid 1px #ffffff;
  margin-bottom: 25px;
  padding: 20px 0;
}

.trigger__border p {
  line-height: 1.9;
}

.trigger__border-ttl {
  font-size: 30px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-align: center;
  margin-bottom: 15px;
}

.trigger__border-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.trigger__border-sub {
  color: #111111;
  background-color: #fff;
  padding: 0 6px;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (min-width: 1550px) {
  .trigger__imgDwn {
    width: 400px;
  }
}

@media screen and (max-width: 1550px) {
  .trigger__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .trigger__img-wrapper {
    -ms-flex-preferred-size: 43%;
        flex-basis: 43%;
  }
  .trigger__txt-wrapper {
    margin-left: 110px;
  }
  .trigger__imgDwn {
    right: -40px;
  }
}

@media screen and (max-width: 1200px) {
  .trigger__img-wrapper {
    -ms-flex-preferred-size: 36%;
        flex-basis: 36%;
  }
  .trigger__txt-wrapper {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .trigger__inner {
    width: 90%;
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .trigger__imgUp {
    width: 65%;
  }
  .trigger__imgDwn {
    bottom: 29px;
    width: 36%;
    right: 16%;
  }
  .trigger__txt-wrapper {
    margin-left: 0;
  }
  .trigger__img-wrapper {
    margin-bottom: 30px;
  }
  .trigger__bg {
    font-size: 140px !important;
    top: 118px;
  }
}

@media screen and (max-width: 500px) {
  .trigger {
    margin-bottom: 60px;
  }
  .trigger__copy h2 {
    font-size: 25px;
    line-height: 1.6;
  }
  .trigger p {
    font-size: 14px;
    line-height: 2.1;
  }
  .trigger__txt-en {
    font-size: 25px;
  }
  .trigger__txt_lr {
    font-size: 25px;
  }
  .trigger__border-ttl {
    font-size: 25px;
  }
  .trigger__border-sub {
    font-size: 19px;
  }
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature__bg {
  font-size: 300px;
  opacity: 0.18;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 0.8;
  top: 880px;
}

.feature__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  overflow: hidden;
}

.feature__logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  margin-right: 20px;
}

.feature__logo img {
  padding: 0 20px;
}

.feature__logo img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.feature__logo img:last-child {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}

.feature__video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 580px;
  -o-object-position: center;
     object-position: center;
}

.feature__main {
  line-height: 0;
  margin-bottom: 200px;
}

.feature__main-txt {
  color: #111111;
  background-color: #fff;
  line-height: 1.85;
}

.feature__main-txt h3 {
  font-weight: 600;
  font-size: 34px;
  text-align: center;
  padding: 20px 0;
}

.feature__main-txt p {
  font-weight: 600;
  font-size: 15px;
  padding: 0 40px;
  padding-bottom: 30px;
}

.feature__sub {
  position: relative;
  margin-bottom: 260px;
}

.feature__sub img {
  width: 100%;
}

.feature__sub-en {
  padding: 0 11px;
  background-color: #111111;
  color: #ffffff;
  position: absolute;
  top: -61px;
  letter-spacing: 3px;
  z-index: 5;
}

.feature__sub-en_dwn {
  right: 222px;
}

.feature__sub-ttl {
  background-color: #fff;
  color: #111111;
  font-size: 32px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  letter-spacing: 3px;
  left: 0;
  top: -43px;
  padding: 10px 18px;
}

.feature__sub-ttl_dwn {
  right: 0;
  left: initial;
}

.feature__sub-txt {
  background-color: #fff;
  width: 480px;
  position: absolute;
  right: 0;
  bottom: -72px;
  padding: 30px 8px 45px;
}

.feature__sub-txt_dwn {
  right: initial;
  left: 0;
}

.feature__sub-txt h5 {
  color: #ec4f00;
  text-align: center;
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: solid 2px #ec4f00;
  margin-bottom: 12px;
}

.feature__sub-txt p {
  color: #111111;
  font-size: 15px;
  font-weight: 600;
}

.feature__sub-txt-inner {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 1300px) {
  .feature__main {
    margin-bottom: 150px;
  }
  .feature__main-txt p {
    padding: 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .feature__sub_down {
    margin-bottom: 200px;
  }
  .feature__sub-txt {
    width: 550px;
    padding: 20px 8px 25px;
    bottom: -31%;
  }
  .feature__sub-txt p {
    font-size: 14px;
  }
}

@media screen and (max-width: 800px) {
  .feature__video {
    height: 350px;
  }
  .feature__sub {
    margin-bottom: 140px;
  }
  .feature__main-txt h3 {
    font-size: 22px;
    padding: 15px 0;
  }
  .feature__sub-en {
    font-size: 13px;
  }
  .feature__sub-en_dwn {
    right: 244px;
  }
  .feature__sub-txt {
    width: initial;
    position: initial;
  }
}

@media screen and (max-width: 500px) {
  .feature__main {
    margin-bottom: 60px;
  }
  .feature__logo img {
    padding: 0 10px;
  }
  .feature__main-txt p {
    font-size: 14px;
  }
  .feature__sub {
    margin-bottom: 60px;
  }
  .feature__sub-ttl {
    position: initial;
    width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px;
  }
  .feature__sub-en {
    position: relative;
    top: 11px;
    left: initial;
    right: initial;
    display: inline-block;
    font-size: 11px;
  }
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@-webkit-keyframes loop3 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes loop3 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.policy {
  background-color: #252525;
  padding: 50px 0;
  overflow: hidden;
}

.policy__bg {
  position: absolute;
  opacity: 0.26;
  max-width: initial;
}

.policy__bg_1 {
  top: -90px;
  left: -40px;
}

.policy__bg_2 {
  top: 122px;
  right: -4%;
}

.policy__bg_3 {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -120px;
}

.policy__ttl {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 20px;
}

.policy__subtxt {
  text-align: center;
  margin-bottom: 40px;
}

.policy__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.policy__block_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 40px;
}

.policy__img-wrapper {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
}

.policy__img-wrapper_reverse {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  margin-bottom: 120px;
}

.policy__txt-wrapper {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  position: relative;
}

.policy__txt-wrapper_reverse {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
}

.policy__txt-wrapper h3 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.policy__txt-wrapper p {
  line-height: 1.9;
}

.policy__p3 {
  position: relative;
}

.policy__p3-ttl {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}

.policy__p3-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.policy__p3-inner > div {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}

.policy__p3-inner h4 {
  font-weight: 600;
  font-size: 20px;
}

.policy__p3-inner p {
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .policy__block {
    margin-top: 50px;
  }
  .policy__bg {
    width: 300px;
  }
  .policy__bg_1 {
    top: -64px;
  }
  .policy__bg_2 {
    top: 161px;
  }
  .policy__bg_3 {
    top: -63px;
  }
}

@media screen and (max-width: 850px) {
  .policy__bg {
    width: 300px;
    right: initial;
    left: 0;
    width: 225px;
  }
  .policy__bg_1 {
    top: -53px;
  }
  .policy__bg_2 {
    top: -49px;
  }
  .policy__bg_3 {
    top: -51px;
    -webkit-transform: initial;
            transform: initial;
  }
  .policy__ttl {
    font-size: 25px;
  }
  .policy__subtxt {
    font-size: 14px;
  }
  .policy__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    margin-top: 70px;
  }
  .policy__txt-wrapper {
    margin-bottom: 25px;
  }
  .policy__txt-wrapper h3 {
    font-size: 22px;
  }
  .policy__p3-ttl {
    font-size: 22px;
    text-align: left;
  }
  .policy__p3-inner h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 680px) {
  .policy__p3-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
  .policy__bg {
    left: 48%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .policy__ttl {
    letter-spacing: 1px;
    font-size: 23px;
  }
  .policy__txt-wrapper h3 {
    text-align: center;
  }
  .policy__p3-ttl {
    text-align: center;
  }
  .policy__img-wrapper_reverse {
    margin-bottom: 60px;
    width: 75%;
  }
}

@media screen and (max-width: 347px) {
  .policy__ttl {
    font-size: 21px;
  }
}

.product {
  background-color: #464646;
  padding: 10px 0 90px;
  position: relative;
  overflow: hidden;
}

.product__bg {
  color: #111;
  position: absolute;
  font-size: 300px;
  opacity: 0.18;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  line-height: 0.73;
  letter-spacing: 38px;
  z-index: 0;
  font-size: 20vw;
}

.product__inner {
  position: relative;
  z-index: 1;
}

.product__inner > h2 {
  font-weight: 600;
  font-size: 45px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.3;
}

.product__inner > h2 span {
  font-size: 30px;
  letter-spacing: 3px;
}

.product__inner > p {
  text-align: center;
  font-size: 68px;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.product__inner > p a {
  font-size: 68px;
  color: #ffffff;
}

.product__box-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product__box {
  background-color: #eeeeee;
  color: #111111;
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
}

.product__box-inner {
  width: 80%;
  margin: auto;
}

.product__box-ttl {
  font-size: 37px;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.product__box-ttl span:last-child {
  font-size: 69px;
  margin-left: 20px;
}

.product__box-ttl br {
  display: none;
}

.product__box-img {
  text-align: center;
  margin-bottom: 35px;
}

.product__box-type {
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 20px;
  position: relative;
}

.product__box-type::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #e60012;
  top: 35px;
}

.product__box-type span {
  line-height: 3;
  font-size: 20px;
}

.product__box-spe {
  background-color: #ffffff;
  padding: 15px 0 20px;
  margin-bottom: 30px;
}

.product__box-spe > p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.product__box-spe ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

.product__box-spe li {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  position: relative;
  padding-left: 22px;
}

.product__box-spe li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.product__blank::before {
  content: none !important;
}

.product__detail-ttl {
  border-top: solid 1px #111111;
  text-align: center;
  font-size: 56px;
  letter-spacing: -1px;
}

.product__detail-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product__detail-imgtxt {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}

.product__detail-imgtxt img {
  width: 100%;
  margin-bottom: 7px;
}

.product__btn {
  text-align: center;
  margin: 30px 0 50px;
}

.product__btn a {
  width: 100%;
  height: 65px;
  background-color: #e60012;
  display: inline-block;
  line-height: 65px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.product__btn img {
  vertical-align: initial;
  margin-left: 10px;
}

.product__bold {
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0;
}

@media screen and (max-width: 1100px) {
  .product__bg {
    letter-spacing: 18px;
  }
  .product__box-ttl {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 20px;
  }
  .product__box-ttl span:first-child {
    display: none;
  }
  .product__box-ttl br {
    display: block;
  }
  .product__box-img img {
    height: 510px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 850px) {
  .product {
    padding-bottom: 38px;
  }
  .product__box-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product__box {
    margin-bottom: 40px;
  }
  .product__box-img img {
    height: initial;
  }
  .product__inner h2 {
    font-size: 25px;
  }
  .product__inner h2 span {
    font-size: 22px;
  }
  .product__inner > p {
    font-size: 45px;
  }
  .product__inner > p a {
    font-size: 45px;
  }
  .product__blank {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .product {
    padding-top: 30px;
  }
  .product__bg {
    letter-spacing: 13px;
  }
  .product__detail-imgtxt {
    font-size: 14px;
  }
  .product__inner p {
    margin-bottom: 10px;
  }
  .product__box-type {
    font-size: 15px;
  }
  .product__box-type::before {
    content: "";
    top: 31px;
  }
  .product__box-type span {
    font-size: 17.5px;
  }
}

.fading {
  padding: 50px 0 50px;
  overflow: hidden;
}

.fading__bg-main {
  position: absolute;
  font-size: 210px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.18;
  top: -55px;
  line-height: 0.8;
}

.fading__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.fading__right {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.fading__left {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  position: relative;
}

.fading__left-txt {
  line-height: 3;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
}

.fading__ttl {
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 80px;
}

.fading__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.fading__img-wrapper img {
  width: 48%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fading__step {
  margin: auto;
  width: 70%;
  margin-bottom: 63px;
  position: relative;
  padding: 20px;
}

.fading__step span {
  position: absolute;
  font-size: 115px;
  opacity: 0.18;
  left: -69px;
  top: -64px;
  letter-spacing: -4px;
}

.fading__step p {
  padding-left: 40px;
  font-size: 16px;
  font-weight: 600;
}

.fading__step::before {
  position: absolute;
  margin: auto;
  content: "";
  z-index: 5;
  width: 0;
  height: 0;
  border-top: 22px solid #ffffff;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -42px;
  opacity: 0.18;
}

.fading__step:last-child::before {
  content: none;
}

.fading__step_1 {
  background-color: #005d97;
}

.fading__step_2 {
  background-color: #004d7d;
}

.fading__step_3 {
  background-color: #01456f;
}

.fading__step_4 {
  background-color: #003657;
}

.fading__step_4 .fading__img-wrapper {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
}

.fading__step_4 .fading__img-wrapper::before {
  position: absolute;
  margin: auto;
  content: "";
  z-index: 5;
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 30%;
  opacity: 0.18;
}

.fading__step_4 img {
  width: 40%;
}

.fading__support {
  background-color: #005d97;
}

.fading__support a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fading__support-inner {
  width: 90%;
  margin: auto;
  padding: 30px 0 40px;
}

.fading__support-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}

.fading__support-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fading__support-line img {
  margin-right: 10px;
}

@media screen and (max-width: 1200px) {
  .fading__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fading__ttl {
    margin-bottom: 10px;
  }
  .fading__left-txt {
    font-size: 17px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 850px) {
  .fading__ttl {
    font-size: 30px;
  }
  .fading__bg-main {
    font-size: 33vw;
  }
  .fading__left-txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .fading__left-txt {
    text-align: left;
    width: 90%;
    margin: auto;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 25px;
  }
  .fading__step {
    width: 90%;
  }
  .fading__step span {
    left: -23px;
    top: -42px;
    font-size: 77px;
  }
  .fading__step p {
    font-size: 14px;
  }
  .fading__step_4 .fading__img-wrapper::before {
    border-left: 13px solid #ffffff;
    border-top: 33px solid transparent;
    border-bottom: 33px solid transparent;
  }
  .fading__support-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fading__support-line {
    margin-bottom: 10px;
  }
}

.footer {
  background-color: #313131;
  padding: 67px 0 100px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo img {
  width: 220px;
}

.footer__logo_950on {
  display: none;
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__link ul li {
  margin-right: 25px;
}

.footer__link ul a {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.footer__link-icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.footer__link-icon-wrapper img {
  vertical-align: middle;
}

.footer__shop {
  margin-right: 10px;
}

.footer__insta {
  margin-left: 10px;
}

@media screen and (max-width: 950px) {
  .footer {
    position: relative;
    padding-bottom: 50px;
  }
  .footer__link-icon-wrapper {
    margin-bottom: 30px;
  }
  .footer__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__logo {
    display: none;
  }
  .footer__logo_950on {
    display: block;
    margin-bottom: 25px;
  }
  .footer__top {
    position: absolute;
    right: 30px;
    bottom: 50px;
  }
}

@media screen and (max-width: 650px) {
  .footer__link li {
    margin-bottom: 12px;
  }
  .footer__link ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__link-icon-wrapper {
    margin-bottom: 40px;
  }
  .footer__top {
    display: none;
  }
}

@media all and (-ms-high-contrast: none) {
  .fading-inner {
    display: block;
  }
  .product__btn img {
    vertical-align: middle;
  }
}
/*# sourceMappingURL=style.css.map */