@charset "UTF-8";

html {
  font-size: 100%;
}
@media (max-width: 1074px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Jost", sans-serif;
  color: #333;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.col-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(69px, 4.7916666667vw, 92px);
}

.fixed-cnt {
  position: relative;
  z-index: 0;
}
.fixed-cnt__bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: -1;
}

.fixed-cnt__bg.is-fixed {
  position: sticky;
  -webkit-transform: translateY(calc(-100% + 100vh));
          transform: translateY(calc(-100% + 100vh));
}

.fixed-cnt__contents {
  padding: 20vh 0 80vh;
}

.modal {
  display: none;
  position: relative;
  z-index: 100;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal__overlay {
  display: grid;
  place-content: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .6);
  color: #fff;
  padding-bottom: 66px;
}

.modal__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.modal[aria-hidden=false] .modal__container {
  -webkit-animation: slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .modal__container {
  -webkit-animation: slideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: slideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translate3d(0, 48px, 0);
            transform: translate3d(0, 48px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translate3d(0, 48px, 0);
            transform: translate3d(0, 48px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideOut {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 48px, 0);
            transform: translate3d(0, 48px, 0);
  }
}
@keyframes slideOut {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 48px, 0);
            transform: translate3d(0, 48px, 0);
  }
}
.modal__list {
  font-size: 15px;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  letter-spacing: 1px;
  font-weight: 300;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  min-width: 6.5em;
}
@media screen and (max-width: 768px) {
  .modal__list {
    font-size: 14px;
  }
}

.modal__node {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .modal__node {
    font-size: 14px;
  }
}

.modal__node.--disabled a {
  display: inline-block;
  pointer-events: none;
  cursor: default;
}

.modal__item-title {
  color: #fff;
  text-transform: uppercase;
}

.modal__item-price {
  padding-left: 0.3em;
  color: #fff;
}

.modal__toall {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.modal__toall span {
  position: relative;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-transform: uppercase;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .modal__toall span {
    font-size: 14px;
  }
}

.modal__toall span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 0.5px #fff;
  -webkit-animation: border_anim 4s linear infinite;
  animation: border_anim 4s linear infinite;
}

@-webkit-keyframes border_anim {
  0% {
    width: 0%;
    left: 0;
  }
  40% {
    width: 100%;
    left: 0%;
    opacity: 1;
  }
  80% {
    left: 100%;
    width: 0%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
    left: 0;
  }
  40% {
    width: 100%;
    left: 0%;
    opacity: 1;
  }
  80% {
    left: 100%;
    width: 0%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
.modal__close {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  bottom: 16px;
  left: 50%;
  translate: -50% 0;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 18px;
  height: 1.5px;
  background-color: #fff;
}

.modal__close::before {
  rotate: 45deg;
}

.modal__close::after {
  rotate: -45deg;
}

.swhitch-box {
  position: relative;
  width: 100%;
  aspect-ratio: 537/760;
}

.swhitch-box__img {
  position: absolute;
  inset: 0;
  -webkit-animation: image-switch-animation 2s infinite;
          animation: image-switch-animation 2s infinite;
  z-index: 0;
}

.swhitch-box__img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.swhitch-box__img:nth-child(2) {
  opacity: 0;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.swhitch-box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes image-switch-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes image-switch-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
  }
}
.text-container__title {
  font-weight: 500;
  font-size: clamp(30px, 2.0833333333vw, 40px);
  text-transform: uppercase;
}

.text-container__text {
  line-height: clamp(18px, 14.602px + 0.906vw, 32px);
  margin-top: 1em;
  font-size: clamp(13.5px, 0.9375vw, 18px);
}

.copy {
  margin-top: 213px;
  padding-bottom: 62px;
}

.copy__text {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 26px 0;
  position: fixed;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 500px) {
  .header {
    padding: 6px 7px 0;
  }
}

.header__title,
.header__logo {
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 500px) {
  .header__title,
  .header__logo {
    font-size: 13px;
  }
}

.header__title a,
.header__logo a {
  -webkit-transition: none;
  transition: none;
}

.header__logo {
  position: absolute;
  top: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 500px) {
  .header__logo {
    top: 6px;
  }
}

.header__logo svg {
  width: 140px;
  aspect-ratio: 140/13;
}
@media screen and (max-width: 500px) {
  .header__logo svg {
    width: 100px;
  }
}

.header__social svg {
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
}

.header .header__social #logo-group {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}

.header.is-scrolled .header__title,
.header.is-scrolled .header__logo {
  color: #000;
}

.header.is-scrolled .header__social #logo-group {
  fill: #000;
}

.look {
  position: relative;
}

.look__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.icon {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
}

.icon::after {
  rotate: 90deg;
}

.look__link:hover {
  opacity: 1;
}

.mainview {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainview {
    min-height: 0;
    min-height: initial;
  }
}

.mainview__bg {
  position: absolute;
  inset: 0;
}

.mainview__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainview__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 38%;
  height: 84%;
}
@media screen and (max-width: 768px) {
  .mainview__logo {
    width: 65%;
    max-width: 360px;
    height: 65%;
  }
}

.mainview__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mainview__text {
  font-size: clamp(12px, -2.857px + 1.451vw, 25px);
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: absolute;
  bottom: 40px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .mainview__text {
    bottom: 20px;
  }
}

.section01 {
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  .section01 {
    margin-top: 100px;
  }
}

.section01__bg {
  display: grid;
  grid-template-columns: 50% 50%;
}
@media screen and (max-width: 768px) {
  .section01__bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.section01__bg01,
.section01__bg02 {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section01__bg01,
  .section01__bg02 {
    height: auto;
    height: initial;
  }
}

.section01__bg01 img,
.section01__bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .section01__bg01 img,
  .section01__bg02 img {
    height: auto;
    height: initial;
    -o-object-fit: initial;
       object-fit: initial;
  }
}

.section01__bg01 img {
  -o-object-position: 20% 10%;
     object-position: 20% 10%;
}

.section01__items {
  width: 30.4166666667vw;
  margin-left: 42.2395833333vw;
}
@media screen and (max-width: 768px) {
  .section01__items {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section02 {
  margin-top: 270px;
}
@media screen and (max-width: 768px) {
  .section02 {
    margin-top: 90px;
  }
}

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

.section02__bg01 {
  width: 33.3333333333vw;
  max-width: 480px;
  margin-left: 33.4895833333vw;
}
@media screen and (max-width: 768px) {
  .section02__bg01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 70vw;
    margin-left: 25vw;
  }
}

.section02__bg01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .section02__bg01 img {
    height: auto;
    height: initial;
    -o-object-fit: initial;
       object-fit: initial;
  }
}

.section02__contents {
  margin: 20vh 0 0 21.1979166667vw;
  padding: 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .section02__contents {
    margin: 20vh 0 0 10vw;
    max-width: 68vw;
  }
}

.section03 {
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  .section03 {
    margin-top: 100px;
  }
}

.section03__contents {
  width: 29.8958333333vw;
  aspect-ratio: 574/725;
  margin-left: 35.9895833333vw;
}
@media screen and (max-width: 768px) {
  .section03__contents {
    width: 65vw;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section03__contents video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section04 {
  margin-top: 264px;
}
@media screen and (max-width: 768px) {
  .section04 {
    margin-top: 180px;
  }
}

.section04__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 9.1145833333vw;
  gap: 8.5416666667vw;
}
@media screen and (max-width: 768px) {
  .section04__contents {
    display: block;
    padding-left: 0;
  }
}

.section04__item {
  width: 27.96875vw;
}
@media screen and (max-width: 768px) {
  .section04__item {
    width: 70vw;
  }
}

.section04__image {
  width: 48.59375vw;
}
@media screen and (max-width: 768px) {
  .section04__image {
    width: 85vw;
    margin-left: auto;
    margin-right: 0;
    margin-top: 40px;
  }
}

.section05 {
  margin-top: 493px;
}
@media screen and (max-width: 768px) {
  .section05 {
    margin-top: 120px;
  }
}

@media screen and (max-width: 768px) {
  .section05__bg {
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .section05__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.section06 {
  margin-top: 215px;
}
@media screen and (max-width: 768px) {
  .section06 {
    margin-top: 120px;
  }
}

.section06__item {
  width: 24.5833333333vw;
  margin-left: 39.1145833333vw;
}
@media screen and (max-width: 768px) {
  .section06__item {
    width: 70vw;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section07 {
  margin-top: 423px;
}
@media screen and (max-width: 768px) {
  .section07 {
    margin-top: 180px;
  }
}

.section07__bg {
  display: grid;
  grid-template-columns: 48.6458333333vw 36.4583333333vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 79.84375vw;
  margin-left: 5.2083333333vw;
}
@media screen and (max-width: 768px) {
  .section07__bg {
    display: block;
    width: 100%;
    aspect-ratio: initial;
    margin-left: 0;
  }
}

.section07__bg01,
.section07__bg02 {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section07__bg01,
  .section07__bg02 {
    height: auto;
    height: initial;
  }
}

.section07__bg01 img,
.section07__bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .section07__bg01 img,
  .section07__bg02 img {
    height: auto;
    height: initial;
    -o-object-fit: initial;
       object-fit: initial;
  }
}

.section07__items {
  width: 30.4166666667vw;
  margin-left: 63.5416666667vw;
}
@media screen and (max-width: 768px) {
  .section07__items {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section08 {
  margin-top: 341px;
}
@media screen and (max-width: 768px) {
  .section08 {
    margin-top: 150px;
  }
}

.section08__item {
  width: 35.625vw;
  margin-left: 33.59375vw;
}
@media screen and (max-width: 768px) {
  .section08__item {
    width: 80vw;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section08__item .swhitch-box {
  aspect-ratio: 1348/1356;
}

.section09 {
  margin-top: 324px;
}

.section09__bg {
  display: grid;
  grid-template-columns: 27.2395833333vw 1fr;
  gap: 5.3125vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 8.6458333333vw;
}
@media screen and (max-width: 768px) {
  .section09__bg {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}

.section09__bg01 {
  aspect-ratio: 523/680;
}
@media screen and (max-width: 768px) {
  .section09__bg01 {
    width: 70vw;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section09__bg02 {
  aspect-ratio: 1129/808;
}
@media screen and (max-width: 768px) {
  .section09__bg02 {
    margin-top: 40px;
    aspect-ratio: 375/420;
    width: 100%;
  }
}

.section09__bg01 video,
.section09__bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section09__items {
  width: 27.0833333333vw;
  margin-left: 48.59375vw;
}
@media screen and (max-width: 768px) {
  .section09__items {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section10 {
  margin-top: 352px;
}
@media screen and (max-width: 768px) {
  .section10 {
    margin-top: 150px;
  }
}

.section10__bg {
  width: 28.0208333333vw;
  margin-left: 34.4791666667vw;
}
@media screen and (max-width: 768px) {
  .section10__bg {
    width: 65vw;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section11 {
  margin-top: 383px;
}

.section11__contents {
  display: grid;
  grid-template-columns: 42.03125vw 33.6458333333vw;
  width: 75.9895833333vw;
  aspect-ratio: 1459/908;
  margin-left: 6.1458333333vw;
}
@media screen and (max-width: 768px) {
  .section11__contents {
    display: block;
    width: 100%;
    aspect-ratio: initial;
    margin-left: 0;
  }
}

.section11__item,
.section11__item .look,
.section11__item .look__img,
.section11__item .look__img img,
.section11__image {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section11__item,
  .section11__item .look,
  .section11__item .look__img,
  .section11__item .look__img img,
  .section11__image {
    height: auto;
    height: initial;
  }
}

.section11__image {
  aspect-ratio: initial;
}
@media screen and (max-width: 768px) {
  .section11__image {
    margin-top: 40px;
    aspect-ratio: 648/908;
    width: 75vw;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section12 {
  margin-top: 496px;
}
@media screen and (max-width: 768px) {
  .section12 {
    margin-top: 220px;
  }
}

.section12__bg {
  width: 28.0208333333vw;
  margin-left: 37.2916666667vw;
  aspect-ratio: 538/707;
}
@media screen and (max-width: 768px) {
  .section12__bg {
    width: 70vw;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section12__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section13 {
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  .section13 {
    margin-top: 80px;
  }
}

.section13__bg {
  display: grid;
  grid-template-columns: 41.56% 58.44%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .section13__bg {
    display: block;
    width: 100%;
    height: auto;
    height: initial;
  }
}

.section13__bg01,
.section13__bg02 {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section13__bg01,
  .section13__bg02 {
    height: auto;
    height: initial;
  }
}

.section13__bg01 {
  aspect-ratio: 1606/2249;
  overflow: hidden;
}

.section13__bg01 img,
.section13__bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .section13__bg01 img,
  .section13__bg02 img {
    height: auto;
    height: initial;
    -o-object-fit: initial;
       object-fit: initial;
  }
}

@media screen and (max-width: 768px) {
  .section13__bg01 img {
    scale: 1.5;
    -webkit-transform-origin: 90% 20%;
            transform-origin: 90% 20%;
  }
}

.section13__items {
  width: 30.625vw;
  margin-left: 18.3333333333vw;
}
@media screen and (max-width: 768px) {
  .section13__items {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section14 {
  margin-top: 270px;
}

@media screen and (max-width: 768px) {
  .section14__bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section14__bg01 {
  width: 46.3541666667vw;
  margin-left: 20.8333333333vw;
}
@media screen and (max-width: 768px) {
  .section14__bg01 {
    width: 100%;
    margin-left: 0;
  }
}

.section14__bg01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .section14__bg01 img {
    height: auto;
    height: initial;
    -o-object-fit: initial;
       object-fit: initial;
  }
}

.section14__contents {
  width: 32.2395833333vw;
  margin-left: 47.34375vw;
}
@media screen and (max-width: 768px) {
  .section14__contents {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section15 {
  margin-top: 364px;
}
@media screen and (max-width: 768px) {
  .section15 {
    margin-top: 150px;
  }
}

.section15__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 13.75vw;
  gap: 12.5vw;
}
@media screen and (max-width: 768px) {
  .section15__contents {
    display: block;
    padding-left: 0;
  }
}

.section15__item {
  width: 27.0833333333vw;
  aspect-ratio: 520/745;
}
@media screen and (max-width: 768px) {
  .section15__item {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section15__image {
  width: 40.6770833333vw;
}
@media screen and (max-width: 768px) {
  .section15__image {
    margin-top: 40px;
    width: 100%;
  }
}

.section16 {
  margin-top: 283px;
}
@media screen and (max-width: 768px) {
  .section16 {
    margin-top: 120px;
  }
}

.section16__bg {
  width: 27.96875vw;
  margin-left: 36.1458333333vw;
}
@media screen and (max-width: 768px) {
  .section16__bg {
    width: 65vw;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section17 {
  margin-top: 304px;
}
@media screen and (max-width: 768px) {
  .section17 {
    margin-top: 150px;
  }
}

.section17__item {
  width: 36.1979166667vw;
  aspect-ratio: 695/981;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .section17__item {
    width: 80vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.u-sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
