@charset "UTF-8";
/*
Theme Name: テーマの名前
Description: テーマの説明
Theme URI:
Author:
Author URI:
Version: 1.0.0
License:
License URI:
*/
html {
  scroll-behavior: initial;
  width: 100%;
}

body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.5px;
  min-height: 100%;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.component {
  width: 100%;
}

.top-page {
  transition: all 0.5;
}

.inner {
  width: 1200px;
  margin: auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .inner {
    width: 95%;
  }
}

/* アニメーション中のスタイル */
.v-leave-active {
  transition: all 0.5s;
  position: absolute;
}

/* 表示アニメーション */
.v-enter-from {
  opacity: 0;
}

.v-enter-to {
  opacity: 1;
  position: relative;
}

/* 非表示アニメーション */
.v-leave {
  opacity: 1;
}

.v-leave-to {
  opacity: 0;
}

.openbtn {
  display: block;
  position: fixed;
  margin: 0 0 0 auto;
  z-index: 9999;
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 73px;
  height: 73px;
  background-color: black;
}
@media (max-width: 768px) {
  .openbtn {
    width: 59px;
    height: 59px;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 22px;
  height: 4px;
  border-radius: 2px;
  background-color: white;
  width: 45%;
}
@media (max-width: 768px) {
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 19px;
    height: 3px;
    border-radius: 2px;
    background-color: white;
    width: 42%;
  }
}
.openbtn span:nth-of-type(1) {
  top: 22px;
}
@media (max-width: 768px) {
  .openbtn span:nth-of-type(1) {
    top: 19px;
  }
}
.openbtn span:nth-of-type(2) {
  top: 34px;
}
@media (max-width: 768px) {
  .openbtn span:nth-of-type(2) {
    top: 28px;
  }
}
.openbtn span:nth-of-type(3) {
  top: 47px;
}
@media (max-width: 768px) {
  .openbtn span:nth-of-type(3) {
    top: 37px;
  }
}
.openbtn p {
  position: absolute;
  display: inline-block;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 52px;
  font-size: 1rem;
  color: white;
  font-weight: bold;
}
@media (max-width: 768px) {
  .openbtn p {
    font-size: 0.8rem;
    top: 42px;
  }
}
.openbtn p:nth-of-type(2) {
  display: none;
}
.openbtn.active span:nth-of-type(1) {
  top: 29px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}
@media (max-width: 768px) {
  .openbtn.active span:nth-of-type(1) {
    top: 23px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
  }
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 41px;
  left: 21px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}
@media (max-width: 768px) {
  .openbtn.active span:nth-of-type(3) {
    top: 35px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
  }
}
.openbtn.active p:nth-of-type(1) {
  display: none;
}
.openbtn.active p:nth-of-type(2) {
  display: block;
}

.logo {
  width: 150px;
}

.navigation {
  position: sticky;
  top: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 30px;
  z-index: 999;
}
@media (max-width: 1200px) {
  .navigation {
    opacity: 1;
    position: fixed;
    display: grid;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 0;
    padding: 20px 0 10px;
    transform: translateX(100vw);
  }
}
@media (max-width: 1200px) {
  .navigation > h2 {
    text-align: center;
  }
}
.navigation ul {
  display: flex;
}
@media (max-width: 1200px) {
  .navigation ul {
    display: grid;
    padding: 20px 0 10px;
  }
}
.navigation ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 95px;
  transition: background-color 0.3s;
}
@media (max-width: 1200px) {
  .navigation ul li a {
    width: 100vw;
    height: calc((100vh - 73px) / 7);
  }
}
.navigation ul li a:hover {
  background-color: #e1e1e1;
}

.mv-wrapper {
  overflow: hidden;
}

.mv {
  background-image: url("./src/assets/images/mv.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100vh - 95px);
  transform: scale(1.8);
  opacity: 0;
}
@media (max-width: 768px) {
  .mv {
    background-image: url("./src/assets/images/mv.webp");
    background-position: right 68% bottom;
    height: 650px;
  }
}
.mv__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 960px;
  margin: auto;
}
@media (max-width: 1200px) {
  .mv__inner {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .mv__inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 59px 0 0;
    width: 95%;
  }
}
.mv__inner div {
  color: white;
  display: inline-block;
}
.mv__inner div h1 {
  font-size: 51px;
  font-family: "poppins", "noto-sans-cjk-jp", sans-serif;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .mv__inner div h1 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .mv__inner div h1 {
    font-size: 35px;
  }
}
.mv__inner div .main-title1__child {
  opacity: 0;
  position: relative;
  display: inline-block;
  transform: translateY(30px);
}
.mv__inner div .main-title2__child {
  opacity: 0;
  position: relative;
  display: inline-block;
  transform: translateY(30px);
}
.mv__inner div p {
  margin: 25px 0 0;
  font-size: 21px;
  letter-spacing: 4px;
  line-height: 40px;
}
@media (max-width: 1200px) {
  .mv__inner div p {
    margin: 18px 0 0;
    font-size: 19px;
    letter-spacing: 4px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .mv__inner div p {
    font-size: 16px;
    margin: 15px 0 0;
    letter-spacing: 4px;
    line-height: 24px;
  }
}

.second-title {
  margin: -80px 0 0;
}
@media (max-width: 1200px) {
  .second-title {
    margin: auto;
  }
}
.second-title h2 {
  font-size: 100px;
  font-weight: bold;
  writing-mode: vertical-rl;
  display: flex;
  font-family: "poppins", "noto-sans-cjk-jp", sans-serif;
  position: relative;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .second-title h2 {
    font-size: 85px;
    font-weight: bold;
    writing-mode: initial;
    display: flex;
    font-family: "poppins", "noto-sans-cjk-jp", sans-serif;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .second-title h2 {
    font-size: 57px;
  }
}
.second-title h2 span {
  display: inline-block;
  transform: translateX(-85px);
}
@media (max-width: 1200px) {
  .second-title h2 span {
    transform: translateY(102px);
  }
}
.second-title__border {
  margin: 50px auto;
  height: 1px;
  width: 135px;
  border-bottom: 1px solid;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(45deg);
}
@media (max-width: 1200px) {
  .second-title__border {
    margin: 50px 5px 65px 5px;
  }
}
@media (max-width: 768px) {
  .second-title__border {
    display: none;
  }
}
.second-title__jp-character {
  font-size: 21px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .second-title__jp-character {
    font-size: 16px;
    padding-bottom: 20px;
    transform: translate(0) !important;
  }
}
@media (max-width: 768px) {
  .second-title__jp-character {
    position: absolute;
    bottom: -20px;
    padding-left: 20px;
    padding-bottom: 0;
  }
  .second-title__jp-character::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    border-bottom: 1px solid;
    bottom: 12px;
    left: 0;
    right: 0;
    transform: rotate(45deg);
  }
}

.top-page__concept {
  display: flex;
  margin-top: 200px;
  margin-bottom: 80px;
  justify-content: flex-end;
  column-gap: 75px;
}
@media (max-width: 1200px) {
  .top-page__concept {
    display: block;
    margin-top: 100px;
  }
}
.top-page__concept.center {
  justify-content: center;
}
.top-page__concept__text-1 {
  min-width: 480px;
  width: 480px;
  display: grid;
  align-items: end;
}
@media (max-width: 1200px) {
  .top-page__concept__text-1 {
    min-width: 480px;
    width: 80%;
    margin: 50px auto;
    align-items: end;
    padding: 40px 0 0;
  }
}
@media (max-width: 768px) {
  .top-page__concept__text-1 {
    min-width: auto;
  }
}
.top-page__concept__text-1 h3 {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .top-page__concept__text-1 h3 {
    padding: 0 0 50px;
  }
}
@media (max-width: 768px) {
  .top-page__concept__text-1 h3 {
    padding: 0 0 25px;
  }
}
.top-page__concept__text-1 h3 span {
  display: inline-block;
  transform: translateY(53px);
}
@media (max-width: 768px) {
  .top-page__concept__text-1 h3 {
    font-size: 20px;
  }
}
.top-page__concept__text-1 > p {
  line-height: 38px;
}
.top-page__concept__text-2 {
  width: 690px;
  display: grid;
  align-items: end;
}
@media (max-width: 1200px) {
  .top-page__concept__text-2 {
    min-width: 480px;
    width: 80%;
    margin: 50px auto;
    align-items: end;
  }
}
@media (max-width: 768px) {
  .top-page__concept__text-2 {
    min-width: auto;
  }
}
.top-page__concept__text-2 h3 {
  font-size: 32px;
  font-weight: 600;
  padding: 0 0 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-page__concept__text-2 h3 {
    font-size: 20px;
    padding: 0 0 25px;
  }
}
.top-page__concept__text-2 h3 span {
  display: inline-block;
  transform: translateY(35px);
}
.top-page__concept__text-2 > p {
  line-height: 38px;
  padding: 0 0 90px;
}
@media (max-width: 768px) {
  .top-page__concept__text-2 > p {
    padding: 0 0 30px;
  }
}
.top-page__concept__img-1 {
  background-image: url("./src/assets/images/concept-1.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 964px;
  height: 643px;
}
@media (max-width: 1200px) {
  .top-page__concept__img-1 {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .top-page__concept__img-1 {
    width: 375px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .top-page__concept__img-2 {
    text-align: center;
  }
}
.top-page__concept__img-2 video {
  width: 715px;
  transition: all 0.5s;
}
@media (max-width: 1200px) {
  .top-page__concept__img-2 video {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .top-page__concept__img-2 video {
    width: 375px;
    margin: auto;
    height: 250px;
  }
}
.top-page__concept > .second-title {
  writing-mode: vertical-rl;
}
.top-page__spec {
  display: flex;
  justify-content: center;
  column-gap: 10vw;
}
@media (max-width: 1200px) {
  .top-page__spec {
    display: grid;
    width: 80%;
    margin: auto;
  }
}
.top-page__spec > .second-title {
  margin: 0;
}
@media (max-width: 1200px) {
  .top-page__spec > .second-title > h2 {
    margin: 0 0 50px;
  }
}
.top-page__spec__table {
  position: relative;
  z-index: 2;
}
.top-page__spec__table > dl dl {
  display: flex;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .top-page__spec__table > dl dl {
    display: block;
  }
}
.top-page__spec__table > dl dl dt {
  width: 310px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .top-page__spec__table > dl dl dt {
    font-weight: bold;
  }
}
@media (max-width: 768px) {
  .top-page__spec__table > dl dl dd {
    padding: 12px 0;
  }
}
.top-page__spec__img {
  background-image: url("./src/assets/images/spec.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 326px;
  height: 656px;
}
@media (max-width: 1200px) {
  .top-page__spec__img {
    width: 200px;
    height: 404px;
    margin: 50px 0 0 auto;
    right: 20px;
    bottom: 20px;
    z-index: 0;
  }
}
@media (max-width: 768px) {
  .top-page__spec__img {
    width: 154px;
    height: 310px;
  }
}
.top-page__spec__buy {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  padding: 50px 0;
}
.top-page__spec__buy .btn {
  margin: auto;
  background-color: white;
}
.top-page__faq {
  margin: 80px 0;
}
.top-page__faq > .second-title {
  display: grid;
  margin: 0;
  text-align: center;
  justify-content: center;
  transform: translate(0);
}
@media (max-width: 768px) {
  .top-page__faq > .second-title .second-title__jp-character {
    position: relative;
    padding: 0;
    bottom: 0;
  }
  .top-page__faq > .second-title .second-title__jp-character::after {
    display: none;
  }
}
.top-page__faq > .second-title h2 {
  writing-mode: initial;
  font-size: 80px;
  display: flex;
}
.top-page__faq > .second-title h2::after {
  width: 0;
}
@media (max-width: 768px) {
  .top-page__faq > .second-title h2 {
    width: auto;
  }
}
.top-page__faq > .second-title h2 span {
  transform: translateY(30px);
}
.top-page__faq > .second-title h2 span:nth-of-type(1) {
  padding: 0;
}
.top-page__faq__list {
  margin: 50px 0;
}
.top-page__faq__list ul li:last-of-type {
  border-bottom: 1px solid;
}
.top-page__faq__list__content__q {
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 35px 25px;
  border-top: 1px solid;
  column-gap: 15px;
  cursor: pointer;
}
.top-page__faq__list__content__q p:nth-of-type(1) {
  font-size: 22px;
}
.top-page__faq__list__content__q p:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.top-page__faq__list__content__q p span:last-of-type {
  transition: all 0.5s;
  font-size: 22px;
}
.top-page__faq__list__content__q p span:last-of-type.active {
  transform: rotateZ(45deg);
}
.top-page__faq__list__content__a {
  display: flex;
  font-weight: bold;
  column-gap: 15px;
  padding: 0 25px;
  background: #f4f4f4;
}
.top-page__faq__list__content__a p {
  padding: 35px 0;
}
.top-page__faq__list__content__a p:nth-of-type(1) {
  font-size: 22px;
}
.top-page__faq__list__content__a p:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  line-height: 28px;
  font-weight: 400;
}
.top-page__faq__other {
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .top-page__faq__other > .btn {
    margin: auto;
  }
}

.spec-wrapper {
  padding: 100px 0 0;
  background-color: #f4f4f4;
}

.btn {
  width: 250px;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid;
  padding-left: 30px;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .btn {
    justify-content: flex-end;
    margin: 20px 0 20px auto;
  }
}
.btn:hover {
  background-color: #000000;
  color: white;
}
.btn:hover span:nth-of-type(2) {
  border-color: transparent transparent transparent #fff;
}
.btn p {
  position: relative;
  width: 100%;
  font-weight: bold;
}
.btn p span:nth-of-type(1) {
  font-weight: bold;
}
.btn p span:nth-of-type(2) {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 13px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 30px;
}

.bottom {
  text-align: center;
}
.bottom img {
  margin: 20px 0;
}
.bottom p {
  padding: 20px 0;
  font-size: 14px;
}

.op {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f0efed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.op p {
  font-size: 50px;
  color: rgb(56, 56, 56);
  font-family: "poppins", "noto-sans-cjk-jp", sans-serif;
  font-weight: bold;
  position: relative;
}
@media (max-width: 768px) {
  .op p {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.op p::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  margin: auto;
  top: -50px;
  left: 0;
  z-index: 9999;
  background-color: #f0efed;
}
.op p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  margin: auto;
  top: 50px;
  left: 0;
  background-color: #f0efed;
}
.op p .op-title {
  display: inline-block;
  transform: translateY(50px);
}
.op p .op-title:nth-of-type(10), .op p .op-title:nth-of-type(14) {
  padding-left: 15px;
}

:root {
  --bg-scale: scale(1.3);
}

.sv-wrapper {
  overflow: hidden;
  opacity: 0;
}
.sv-wrapper .sv {
  width: 100%;
  height: 565px;
  position: relative;
  transform: scale(1.2);
}
.sv-wrapper .sv::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("./src/assets/images/sv.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: all 1s;
}
@media (max-width: 768px) {
  .sv-wrapper .sv::before {
    background-image: url("./src/assets/images/mv.webp");
    background-position: right 68% bottom;
    height: 650px;
  }
}
.sv-wrapper .sv__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 960px;
  margin: auto;
}
@media (max-width: 1200px) {
  .sv-wrapper .sv__inner {
    width: auto;
    margin: 0 35px;
  }
}
@media (max-width: 768px) {
  .sv-wrapper .sv__inner {
    display: grid;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: auto;
    padding: 100px 0 0;
  }
}
.sv-wrapper .sv-title1 {
  font-size: 51px;
  font-family: "poppins", "noto-sans-cjk-jp", sans-serif;
  font-weight: bold;
  color: white;
}
@media (max-width: 1200px) {
  .sv-wrapper .sv-title1 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .sv-wrapper .sv-title1 {
    font-size: 35px;
  }
}
.sv-wrapper .sv-title1__child {
  opacity: 0;
  position: relative;
  display: inline-block;
  transform: translateY(20px);
}
.sv-wrapper .sv-text1 {
  margin: 25px 0 0;
  font-size: 21px;
  letter-spacing: 4px;
  line-height: 40px;
  color: white;
}
.sv-wrapper .sv-text1__child {
  opacity: 0;
  position: relative;
  display: inline-block;
  transform: translateY(20px);
}
@media (max-width: 1200px) {
  .sv-wrapper .sv-text1 {
    margin: 18px 0 0;
    font-size: 19px;
    letter-spacing: 4px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .sv-wrapper .sv-text1 {
    font-size: 16px;
    margin: 15px 0 0;
    letter-spacing: 4px;
    line-height: 24px;
  }
}

.sv-op {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transform: translateY(0);
  background-color: #f0efed;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  margin: 185px 0 0;
}
@media (max-width: 768px) {
  .section-title {
    margin: 100px 0 0;
  }
}
.section-title h3 {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title h3 {
    font-size: 25px;
  }
}
.section-title h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  margin: auto;
  bottom: -50px;
  left: 0;
  display: inline-block;
  background: white;
}
.section-title h3 > span {
  display: inline-block;
  transform: translateY(20px);
}

.questions__list {
  margin: 50px 0 100px;
}
.questions__list ul li:last-of-type {
  border-bottom: 1px solid;
}

.img-in-section-title {
  width: 115px;
  margin-right: 7px;
  top: -15px;
  position: relative;
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .img-in-section-title {
    width: 95px;
    top: -16px;
  }
}

.how-to-use__exp-wrap {
  margin: 80px 0;
  display: flex;
  column-gap: 50px;
}
@media (max-width: 768px) {
  .how-to-use__exp-wrap {
    flex-wrap: wrap;
    row-gap: 40px;
    justify-content: center;
  }
}
.how-to-use__exp-wrap__img {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 715px;
  height: 477px;
}
@media (max-width: 1200px) {
  .how-to-use__exp-wrap__img {
    width: 367px;
    height: 235px;
  }
}
.how-to-use__exp-wrap__img__1 {
  background-image: url("./src/assets/images/howto/howto1.png");
}
.how-to-use__exp-wrap__img__2 {
  background-image: url("./src/assets/images/howto/howto2.png");
}
.how-to-use__exp-wrap__img__3 {
  background-image: url("./src/assets/images/howto/howto3.png");
}
.how-to-use__exp-wrap__img__4 {
  background-image: url("./src/assets/images/howto/howto4.png");
}
.how-to-use__exp-wrap__img__5 {
  background-image: url("./src/assets/images/howto/howto5.png");
}
.how-to-use__exp-wrap__img__6 {
  background-image: url("./src/assets/images/howto/howto6.png");
}
.how-to-use__exp-wrap__img__7 {
  background-image: url("./src/assets/images/howto/howto7.png");
}
.how-to-use__exp-wrap__text {
  width: 50%;
}
@media (max-width: 768px) {
  .how-to-use__exp-wrap__text {
    width: 100%;
  }
}
.how-to-use__exp-wrap__text h3 {
  font-size: 21px;
  margin: 0 0 35px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .how-to-use__exp-wrap__text h3 {
    margin: 0 0 15px;
  }
}
.how-to-use__exp-wrap__text div p {
  line-height: 28px;
}
.how-to-use__movie {
  display: flex;
  justify-content: center;
  margin: 100px 0 200px;
}
@media (max-width: 768px) {
  .how-to-use__movie {
    margin: 50px 0 100px;
  }
}

.page-case {
  margin: 80px 0;
}
.page-case__row {
  margin: 50px 0;
}
.page-case__row .inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 50px;
  justify-content: center;
}
.page-case__row .inner div p {
  padding: 15px 0;
  font-weight: bold;
}
.page-case__row .inner div div iframe {
  width: 560px;
  height: 315px;
}
@media (max-width: 768px) {
  .page-case__row .inner div div iframe {
    width: 95%;
    height: auto;
    margin: auto;
  }
}

@media (max-width: 768px) {
  #concept {
    width: 100%;
    display: flex;
  }
}

.to-buy {
  background-color: rgb(255, 102, 0);
  color: white;
}

.sp-navigation {
  position: sticky;
  bottom: 0;
  justify-content: center;
  display: none;
}
@media (max-width: 768px) {
  .sp-navigation {
    display: flex;
  }
}
.sp-navigation a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background: rgb(255, 102, 0);
  color: white;
  border-radius: 10px;
}

.evidence-list {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: auto auto auto;
  row-gap: 50px;
  margin: 80px 0;
}
@media (max-width: 1200px) {
  .evidence-list {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 768px) {
  .evidence-list {
    display: block;
  }
}
.evidence-list > li {
  width: 33.3333333333%;
  text-align: center;
}
@media (max-width: 1200px) {
  .evidence-list > li {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .evidence-list > li {
    width: 80%;
    margin: auto;
  }
}
.evidence-list > li > img {
  width: 234px;
  box-shadow: 2px 1px 6px #b5b5b5;
}
.evidence-list > li > p {
  padding: 15px;
  text-align: left;
  line-height: 23px;
}