@charset "UTF-8";
/* base */
body {
  width: 100%;
}

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

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

ul,
li,
ol {
  list-style: none;
}

/* common */
:root {
  --cl-base: #231815;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt";
  color: var(--cl-base);
}

@media screen and (min-width: 769px) {
  .pc-line {
    display: inline-block;
  }
}

.dib {
  display: inline-block;
}

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

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

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* ====================================
  vue transition
==================================== */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/* contents fade in */
.fade-in {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s;
}
.fade-in.scroll-in {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .fade-in {
    transform: translateY(40px);
  }
}

/* ====================================
loading
 ====================================*/
main,
.banner {
  visibility: hidden;
}

.is-loaded .loading {
  opacity: 0;
  visibility: hidden;
}
.is-loaded main,
.is-loaded .banner {
  visibility: visible;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 500;
  transition: all 0.5s 0.5s;
}
.loading img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ====================================
header
 ====================================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 110;
  opacity: 0;
}
.header.is-menu-active {
  opacity: 1;
}
.header.is-scrolled {
  opacity: 1;
}

.is-loaded .header.is-initial-top {
  -webkit-animation: header 0.5s 4s forwards;
          animation: header 0.5s 4s forwards;
}

@-webkit-keyframes header {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes header {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  padding: 12px 47px 12px 42px;
  background-color: rgba(255, 255, 255, 0.5);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-inner {
    height: 44px;
    padding: 0 16px 0 17px;
  }
}

.header-logo {
  width: 198px;
  display: block;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 138px;
  }
}
.header-logo img {
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav-link {
  padding-left: 17px;
  position: relative;
  font-size: 12.5px;
  letter-spacing: 0.1em;
}
.header-nav-link:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/arrow_down.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: top 0.3s;
}
.header-nav-link:hover:before {
  top: calc(50% + 3px);
}

/* hamburger */
.header-dots {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-dots {
    display: flex;
    gap: 6px;
    padding: 10px 0;
  }
}
.header-dots span {
  display: block;
  height: 4px;
  width: 4px;
  background-color: var(--cl-base);
  border-radius: 50%;
}

.hamburger-menu {
  position: fixed;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  overflow: auto;
  z-index: 100;
}

.hamburger-inner {
  padding: 87px 16px 65px;
  max-width: 375px;
  margin: 0 auto;
}

.hamburger-close {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
  margin-left: auto;
  margin-bottom: 56px;
}
.hamburger-close span {
  width: 35px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--cl-base);
}
.hamburger-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger-nav-link {
  display: block;
  text-align: right;
  font-size: 20px;
  margin-bottom: 33px;
}
.hamburger-nav-link:last-child {
  margin-bottom: 0;
}
.hamburger-nav-link span {
  display: inline-block;
  color: #fff;
  padding: 5px 11px 5px 26px;
  background: url("../images/arrow_down_white.svg") no-repeat center left 10px/12px auto;
  letter-spacing: 0.11em;
  position: relative;
}
.hamburger-nav-link span:before {
  background: var(--cl-base);
  height: 100%;
  width: 0;
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  z-index: -1;
  transition: all 0.3s 0.5s;
}

.hamburger-logo {
  padding: 0 7px;
  margin-top: 123px;
}

.is-menu-active .header-inner {
  display: none;
}
.is-menu-active .hamburger-menu {
  left: 0;
}
.is-menu-active .hamburger-nav-link span:before {
  width: 100%;
}

/* ====================================
footer
 ====================================*/
.footer {
  background: var(--cl-base);
  color: #fff;
}

.footer-inner {
  text-align: center;
  padding: 24px 50px 47px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 20px 10px;
  }
}

.footer-logo {
  width: 192px;
  margin: 0 auto 25px;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 134px;
    margin-bottom: 22px;
  }
}
.footer-logo img {
  display: block;
}

.footer-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    gap: 20px;
  }
}

.footer-nav-link {
  position: relative;
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer-nav-link {
    font-size: 10px;
  }
}
.footer-nav-link:before {
  content: "|";
  display: block;
  position: absolute;
  left: -15px;
}
@media screen and (max-width: 768px) {
  .footer-nav-link:before {
    left: -10px;
  }
}
.footer-nav-link:first-child:before {
  display: none;
}

.footer-logo-bottom {
  margin: 103px auto 0;
  display: block;
  width: 285px;
}
@media screen and (max-width: 768px) {
  .footer-logo-bottom {
    margin: 52px auto 0;
    width: 185px;
  }
}

.footer-copy {
  margin-top: 13px;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.019em;
}
@media screen and (max-width: 768px) {
  .footer-copy {
    margin-top: 14px;
    font-size: 10px;
  }
}

/* ====================================
fv
 ====================================*/
.fv {
  --swiper-pagination-bullet-width: 4px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .fv {
    --swiper-pagination-bullet-width: 2px;
    --swiper-pagination-bullet-height: 2px;
    --swiper-pagination-bullet-horizontal-gap: 3px;
    --swiper-pagination-bottom: 10px;
  }
}
.fv swiper-container:not(.swiper-initialized) {
  aspect-ratio: 1366/688;
  display: block;
}
@media screen and (max-width: 768px) {
  .fv swiper-container:not(.swiper-initialized) {
    aspect-ratio: 750/614;
  }
}

swiper-slide {
  overflow: hidden;
  position: relative;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-fade {
  position: absolute;
  bottom: 12.2%;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-fade {
    bottom: 11%;
  }
}

.fv-logo {
  width: 49%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv-logo {
    width: 67.8%;
  }
}

.fv-text {
  width: 23.7%;
  display: block;
  margin: 3.07vw auto 0;
}
@media screen and (max-width: 768px) {
  .fv-text {
    width: 36.4%;
    margin-top: 5.46vw;
  }
}

.slide-inner {
  transform: scale(1);
}
.slide-inner img {
  display: block;
}

.swiper-slide-visible:not(.slide-1) .slide-inner,
.swiper-slide-prev .slide-inner {
  -webkit-animation: zoom 10s forwards;
          animation: zoom 10s forwards;
}

@-webkit-keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}
/* 追従バナー */
.banner-wrap {
  position: fixed;
  bottom: 48px;
  right: 0;
  z-index: 100;
  width: 400px;
}
@media screen and (max-width: 768px) {
  .banner-wrap {
    width: calc(100% - 30px);
    max-width: 450px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

.banner-btn {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: var(--cl-base) url("../images/close.png") no-repeat center/15px auto;
  position: absolute;
  top: -10px;
  right: -10px;
  display: none;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .banner-btn {
    display: block;
  }
}

.banner {
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
}
.banner img {
  display: block;
}

/* ====================================
product section
 ====================================*/
.product-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0 178px;
}
.product-section:before {
  position: fixed;
  background: url("../images/bg_product.jpg") no-repeat center/cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  display: block;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .product-section {
    padding: 30px 0 63px;
  }
  .product-section:before {
    background: url("../images/bg_product_sp.jpg") no-repeat center/cover;
  }
}

.product-inner {
  max-width: 1186px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product-inner {
    padding: 0 20px;
  }
}

/* youtube */
.movie-thumb {
  max-width: 733px;
  margin: 0 auto 88px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie-thumb {
    max-width: 60vw;
    margin-bottom: 28px;
  }
  .movie-thumb.fade-in {
    opacity: 1;
    transform: none;
  }
}
.movie-thumb:before {
  width: 137px;
  height: 137px;
  background: url("../images/icon_play.png") no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .movie-thumb:before {
    width: 60px;
    height: 60px;
  }
}

.movie-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.movie-modal-inner {
  padding: 0 140px;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  max-width: 150vh;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .movie-modal-inner {
    padding: 0 16px;
  }
}

.movie-close-wrap {
  margin-bottom: 20px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .movie-close-wrap {
    margin-bottom: 15px;
  }
}

.movie-close {
  background: var(--cl-base) url("../images/close.png") no-repeat 14px center/13px auto;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.29em;
  padding: 3px 14px 7px 43px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .movie-close {
    font-size: 14px;
    padding: 3px 12px 5px 33px;
  }
}

.movie-content {
  padding-top: 60%;
  position: relative;
  height: 0;
}
.movie-content iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.product-copy {
  text-align: center;
  margin-bottom: 94px;
}
@media screen and (max-width: 768px) {
  .product-copy {
    margin-bottom: 43px;
  }
  .product-copy.fade-in {
    opacity: 1;
    transform: none;
  }
}

.product-copy-title {
  font-size: 31px;
  margin-bottom: 8px;
  line-height: 1.41;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-copy-title {
    font-size: 20px;
    margin-bottom: 7px;
  }
}

.product-copy-text {
  font-size: 22px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-copy-text {
    font-size: 15px;
    line-height: 2.41;
    width: calc(100% + 40px);
    margin-left: -20px;
    letter-spacing: 0;
  }
}

.feature-list {
  counter-reset: feature;
}
@media screen and (max-width: 768px) {
  .feature-list {
    padding: 0 9px;
  }
}
.feature-list > li {
  counter-increment: feature;
  display: flex;
  gap: 56px;
  align-items: center;
  max-width: 1034px;
  margin-bottom: 92px;
}
.feature-list > li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .feature-list > li:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
  }
  .feature-list > li:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row-reverse;
  }
  .feature-list > li:nth-child(even) .feature-detail {
    padding-right: 64px;
    max-width: 486px;
  }
}
@media screen and (max-width: 768px) {
  .feature-list > li {
    display: block;
    margin-bottom: 57px;
  }
}

.feature-detail {
  position: relative;
  padding-left: 98px;
  flex: 1;
}
.feature-detail:before {
  content: counter(feature, decimal-leading-zero);
  font-size: 42px;
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 1;
  letter-spacing: 0.1em;
}
.feature-detail:after {
  height: 100%;
  width: 1px;
  content: "";
  display: block;
  position: absolute;
  left: 70px;
  bottom: 0;
  background-color: var(--cl-base);
}
@media screen and (max-width: 768px) {
  .feature-detail {
    padding-left: 0;
    padding-top: 59px;
  }
  .feature-detail:before {
    font-size: 30px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .feature-detail:after {
    display: none;
  }
}

.feature-title {
  font-weight: normal;
  font-size: 31px;
  line-height: 1.35;
  margin-bottom: 23px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .feature-title {
    font-size: 20px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-align: center;
  }
  .feature-title .border {
    position: relative;
    display: inline-block;
  }
  .feature-title .border:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 0.5px;
    top: -8px;
    left: 0;
    background-color: var(--cl-base);
  }
}
.feature-title sup {
  font-size: 0.4em;
  vertical-align: super;
  top: 0;
}

.feature-text {
  font-size: 19px;
  line-height: 1.84;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .feature-text {
    font-size: 15px;
    line-height: 1.91;
    letter-spacing: 0;
  }
}

.feature-img {
  width: 46.6%;
}
@media screen and (max-width: 768px) {
  .feature-img {
    width: 100%;
    padding: 0 52px;
    margin-bottom: 10px;
  }
}

/* ====================================
catch
 ====================================*/
.catch-section {
  position: relative;
}
@media screen and (min-width: 1366px) {
  .catch-section {
    aspect-ratio: 1366/800;
  }
}

.catch-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.catch-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .catch-bg img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.catch-inner {
  z-index: 5;
  position: relative;
  padding: 10.8345534407vh 0 12.5183016105vh min(159px, 11.6398243045vw);
}
@media screen and (min-width: 1366px) {
  .catch-inner {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .catch-inner {
    padding: 33px 39px 127.3333333333vw;
  }
}

.catch-content {
  right: 59%;
  position: absolute;
}
@media screen and (max-width: 1366px) {
  .catch-content {
    position: static;
  }
}
.catch-text {
  color: #fff;
  font-size: 24px;
  line-height: 2.5;
  letter-spacing: 0.265em;
}
@media screen and (max-width: 768px) {
  .catch-text {
    font-size: 17px;
    padding-left: 11px;
    line-height: 2.35;
    max-width: 285px;
    margin: 0 auto;
  }
}

.catch-logo {
  max-width: 393px;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .catch-logo {
    max-width: 293px;
    margin-top: 27px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ====================================
lineup
 ====================================*/
.lineup-section {
  background: url("../images/bg_lineup.jpg") no-repeat center/cover;
  padding: 123px 0 113px;
}
@media screen and (max-width: 768px) {
  .lineup-section {
    background: url("../images/bg_lineup_sp.jpg") no-repeat center/cover;
    padding: 44px 0 90px;
  }
}

.lineup-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lineup-title {
    margin-bottom: 36px;
  }
}

.lineup-title-logo {
  display: block;
  width: 283px;
  margin: 0 auto 42px;
  position: relative;
}
.lineup-title-logo img {
  display: block;
}
.lineup-title-logo:before {
  width: 288px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  background-color: var(--cl-base);
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .lineup-title-logo {
    max-width: 190px;
    margin-bottom: 19px;
  }
  .lineup-title-logo:before {
    width: 190px;
    height: 1px;
    bottom: -15px;
  }
}

.lineup-title-ja {
  display: block;
  width: 253px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lineup-title-ja {
    max-width: 168.5px;
  }
}

.lineup-row {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 895px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lineup-row {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .lineup-col {
    flex: 1;
  }
  .lineup-col:nth-child(1) .lineup-item-name {
    padding-right: 1.9em;
    padding-left: 1em;
  }
  .lineup-col:nth-child(2) .lineup-item-name {
    padding-left: 1.5em;
    padding-right: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .lineup-col {
    width: 100%;
    max-width: 310px;
    margin: 63px auto 0;
  }
  .lineup-col:first-child {
    margin-top: 0;
  }
}

.lineup-category {
  text-align: center;
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lineup-category {
    margin-bottom: 10px;
    letter-spacing: -0.1em;
  }
}

.lineup-item-name {
  display: flex;
  font-size: 14px;
}
.lineup-item-name span {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lineup-item-name {
    width: 90%;
    font-size: 14px;
    margin: 0 auto;
  }
}

.lineup-item-img {
  max-width: 428px;
  margin: -18% auto -8%;
}
@media screen and (max-width: 768px) {
  .lineup-item-img {
    max-width: 283.5px;
    margin: -55px auto -24px;
    position: relative;
  }
}

.lineup-item-link-wrap {
  max-width: 380px;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .lineup-item-link-wrap {
    gap: 20px;
    justify-content: center;
    max-width: 100%;
  }
}

.lineup-item-link {
  display: inline-block;
  background: var(--cl-base) url("../images/icon_link.svg") no-repeat 18px center/15px auto;
  color: #e9d9c1;
  font-size: 17px;
  letter-spacing: 0.34em;
  padding: 7px 22px 7px 43px;
}
@media screen and (max-width: 768px) {
  .lineup-item-link {
    font-size: 14px;
    letter-spacing: 0.26em;
    padding: 5px 15px 5px 33px;
    background: var(--cl-base) url("../images/icon_link.svg") no-repeat 14px center/12px auto;
  }
}

.coming-soon {
  position: absolute;
  width: calc(100% - 40px);
  bottom: -23px;
  max-width: 844px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .coming-soon {
    width: 100%;
    bottom: -33px;
    max-width: 310px;
  }
}

/* ====================================
  Checker
 ====================================*/
.checkerStart {
  padding: 58px 20px 44px;
}
@media screen and (min-width: 769px) {
  .checkerStart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 98px 50px 111px;
  }
}

@media screen and (min-width: 769px) {
  .checkerStart-heading {
    order: 1;
  }
}

.checkerStart-heading > h2 {
  margin-top: 0.42em;
  color: #4e0a00;
  font-size: 21px;
  line-height: 1.67;
  letter-spacing: 0.11em;
  text-indent: 0.11em;
  text-align: center;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .checkerStart-heading > h2 {
    margin-top: 0;
    font-size: 30px;
    line-height: 1.73;
  }
}

.checkerStart-heading > h2 > span {
  display: block;
}

.checkerStart-button {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .checkerStart-button {
    order: 2;
    margin-top: 40px;
  }
}

.checkerStart-button > button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 282px;
  min-height: 44px;
  background: #4e0a00;
  border: 1px solid #4e0a00;
  color: #e9d9c1;
  font-size: 23px;
  letter-spacing: 0.79em;
  text-indent: 0.79em;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media screen and (min-width: 769px) {
  .checkerStart-button > button {
    min-width: 266px;
    min-height: 52px;
    font-size: 24px;
  }
}

.checkerStart-button > button:hover {
  background: transparent;
  color: #4e0a00;
}

.checkerStart-image-01,
.checkerStart-image-02 {
  display: block;
  text-align: center;
}

.checkerStart-button > button > span {
  padding-bottom: 0.1em;
}

.checkerStart-button > button > svg {
  transform: translateX(0);
  transition: transform 0.2s ease-in-out;
}

.checkerStart-button > button:hover > svg {
  transform: translateX(50%);
}

.checkerStart-button > button > svg > path {
  transition: fill 0.2s ease-in-out;
}

.checkerStart-button > button:hover > svg > path {
  fill: #4e0a00;
}

.checkerStart-image-01 > img,
.checkerStart-image-02 > img {
  width: min(100%, 260px);
}
@media screen and (min-width: 769px) {
  .checkerStart-image-01 > img,
.checkerStart-image-02 > img {
    width: min(100%, 770px);
  }
}

@media screen and (min-width: 769px) {
  .checkerStart-image-01 {
    order: 3;
    margin-top: 95px;
  }
}

.checkerStart-image-02 {
  margin-top: 37px;
}
@media screen and (min-width: 769px) {
  .checkerStart-image-02 {
    display: none;
  }
}

.checkerQuestion-choice {
  padding: 71px 20px 83px;
}

.checkerQuestion-choice-inner {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.checkerQuestion-title > p {
  color: #4e0a00;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.11em;
  text-indent: 0.11em;
  text-align: center;
}

.checkerQuestion-choice-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 46px;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-choice-button {
    flex-direction: row;
    justify-content: center;
    align-items: inherit;
    gap: 0;
  }
}

.checkerQuestion-choice-button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-choice-button-wrap {
    width: calc(100% / var(--checkerQuestion-choice-button-count));
  }
}

.checkerQuestion-choice-button button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checkerQuestion-choice-button-checkbox {
  width: 25px;
  height: 25px;
  margin-top: 15px;
  border: 1px solid #4e0a00;
  transition: background-color 0.1s ease-in-out;
}

.checkerQuestion-choice-button button[aria-checked=true] .checkerQuestion-choice-button-checkbox {
  background-color: #4e0a00;
  background-image: url("../images/checker/icon-check-1.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.checkerQuestion-choice-button button > * {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .checkerQuestion-choice-button-image {
    min-height: 250px;
  }
}

.checkerQuestion-choice-button-image > img {
  width: var(--choice-sp-image-width);
  height: var(--choice-sp-image-height);
}
@media screen and (min-width: 769px) {
  .checkerQuestion-choice-button-image > img {
    width: var(--choice-pc-image-width);
    height: var(--choice-pc-image-height);
  }
}

.checkerQuestion-choice-button-textMain {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-top: 15px;
  color: #4e0a00;
  font-size: 20px;
  letter-spacing: 0.11em;
  text-indent: 0.11em;
  line-height: 1.35;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-choice-button-textMain {
    font-size: 24px;
    line-height: 1.291666667;
  }
}

.checkerQuestion-choice-button-textSub {
  color: #4e0a00;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-indent: 0.11em;
  line-height: 1.625;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-choice-button-textSub {
    font-size: 15px;
    line-height: 1.466666667;
  }
}

.checkerQuestion-result {
  padding: 90px 15px 35px;
  background: url("../images/bg_lineup_sp.jpg") no-repeat center/cover;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result {
    padding: 70px 20px 60px;
    background: url("../images/bg_lineup.jpg") no-repeat center/cover;
  }
}

.checkerQuestion-result-inner {
  width: 100%;
  margin-inline: auto;
  transition: opacity 0.8s ease-in-out, transform 0.6s ease-in-out;
  transform: translateY(80px);
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1366px;
  }
}

.checkerQuestion-result-inner.fadeIn {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .checkerQuestion-result-body {
    margin-top: 20px;
  }
}

.checkerQuestion-result-heading {
  color: #4e0a00;
  font-size: 20px;
  letter-spacing: 0.11em;
  text-indent: 0.11em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-heading {
    font-size: 30px;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }
}

.checkerQuestion-result-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.checkerQuestion-result-title-inner {
  width: 100%;
  max-width: 340px;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-title-inner {
    width: inherit;
    max-width: inherit;
  }
}

.checkerQuestion-result-title-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 10px 10px;
  background: #4e0a00;
  color: #fff;
  font-size: 21px;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-title-text {
    width: inherit;
    padding: 16px 36px;
    font-size: 30px;
    letter-spacing: 0.165em;
    text-indent: 0.165em;
  }
}

.checkerQuestion-result-title-logo {
  width: 183px;
  height: 19px;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-title-logo {
    width: 192px;
    height: 20px;
  }
}

.checkerQuestion-result-title-text > span {
  margin-top: 0.2em;
}

.checkerQuestion-result-link {
  width: 100%;
  margin-top: 10px;
  color: #4e0a00;
  font-size: 13px;
  line-height: 1;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-link {
    margin-top: 8px;
    font-size: 15px;
  }
}

.checkerQuestion-result-link > a {
  display: inline-flex;
  align-items: center;
}

.checkerQuestion-result-link-image {
  width: 15px;
  height: 15px;
  margin-left: 7px;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-link-image {
    width: 17px;
    height: 17px;
  }
}

.checkerQuestion-result-image {
  display: block;
  position: relative;
  z-index: 1;
}

.checkerQuestion-result-image > picture {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-image > picture {
    margin-top: -36px;
  }
}

.checkerQuestion-result-image img {
  width: var(--result-sp-image-width);
  height: var(--result-sp-image-height);
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-image img {
    width: var(--result-pc-image-width);
    height: var(--result-pc-image-height);
  }
}

.checkerQuestion-result-description {
  margin-top: -13px;
  color: #4e0a00;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-result-description {
    margin-top: -35px;
    font-size: 30px;
    line-height: 1.2;
  }
}

.checkerQuestion-return {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-return {
    width: 100%;
    justify-content: flex-end;
  }
}

.checkerQuestion-return-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 266px;
  padding: 10px;
  border: 1px solid #4e0a00;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-return-button {
    min-width: inherit;
    padding: inherit;
    border: none;
  }
}

.checkerQuestion-return-button > svg {
  margin-right: 8px;
  transform: rotate(180deg);
}

.checkerQuestion-return-button > svg > path {
  fill: #4e0a00;
}

.checkerQuestion-return-button-text {
  color: #4e0a00;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.165em;
  text-indent: 0.165em;
}
@media screen and (min-width: 769px) {
  .checkerQuestion-return-button-text {
    font-size: 17px;
    line-height: 1.294117647;
  }
}

.start-enter-active {
  transition: opacity 0.6s;
  transition-delay: 0.2s;
  transition-duration: ease-in-out;
}

.start-enter-to,
.start-leave-from {
  opacity: 1;
}

.start-leave-to,
.start-enter-from {
  opacity: 0;
}

.checker-enter-active {
  transition: opacity 0.6s;
  transition-delay: 0.2s;
  transition-duration: ease-in-out;
}

.checker-enter-to,
.checker-leave-from {
  opacity: 1;
}

.checker-leave-to,
.checker-enter-from {
  opacity: 0;
}

.result-enter-active {
  transition: opacity 0.6s;
  transition-delay: 0.2s;
  transition-duration: ease-in-out;
}

.result-leave-enter,
.result-enter-to {
  opacity: 1;
}

.result-leave-to,
.result-enter-from {
  opacity: 0;
}

@media screen and (min-width: 769px) {
  #checker .splb {
    display: none;
  }
}
#checker .pclb {
  display: none;
}
@media screen and (min-width: 769px) {
  #checker .pclb {
    display: block;
  }
}