@charset "UTF-8";
/*
Roc Grotesk Wide Thin
無：800&900

Zen Kaku Gothic New
無：200&600
*/
section {
  background: #E6E6F0; }

/*
=================================================
	ヒーロー背景（クロスフェードスライドショー）
	参考: jillion.co.jp の .mv / .mv-cover
	※ トップページ専用のため top.scss に記述
=================================================
*/
.mv {
  position: relative;
  min-height: 100vh;
  min-height: 100lvh;
  height: auto;
  background-color: #595757;
  overflow: hidden; }
  .mv-cover {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100lvh;
    display: grid;
    overflow: hidden;
    z-index: 0;
    background-color: #595757; }
    .mv-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background-color: #000;
      opacity: 0.45; }
  .mv-cover-item {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
    .mv-cover-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform 6.6s linear; }
    .mv-cover-item.is-current {
      opacity: 1;
      z-index: 1; }
      .mv-cover-item.is-current img {
        transform: scale(1.1); }
    .mv-cover-item.is-reset img {
      transition: none !important;
      transform: scale(1) !important; }

/*
=================================================
	ヒーロー: コピー（copy.svg）
	画面縦幅(100vh)に対して単体で中央配置
=================================================
*/
.mv-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100lvh;
  padding: 0 2.4rem;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
  .mv-inner .mv-copy {
    width: 100%;
    max-width: 25rem; }
    .mv-inner .mv-copy img {
      width: 100%;
      height: auto; }

/*
=================================================
中タイトル＋コンセプト文
=================================================
*/
.mv-message {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  padding: 0 2.4rem 35rem;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
  @media screen and (max-width: 480px) {
    .mv-message {
      padding-bottom: 27rem; } }
  .mv-message-ttl {
    max-width: 46rem;
    margin: 0 auto;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em; }
  .mv-message .mv-concept {
    max-width: 46rem;
    margin: 2.4rem auto 0;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-size: 0.78125rem;
    line-height: 2.75;
    letter-spacing: 0.02em; }
    @media screen and (max-width: 480px) {
      .mv-message .mv-concept {
        font-size: 0.71875rem; } }

/*
=================================================
	スクロール連動ぼかし（copy.svg／中タイトル・コンセプト文の行ごと）
	JS側(script.js)が要素ごとの画面中央からの距離に応じて
	--mv-blur を書き換える。行単位にかけることで、縦に長い
	コンセプト文でも「今読んでいる行だけクリア」という見え方になる
=================================================
*/
.js-scroll-blur {
  --mv-blur: 0px;
  filter: blur(var(--mv-blur));
  transition: filter 0.15s linear; }

.mv-message-ttl .js-scroll-blur,
.mv-concept .js-scroll-blur {
  display: block; }

/*
=================================================
	ヒーロー中だけ見える左上ロゴ／右上ナビ
	参考: jillion.co.jp の .mv-logo / .mv-navi
=================================================
*/
.mv-logo {
  position: fixed;
  top: 2.4rem;
  left: 2.4rem;
  z-index: 20;
  width: 10.1rem;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
  @media screen and (max-width: 480px) {
    .mv-logo {
      width: 8rem; } }
  .mv-logo img {
    width: 100%;
    height: auto; }

.mv-navi {
  position: fixed;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 20; }
  .mv-navi-list {
    display: grid;
    row-gap: .7rem; }
  .mv-navi-item {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translate3d(30%, 0, 0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
    .mv-navi-item:nth-of-type(1) {
      transition-delay: 0.3s; }
    .mv-navi-item:nth-of-type(2) {
      transition-delay: 0.35s; }
    .mv-navi-item:nth-of-type(3) {
      transition-delay: 0.4s; }
    .mv-navi-item:nth-of-type(4) {
      transition-delay: 0.45s; }
    .mv-navi-item:nth-of-type(5) {
      transition-delay: 0.5s; }
    .mv-navi-item:nth-of-type(6) {
      transition-delay: 0.55s; }
  .mv-navi a {
    color: #ffffff;
    font-family: din-2014, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em; }

body.is-loaded .mv-inner,
body.is-loaded .mv-message {
  opacity: 1; }
body.is-loaded .mv-logo {
  opacity: 1; }
body.is-loaded .mv-navi-item {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

body.is-hero-out .mv-logo,
body.is-hero-out .mv-navi {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

/*
=================================================
　SCENE（scene01〜09を使ったチルト・カルーセル）
=================================================
*/
#scene {
  position: relative;
  z-index: 3;
  display: flow-root;
  background: #2263af;
  color: #ffffff;
  padding-bottom: 7rem; }
  @media screen and (max-width: 480px) {
    #scene {
      padding-bottom: 4rem; } }

.scene-track-wrap {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -16rem;
  cursor: grab;
  user-select: none;
  touch-action: pan-y; }
  .scene-track-wrap:active {
    cursor: grabbing; }
  @media screen and (max-width: 480px) {
    .scene-track-wrap {
      margin-top: -9.5rem; } }

.scene-track {
  display: flex;
  align-items: center;
  will-change: transform;
  --tilt-extra: 0deg; }

.scene-item {
  --tilt: 0deg;
  flex: none;
  width: 17rem;
  margin-right: -0.6rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  transform: rotate(calc(var(--tilt) + var(--tilt-extra))); }
  @media screen and (max-width: 480px) {
    .scene-item {
      width: 10rem;
      margin-right: -0.4rem; } }
  .scene-item img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none; }
  .scene-item:nth-child(9n + 1) {
    --tilt: -7deg; }
  .scene-item:nth-child(9n + 2) {
    --tilt: 4deg; }
  .scene-item:nth-child(9n + 3) {
    --tilt: -3deg; }
  .scene-item:nth-child(9n + 4) {
    --tilt: 6deg; }
  .scene-item:nth-child(9n + 5) {
    --tilt: -5deg; }
  .scene-item:nth-child(9n + 6) {
    --tilt: 8deg; }
  .scene-item:nth-child(9n + 7) {
    --tilt: -4deg; }
  .scene-item:nth-child(9n + 8) {
    --tilt: 3deg; }
  .scene-item:nth-child(9n + 9) {
    --tilt: -6deg; }

.scene-nav {
  position: absolute;
  right: 4rem;
  bottom: 2.4rem;
  z-index: 2;
  display: flex;
  column-gap: 1rem; }
  @media screen and (max-width: 480px) {
    .scene-nav {
      right: 0;
      left: 0;
      bottom: 1.6rem;
      justify-content: center; } }

.scene-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  color: #2263af;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
  .scene-nav-btn:hover {
    transform: scale(1.08); }
  .scene-nav-btn:active {
    transform: scale(0.94); }
  @media screen and (max-width: 480px) {
    .scene-nav-btn {
      width: 1.7rem;
      height: 1.7rem; }
      .scene-nav-btn svg {
        width: 11px;
        height: 11px; } }

/*
=================================================
　Details
=================================================
*/
#details {
  position: relative;
  z-index: 1;
  background: #2263af;
  color: #ffffff; }
  #details-container {
    padding: 0 60px;
    max-width: 1340px;
    margin: 0 auto 0; }
    @media screen and (max-width: 768px) {
      #details-container {
        padding-top: 30px;
        padding: 80px 25px 50px; } }
    #details-container h2 img {
      display: block;
      height: 77px;
      width: auto; }
      @media screen and (max-width: 768px) {
        #details-container h2 img {
          margin: 0 auto; } }
    #details-container ul {
      display: flex;
      flex-wrap: wrap;
      margin-top: 30px;
      padding-bottom: 150px; }
      @media screen and (max-width: 768px) {
        #details-container ul {
          padding-bottom: 20px; } }
      #details-container ul li {
        width: 50%;
        display: flex;
        align-items: center; }
        @media screen and (max-width: 768px) {
          #details-container ul li {
            width: 100%;
            border-top: 1.5px dotted #ffffff !important; } }
        @media screen and (max-width: 480px) {
          #details-container ul li {
            flex-direction: column;
            align-items: center;
            row-gap: 12px; } }
        #details-container ul li .details-txt {
          flex: 1;
          min-width: 0;
          padding-right: 20px; }
          @media screen and (max-width: 480px) {
            #details-container ul li .details-txt {
              display: contents; } }
        #details-container ul li img {
          flex: none;
          align-self: center;
          width: 150px;
          height: auto; }
          @media screen and (max-width: 480px) {
            #details-container ul li img {
              order: 2; } }
        #details-container ul li:nth-child(odd) {
          padding-right: 30px;
          border-right: 1.5px dotted #ffffff; }
          @media screen and (max-width: 768px) {
            #details-container ul li:nth-child(odd) {
              padding-right: 0;
              border-right: none; } }
        #details-container ul li:nth-child(even) {
          padding-left: 30px; }
          @media screen and (max-width: 768px) {
            #details-container ul li:nth-child(even) {
              padding-left: 0; } }
        #details-container ul li:nth-child(-n+2) {
          padding-top: 30px;
          padding-bottom: 30px;
          border-bottom: 1.5px dotted #ffffff;
          border-top: 1.5px dotted #ffffff; }
          @media screen and (max-width: 768px) {
            #details-container ul li:nth-child(-n+2) {
              border-bottom: none;
              border-top: none; } }
        #details-container ul li:nth-last-child(-n+2) {
          padding-top: 30px;
          padding-bottom: 30px;
          border-bottom: 1.5px dotted #ffffff; }
          @media screen and (max-width: 768px) {
            #details-container ul li:nth-last-child(-n+2) {
              border-bottom: none; } }
        #details-container ul li h3 {
          font-family: source-han-sans-cjk-ja, sans-serif;
          font-size: 1.25rem;
          font-weight: 500;
          line-height: 1.65;
          letter-spacing: 0.05em;
          margin-bottom: 13px; }
          @media screen and (max-width: 480px) {
            #details-container ul li h3 {
              order: 1;
              text-align: center; } }
        #details-container ul li p {
          font-family: source-han-sans-cjk-ja, sans-serif;
          font-size: 0.78125rem;
          line-height: 1.75;
          letter-spacing: 0.02em;
          text-align: justify; }
          @media screen and (max-width: 480px) {
            #details-container ul li p {
              order: 3;
              flex: 0 0 100%;
              font-size: 0.71875rem; } }

/*
=================================================
　PHOTO LIST
=================================================
*/
#photo-list {
  position: relative;
  height: 200vh;
  height: 200lvh; }

.photo-list-fixed {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  opacity: 0.001;
  pointer-events: none; }
  .photo-list-fixed.is-active {
    opacity: 1;
    pointer-events: auto; }
  .photo-list-fixed-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #595757;
    --photo-reveal: 100%;
    clip-path: inset(var(--photo-reveal) 0 0 0);
    will-change: clip-path; }
    .photo-list-fixed-item img {
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 130%;
      object-fit: cover;
      --photo-parallax-y: 0px;
      transform: translateY(-50%) translateY(var(--photo-parallax-y));
      will-change: transform; }

/*
=================================================
	H-O（How to use〜OEM）共通
=================================================
*/
#h-o {
  position: relative;
  z-index: 1;
  background-color: #fffbf3;
  background-image: linear-gradient(to right, #f5f1e9 1px, transparent 1px), linear-gradient(to bottom, #f5f1e9 1px, transparent 1px);
  background-size: 20px 20px;
  background-attachment: fixed;
  margin: 0 auto 0;
height: 50vh;}
#h-o p {
	color: #2263af;
	font-size: 20px;
	text-align: center;
	padding-top: 20vh;
}
  #h-o .howtouse-zigzag {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 2;
    background-color: #fffbf3;
    pointer-events: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M0 8Q6 0 12 8L12 10L0 10Z' fill='%23fff'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M0 8Q6 0 12 8L12 10L0 10Z' fill='%23fff'/%3E%3C/svg%3E");
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
    -webkit-mask-position: left top;
    mask-position: left top;
    -webkit-mask-size: 12px 10px;
    mask-size: 12px 10px; }

/*
=================================================
	How to use
=================================================
*/
#howtouse {
  background: transparent; }
  @media screen and (min-width: 1025px) {
    #howtouse {
      display: grid;
      grid-template-columns: auto auto minmax(0, 1fr);
      grid-template-rows: auto 600px;
      grid-template-areas: "title title title" "dots carousel video";
      column-gap: 24px;
      align-items: stretch;
      max-width: 1440px;
      margin: 0 auto; } }
  #howtouse h2 {
    max-width: 1220px;
    margin: 0 auto 50px; }
    @media screen and (min-width: 1025px) {
      #howtouse h2 {
        grid-area: title; } }
    @media screen and (max-width: 768px) {
      #howtouse h2 {
        padding: 0 25px 0;
        margin: 0 auto 0; } }
    #howtouse h2 img {
      display: block;
      height: 70px;
      width: auto; }
      @media screen and (max-width: 1024px) {
        #howtouse h2 img {
          margin: 0 auto; } }
  #howtouse .how-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px; }
    @media screen and (min-width: 1025px) {
      #howtouse .how-carousel {
        grid-area: carousel;
        margin-top: 0; } }
    @media screen and (max-width: 768px) {
      #howtouse .how-carousel {
        margin-top: 30px; } }
  #howtouse .how-carousel-track-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    touch-action: pan-y;
    cursor: grab; }
    @media screen and (min-width: 1025px) {
      #howtouse .how-carousel-track-wrap {
        width: 300px;
        max-width: 300px;
        height: 600px;
        margin: 0;
        touch-action: pan-x; } }
    @media screen and (max-width: 768px) {
      #howtouse .how-carousel-track-wrap {
        width: 100%; } }
  #howtouse .how-list {
    display: flex;
    align-items: flex-start; }
    @media screen and (min-width: 1025px) {
      #howtouse .how-list {
        flex-direction: column;
        align-items: center;
        height: 100%; } }
    #howtouse .how-list.is-dragging {
      cursor: grabbing; }
      #howtouse .how-list.is-dragging .how-item {
        transition: none; }
  #howtouse .how-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #001122;
    pointer-events: none;
    transform: rotate(180deg); }
    #howtouse .how-carousel-arrow svg {
      display: block;
      width: 100%;
      height: 100%; }
    #howtouse .how-carousel-arrow--prev {
      left: calc(34% - 30px); }
    #howtouse .how-carousel-arrow--next {
      right: calc(34% - 30px); }
    @media screen and (min-width: 1025px) {
      #howtouse .how-carousel-arrow {
        left: 50%;
        top: auto;
        transform: translateX(-50%) rotate(90deg); }
        #howtouse .how-carousel-arrow--prev {
          top: calc(34% - 30px);
          left: 50%;
          right: auto;
          bottom: auto; }
        #howtouse .how-carousel-arrow--next {
          bottom: calc(34% - 30px);
          left: 50%;
          right: auto;
          top: auto; } }
    @media screen and (max-width: 768px) {
      #howtouse .how-carousel-arrow--prev {
        left: calc(28% - 12px); }
      #howtouse .how-carousel-arrow--next {
        right: calc(28% - 12px); } }
  #howtouse .how-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; }
    @media screen and (min-width: 1025px) {
      #howtouse .how-carousel-dots {
        grid-area: dots;
        flex-direction: column;
        justify-content: center; } }
  #howtouse .how-carousel-dot {
    flex: none;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 2px;
    border: 1px solid #001122;
    background: none;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.25s; }
    #howtouse .how-carousel-dot.is-active {
      background-color: #001122;
      transform: scale(1.15); }
  #howtouse .how-item {
    flex: none;
    width: 32%;
    margin-right: 2.67%;
    min-height: 205px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    user-select: none; }
    #howtouse .how-item img {
      -webkit-user-drag: none;
      user-select: none; }
    @media screen and (min-width: 1025px) {
      #howtouse .how-item {
        width: 100%;
        margin-right: 0;
        height: 32%;
        min-height: 0;
        margin-bottom: 17px; } }
    @media screen and (max-width: 768px) {
      #howtouse .how-item {
        width: 44%;
        margin-right: 4%; } }
    @media screen and (max-width: 480px) {
      #howtouse .how-item {
        margin-right: 2%;
        min-height: 170px; } }
    #howtouse .how-item-label {
      margin-bottom: 7.5px; }
      #howtouse .how-item-label img {
        display: block;
        height: 14px;
        width: auto;
        margin: 0 auto; }
    #howtouse .how-item-visual {
      position: relative; }
    #howtouse .how-item-btn {
      position: relative;
      z-index: 1;
      display: block;
      background-color: #001122;
      color: #ffffff;
      text-align: center;
      border-radius: 3px;
      font-family: source-han-sans-cjk-ja, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: 0.8em;
      padding: 7px 0 7px 0.4em; }
      @media screen and (max-width: 480px) {
        #howtouse .how-item-btn {
          font-size: 0.9375rem;
          letter-spacing: 0.6em;
          padding: 6px 0 6px 0.3em; } }
    #howtouse .how-item-num {
      position: absolute;
      top: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      font-family: din-2014, sans-serif;
      font-weight: 600;
      font-size: 9.375rem;
      line-height: 1;
      color: rgba(0, 17, 34, 0.16);
      user-select: none;
      pointer-events: none; }
      @media screen and (max-width: 480px) {
        #howtouse .how-item-num {
          font-size: 7.5rem;
          top: 40px; } }
    #howtouse .how-item-desc {
      position: relative;
      z-index: 1;
      margin-top: 49px;
      text-align: center;
      font-family: source-han-sans-cjk-ja, sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.85;
      color: #001122; }
      @media screen and (max-width: 1024px) {
        #howtouse .how-item-desc {
          font-size: 0.8125rem; } }
      @media screen and (max-width: 480px) {
        #howtouse .how-item-desc {
          margin-top: 41px;
          font-size: 0.75rem; } }

/*
=================================================
	説明動画（YouTube）
=================================================
*/
.howtouse-video {
  max-width: 780px;
  margin: 45px auto 0;
  width: 100%; }
  @media screen and (min-width: 1025px) {
    #howtouse .howtouse-video {
      grid-area: video;
      max-width: none;
      width: 100%;
      height: 100%;
      margin: 0;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center; } }
  @media screen and (max-width: 768px) {
    .howtouse-video {
      padding: 0 25px; } }

.howtouse-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: #dcdddd;
  cursor: pointer;
  border-radius: 45px; }
  @media screen and (min-width: 1025px) {
    #howtouse .howtouse-video-thumb {
      max-width: 100%;
      max-height: 100%; } }
  .howtouse-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #001122;
    border-radius: 45px; }

.howtouse-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 68px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; }
  .howtouse-video-play svg {
    display: block;
    width: 100%;
    height: auto; }
  @media screen and (max-width: 480px) {
    .howtouse-video-play {
      width: 52px; } }

.howtouse-video-thumb:hover .howtouse-video-play {
  transform: translate(-50%, -50%) scale(1.08); }

.howtouse-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.3s; }
  .howtouse-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
  @media screen and (max-width: 480px) {
    .howtouse-video-modal {
      padding: 16px; } }

.howtouse-video-modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(34, 99, 175, 0.92);
  cursor: pointer; }

.howtouse-video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  aspect-ratio: 16 / 9; }

.howtouse-video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  z-index: 1;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-family: din-2014, sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s; }
  .howtouse-video-modal-close:hover {
    opacity: 0.6; }
  @media screen and (max-width: 480px) {
    .howtouse-video-modal-close {
      top: -38px;
      font-size: 1.625rem; } }

.howtouse-video-modal-frame {
  width: 100%;
  height: 100%;
  background-color: #000; }
  .howtouse-video-modal-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none; }

/*
=================================================
	Safety / OEM
=================================================
*/
#safety, #oem {
  width: calc(100% + 60px);
  margin-top: 90px; }
  @media screen and (max-width: 768px) {
    #safety, #oem {
      width: calc(100% - 60px);
      margin-top: 50px; } }
  @media screen and (max-width: 480px) {
    #safety, #oem {
      width: calc(100% - 40px); } }

#oem {
  margin-top: 60px; }
  @media screen and (max-width: 768px) {
    #oem {
      margin-top: 60px;
      margin-left: 60px; } }
  @media screen and (max-width: 480px) {
    #oem {
      margin-top: 40px;
      margin-left: 40px; } }
  #oem .ho-flush {
    border-radius: 5px 0 0 5px; }
    #oem .ho-flush-img {
      border-radius: 5px 0 0 5px; }

#safety {
  margin-left: -60px;
  margin-top: 125px; }
  @media screen and (max-width: 768px) {
    #safety {
      margin-left: 0; } }
  #safety .ho-flush {
    border-radius: 0 5px 5px 0; }
    #safety .ho-flush-img {
      border-radius: 0 5px 5px 0; }

.ho-flush {
  display: flex;
  align-items: stretch;
  background-color: #2263af; }
  @media screen and (max-width: 768px) {
    .ho-flush {
      flex-direction: column; } }
  .ho-flush-txt, .ho-flush-img {
    flex: 1 1 50%;
    min-width: 0; }
    @media screen and (max-width: 768px) {
      .ho-flush-txt, .ho-flush-img {
        flex: none;
        width: 100%; } }
  .ho-flush-img {
    position: relative;
    overflow: hidden; }
    @media screen and (max-width: 768px) {
      .ho-flush-img {
        order: 1;
        aspect-ratio: 3 / 2; } }
    .ho-flush-img img {
      position: absolute;
      top: -15%;
      left: 0;
      display: block;
      width: 100%;
      height: 130%;
      object-fit: cover;
      --ho-parallax-y: 0px;
      transform: translateY(var(--ho-parallax-y));
      will-change: transform; }
  .ho-flush-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    padding: 70px; }
    @media screen and (max-width: 1024px) {
      .ho-flush-txt {
        padding: 50px; } }
    @media screen and (max-width: 768px) {
      .ho-flush-txt {
        order: 2;
        padding: 40px 25px 50px; } }
  .ho-flush h2 img {
    display: block;
    height: 70px;
    width: auto; }
  .ho-flush-desc {
    margin-top: 26px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
    text-align: justify; }
    @media screen and (max-width: 768px) {
      .ho-flush-desc {
        margin-top: 20px;
        font-size: 0.8125rem;
        line-height: 1.85; } }

/*
=================================================
	Q & A
=================================================
*/
#qanda {
  margin-top: 120px;
  background: transparent;
  padding-bottom: 30px; }
  #qanda h2 {
    max-width: 1220px;
    margin: 0 auto 50px; }
    @media screen and (max-width: 768px) {
      #qanda h2 {
        padding: 0 25px 0;
        margin-bottom: 35px; } }
    #qanda h2 img {
      display: block;
      height: 70px;
      width: auto; }
      @media screen and (max-width: 768px) {
        #qanda h2 img {
          margin: 0 auto; } }
  #qanda .qanda-list {
    max-width: 1220px;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      #qanda .qanda-list {
        padding: 0 25px; } }
  #qanda .qanda-item {
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.25); }
    #qanda .qanda-item:first-child {
      border-top: 1.5px solid rgba(0, 0, 0, 0.25); }
  #qanda .qanda-item-q {
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    padding: 28px 6px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer; }
    @media screen and (max-width: 768px) {
      #qanda .qanda-item-q {
        padding: 20px 2px;
        column-gap: 14px; } }
  #qanda .qanda-item-mark {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #2263af;
    color: #ffffff;
    font-family: din-2014, sans-serif;
    font-weight: 400;
    font-size: 0.9375rem; }
    @media screen and (max-width: 480px) {
      #qanda .qanda-item-mark {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem; } }
    #qanda .qanda-item-mark--a {
      flex-basis: 34px;
      background-color: transparent;
      border: 1.5px solid #2263af;
      color: #2263af; }
      @media screen and (max-width: 480px) {
        #qanda .qanda-item-mark--a {
          flex-basis: 28px; } }
  #qanda .qanda-item-q-txt {
    flex: 1;
    min-width: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: #000; }
    @media screen and (max-width: 768px) {
      #qanda .qanda-item-q-txt {
        font-size: 0.875rem; } }
  #qanda .qanda-item-icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #2263af;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
    #qanda .qanda-item-icon svg {
      display: block; }
  #qanda .qanda-item-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
  #qanda .qanda-item-a-inner {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    overflow: hidden;
    padding: 0 6px; }
    @media screen and (max-width: 768px) {
      #qanda .qanda-item-a-inner {
        column-gap: 14px;
        padding: 0 2px; } }
    #qanda .qanda-item-a-inner p {
      flex: 1;
      min-width: 0;
      font-family: source-han-sans-cjk-ja, sans-serif;
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.9;
      letter-spacing: 0.02em;
      color: #595757;
      padding-bottom: 28px; }
      @media screen and (max-width: 768px) {
        #qanda .qanda-item-a-inner p {
          font-size: 0.8125rem;
          padding-bottom: 20px; } }
  #qanda .qanda-item.is-open .qanda-item-a {
    grid-template-rows: 1fr; }
  #qanda .qanda-item.is-open .qanda-item-icon {
    transform: rotate(135deg); }
