@charset "UTF-8";

/* media query
------------------------------ */

/* font
------------------------------ */

/* setting
------------------------------ */

:root {
  /* color */
  --color-base: #5A4530;
  --color-base-rgb: 90, 69, 48;
  --color-ge: #74B126;
  --color-ge02: #5E8006;
  --color-yG: #A4CC23;
  --color-yG-rgb: 164, 204, 35;
  --color-y: #F6DC6C;
  --color-y-rgb: 246, 220, 108;
  --color-o: #F6B646;
  --color-r: #F66346;
  --color-r-rgb: 246, 99, 70;
  --color-b: #593D1B;
  --color-b-rgb: 89, 61, 27;
  --color-drag: #401F00;
  --color-rgb-drag: 64, 31, 0;
  --color-bg: #F6FAE9;
  --color-bg02: #D1E590;
  --color-bg03: #E4F0BD;
  --color-bg04: #F2F3F4;
  --color-bg05: #F6F6F6;
  --color-bg06: #EAEAEA;
  --color-line: rgba(87, 99, 111, 0.2);
  --color-line02: rgba(87, 99, 111, 0.1);
  --color-overlay: rgba(87, 99, 111, 0.6);
  --color-scroll: rgba(64, 31, 0, 0.1);
  --color-scrollthumb: rgba(64, 31, 0, 0.2);
  --color-link: #034BE4;
  --color-PL04: #F5D259;
  --color-PL12: #E1DED9;
  --color-PL15: #D4AF82;
  --color-PL21: #CCD0D1;
  --color-PL22: #454A4D;
  --color-PL23: #505457;
  --color-PL24: #70BCCC;
  --color-PL28: #F28C37;
  --color-PL29: #ECDBC9;
  --color-PL33: #EA93A4;
  --color-PL38: #A1A15A;
  --color-PL40: #EBBD25;
  --color-PL50: #E1DDD1;
  --color-PL52: #CEAD8E;
  --color-PL53: #5D3A27;
  --color-PL57: #E9E2C6;
  --color-PL58: #EADADA;
  --color-PL60: #D1DBE4;
  --color-PL61: #CDCF9D;
  --color-PL63: #E9E2C6;
  --color-PL64: #D94965;
  --color-PL65: #433840;
  --color-PL68: #242E3A;
  --color-PL70: #97A839;
  /* pattern */
  --pattern-sandy: url(../img/common/pattern-sandy.png) repeat center center / 100px;
  --pattern-sandyDark: url(../img/common/pattern-sandy_dark.png) repeat center center / 100px;
  --pattern-sandyGreen: url(../img/common/pattern-sandy_green.png) repeat center center / 100px;
  /* transition */
  --transition-default: cubic-bezier(.25, .46, .45, .94);
  --transition-menu: cubic-bezier(0.66, 0.02, 0.3, 1.03);
  --transition-title: transform .3s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s, opacity .3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  /* z-index */
  --index-menu: 90;
  --index-header: 99;
  --index-modal: 999;
  --index-loading: 9999;
}

/* animation
------------------------------ */

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

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes loadingTransformEnd {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes loadingTransformEnd {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes btn02Txt {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes btn02Txt {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes infinityScroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes infinityScroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  100% {
    -webkit-transform: translate(0%, 15px);
    transform: translate(0%, 15px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  100% {
    -webkit-transform: translate(0%, 15px);
    transform: translate(0%, 15px);
  }
}

@-webkit-keyframes upDown45 {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(45deg);
    transform: translate(0%, 0%) rotate(45deg);
  }

  100% {
    -webkit-transform: translate(0%, 15px) rotate(45deg);
    transform: translate(0%, 15px) rotate(45deg);
  }
}

@keyframes upDown45 {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(45deg);
    transform: translate(0%, 0%) rotate(45deg);
  }

  100% {
    -webkit-transform: translate(0%, 15px) rotate(45deg);
    transform: translate(0%, 15px) rotate(45deg);
  }
}

@-webkit-keyframes upDown90 {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(90deg);
    transform: translate(0%, 0%) rotate(90deg);
  }

  100% {
    -webkit-transform: translate(0%, 15px) rotate(90deg);
    transform: translate(0%, 15px) rotate(90deg);
  }
}

@keyframes upDown90 {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(90deg);
    transform: translate(0%, 0%) rotate(90deg);
  }

  100% {
    -webkit-transform: translate(0%, 15px) rotate(90deg);
    transform: translate(0%, 15px) rotate(90deg);
  }
}

@-webkit-keyframes rolling {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rolling {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes rollingTrans {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes rollingTrans {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@-webkit-keyframes h-written {
  0% {
    stroke-dashoffset: 1000px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@keyframes h-written {
  0% {
    stroke-dashoffset: 1000px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@-webkit-keyframes decoSwing {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}

@keyframes decoSwing {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
}

@-webkit-keyframes poyoyon {
  0%, 40% {
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
  }

  5% {
    -webkit-transform: skew(5deg, 5deg);
    transform: skew(5deg, 5deg);
  }

  10% {
    -webkit-transform: skew(-4deg, -4deg);
    transform: skew(-4deg, -4deg);
  }

  15% {
    -webkit-transform: skew(3deg, 3deg);
    transform: skew(3deg, 3deg);
  }

  20% {
    -webkit-transform: skew(-2deg, -2deg);
    transform: skew(-2deg, -2deg);
  }

  25% {
    -webkit-transform: skew(1deg, 1deg);
    transform: skew(1deg, 1deg);
  }

  30% {
    -webkit-transform: skew(-0.6deg, -0.6deg);
    transform: skew(-0.6deg, -0.6deg);
  }

  35% {
    -webkit-transform: skew(0.3deg, 0.3deg);
    transform: skew(0.3deg, 0.3deg);
  }
}

@keyframes poyoyon {
  0%, 40% {
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
  }

  5% {
    -webkit-transform: skew(5deg, 5deg);
    transform: skew(5deg, 5deg);
  }

  10% {
    -webkit-transform: skew(-4deg, -4deg);
    transform: skew(-4deg, -4deg);
  }

  15% {
    -webkit-transform: skew(3deg, 3deg);
    transform: skew(3deg, 3deg);
  }

  20% {
    -webkit-transform: skew(-2deg, -2deg);
    transform: skew(-2deg, -2deg);
  }

  25% {
    -webkit-transform: skew(1deg, 1deg);
    transform: skew(1deg, 1deg);
  }

  30% {
    -webkit-transform: skew(-0.6deg, -0.6deg);
    transform: skew(-0.6deg, -0.6deg);
  }

  35% {
    -webkit-transform: skew(0.3deg, 0.3deg);
    transform: skew(0.3deg, 0.3deg);
  }
}

@-webkit-keyframes balloon {
  0% {
    -webkit-transform: translate(0, 0) rotate(-10deg);
    transform: translate(0, 0) rotate(-10deg);
  }

  50% {
    -webkit-transform: translate(0, -20px) rotate(0deg);
    transform: translate(0, -20px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(10deg);
    transform: translate(0, 0) rotate(10deg);
  }
}

@keyframes balloon {
  0% {
    -webkit-transform: translate(0, 0) rotate(-10deg);
    transform: translate(0, 0) rotate(-10deg);
  }

  50% {
    -webkit-transform: translate(0, -20px) rotate(0deg);
    transform: translate(0, -20px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(10deg);
    transform: translate(0, 0) rotate(10deg);
  }
}

@-webkit-keyframes airballoon {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes airballoon {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes bound {
  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  30% {
    -webkit-transform: translateY(-10px) scale(0.96, 1.04);
    transform: translateY(-10px) scale(0.96, 1.04);
  }

  60% {
    -webkit-transform: translateY(10px) scale(1.15, 0.9);
    transform: translateY(10px) scale(1.15, 0.9);
  }

  70% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  90% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes bound {
  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  30% {
    -webkit-transform: translateY(-10px) scale(0.96, 1.04);
    transform: translateY(-10px) scale(0.96, 1.04);
  }

  60% {
    -webkit-transform: translateY(10px) scale(1.15, 0.9);
    transform: translateY(10px) scale(1.15, 0.9);
  }

  70% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  90% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }

  100% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  overscroll-behavior-y: none;
  font-size: 62.5%;
}

body {
  visibility: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--color-base);
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.05em;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.is-dom-load {
  visibility: visible;
}

section {
  position: relative;
  padding: 120px 0;
  background-color: #fff;
}

section.bg {
  background-color: var(--color-bg);
}

main {
  position: relative;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner.narrow {
  width: 100%;
  max-width: 1040px;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--color-base);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  cursor: pointer;
}

input {
  color: var(--color-base);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

select {
  background-color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

a {
  -webkit-transition: 0.24s var(--transition-default);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: 0.24s var(--transition-default);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

p.txt {
  line-height: 2;
}

.ib {
  display: inline-block;
}

.en {
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
}

.caution {
  color: var(--color-r);
}

#contents {
  margin-top: -1px;
  background-color: #fff;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
}

/* bgTxt
------------------------------ */

.c-bgTxt {
  width: 100%;
  overflow: hidden;
  opacity: 0.3;
}

.c-bgTxt__inn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-animation: infinityScroll 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: max(262.222vw, 3776px);
  animation: infinityScroll 30s linear infinite;
}

.c-bgTxt img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: max(131.111vw, 1888px);
  padding-right: max(5.556vw, 80px);
}

/* title
------------------------------ */

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-title01 .jp {
  overflow: hidden;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.3;
}

.c-title01 .en {
  display: inline-block;
  overflow: hidden;
  color: var(--color-ge);
  font-weight: 700;
  line-height: 1.3;
}

.c-title01 .outer {
  display: inline-block;
  overflow: hidden;
}

.c-title01 .letter {
  -webkit-transform: translateY(100%);
  -webkit-transition: var(--transition-title);
  display: inline-block;
  transform: translateY(100%);
  transition: var(--transition-title);
}

.c-title01 .letter.small {
  font-size: 2.2rem;
}

.c-title01 .letter.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-title01__fukidashi {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
}

.c-title01__center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-title02 {
  padding-bottom: 20px;
  background-image: linear-gradient(to right, var(--color-line), var(--color-line) 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-size: 8px 3px;
  background-repeat: repeat-x;
}

.c-title02 .bubble {
  -webkit-transition: var(--transition-title);
  -webkit-transform: translateY(100%);
  display: inline-block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
  padding: 6px 15px 9px;
  transform: translateY(100%);
  border-radius: 100px;
  background-color: var(--color-ge);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0;
  transition: var(--transition-title);
}

.c-title02 .bubble::after {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  background-color: var(--color-ge);
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.c-title02 .txt {
  padding-top: 10px;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.3;
}

.c-title02.is-animated .bubble {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.c-title03 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: center;
  padding-bottom: 20px;
  gap: 10px;
  background-image: linear-gradient(to right, var(--color-line), var(--color-line) 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-size: 8px 3px;
  background-repeat: repeat-x;
}

.c-title03 .txt {
  font-weight: 700;
  font-size: 3.2rem;
}

.c-title04 {
  position: relative;
  margin-bottom: 40px;
  padding: 14px 20px 15px;
  border-radius: 10px;
  background-color: var(--color-bg05);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
}

.c-title04::before {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: var(--color-bg05);
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* button
------------------------------ */

.c-btn01 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: grid;
  grid-template-columns: -webkit-max-content 45px;
  grid-template-columns: max-content 45px;
  align-items: center;
  justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 260px;
  height: 60px;
  padding: 7px 10px 7px 25px;
  gap: 10px;
  border-radius: 100px;
  background-color: var(--color-ge);
}

.c-btn01__txt {
  place-content: center;
  height: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
}

.c-btn01__txt .inn {
  display: inline-block;
  overflow: hidden;
}

.c-btn01__txt .letter {
  display: inline-block;
  text-shadow: 0 20px #fff;
}

.c-btn01__arrow {
  -webkit-transition: 0.25s var(--transition-default);
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.25s var(--transition-default);
}

.c-btn01__arrow .arrow {
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  overflow: hidden;
}

.c-btn01__arrow .arrow::before,
.c-btn01__arrow .arrow::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-ge);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  pointer-events: none;
  transition: 0.25s var(--transition-default);
}

.c-btn01__arrow .arrow::after {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.c-btn01__reverse {
  background-color: #fff;
}

.c-btn01__reverse .c-btn01__txt {
  color: var(--color-ge);
}

.c-btn01__reverse .c-btn01__txt .letter {
  text-shadow: 0 20px var(--color-ge);
}

.c-btn01__reverse .c-btn01__arrow {
  background-color: var(--color-ge);
}

.c-btn01__reverse .c-btn01__arrow .arrow::before,
.c-btn01__reverse .c-btn01__arrow .arrow::after {
  background-color: #fff;
}

.c-btn02 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 45px;
  grid-template-columns: max-content 45px;
  align-items: center;
  gap: 10px;
}

.c-btn02__txt {
  padding-bottom: 5px;
  border-bottom: solid 1px var(--color-line);
  font-weight: 500;
  font-size: 1.6rem;
}

.c-btn02__txt .inn {
  display: inline-block;
  overflow: hidden;
}

.c-btn02__txt .letter {
  display: inline-block;
  text-shadow: 0 20px var(--color-base);
}

.c-btn02__arrow {
  -webkit-transition: 0.25s var(--transition-default);
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.25s var(--transition-default);
}

.c-btn02__arrow .arrow {
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  overflow: hidden;
}

.c-btn02__arrow .arrow::before,
.c-btn02__arrow .arrow::after {
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
  pointer-events: none;
  transition: 0.25s var(--transition-default);
}

.c-btn02__arrow .arrow::after {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.c-btn03 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 45px;
  grid-template-columns: max-content 45px;
  align-items: center;
  gap: 10px;
}

.c-btn03__txt {
  font-weight: 500;
  font-size: 1.6rem;
}

.c-btn03__txt .inn {
  display: inline-block;
  overflow: hidden;
}

.c-btn03__txt .letter {
  display: inline-block;
  text-shadow: 0 20px var(--color-base);
}

.c-btn03__arrow {
  -webkit-transition: 0.25s var(--transition-default);
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-ge);
  transition: 0.25s var(--transition-default);
}

.c-btn03__arrow .arrow {
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  overflow: hidden;
}

.c-btn03__arrow .arrow::before,
.c-btn03__arrow .arrow::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  pointer-events: none;
  transition: 0.25s var(--transition-default);
}

.c-btn03__arrow .arrow::after {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

/* c-lowmv
------------------------------ */

.c-lowmv {
  position: relative;
  margin-top: 120px;
  padding: 0 0 85px;
}

.c-lowmv__inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-lowmv__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: relative;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto 10px;
  overflow-x: scroll;
  gap: 10px;
}

.c-lowmv__list::-webkit-scrollbar {
  height: 4px;
}

.c-lowmv__list::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: rgba(var(--color-base-rgb), 0.1);
}

.c-lowmv__list li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-lowmv__list li:last-of-type {
  pointer-events: none;
}

.c-lowmv__list li:not(:last-of-type) {
  position: relative;
  padding-right: 16px;
  opacity: 0.5;
}

.c-lowmv__list li:not(:last-of-type)::before {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px var(--color-base);
  border-right: solid 1px var(--color-base);
  content: "";
}

.c-lowmv__list a {
  padding: 5px 0;
  font-size: 1.2rem;
  line-height: 1;
}

.c-lowmv__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  min-height: 290px;
  padding: 60px;
  border-radius: 30px;
  background: var(--pattern-sandy);
}

.c-lowmv .c-title01 {
  z-index: 10;
  position: relative;
}

.c-lowmv .c-title01 .en {
  font-size: 1.8rem;
}

.c-lowmv__role {
  -webkit-animation: rolling 30s linear infinite;
  position: absolute;
  right: -15%;
  bottom: 120px;
  width: 974px;
  animation: rolling 30s linear infinite;
}

.c-lowmv__anim {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 1440px;
  max-height: 400px;
  margin: auto;
}

.c-lowmv__anim #canvas,
.c-lowmv__anim #dom_overlay_container {
  width: 100% !important;
  height: 100% !important;
}

.c-lowmv video {
  position: absolute;
  top: 0;
  right: 0;
  width: 1000px;
}

/* c-fixNavigation
------------------------------ */

.c-fixNavigation {
  -webkit-transition: 0.25s var(--transition-default);
  -webkit-transform: translateY(0);
  visibility: visible;
  z-index: var(--index-menu);
  position: fixed;
  right: 0;
  bottom: 30px;
  left: 0;
  max-width: 570px;
  margin: auto;
  transform: translateY(0);
  border: solid 1px var(--color-base);
  border-radius: 100px;
  background-color: #fff;
  opacity: 1;
  transition: 0.25s var(--transition-default);
}

.c-fixNavigation.hide {
  -webkit-transform: translateY(50%);
  visibility: hidden;
  transform: translateY(50%);
  opacity: 0;
}

.c-fixNavigation__inner {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
}

.c-fixNavigation__bg {
  -webkit-transition: 0.4s var(--transition-default);
  z-index: -1;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: calc((100% - 20px) / 3);
  height: calc(100% - 20px);
  margin: auto;
  border-radius: 100px;
  background-color: var(--color-yG);
  transition: 0.4s var(--transition-default);
}

.c-fixNavigation__bg[data-position="1"] {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}

.c-fixNavigation__bg[data-position="2"] {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.c-fixNavigation__bg[data-position="3"] {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.c-fixNavigation a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
}

.c-fixNavigation__icon {
  position: relative;
  width: 35px;
  height: 35px;
}

.c-fixNavigation__cart_num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -7px;
  right: -7px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 20px;
  padding: 3px;
  border-radius: 100px;
  background-color: var(--color-r);
  color: #fff;
  font-size: 1rem;
}

.c-fixNavigation__txt {
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

/* c-navigation
------------------------------ */

.c-navigation {
  padding: 120px 0 140px;
}

.c-navigation__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.c-navigation__item {
  position: relative;
}

.c-navigation__item a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  gap: 30px;
}

.c-navigation__bubble {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-transition: 0.4s var(--transition-default);
  -webkit-transform: scale(0.5) translateY(1rem) rotate(-10deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -15px;
  right: 0;
  left: 20px;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transform: scale(0.5) translateY(1rem) rotate(-10deg);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s var(--transition-default);
}

.c-navigation__bubble.show {
  -webkit-transform: scale(1) translateY(0) rotate(0);
  transform: scale(1) translateY(0) rotate(0);
  opacity: 1;
}

.c-navigation__bubble::before {
  position: absolute;
  bottom: -5px;
  left: 56%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--color-yG);
  content: "";
}

.c-navigation__bubble::after {
  position: absolute;
  bottom: -12px;
  left: 60%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-yG);
  content: "";
}

.c-navigation__bubble span {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 15px 7px;
  border-radius: 100px;
  background-color: var(--color-yG);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.c-navigation__bubble span + span {
  margin-top: -7px;
  margin-left: 20px;
}

.c-navigation__icon {
  width: 110px;
  height: 110px;
}

.c-navigation__txt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.c-navigation__txt .txt {
  display: inline-block;
  overflow: hidden;
}

.c-navigation__txt .letter {
  display: inline-block;
  text-shadow: 0 20px var(--color-base);
}

.c-navigation__txt .arrow {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  overflow: hidden;
}

.c-navigation__txt .arrow::before {
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
  transition: 0.25s var(--transition-default);
}

.c-navigation__txt .arrow::after {
  -webkit-transition: 0.25s var(--transition-default);
  -webkit-transform: translateX(-10px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-10px);
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
  transition: 0.25s var(--transition-default);
}

/* c-tab
------------------------------ */

.c-tab__panel {
  visibility: hidden;
  position: absolute;
  opacity: 0;
}

.c-tab__panel.current {
  visibility: visible;
  position: relative;
  opacity: 1;
}

/* c-product
------------------------------ */

.c-product a {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.c-product a::before {
  z-index: 1;
  position: absolute;
  top: -17px;
  left: -17px;
  width: 77px;
  height: 77px;
  content: "";
}

.c-product[data-category=lion] a::before {
  background: url(../img/common/icon-lion.svg) no-repeat center center/contain;
}

.c-product[data-category=squirrel] a::before {
  background: url(../img/common/icon-squirrel.svg) no-repeat center center/contain;
}

.c-product[data-category=bambi] a::before {
  background: url(../img/common/icon-bambi.svg) no-repeat center center/contain;
}

.c-product__thumb {
  aspect-ratio: 225/190;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--color-bg04);
}

.c-product__thumb img {
  -o-object-fit: cover;
  -webkit-transition: 0.25s var(--transition-default);
  height: 100%;
  object-fit: cover;
  transition: 0.25s var(--transition-default);
}

.c-product__simulation {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px 6px;
  border: solid 1px var(--color-r);
  border-radius: 100px;
  color: var(--color-r);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}

.c-product__title {
  -webkit-transition: 0.25s var(--transition-default);
  margin-bottom: 10px;
  font-weight: 500 !important;
  font-size: 1.6rem;
  line-height: 1.3;
  transition: 0.25s var(--transition-default);
}

.c-product__price {
  -webkit-transition: 0.25s var(--transition-default);
  font-weight: 700;
  font-size: 1.8rem;
  transition: 0.25s var(--transition-default);
}

.c-product__price .unit {
  font-size: 1.4rem;
}

.c-product__price .tax {
  font-size: 1rem;
}

.c-product__tag {
  -ms-flex-wrap: wrap;
  -webkit-transition: 0.25s var(--transition-default);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 5px;
  transition: 0.25s var(--transition-default);
}

.c-product__tag li {
  color: var(--color-ge02);
  font-size: 1.2rem;
  line-height: 1;
}

.c-product__tag li:not(:last-of-type) {
  position: relative;
  padding-right: 10px;
}

.c-product__tag li:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "/";
  font-size: 1.2rem;
  line-height: 1;
}

/* c-modal
------------------------------ */

.c-modal {
  -webkit-transition: 0.45s var(--transition-default);
  visibility: hidden;
  z-index: var(--index-modal);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  opacity: 0;
  transition: 0.45s var(--transition-default);
}

.c-modal.visible {
  visibility: visible;
  opacity: 1;
}

.c-modal__overlay {
  width: 100%;
  height: 100%;
  background-color: #57636F;
  opacity: 0.6;
}

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

/* c-pager
------------------------------ */

.c-pager {
  margin-top: 60px;
}

.c-pager .page-numbers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pager li {
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}

.c-pager li:has(.prev) {
  margin-right: 25px;
}

.c-pager li:has(.next) {
  margin-left: 25px;
}

.c-pager li a,
.c-pager li span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 1.4rem;
}

.c-pager li .current {
  background-color: var(--color-base);
  color: #fff;
}

.c-pager li .prev {
  position: relative;
}

.c-pager li .prev::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transform: scale(-1, 1);
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  transform: scale(-1, 1);
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.25s var(--transition-default);
}

.c-pager li .next {
  position: relative;
}

.c-pager li .next::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.25s var(--transition-default);
}

/* form
------------------------------ */

.form_area .form_wrap {
  padding: 60px 50px;
  border-radius: 30px;
  background-color: var(--color-bg05);
}

.form_area .form_wrap table {
  width: 100%;
  border-bottom: solid 1px var(--color-line);
}

.form_area .form_wrap th {
  width: 240px;
  padding: 20px 10px;
  border-top: solid 1px var(--color-line);
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
}

.form_area .form_wrap th .caution {
  font-size: 1.2rem;
}

.form_area .form_wrap td {
  padding: 20px 10px;
  border-top: solid 1px var(--color-line);
  line-height: 1.8;
  vertical-align: middle;
}

.form_area .form_wrap input[type=email],
.form_area .form_wrap input[type=text],
.form_area .form_wrap textarea {
  width: 100%;
  padding: 10px 20px;
  border: solid 1px var(--color-line);
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}

.form_area .form_wrap input[type=email]::-webkit-input-placeholder,
.form_area .form_wrap input[type=text]::-webkit-input-placeholder,
.form_area .form_wrap textarea::-webkit-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
  font-size: 1.6rem;
}

.form_area .form_wrap input[type=email]::-moz-placeholder,
.form_area .form_wrap input[type=text]::-moz-placeholder,
.form_area .form_wrap textarea::-moz-placeholder {
  color: rgba(204, 204, 204, 0.8);
  font-size: 1.6rem;
}

.form_area .form_wrap input[type=email]:-ms-input-placeholder,
.form_area .form_wrap input[type=text]:-ms-input-placeholder,
.form_area .form_wrap textarea:-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
  font-size: 1.6rem;
}

.form_area .form_wrap input[type=email]::-ms-input-placeholder,
.form_area .form_wrap input[type=text]::-ms-input-placeholder,
.form_area .form_wrap textarea::-ms-input-placeholder {
  color: rgba(204, 204, 204, 0.8);
  font-size: 1.6rem;
}

.form_area .form_wrap input[type=email]::placeholder,
.form_area .form_wrap input[type=text]::placeholder,
.form_area .form_wrap textarea::placeholder {
  color: rgba(204, 204, 204, 0.8);
  font-size: 1.6rem;
}

.form_area .form_wrap textarea {
  height: 120px;
}

.form_area .form_wrap .addressbox_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 15px 20px;
}

.form_area .form_wrap .addressbox_num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 135px auto 135px;
  align-items: center;
  gap: 10px;
}

.form_area .form_wrap .select {
  position: relative;
}

.form_area .form_wrap .select::after {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  pointer-events: none;
}

.form_area .form_wrap select {
  width: 100%;
  padding: 10px 30px 10px 20px;
  border: solid 1px var(--color-line);
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}

.form_area .form_wrap .addressbox_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: grid;
  grid-template-columns: auto 225px;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.form_area .form_wrap .file-upload {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}

.form_area .form_wrap .file-upload + .file-upload {
  margin-top: 10px;
}

.form_area .form_wrap .file-upload label {
  display: inline-block;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
  background-color: var(--color-yG);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.form_area .form_wrap .file-upload input.file {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.form_area .form_wrap .file-upload input[name=file-delete] {
  -ms-flex-negative: 0;
  display: none;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 3px;
  background-color: var(--color-base);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.form_area .form_wrap .file-upload input[name=file-delete].is-show {
  display: block;
}

.form_area .form_wrap .file-txt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form_area .privacy {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

.form_area .privacy a {
  color: var(--color-r);
  text-decoration: underline;
}

.form_area .privacyAgree__check {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.form_area .privacyAgree__check:checked + label::after {
  opacity: 1;
}

.form_area .privacyAgree label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.form_area .privacyAgree label::before {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  border: solid 1px var(--color-base);
  content: "";
}

.form_area .privacyAgree label::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 9px;
  height: 7px;
  margin: auto;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--color-ge);
  border-left: solid 2px var(--color-ge);
  content: "";
  opacity: 0;
}

.form_area .privacyAgree .is-error-privacy_check {
  text-align: center;
}

.form_area .is-error {
  color: var(--color-r);
  font-size: 1.4rem;
}

.form_area .btn-area {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  grid-template-columns: repeat(2, 270px);
  place-items: center;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px 15px;
}

.form_area .btn-area #sendmail {
  width: 100%;
  max-width: 294px;
  margin: 0 auto;
}

.form_area .btn-area .btn {
  -webkit-transition: 0.25s var(--transition-default);
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 294px;
  height: 60px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s var(--transition-default);
}

.form_area .btn-area #reset,
.form_area .btn-area .return {
  background-color: var(--color-line);
}

.form_area .btn-area #submit,
.form_area .btn-area .submit {
  background-color: var(--color-ge);
  color: #fff;
}

.headerTop {
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}

.headerTop.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header {
  -webkit-transition: 0.24s var(--transition-default);
  display: grid;
  z-index: var(--index-header);
  position: fixed;
  top: 0;
  left: 0;
  grid-template-columns: 253px 1fr 80px;
  width: 100%;
  height: 80px;
  gap: 40px;
  border-radius: 0 0 10px 10px;
  transition: 0.24s var(--transition-default);
}

.header.scroll {
  background-color: #fff;
}

.header.scroll .header__logo_top {
  -webkit-transform: translateY(-10px);
  visibility: hidden;
  transform: translateY(-10px);
  opacity: 0;
}

.header.scroll .header__logo_top + .header__logo {
  -webkit-transform: translateY(0);
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.header.nofix {
  position: absolute !important;
}

.header__logo {
  position: relative;
  place-content: center;
  width: 253px;
  padding-left: 20px;
}

.header__logo_top {
  -webkit-transform-origin: top;
  -webkit-transition: 0.45s var(--transition-menu);
  visibility: visible;
  position: absolute;
  width: 300px;
  padding: 0;
  transform-origin: top;
  opacity: 1;
  transition: 0.45s var(--transition-menu);
}

.header__logo_top a {
  padding: 20px 30px;
  border-radius: 0 0 20px 0;
  background-color: #fff;
}

.header__logo_top img {
  width: 240px;
}

.header__logo_top + .header__logo {
  -webkit-transition: 0.45s var(--transition-menu);
  -webkit-transform: translateY(10px);
  visibility: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.45s var(--transition-menu);
}

.header__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.header__list a {
  padding: 7px 15px;
  border-radius: 100px;
  font-weight: 500;
  line-height: 1;
}

.header__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
}

.header__button .inn {
  position: relative;
  width: 36px;
  height: 30px;
}

.header__button .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background-color: var(--color-ge);
}

.header__button .line:first-of-type {
  top: 0;
}

.header__button .line:nth-of-type(2) {
  top: 13px;
}

.header__button .line:last-of-type {
  top: inherit;
  bottom: 0;
}

.header__nav {
  -webkit-transition: 0.45s var(--transition-menu);
  -webkit-transform: translateX(800px);
  visibility: hidden;
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 800px;
  height: 100dvh;
  overflow-y: scroll;
  transform: translateX(800px);
  border-radius: 30px 0 0 30px;
  background: var(--pattern-sandy);
  transition: 0.45s var(--transition-menu);
}

.header__nav.active {
  -webkit-transform: translateX(0);
  visibility: visible;
  transform: translateX(0);
}

.header__nav::-webkit-scrollbar {
  width: 0;
}

.header__nav::-webkit-scrollbar-track {
  border-radius: 100px;
  background-color: var(--color-scroll);
}

.header__nav::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: var(--color-scrollthumb);
}

.header__nav_inner {
  height: 100%;
  min-height: 780px;
  padding: 60px 100px;
}

.header__nav_contents {
  position: relative;
}

.header__nav_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

.header__nav_list a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  align-items: center;
  gap: 10px;
}

.header__nav_list a:not(.button) {
  position: relative;
  grid-template-columns: 22px 1fr;
  padding: 20px 0;
  font-weight: 500;
}

.header__nav_list a:not(.button)::before {
  -webkit-transition: 0.24s var(--transition-default);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
  transition: 0.24s var(--transition-default);
}

.header__nav_list a:not(.button)::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.24s var(--transition-default);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: var(--color-ge);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.24s var(--transition-default);
}

.header__nav_list a.button {
  grid-template-columns: 50px 1fr;
  padding: 14px 20px;
  border: solid 1px var(--color-ge02);
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-ge02);
  font-weight: 700;
}

.header__nav_list a.button::before {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.header__nav_list a.button.icon-search::before {
  background-image: url(../img/common/icon-search.svg);
}

.header__nav_list a.button.icon-feature::before {
  background-image: url(../img/common/icon-feature.svg);
}

.header__nav_list a.button.icon-chart::before {
  background-image: url(../img/common/icon-chart.svg);
}

.header__nav_list a.button.icon-sample::before {
  background-image: url(../img/common/icon-sample.svg);
}

.header__nav_bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
  padding-top: 40px;
  gap: 30px;
  border-top: solid 1px var(--color-line);
}

.header__nav_bottom a {
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
  opacity: 0.6;
}

.header__nav_bottom a:not([target=_blank]) {
  padding-left: 18px;
}

.header__nav_bottom a:not([target=_blank])::before {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.header__nav_bottom a[target=_blank] {
  padding-right: 18px;
}

.header__nav_bottom a[target=_blank]::after {
  -webkit-mask: url(../img/common/icon-tab.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-tab.svg) no-repeat center center/contain;
}

.header__nav .header__button {
  position: fixed;
  top: 0;
  right: 0;
}

.header__nav .header__button .line:first-of-type {
  -webkit-transform: rotate(45deg);
  top: 14px;
  transform: rotate(45deg);
}

.header__nav .header__button .line:last-of-type {
  -webkit-transform: rotate(-45deg);
  bottom: 13px;
  transform: rotate(-45deg);
}

.header__nav_overlay {
  -webkit-transition: 0.24s var(--transition-default);
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--color-overlay);
  opacity: 0;
  transition: 0.24s var(--transition-default);
}

.header__nav_overlay.active {
  visibility: visible;
  opacity: 1;
}

.header:has(.header__logo_top) .header__list a {
  color: #fff;
}

.header:has(.header__logo_top).scroll .header__list a {
  color: var(--color-base);
}

.footer {
  position: relative;
  padding: 94px 0 36px;
  background: var(--pattern-sandy);
}

.footer::before {
  position: absolute;
  top: -42px;
  width: 100%;
  height: 43px;
  background: url(../img/common/parts-wave03.png) repeat-x center center/1440px;
  content: "";
}

.footer__contents {
  display: grid;
  grid-template-columns: 252px 1fr;
  gap: 30px 40px;
}

.footer__logo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.footer__calendar {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.footer__calendar iframe {
  height: 240px;
}

.footer__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 740px;
  gap: 0 40px;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  margin-left: auto;
}

.footer__list a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 18px 1fr;
  align-items: center;
  padding: 12px 0;
  gap: 9px;
  font-weight: 500;
  font-size: 1.4rem;
}

.footer__list a::before {
  -webkit-transition: 0.24s var(--transition-default);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
  transition: 0.24s var(--transition-default);
}

.footer__list a::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.24s var(--transition-default);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: var(--color-ge);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.24s var(--transition-default);
}

.footer__banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  gap: 12px;
}

.footer__bottom {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 36px;
  gap: 20px;
  border-top: solid 1px var(--color-line);
}

.footer__bottom_list {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer__bottom_list a {
  position: relative;
  font-weight: 500;
  font-size: 1.2rem;
  opacity: 0.6;
}

.footer__bottom_list a:not([target=_blank]) {
  padding-left: 15px;
}

.footer__bottom_list a:not([target=_blank])::before {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.footer__bottom_list a[target=_blank] {
  padding-right: 18px;
}

.footer__bottom_list a[target=_blank]::after {
  -webkit-mask: url(../img/common/icon-tab.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-tab.svg) no-repeat center center/contain;
}

.footer__copy {
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ------------------------------
* loading
------------------------------ */

.t-home .loading {
  display: grid;
  z-index: var(--index-loading);
  position: fixed;
  top: 0;
  left: 0;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 100dvh;
  padding: 10px;
  gap: 8px;
  background-color: #fff;
}

.t-home .loading__img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--color-bg04);
}

.t-home .loading__img img {
  -webkit-transform: translate(-50%, -50%);
  -o-object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.t-home .loading__img img.visible {
  position: relative;
  opacity: 1;
}

.t-home .loading__col {
  display: grid;
  z-index: var(--index-loading);
  position: fixed;
  top: 0;
  left: 0;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 100%;
}

.t-home .loading__col_item {
  position: relative;
  overflow: hidden;
}

.t-home .loading__col_item::before {
  -webkit-transform: translateX(-100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  content: "";
}

.t-home .loading__col_item:first-of-type::before {
  background-color: var(--color-ge);
}

.t-home .loading__col_item:nth-of-type(2)::before {
  background-color: var(--color-y);
}

.t-home .loading__col_item:last-of-type::before {
  background-color: var(--color-r);
}

.t-home .loading__col.visible .loading__col_item::before {
  -webkit-animation: loadingTransformStart 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  animation: loadingTransformStart 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.t-home .loading__col.visible .loading__col_item:nth-of-type(2)::before {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.t-home .loading__col.visible .loading__col_item:last-of-type::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.t-home .loading__col.hidden .loading__col_item::before {
  -webkit-transform: translateX(0);
  -webkit-animation: loadingTransformEnd 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  transform: translateX(0);
  animation: loadingTransformEnd 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.t-home .loading__col.hidden .loading__col_item:nth-of-type(2)::before {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.t-home .loading__col.hidden .loading__col_item:last-of-type::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* ------------------------------
* video
------------------------------ */

.t-home__video {
  z-index: -1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100dvh;
}

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

/* ------------------------------
* mv
------------------------------ */

.t-home__mv {
  height: calc(100dvh - 30px);
  padding: 0;
  border: solid 10px #fff;
  background-color: transparent;
}

.t-home__mv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(92, 92, 144, 0.2)), color-stop(11%, rgba(92, 92, 144, 0.1)), to(transparent));
  background: linear-gradient(rgba(92, 92, 144, 0.2), rgba(92, 92, 144, 0.1) 11%, transparent);
  content: "";
}

.t-home__mv::after {
  position: absolute;
  bottom: -1px;
  left: -10px;
  width: calc(100% + 20px);
  height: 11.411vw;
  background: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  content: "";
}

.t-home__mv__img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.t-home__mv__img.visible .t-home__mv__img_item::before {
  -webkit-animation: loadingTransformStart 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  animation: loadingTransformStart 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.t-home__mv__img.visible .t-home__mv__img_item:nth-of-type(2)::before {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.t-home__mv__img.visible .t-home__mv__img_item:nth-of-type(3)::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.t-home__mv__img.hidden .t-home__mv__img_item::before {
  -webkit-transform: translateX(0);
  -webkit-animation: loadingTransformEnd 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  transform: translateX(0);
  animation: loadingTransformEnd 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
}

.t-home__mv__img.hidden .t-home__mv__img_item:nth-of-type(2)::before {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.t-home__mv__img.hidden .t-home__mv__img_item:nth-of-type(3)::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.t-home__mv__img.hidden img {
  display: none;
}

.t-home__mv__img_item {
  position: relative;
  overflow: hidden;
}

.t-home__mv__img_item::before {
  -webkit-transform: translateX(-100%);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  content: "";
}

.t-home__mv__img_item:first-of-type::before {
  background-color: var(--color-ge);
}

.t-home__mv__img_item:nth-of-type(2)::before {
  background-color: var(--color-y);
}

.t-home__mv__img_item:nth-of-type(3)::before {
  background-color: var(--color-r);
}

.t-home__mv__img_txt {
  -webkit-transform: translate(-50%, -50%);
  z-index: 0;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 80%;
  max-width: 580px;
  transform: translate(-50%, -50%);
}

.t-home__mv__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.t-home__mv .inner {
  max-width: max(83.333vw, 1200px);
  height: 100%;
}

.t-home__mv__letter {
  -webkit-transform: translateY(-50%);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

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

.t-home__mv__letter_row + .mv__letter_row {
  margin-top: 10px;
}

.t-home__mv__letter_row:has(img) {
  gap: clamp(27px, 1.875vw, 36px);
}

.t-home__mv__letter span {
  -webkit-transform: translateY(100%);
  -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s, -webkit-transform 0.3s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
  transform: translateY(100%);
  color: #fff;
  font-weight: 900;
  font-size: clamp(9rem, 6.25vw, 12rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s, -webkit-transform 0.3s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
  transition: transform 0.3s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s, opacity 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  transition: transform 0.3s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s, opacity 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s, -webkit-transform 0.3s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
}

.t-home__mv__letter span.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.t-home__mv__letter .letter {
  position: relative;
}

.t-home__mv__letter .letter::after {
  -webkit-filter: blur(25px);
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  content: "";
  filter: blur(25px);
}

.t-home__mv .letter-wa {
  width: clamp(66px, 4.583vw, 88px);
}

.t-home__mv .letter-ku {
  width: clamp(68px, 4.722vw, 90px);
}

.t-home__mv__sub {
  -webkit-transform: translateY(10px);
  -webkit-transition: 0.24s var(--transition-default);
  margin-top: 20px;
  transform: translateY(10px);
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 1.389vw, 27px);
  line-height: 2;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.24s var(--transition-default);
}

.t-home__mv__sub.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.t-home__mv__banner {
  z-index: 1;
  position: absolute;
  right: 20px;
  bottom: 96px;
  width: 188px;
  opacity: 0;
}

.t-home__mv__banner.visible {
  opacity: 1;
}

/* ------------------------------
* point
------------------------------ */

.t-home__point {
  margin-top: -40px;
}

.t-home__point .splide__track {
  padding-left: 500px !important;
  overflow: inherit;
}

.t-home__point__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t-home__point__item {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
}

.t-home__point__item.is-active .txt {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.t-home__point__item .txt {
  -webkit-transform: translateX(-50%) scale(0.8);
  -webkit-transform-origin: bottom center;
  -webkit-transition: 0.24s var(--transition-default);
  position: absolute;
  top: min(-10.417vw, -150px);
  left: 50%;
  width: max(25vw, 360px);
  transform: translateX(-50%) scale(0.8);
  transform-origin: bottom center;
  opacity: 0;
  transition: 0.24s var(--transition-default);
}

.t-home__point__item .img {
  display: block;
  width: max(17.222vw, 248px);
}

.t-home__point__item.icon .icon {
  width: max(3.75vw, 54px);
  height: max(3.75vw, 54px);
}

.t-home__point__item.icon .fill-orange {
  fill: var(--color-o);
}

.t-home__point__item.icon .fill-yellow {
  fill: var(--color-y);
}

.t-home__point__item.icon .fill-green {
  fill: var(--color-yG);
}

.t-home__point__item.icon .rotate15 {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.t-home__point__item.icon .rotate95 {
  -webkit-transform: rotate(-95deg);
  transform: rotate(-95deg);
}

.t-home__point__item.icon .rotate35 {
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

/* ------------------------------
* concept
------------------------------ */

.t-home__concept {
  margin-top: -1px;
  padding: 6.944vw 0 19.444vw;
}

.t-home__concept::before {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  -webkit-transform: scale(-1, 1);
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.411vw;
  transform: scale(-1, 1);
  background-color: var(--color-yG);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  opacity: 0.6;
}

.t-home__concept::after {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.411vw;
  background-color: var(--color-bg);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-home__concept .inner {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 448px 1fr;
  gap: 40px 100px;
}

.t-home__concept__title .en {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-yG);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
}

.t-home__concept__title .jp {
  color: var(--color-yG);
  font-weight: 900;
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.t-home__concept .txt {
  margin-top: 46px;
  font-size: 1.8rem;
  line-height: 2.4;
}

.t-home__concept__icon {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: auto;
}

.t-home__concept .icon {
  position: absolute;
  opacity: 0.8;
}

.t-home__concept .icon-circle {
  fill: var(--color-yG);
  -webkit-animation: upDown ease-in-out 1.5s infinite alternate;
  bottom: 11.411vw;
  left: 1.667vw;
  width: 111px;
  height: 111px;
  animation: upDown ease-in-out 1.5s infinite alternate;
}

.t-home__concept .icon-rectangle {
  fill: var(--color-y);
  -webkit-transform: rotate(45deg);
  -webkit-animation: upDown45 ease-in-out 3s infinite alternate;
  top: 8.333vw;
  left: 31.25vw;
  width: 146px;
  height: 50px;
  transform: rotate(45deg);
  animation: upDown45 ease-in-out 3s infinite alternate;
}

.t-home__concept .icon-triangle {
  fill: var(--color-o);
  -webkit-transform: rotate(45deg);
  -webkit-animation: upDown45 ease-in-out 1s infinite alternate;
  bottom: 7.569vw;
  left: 29.444vw;
  width: 99px;
  height: 87px;
  transform: rotate(45deg);
  animation: upDown45 ease-in-out 1s infinite alternate;
}

.t-home__concept .icon-quadrant {
  fill: var(--color-yG);
  -webkit-transform: rotate(90deg);
  -webkit-animation: upDown90 ease-in-out 1.5s infinite alternate;
  right: 25.694vw;
  bottom: 4.861vw;
  width: 105px;
  height: 105px;
  transform: rotate(90deg);
  animation: upDown90 ease-in-out 1.5s infinite alternate;
}

.t-home__concept .icon-hexagon {
  fill: var(--color-o);
  -webkit-animation: upDown ease-in-out 1.5s infinite alternate;
  top: 5.833vw;
  right: 4.167vw;
  width: 125px;
  height: 109px;
  animation: upDown ease-in-out 1.5s infinite alternate;
}

.t-home__concept .icon-piece {
  fill: var(--color-y);
  -webkit-animation: upDown ease-in-out 2s infinite alternate;
  right: 1.736vw;
  bottom: 10.417vw;
  width: 121px;
  height: 120px;
  animation: upDown ease-in-out 2s infinite alternate;
}

/* ------------------------------
* select
------------------------------ */

.t-home__select {
  margin-top: -1px;
  padding: 60px 0 0;
  overflow: hidden;
}

.t-home__select::before {
  -webkit-transform: translateX(-50%);
  -webkit-transition: 0.5s var(--transition-default);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1440px;
  height: 530px;
  transform: translateX(-50%);
  content: "";
  opacity: 0.7;
  transition: 0.5s var(--transition-default);
}

.t-home__select.lion::before {
  background: url(../img/top/img-selectBg_lion.webp) no-repeat center bottom/contain;
}

.t-home__select.squirrel::before {
  background: url(../img/top/img-selectBg_squirrel.webp) no-repeat center bottom/contain;
}

.t-home__select.bambi::before {
  background: url(../img/top/img-selectBg_bambi.webp) no-repeat center bottom/contain;
}

.t-home__select__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 1fr 308px;
  align-items: center;
  gap: 60px 30px;
}

.t-home__select .c-title01 {
  grid-column: 1/3;
}

.t-home__select .c-btn01 {
  margin-right: 0;
  margin-left: auto;
}

.t-home__select__wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  height: 500px;
  margin: 70px auto 0;
}

.t-home__select__slide {
  -webkit-transform: translate(-50%, 0);
  -webkit-transition: 0.6s var(--transition-default);
  position: absolute;
  top: 0;
  left: 50%;
  width: 640px;
  height: 3260px;
  transform: translate(-50%, 0);
  transition: 0.6s var(--transition-default);
}

.t-home__select__slide.active .t-home__select__slide_title,
.t-home__select__slide.active .t-home__select__slide_height,
.t-home__select__slide.active .txt,
.t-home__select__slide.active .c-btn02 {
  opacity: 1;
}

.t-home__select__slide[data-slide="1"] {
  -webkit-transform: translate(-50%, 0) rotate(60deg);
  transform: translate(-50%, 0) rotate(60deg);
  opacity: 0;
}

.t-home__select__slide[data-slide="2"] {
  -webkit-transform: translate(-50%, 0) rotate(30deg);
  transform: translate(-50%, 0) rotate(30deg);
  opacity: 1;
}

.t-home__select__slide[data-slide="3"] {
  -webkit-transform: translate(-50%, 0) rotate(0deg);
  z-index: 1;
  transform: translate(-50%, 0) rotate(0deg);
  opacity: 1;
}

.t-home__select__slide[data-slide="4"] {
  -webkit-transform: translate(-50%, 0) rotate(-30deg);
  transform: translate(-50%, 0) rotate(-30deg);
  opacity: 1;
}

.t-home__select__slide[data-slide="5"] {
  -webkit-transform: translate(-50%, 0) rotate(-60deg);
  transform: translate(-50%, 0) rotate(-60deg);
  opacity: 0;
}

.t-home__select__slide[data-slide="6"] {
  -webkit-transform: translate(-50%, 0) rotate(-90deg);
  transform: translate(-50%, 0) rotate(-90deg);
  opacity: 0;
}

.t-home__select__slide_title {
  -webkit-transition: 0.25s var(--transition-default);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.3;
  opacity: 0;
  transition: 0.25s var(--transition-default);
}

.t-home__select__slide_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 1fr 268px;
  align-items: center;
  gap: 20px 10px;
}

.t-home__select__slide_item .txt {
  -webkit-transition: 0.25s var(--transition-default);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  transition: 0.25s var(--transition-default);
}

.t-home__select__slide_item .c-btn02 {
  -webkit-transition: 0.25s var(--transition-default);
  margin-right: 0;
  margin-left: auto;
  opacity: 0;
  transition: 0.25s var(--transition-default);
}

.t-home__select__slide_img {
  margin-bottom: 20px;
}

.t-home__select__slide_height {
  -webkit-transition: 0.25s var(--transition-default);
  padding: 3px 10px;
  border-radius: 3px;
  background-color: var(--color-r);
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  opacity: 0;
  transition: 0.25s var(--transition-default);
}

.t-home__select__slide_button {
  z-index: 10;
  position: absolute;
  top: 70px;
}

.t-home__select__slide_button.prev {
  -webkit-transform: rotate(-90deg);
  left: -60px;
  transform: rotate(-90deg);
}

.t-home__select__slide_button.prev .icon {
  fill: var(--color-y);
}

.t-home__select__slide_button.next {
  -webkit-transform: rotate(90deg);
  right: -60px;
  transform: rotate(90deg);
}

.t-home__select__slide_button.next .icon {
  fill: var(--color-o);
}

.t-home__select__slide_button .icon {
  width: 40px;
  height: 45px;
}

/* ------------------------------
* size
------------------------------ */

.t-home__size {
  padding-bottom: 40px;
}

.t-home__size__tab {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  max-width: 1040px;
  margin: 60px auto 0;
  padding: 0 40px;
  gap: 15px;
}

.t-home__size__button {
  -webkit-transition: 0.4s var(--transition-default);
  height: 54px;
  border-top: solid 2px var(--color-ge);
  border-right: solid 2px var(--color-ge);
  border-left: solid 2px var(--color-ge);
  border-radius: 20px 20px 0 0;
  color: var(--color-ge);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  transition: 0.4s var(--transition-default);
}

.t-home__size__button.current {
  background-color: var(--color-ge);
  color: #fff;
  pointer-events: none;
}

.t-home__size .inner.wide {
  max-width: 1400px;
}

.t-home__size__panel_inn {
  padding: 33px 33px 50px 33px;
  border-radius: 30px;
  background-color: var(--color-bg05);
}

.t-home__size__panel_slide {
  position: relative;
  padding: 0 33px;
}

.t-home__size .js-product-swiper {
  position: relative;
  padding: 17px 17px 0;
  overflow: hidden;
}

.t-home__size .swiper-slide {
  width: 295px;
  height: auto;
}

.t-home__size .swiper-slide a {
  height: 100%;
}

.t-home__size .swiper-scrollbar {
  position: relative;
  left: 0;
  width: 100%;
  height: 8px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 100px;
  background-color: rgba(var(--color-rgb-drag), 0.1);
}

.t-home__size .swiper-scrollbar-drag {
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  left: 0;
  height: 100%;
  border-radius: 100px;
  background-color: rgba(var(--color-rgb-drag), 0.2);
  transition: 0.25s var(--transition-default);
}

.t-home__size .swiper-button-prev,
.t-home__size .swiper-button-next {
  width: 26px;
  height: 26px;
}

.t-home__size .swiper-button-prev::after,
.t-home__size .swiper-button-next::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  width: 100%;
  height: 100%;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.t-home__size .swiper-button-prev {
  -webkit-transform: scale(-1, 1);
  left: 0;
  transform: scale(-1, 1);
}

.t-home__size .swiper-button-next {
  right: 0;
}

/* ------------------------------
* world
------------------------------ */

.t-home__world {
  margin-top: 80px;
  padding: 140px 0 320px;
  background: var(--pattern-sandy);
}

.t-home__world::before {
  -webkit-mask: url(../img/common/parts-wave02.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 17.292vw;
  background-color: var(--color-yG);
  content: "";
  mask: url(../img/common/parts-wave02.svg) no-repeat center bottom/100%;
  opacity: 0.3;
}

.t-home__world::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 11.411vw;
  background: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  content: "";
}

.t-home__world .inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
}

.t-home__world .c-title01,
.t-home__world .txt,
.t-home__world .c-btn01 {
  grid-column: 2/3;
}

.t-home__world__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.t-home__world__img img {
  -o-object-fit: cover;
  -o-object-position: right top;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

/* ------------------------------
* about
------------------------------ */

.t-home__about {
  padding: 80px 0 120px;
}

.t-home__about__wrapper {
  display: grid;
  grid-template-columns: 1fr 475px;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--color-bg);
}

.t-home__about__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 25px 120px 25px 25px;
  gap: 100px;
}

.t-home__about__logo_txt {
  color: var(--color-ge);
}

.t-home__about__logo_img {
  width: 100%;
  max-width: 320px;
}

.t-home__about__wrap {
  position: relative;
  padding: 60px 60px 120px;
  background-color: var(--color-yG);
}

.t-home__about__wrap::before {
  position: absolute;
  content: "";
}

.t-home__about__wrap .c-title01 {
  margin-bottom: 50px;
  gap: 0;
}

.t-home__about__wrap .c-title01 .jp {
  color: #fff;
}

.t-home__about__wrap .c-title01 .letter {
  color: #fff;
  font-size: 4rem;
}

.t-home__about__wrap .txt {
  margin-bottom: 40px;
  color: #fff;
}

.t-home__about__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 60px;
  bottom: 60px;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 10px;
}

/* ------------------------------
* slide
------------------------------ */

.t-home__slide {
  pointer-events: none;
}

.t-home__slide .splide__slide {
  overflow: hidden;
}

.t-home__slide .splide__slide.tall {
  width: 220px !important;
}

.t-home__slide .splide__slide:not(.tall) {
  width: 352px !important;
}

.t-home__slide .splide__slide:nth-child(even) {
  margin-top: 50px;
}

.t-home__slide .splide__slide img {
  border-radius: 10px;
}

/* ------------------------------
* news
------------------------------ */

.t-home__news {
  position: relative;
  margin-top: 40px;
  background: var(--pattern-sandy);
}

.t-home__news::before {
  -webkit-mask: url(../img/common/parts-arch01.svg) no-repeat center bottom/100%;
  position: absolute;
  top: -3.858vw;
  left: 0;
  width: 100%;
  height: 4.028vw;
  background: var(--pattern-sandy);
  content: "";
  mask: url(../img/common/parts-arch01.svg) no-repeat center bottom/100%;
}

.t-home__news__list {
  margin-top: 40px;
}

.t-home__news__item + .t-home__news__item {
  margin-top: 10px;
}

.t-home__news__item.attention {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
}

.t-home__news__item a {
  display: grid;
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.t-home__news__item_date {
  color: var(--color-ge);
  font-weight: 700;
  font-size: 1.2rem;
}

.t-home__news__item_title {
  -webkit-transition: 0.25s var(--transition-default);
  overflow: hidden;
  font-size: 1.6rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.25s var(--transition-default);
}

.t-home__news .c-btn03 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 30px;
  margin-left: auto;
}

/* ------------------------------
* movie
------------------------------ */

.t-home__movie {
  position: relative;
  height: 823px;
}

.t-home__movie::before {
  -webkit-transform: scale(1, -1);
  position: absolute;
  top: -1px;
  width: 100%;
  height: 43px;
  transform: scale(1, -1);
  background: url(../img/common/parts-wave03.png) repeat-x center center/1440px;
  content: "";
}

/* ------------------------------
* intro
------------------------------ */

.t-features {
  overflow: inherit;
}

.t-features .c-lowmv {
  overflow: hidden;
}

.t-features__intro {
  padding-bottom: 90px;
  overflow: hidden;
  background: var(--pattern-sandy);
}

.t-features__intro_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-color: #fff;
}

.t-features__intro_bg::before {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  -webkit-transform: scale(-1, -1);
  position: absolute;
  top: 239px;
  left: 0;
  width: 100%;
  height: 11.411vw;
  transform: scale(-1, -1);
  background-color: #fff;
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-features__intro::after {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  -webkit-transform: scale(-1, 1);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.411vw;
  transform: scale(-1, 1);
  background-color: #fff;
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-features__intro_wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  z-index: 1;
  position: relative;
  align-items: center;
  gap: 0 60px;
}

.t-features__intro_wrapper:first-of-type {
  grid-template-columns: 1fr 460px;
}

.t-features__intro_wrapper:first-of-type .t-features__intro_img {
  padding: 0 0 40px 40px;
}

.t-features__intro_wrapper:first-of-type .t-features__intro_img::before {
  left: 0;
}

.t-features__intro_wrapper:first-of-type .t-features__intro_img img:last-of-type {
  left: 0;
}

.t-features__intro_wrapper:last-of-type {
  grid-template-columns: 460px 1fr;
  margin-top: 100px;
}

.t-features__intro_wrapper:last-of-type .t-features__intro_img {
  padding: 0 40px 40px 0;
}

.t-features__intro_wrapper:last-of-type .t-features__intro_img::before {
  right: 0;
}

.t-features__intro_wrapper:last-of-type .t-features__intro_img img:last-of-type {
  right: 0;
}

.t-features__intro_logo {
  width: 396px;
  margin-bottom: 43px;
}

.t-features__intro_title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 6px;
}

.t-features__intro_title span {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
  border-radius: 5px;
  background-color: var(--color-ge02);
  color: #fff;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.8;
}

.t-features__intro .c-btn01 {
  margin-top: 60px;
}

.t-features__intro_img {
  position: relative;
}

.t-features__intro_img::before {
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
  position: absolute;
  bottom: 0;
  width: 420px;
  height: 560px;
  border-radius: 20px;
  backdrop-filter: blur(30px);
  background-color: rgba(105, 105, 105, 0.2);
  content: "";
}

.t-features__intro_img img {
  z-index: 1;
  position: relative;
  border-radius: 20px;
}

.t-features__intro_img img:last-of-type {
  z-index: -2;
  position: absolute;
  bottom: 0;
  width: 420px;
  border-radius: 20px;
}

.t-features__intro .c-bgTxt {
  position: absolute;
  top: 46%;
  left: 0;
}

/* ------------------------------
* commitment
------------------------------ */

.t-features__commitment::after {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 43px;
  background: url(../img/common/parts-wave03.png) repeat-x center center/1440px;
  content: "";
}

.t-features__commitment .c-title01 {
  margin-bottom: 40px;
}

.t-features__wrapper {
  padding: 0 20px;
}

.t-features__wrapper[data-content=item01] .t-features__wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.t-features__wrapper[data-content=item02] .t-features__wrap {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.t-features__wrapper[data-content=item03] .t-features__wrap {
  -webkit-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
}

.t-features__wrapper[data-content=item04] .t-features__wrap {
  -webkit-transform: translate3d(0, -300%, 0);
  transform: translate3d(0, -300%, 0);
}

.t-features__wrapper[data-content=item05] .t-features__wrap {
  -webkit-transform: translate3d(0, -400%, 0);
  transform: translate3d(0, -400%, 0);
}

.t-features__pagination {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 50px;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  transform: translateY(-50%);
}

.t-features__pagination .pagination-item {
  position: relative;
  color: var(--color-o);
  font-weight: 700;
  font-size: 2.4rem;
  cursor: pointer;
}

.t-features__pagination .pagination-item:not(.active) {
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon-pagination.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.t-features__pagination .pagination-item + .pagination-item::before {
  position: absolute;
  top: -39px;
  right: 0;
  left: 0;
  width: 2px;
  height: 24px;
  margin: auto;
  background-color: var(--color-line);
  content: "";
}

.t-features__wrap {
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  position: relative;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.t-features__wrap__inner {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1160px;
  padding: 80px;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  background-color: var(--color-bg05);
}

.t-features__wrap .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -44px;
  left: -17px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 107px;
  height: 107px;
  gap: 5px;
  background: url(../img/common/icon-number.svg) no-repeat center center/contain;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.t-features__wrap .num .en {
  font-size: 4.5rem;
  line-height: 1;
}

.t-features__wrap__title {
  margin-bottom: 40px;
  padding-bottom: 15px;
  background-image: linear-gradient(to right, var(--color-line), var(--color-line) 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-size: 8px 3px;
  background-repeat: repeat-x;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}

.t-features .js-commitment-swiper {
  position: relative;
  overflow: hidden;
}

.t-features .js-commitment-swiper .swiper-slide {
  gap: 30px 80px;
}

.t-features .js-commitment-swiper .title {
  font-weight: 700;
  font-size: 2.4rem;
}

.t-features .js-commitment-swiper .txt {
  font-size: 1.4rem;
  line-height: 2;
}

.t-features .js-commitment-swiper .img img {
  overflow: hidden;
  border-radius: 20px;
}

.t-features .js-commitment-swiper .box {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
}

.t-features .js-commitment-swiper .swiper-pagination {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  justify-content: flex-end;
  width: calc(100% - 500px);
  gap: 10px;
}

.t-features .js-commitment-swiper .swiper-pagination-bullet {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: solid 1px var(--color-base);
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
}

.t-features .js-commitment-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-base);
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
}

/* ------------------------------
* flow
------------------------------ */

.t-features__flow {
  background: var(--pattern-sandy);
}

.t-features__list {
  position: relative;
  margin-top: 60px;
}

.t-features__list::before {
  position: absolute;
  top: 0;
  left: 35px;
  width: 2px;
  height: 100%;
  border-left: dotted 2px var(--color-ge);
  content: "";
}

.t-features__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 30px;
}

.t-features__item + .t-features__item {
  margin-top: 20px;
}

.t-features__item:nth-child(even) .num {
  background-color: var(--color-bg05);
  color: var(--color-ge);
}

.t-features__item:nth-child(odd) .num {
  background-color: var(--color-ge);
  color: #fff;
}

.t-features__item .num {
  display: grid;
  place-content: center;
  width: 70px;
  height: 70px;
  border: solid 1px var(--color-ge);
  border-radius: 50%;
  font-weight: 700;
  font-size: 2rem;
}

.t-features__item .wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.t-features__item .title {
  font-weight: 700;
  font-size: 2rem;
}

/* ------------------------------
* sample
------------------------------ */

.t-fabric__sample {
  margin-top: 312px;
  padding: 25px 0 166px;
  background-color: var(--color-bg03);
}

.t-fabric__sample::before {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  -webkit-transform: scale(-1, 1);
  position: absolute;
  top: -11.1vw;
  left: 0;
  width: calc(100% + 20px);
  height: 11.411vw;
  transform: scale(-1, 1);
  background: var(--pattern-sandyGreen);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-fabric__sample::after {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  position: absolute;
  top: -11vw;
  left: 0;
  width: calc(100% + 20px);
  height: 11.411vw;
  background: var(--color-bg03);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-fabric__sample__deco {
  -webkit-transform: translateY(50px);
  -webkit-transition: 0.45s var(--transition-default);
  z-index: 1;
  position: absolute;
  top: -192px;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.45s var(--transition-default);
}

.t-fabric__sample__deco img {
  width: 604px;
  margin-left: auto;
}

.t-fabric__sample__deco.is-animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.t-fabric__sample .inner {
  z-index: 2;
}

.t-fabric__sample .c-title01 {
  margin-bottom: 60px;
}

.t-fabric__sample__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  gap: 30px;
}

.t-fabric__sample__item {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
}

.t-fabric__sample__item .txt {
  font-size: 1.4rem;
}

.t-fabric__sample__thumb {
  position: relative;
  margin-bottom: 20px;
}

.t-fabric__sample__thumb .thumb {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}

.t-fabric__sample__thumb .thumb::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px 0 0 0;
  background: url(../img/common/icon-zoom.svg) no-repeat center center/contain;
  content: "";
}

.t-fabric__sample__thumb .thumb img {
  -webkit-transition: 0.45s var(--transition-default);
  transition: 0.45s var(--transition-default);
}

.t-fabric__sample__thumb .color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.t-fabric__sample__thumb .color li {
  display: grid;
  position: relative;
  place-content: center;
  width: 50px;
  height: 50px;
  border: solid 2px #fff;
  border-radius: 50%;
  font-weight: 700;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "Comfortaa", sans-serif;
}

.t-fabric__sample__thumb .color li.fff {
  color: rgba(255, 255, 255, 0.7);
}

.t-fabric__sample__thumb .color li.base {
  color: rgba(var(--color-base-rgb), 0.7);
}

.t-fabric__sample__thumb .color li + li {
  margin-left: -8px;
}

.t-fabric__sample__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 2rem;
}

.t-fabric__sample__button {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
}

.t-fabric .c-modal__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 540px;
}

.t-fabric .c-modal .img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.t-fabric .c-modal__close {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  padding: 0 40px;
  gap: 5px;
}

.t-fabric .c-modal__close .cross {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
}

.t-fabric .c-modal__close .cross::before,
.t-fabric .c-modal__close .cross::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
  content: "";
}

.t-fabric .c-modal__close .cross::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.t-fabric .c-modal__close .cross::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.t-fabric .c-modal__close .txt {
  color: #fff;
  font-size: 1.2rem;
}

/* ------------------------------
* list
------------------------------ */

.t-fabric__list::before {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  position: absolute;
  top: calc(488px - 11vw);
  left: 0;
  width: 100%;
  height: 11.411vw;
  background: var(--pattern-sandy);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-fabric__list::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 488px);
  background: var(--pattern-sandy);
  content: "";
}

.t-fabric__list .inner {
  z-index: 1;
}

.t-fabric__list__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
}

.t-fabric__list__wrapper {
  display: grid;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 1fr 588px;
  margin-top: 60px;
  padding: 80px;
  gap: 40px 65px;
  border-radius: 30px;
  background-color: #fff;
}

.t-fabric__list .c-title02 {
  grid-column: 1/2;
}

.t-fabric__list .c-title02 + .txt {
  grid-column: 1/2;
}

.t-fabric__list__color {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row: 1/3;
  grid-column: 2/3;
  gap: 24px;
}

.t-fabric__list__item figcaption {
  margin-top: 5px;
  font-weight: 500;
  font-size: 1.6rem;
}

/* ------------------------------
* intro
------------------------------ */

.t-side__intro {
  padding-bottom: 90px;
}

.t-side__intro::before {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 11.411vw;
  background: var(--pattern-sandy);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-side__intro .inner {
  display: grid;
  grid-template-columns: 1fr 530px;
  gap: 60px 100px;
}

.t-side__intro__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-side__intro__title .line {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 12px 5px;
  border-radius: 5px;
  background-color: var(--color-ge02);
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.2rem, 2.222vw, 3.2rem);
}

.t-side__intro .txt {
  line-height: 2.4;
}

.t-side__intro__img {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  border-radius: 20px;
}

/* ------------------------------
* compare
------------------------------ */

.t-side__compare {
  background: var(--pattern-sandy);
}

.t-side__compare .c-title03 {
  margin: 60px 0 40px;
}

.t-side__compare__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.t-side__compare__list + .c-title03 {
  margin-top: 100px;
}

.t-side__compare__item {
  padding: 0 20px 30px;
  border-radius: 20px;
  background-color: #fff;
}

.t-side__compare__item .title {
  position: relative;
  margin: 20px 0;
  padding-right: 80px;
  color: var(--color-ge);
  font-weight: 700;
  font-size: 2.2rem;
}

.t-side__compare__item .title small {
  font-weight: 700;
  font-size: 1.6rem;
}

.t-side__compare__item .icon {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 77px;
  height: 77px;
}

.t-side__compare__item p.txt {
  font-size: 1.4rem;
}

.t-side__compare__img {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
  overflow: hidden;
  border-radius: 20px;
}

.t-side__compare__img .tag {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 18px 6px;
  border-radius: 100px;
  background-color: rgba(var(--color-b-rgb), 0.6);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}

/* ------------------------------
* contents
------------------------------ */

.t-guide .mb20 {
  margin-bottom: 20px;
}

.t-guide__contents__wrapper {
  max-width: 1000px;
  margin: 50px auto 100px;
}

.t-guide__contents__wrapper:last-of-type {
  margin-bottom: 0;
}

.t-guide__contents__wrap + .t-guide__contents__wrap {
  margin-top: 80px;
}

.t-guide__contents__title {
  margin-top: 50px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
}

.t-guide__contents__list li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
}

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

.t-guide__contents__list a {
  display: inline-block;
  color: var(--color-link);
  text-decoration: underline;
}

.t-guide__contents__caution li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
}

.t-guide__contents__caution li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.t-guide__contents .img-estimate {
  display: block;
  max-width: 596px;
  margin: 40px auto 0;
}

.t-guide__contents .img-warranty {
  display: block;
  max-width: 755px;
  margin: 40px auto 0;
}

/* ------------------------------
* intro
------------------------------ */

.t-howto__intro {
  padding: 100px 0 20px;
}

.t-howto__intro__wrapper {
  margin-top: 60px;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--color-bg05);
}

.t-howto__intro__line {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.t-howto__intro__line::after {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(var(--color-o)), to(var(--color-r)));
  background: linear-gradient(90deg, var(--color-o), var(--color-r));
  content: "";
}

.t-howto__intro__txt {
  width: 155px;
  padding: 8px 15px 9px;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}

.t-howto__intro__txt.orange {
  background-color: var(--color-o);
}

.t-howto__intro__txt.red {
  background-color: var(--color-r);
}

.t-howto__intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 10px 38px;
}

.t-howto__intro__link {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.t-howto__intro__link .title {
  position: relative;
  padding-right: 48px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
}

.t-howto__intro__link .title::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 38px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--color-ge);
  content: "";
}

.t-howto__intro__link .title::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transform: rotate(90deg);
  -webkit-transition: 0.2s ease-in-out;
  position: absolute;
  top: 2px;
  right: 14px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(90deg);
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.2s ease-in-out;
}

.t-howto__intro__link small {
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
}

.t-howto__intro__link .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10px;
  gap: 5px;
}

.t-howto__intro__link .list li {
  padding: 5px 10px 6px;
  border-radius: 100px;
  background-color: var(--color-bg03);
  color: var(--color-ge02);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.t-howto__intro__img {
  margin-bottom: 20px;
}

/* ------------------------------
* intro
------------------------------ */

.t-howto__container__wrapper {
  padding-top: 60px;
}

.t-howto__container__wrapper + .t-howto__container__wrapper {
  padding-top: 140px;
}

.t-howto__container__wrapper .c-title03 {
  margin-bottom: 40px;
}

.t-howto__container__wrapper .c-title03 .txt {
  grid-column: 1/3;
}

.t-howto__container__wrapper .t-howto__container__flow + .c-title04 {
  margin-top: 40px;
}

.t-howto__container__level {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}

.t-howto__container__level li {
  padding: 5px 15px 6px;
  border-radius: 100px;
  background-color: var(--color-bg03);
  color: var(--color-ge02);
  font-weight: 700;
  font-size: 1.4rem;
}

.t-howto__container__flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  counter-reset: number 0;
}

.t-howto__container__flow .img {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 20px;
}

.t-howto__container__flow .img::before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 35px;
  height: 35px;
  padding-top: 1px;
  border-radius: 50%;
  background-color: var(--color-base);
  content: counter(number);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  counter-increment: number 1;
}

.t-howto__container__flow .txt {
  font-weight: 500;
  font-size: 1.2rem;
}

.t-howto__container__col {
  display: grid;
  grid-template-columns: calc(48% - 25px) calc(52% - 25px);
  gap: 50px;
}

.t-howto__container__col img {
  border-radius: 20px;
}

.t-howto__container__col .txt {
  font-weight: 500;
  line-height: 2.4;
}

.t-howto__container__col .wrap .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 20px;
}

.t-howto__container__col .wrap figure {
  width: 100%;
  max-width: 194px;
}

.t-howto__container__col .wrap figcaption {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.t-howto__video {
  position: relative;
  margin-top: 87px;
  padding: 60px 20px;
  border-radius: 30px;
  background-color: var(--color-bg05);
}

.t-howto__video .title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -27px;
  right: 0;
  left: 0;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 0 33px;
  gap: 15px;
}

.t-howto__video .title::before,
.t-howto__video .title::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 36px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
}

.t-howto__video .title::before {
  -webkit-transform: rotate(-28deg);
  left: 0;
  transform: rotate(-28deg);
}

.t-howto__video .title::after {
  -webkit-transform: rotate(28deg);
  right: 0;
  transform: rotate(28deg);
}

.t-howto__video .title .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
}

.t-howto__video .title .txt {
  font-weight: 700;
  font-size: 2.8rem;
}

.t-howto__video__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 20px 32px;
}

.t-howto__video__item iframe {
  aspect-ratio: 16/9;
  width: 484px;
  height: auto;
  border-radius: 20px;
}

.t-howto__video__name {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 2rem;
}

/* ------------------------------
* mv
------------------------------ */

.t-brand__mv {
  height: 970px;
  padding: 0;
}

.t-brand__mv::after {
  -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: -1px;
  left: -10px;
  width: calc(100% + 20px);
  height: 11.411vw;
  background: var(--pattern-sandy);
  content: "";
  mask: url(../img/common/parts-wave01.svg) no-repeat center bottom/100%;
}

.t-brand__mv .inner {
  display: grid;
  z-index: 2;
  place-content: center;
  justify-items: center;
  height: 100%;
  padding-bottom: 70px;
  gap: 40px;
}

.t-brand__mv__logo {
  width: 332px;
}

.t-brand__mv__txt {
  overflow: hidden;
  font-weight: 700;
  font-size: 6.4rem;
  text-align: center;
}

.t-brand__mv__txt .letter {
  -webkit-transform: translateY(100%);
  -webkit-transition: var(--transition-title);
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: var(--transition-title);
}

.t-brand__mv__txt .letter.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.t-brand__mv__list {
  -webkit-transform: translateX(-50%);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 100%;
  margin: auto;
  transform: translateX(-50%);
}

.t-brand__mv__item {
  -webkit-transition: var(--transition-slow);
  position: absolute;
  transition: var(--transition-slow);
}

.t-brand__mv__item.item01 {
  -webkit-transform: rotate(10deg);
  -webkit-filter: blur(4px);
  top: 114px;
  left: -39px;
  width: 213px;
  transform: rotate(10deg);
  filter: blur(4px);
}

.t-brand__mv__item.item02 {
  -webkit-transform: translateY(-50%) rotate(-7deg);
  -webkit-filter: blur(2px);
  top: 50%;
  left: -172px;
  width: 395px;
  transform: translateY(-50%) rotate(-7deg);
  filter: blur(2px);
}

.t-brand__mv__item.item03 {
  -webkit-transform: rotate(-15deg);
  bottom: 57px;
  left: -77px;
  width: 492px;
  transform: rotate(-15deg);
}

.t-brand__mv__item.item04 {
  -webkit-transform: rotate(9deg);
  top: -121px;
  left: 280px;
  width: 350px;
  transform: rotate(9deg);
}

.t-brand__mv__item.item05 {
  -webkit-transform: rotate(5deg);
  -webkit-filter: blur(3px);
  top: 130px;
  left: 241px;
  width: 233px;
  transform: rotate(5deg);
  filter: blur(3px);
}

.t-brand__mv__item.item06 {
  -webkit-filter: blur(6px);
  top: -46px;
  right: 364px;
  width: 180px;
  filter: blur(6px);
}

.t-brand__mv__item.item07 {
  -webkit-transform: rotate(18.6deg);
  top: 107px;
  right: -30px;
  width: 566px;
  transform: rotate(18.6deg);
}

.t-brand__mv__item.item08 {
  -webkit-transform: rotate(18deg);
  top: 46%;
  right: 244px;
  width: 205px;
  transform: rotate(18deg);
}

.t-brand__mv__item.item09 {
  -webkit-transform: rotate(15deg);
  right: -130px;
  bottom: 160px;
  width: 430px;
  transform: rotate(15deg);
}

/* ------------------------------
* concept
------------------------------ */

.t-brand__concept {
  z-index: 1;
  padding: 260px 0 422px;
  background: var(--pattern-sandy);
}

.t-brand__concept::after {
  -webkit-mask: url(../img/common/parts-arch01.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 4.028vw;
  background: var(--pattern-sandyDark);
  content: "";
  mask: url(../img/common/parts-arch01.svg) no-repeat center bottom/100%;
}

.t-brand__concept__rolling {
  -webkit-animation: rollingTrans 60s linear infinite;
  z-index: 2;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 1500px;
  animation: rollingTrans 60s linear infinite;
  animation-direction: reverse;
}

.t-brand__concept .inner {
  -webkit-transform: translateY(50px);
  -webkit-transition: 0.3s var(--transition-default);
  display: grid;
  z-index: 4;
  grid-template-columns: 1fr 640px;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.3s var(--transition-default);
}

.t-brand__concept .inner.is-animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.t-brand__concept__title {
  margin-bottom: 74px;
}

.t-brand__concept__title .en {
  color: var(--color-ge);
  font-weight: 700;
  font-size: 1.6rem;
}

.t-brand__concept__title .title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 1.5;
}

.t-brand__concept .txt {
  font-weight: 500;
  line-height: 2.4;
}

.t-brand__concept__img {
  -webkit-transform: translate(-50%, 50px);
  -webkit-transition: 0.3s var(--transition-default);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 100%;
  transform: translate(-50%, 50px);
  opacity: 0;
  transition: 0.3s var(--transition-default);
}

.t-brand__concept__img.is-animated {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

.t-brand__concept__img .img01 {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 549px;
}

.t-brand__concept__img .img02 {
  position: absolute;
  top: 146px;
  right: 100px;
  width: 326px;
}

.t-brand__concept__img .img03 {
  position: absolute;
  bottom: 274px;
  left: 220px;
  width: 308px;
}

.t-brand__concept__img .img04 {
  position: absolute;
  top: 0;
  right: 395px;
  width: 267px;
}

.t-brand__concept__img .img05 {
  position: absolute;
  right: 37%;
  bottom: 244px;
  width: 199px;
}

.t-brand__concept__img .item {
  position: absolute;
}

.t-brand__concept__img .item01 {
  -webkit-transform: rotate(-35deg);
  top: 20px;
  right: -40px;
  width: 160px;
  transform: rotate(-35deg);
}

.t-brand__concept__img .item02 {
  -webkit-transform: rotate(45deg);
  right: 80px;
  bottom: -40px;
  width: 178px;
  transform: rotate(45deg);
}

.t-brand__concept__img .item03 {
  -webkit-transform: rotate(-30deg);
  bottom: -60px;
  left: 40px;
  width: 178px;
  transform: rotate(-30deg);
}

.t-brand__concept__logo {
  -webkit-transform: translateX(-50%);
  z-index: 2;
  position: absolute;
  bottom: -150px;
  left: 50%;
  width: 318px;
  transform: translateX(-50%);
}

/* ------------------------------
* point
------------------------------ */

.t-brand__point {
  z-index: 0;
  padding: 260px 0 200px;
  background: var(--pattern-sandyDark);
}

.t-brand__point__bg {
  -webkit-transform: translateX(-50%);
  z-index: -2;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 100%;
  transform: translateX(-50%);
}

.t-brand__point__bg .bg {
  position: absolute;
}

.t-brand__point__bg .bg01 {
  top: 467px;
  right: -137px;
  width: 888px;
}

.t-brand__point__bg .bg02 {
  bottom: 420px;
  left: -137px;
  width: 867px;
}

.t-brand__point__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transform: translateY(50px);
  -webkit-transition: 0.3s var(--transition-default);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 0 115px;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.3s var(--transition-default);
}

.t-brand__point__wrapper:not(:last-of-type) {
  padding-bottom: 300px;
}

.t-brand__point__wrapper:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__wrap {
  padding-right: 80px;
}

.t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__img {
  padding: 0 40px 40px 0;
}

.t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__img::before {
  right: 0;
}

.t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__img .bg {
  right: 0;
  bottom: 0;
}

.t-brand__point__wrapper:nth-of-type(even) {
  padding-left: 80px;
}

.t-brand__point__wrapper:nth-of-type(even) .t-brand__point__img {
  padding: 0 0 40px 40px;
}

.t-brand__point__wrapper:nth-of-type(even) .t-brand__point__img::before {
  left: 0;
}

.t-brand__point__wrapper:nth-of-type(even) .t-brand__point__img .bg {
  left: 0;
}

.t-brand__point__wrapper.is-animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.t-brand__point__wrap {
  width: 100%;
  max-width: 580px;
}

.t-brand__point__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 5px;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 1.5;
}

.t-brand__point__title .num {
  font-size: 3rem;
}

.t-brand__point__sub {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
}

.t-brand__point__sub .line {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1px 12px 4px;
  border-radius: 5px;
  background-color: var(--color-ge);
}

.t-brand__point__sub .line.tabSp {
  display: none;
}

.t-brand__point .txt {
  font-weight: 500;
  line-height: 2.4;
}

.t-brand__point__img {
  -ms-flex-negative: 0;
  position: relative;
  flex-shrink: 0;
}

.t-brand__point__img::before {
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  background-color: rgba(105, 105, 105, 0.2);
  content: "";
}

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

.t-brand__point__img img,
.t-brand__point__img video {
  border-radius: 20px;
}

.t-brand__point__img .bg {
  z-index: -2;
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}

.t-brand__point__deco {
  -webkit-animation-name: decoSwing;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-timing-function: steps(2, end);
  -webkit-animation-iteration-count: infinite;
  z-index: -1;
  position: absolute;
  animation-duration: 1.5s;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
  animation-name: decoSwing;
}

.t-brand__point__deco.deco01 {
  top: 0;
  right: 0;
  width: 220px;
}

.t-brand__point__deco.deco02 {
  top: -40px;
  left: 34%;
  width: 252px;
  animation-direction: reverse;
}

.t-brand__point__deco.deco03 {
  top: -85px;
  right: 0;
  width: 179px;
}

.t-brand__point__line01 {
  position: absolute;
  right: 80px;
  bottom: 50px;
  width: 643px;
  opacity: 0;
}

.t-brand__point__line01 .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 10px;
  stroke-dasharray: 1000px;
}

.t-brand__point__line01 .cls-2 {
  fill: #5a4530;
}

.t-brand__point__line01 .line {
  -webkit-mask: url(#mask01);
  mask: url(#mask01);
}

.t-brand__point__line01.is-animated {
  opacity: 1;
}

.t-brand__point__line01.is-animated .cls-1 {
  -webkit-animation: h-written 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: h-written 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.t-brand__point__line02 {
  -webkit-transform: translateX(-50%) scale(-1, 1);
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 643px;
  transform: translateX(-50%) scale(-1, 1);
  opacity: 0;
}

.t-brand__point__line02 .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 10px;
  stroke-dasharray: 1000px;
}

.t-brand__point__line02 .cls-2 {
  fill: #5a4530;
}

.t-brand__point__line02 .line {
  -webkit-mask: url(#mask02);
  mask: url(#mask02);
}

.t-brand__point__line02.is-animated {
  opacity: 1;
}

.t-brand__point__line02.is-animated .cls-1 {
  -webkit-animation: h-written 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: h-written 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

/* ------------------------------
* contents
------------------------------ */

.t-faq .mb10 {
  margin-bottom: 10px;
}

.t-faq__contents .inner {
  max-width: 1040px;
}

.t-faq__contents__link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.t-faq__contents__link a {
  position: relative;
  place-content: center;
  padding: 14px 30px 14px 20px;
  border: solid 1px var(--color-ge02);
  border-radius: 100px;
  color: var(--color-ge02);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}

.t-faq__contents__link a::after {
  -webkit-transform: rotate(90deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(90deg);
  background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  content: "";
}

.t-faq__contents .c-title03 {
  margin-bottom: 40px;
}

.t-faq__contents__wrapper {
  padding-top: 100px;
}

.t-faq__contents__wrapper + .t-faq__contents__wrapper {
  padding-top: 120px;
}

.t-faq__contents__faq + .t-faq__contents__faq {
  margin-top: 10px;
}

.t-faq__contents__faq button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: 0.45s var(--transition-default);
  display: grid;
  position: relative;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  width: 100%;
  padding: 20px;
  gap: 20px;
  border-radius: 10px;
  background-color: var(--color-bg05);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: left;
  transition: 0.45s var(--transition-default);
}

.t-faq__contents__faq button::before,
.t-faq__contents__faq button::after {
  -webkit-transition: 0.45s var(--transition-default);
  position: absolute;
  top: 0;
  right: 34px;
  bottom: 0;
  width: 22px;
  height: 2px;
  margin: auto;
  border-radius: 10px;
  background-color: var(--color-ge);
  content: "";
  transition: 0.45s var(--transition-default);
}

.t-faq__contents__faq button::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.t-faq__contents__faq button .icon {
  background-color: #fff;
  color: var(--color-ge);
}

.t-faq__contents__faq button.open::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.t-faq__contents__faq .icon {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.t-faq__contents .js-accordion__contents {
  display: none;
}

.t-faq__contents__answer {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 20px;
  gap: 20px;
}

.t-faq__contents__answer .icon {
  background-color: var(--color-ge);
  color: #fff;
}

.t-faq__contents__answer a {
  display: inline-block;
  color: var(--color-link);
  text-decoration: underline;
}

/* ------------------------------
* archive
------------------------------ */

.t-news__archive {
  background: var(--pattern-sandy);
}

.t-news__archive .inner {
  max-width: 1040px;
}

.t-news__archive__item + .t-news__archive__item {
  margin-top: 10px;
}

.t-news__archive__item a {
  display: grid;
  padding: 20px;
  gap: 5px;
  border-radius: 10px;
  background-color: #fff;
}

.t-news__archive__item .date {
  color: var(--color-ge);
  font-weight: 700;
  font-size: 1.2rem;
}

.t-news__archive__item .title {
  -webkit-text-decoration: underline transparent;
  -webkit-transition: 0.25s var(--transition-default);
  overflow: hidden;
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration: underline transparent;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.25s var(--transition-default);
}

/* ------------------------------
* archive
------------------------------ */

.t-news__detail {
  background: var(--pattern-sandy);
}

.t-news__detail .inner {
  max-width: 1040px;
}

.t-news__detail article {
  padding: 80px 20px;
  border-radius: 30px;
  background-color: #fff;
}

.t-news__detail__inner {
  max-width: 800px;
  margin: 0 auto;
}

.t-news__detail__date {
  margin-bottom: 10px;
  color: var(--color-ge);
  font-weight: 700;
}

.t-news__detail__title {
  padding-bottom: 20px;
  background-image: linear-gradient(to right, var(--color-line), var(--color-line) 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-size: 8px 3px;
  background-repeat: repeat-x;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}

.t-news__detail__pager {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 800px;
  margin: 80px auto 0;
}

.t-news__detail__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  align-items: center;
  gap: 30px;
}

.t-news__detail__link.prev {
  grid-template-columns: 45px 1fr;
  text-align: left;
}

.t-news__detail__link.prev .arrow::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.t-news__detail__link.next {
  grid-template-columns: 1fr 45px;
  text-align: right;
}

.t-news__detail__link .arrow {
  -webkit-transition: 0.45s var(--transition-default);
  position: relative;
  width: 45px;
  height: 45px;
  border: solid 1px var(--color-base);
  border-radius: 50%;
  background-color: #fff;
  transition: 0.45s var(--transition-default);
}

.t-news__detail__link .arrow::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.45s var(--transition-default);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.45s var(--transition-default);
}

.t-news__detail__punctuation {
  width: 1px;
  height: 100%;
  background-color: var(--color-base);
}

.t-news__detail__button {
  margin: 40px auto 0;
}

.t-news__detail__button .c-btn01 {
  margin: 0 auto;
}

/* ------------------------------
* contact
------------------------------ */

.t-contact__contents {
  padding: 60px 0 120px;
}

.t-contact__contents .inner {
  max-width: 1040px;
}

.t-contact__contents .c-btn01 {
  margin: 50px auto 0;
}

.t-contact__head {
  margin-bottom: 60px;
}

.t-contact__flow {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: repeat(3, 100px);
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 60px;
  gap: 80px;
}

.t-contact__flow::after {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  background-image: linear-gradient(to right, var(--color-ge), var(--color-ge) 3px, transparent 3px, transparent 8px);
  background-position: left bottom;
  background-size: 8px 3px;
  background-repeat: repeat-x;
  content: "";
}

.t-contact__flow__item {
  display: grid;
  place-content: center;
  width: 100px;
  height: 100px;
  border: solid 1px var(--color-ge);
  border-radius: 50%;
  background-color: var(--color-bg04);
  color: var(--color-ge);
  font-weight: 700;
  font-size: 2rem;
}

.t-contact__flow__item.current {
  background-color: var(--color-ge);
  color: #fff;
}

.t-contact__product {
  margin-bottom: 30px;
  padding: 10px 20px;
  background-color: var(--color-bg);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
}

.t-contact .form_area tr[data-wrapper=product] {
  display: none;
}

.t-contact.thanks .t-contact__title {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
}

.t-contact.thanks .t-contact__title + .txt {
  font-weight: 500;
  text-align: center;
}

/* ------------------------------
* list / request
------------------------------ */

.t-contact__wrapper {
  margin-top: 60px;
}

.t-contact__wrapper .c-title02 {
  margin-bottom: 30px;
}

.t-contact__wrapper__table table {
  width: 100%;
}

.t-contact__wrapper__table th,
.t-contact__wrapper__table td {
  padding: 15px;
}

.t-contact__wrapper__table thead th {
  padding: 10px;
  background-color: var(--color-bg03);
  font-weight: 500;
  text-align: center;
}

.t-contact__wrapper__table thead th:first-of-type,
.t-contact__wrapper__table thead th:last-of-type {
  width: 60px;
}

.t-contact__wrapper__table thead th.w100 {
  width: 100px;
}

.t-contact__wrapper__table thead th.w120 {
  width: 120px;
}

.t-contact__wrapper__table thead th.w160 {
  width: 160px;
}

.t-contact__wrapper__table tbody td {
  font-size: 1.4rem;
}

.t-contact__wrapper__table tbody td .color span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #000;
}

.t-contact__wrapper__table tbody a {
  text-decoration: underline;
}

.t-contact__wrapper__table img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: contain;
  background-color: var(--color-bg05);
}

.t-contact__wrapper__table img:not(.simulation) {
  border-radius: 10px;
}

.t-contact__wrapper__table img + img {
  margin-top: 10px;
}

.t-contact__wrapper__table .center {
  text-align: center;
}

.t-contact__wrapper__price {
  margin-top: 40px;
  font-weight: 700;
  font-size: 3rem;
  text-align: right;
}

.t-contact__wrapper__price span {
  font-size: 1.6rem;
}

.t-contact__wrapper__price .sum {
  display: inline-block;
  padding-right: 10px;
}

.t-contact__wrapper__button {
  display: grid;
  place-content: center;
  width: 270px;
  height: 60px;
  margin: 10px auto 0;
  border-radius: 100px;
  background-color: var(--color-line);
  font-weight: 700;
}

.t-contact.t-list .t-contact__contents {
  padding: 0;
}

.t-contact.t-list .t-contact__contents .inner {
  max-width: 1200px;
}

.t-contact.t-list .t-contact__wrapper__table .quantity input {
  width: 100%;
  padding: 5px 0 5px 15px;
  text-align: center;
}

.t-contact.t-list .t-contact__wrapper__table .quantity .delete {
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  border-radius: 5px;
  background-color: var(--color-base);
  color: #fff;
}

.t-contact.t-list .t-contact__wrapper__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: 0.45s var(--transition-default);
  display: grid;
  position: relative;
  grid-template-columns: 20px -webkit-max-content;
  grid-template-columns: 20px max-content;
  align-items: center;
  width: 100%;
  gap: 15px;
  background-color: var(--color-o);
  color: #fff;
  transition: 0.45s var(--transition-default);
}

.t-contact.t-list .t-contact__wrapper__button::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-check.svg) no-repeat center center/contain;
  content: "";
}

/* ------------------------------
* law
------------------------------ */

.t-law__contents {
  padding: 100px 0 120px;
}

.t-law__contents .inner {
  max-width: 1040px;
}

.t-law__list {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-top: solid 1px var(--color-line);
}

.t-law__list__title,
.t-law__list__detail {
  place-content: center;
  padding: 25px 0 25px 20px;
  border-bottom: solid 1px var(--color-line);
  line-height: 2;
}

.t-law__list__title {
  font-weight: 700;
}

.t-law__list a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: underline;
}

.t-law__list a[target=_blank] {
  position: relative;
  padding-right: 20px;
}

.t-law__list a[target=_blank]::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url(../img/common/icon-tab.svg) no-repeat center center/contain;
  content: "";
}

/* ------------------------------
* privacy
------------------------------ */

.t-privacy__contents .inner {
  max-width: 1040px;
}

.t-privacy__wrap {
  margin-top: 100px;
}

.t-privacy__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 3.2rem;
}

.t-privacy__sub {
  margin: 45px 0 20px;
  font-weight: 700;
  font-size: 2rem;
}

.t-privacy__list {
  margin-top: 40px;
  line-height: 2;
}

.t-privacy__list li {
  position: relative;
  padding-left: 20px;
}

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

/* ------------------------------
* 一覧
------------------------------ */

.t-product__contents {
  padding: 90px 0 0;
}

.t-product__filter {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg05);
}

.t-product__filter.fix {
  position: fixed;
  top: 0;
  left: 0;
}

.t-product__filter__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 120px 1fr 40px;
  grid-template-columns: max-content 120px 1fr 40px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 15px;
}

.t-product__filter__num {
  font-weight: 500;
  font-size: 1.4rem;
}

.t-product__filter__num .num {
  display: inline-block;
  padding-right: 3px;
  color: var(--color-ge02);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.05em;
}

.t-product__filter__btn {
  -webkit-transition: 0.45s var(--transition-default);
  position: relative;
  padding: 10px 10px 10px 37px;
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-ge02);
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.45s var(--transition-default);
}

.t-product__filter__btn::before {
  -webkit-transition: 0.45s var(--transition-default);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 22px;
  height: 14px;
  margin: auto;
  border-radius: 100px;
  background-color: var(--color-bg05);
  content: "";
  transition: 0.45s var(--transition-default);
}

.t-product__filter__btn::after {
  -webkit-transform: translateX(8px);
  -webkit-transition: 0.45s var(--transition-default);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: translateX(8px);
  border-radius: 50%;
  background-color: var(--color-line);
  content: "";
  transition: 0.45s var(--transition-default);
}

.t-product__filter__btn.active {
  background-color: var(--color-ge02);
  color: #fff;
}

.t-product__filter__btn.active::before {
  background-color: #fff;
}

.t-product__filter__btn.active::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-color: var(--color-ge02);
}

.t-product__filter__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
  gap: 10px;
}

.t-product__filter__txt {
  color: #333;
  font-size: 1.4rem;
  opacity: 0.7;
}

.t-product__filter__reset {
  -ms-flex-negative: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  padding-left: 17px;
  color: var(--color-o);
  font-weight: 700;
  font-size: 1.4rem;
}

.t-product__filter__reset::before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--color-o);
  content: "×";
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.t-product__filter__search {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: solid 1px var(--color-ge02);
  border-radius: 50%;
  background-color: #fff;
  color: transparent;
}

.t-product__filter__search::after {
  -webkit-mask: url(../img/common/icon-search02.svg) no-repeat center center/contain;
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background-color: var(--color-ge02);
  content: "";
  mask: url(../img/common/icon-search02.svg) no-repeat center center/contain;
}

.t-product__filter__search.active {
  visibility: hidden;
  opacity: 0;
}

.t-product__filter__content {
  -webkit-transform: translateY(-20px);
  -webkit-transition: 0.25s var(--transition-default);
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 30px 0 60px;
  transform: translateY(-20px);
  background-color: var(--color-bg05);
  opacity: 0;
  transition: 0.25s var(--transition-default);
}

.t-product__filter__content.active {
  -webkit-transform: translateY(0);
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.t-product__filter__content__search {
  -webkit-transform: translateY(-20px);
  -webkit-transition: 0.25s var(--transition-default);
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 30px 0 60px;
  transform: translateY(-20px);
  background-color: var(--color-bg05);
  opacity: 0;
  transition: 0.25s var(--transition-default);
}

.t-product__filter__content__search.active {
  -webkit-transform: translateY(0);
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.t-product__filter__content__search .searchandfilter ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.t-product__filter__content__search .searchandfilter li {
  position: relative;
  padding: 0;
}

.t-product__filter__content__search .searchandfilter li:has(input[type=submit]) {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  height: 40px;
  margin: auto;
}

.t-product__filter__content__search .searchandfilter li:has(input[type=submit])::after {
  -webkit-transform: translate(-50%, -50%);
  -webkit-mask: url(../img/common/icon-search02.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-search02.svg) no-repeat center center/contain;
}

.t-product__filter__content__search input[type=text] {
  width: 310px;
  padding: 20px;
  border: solid 1px var(--color-line);
  border-radius: 100px;
}

.t-product__filter__content__search input[type=submit] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-ge);
  color: transparent;
}

.t-product__filter_close {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--color-ge02);
  color: transparent;
}

.t-product__filter_close::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: rotate(-45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
}

.t-product__filter .main_category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1085px;
  margin: 0 auto;
  gap: 15px;
}

.t-product__filter .main_category label {
  position: relative;
}

.t-product__filter .main_category input {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.t-product__filter .main_category input:checked + .txt {
  background-color: var(--color-bg02);
}

.t-product__filter .main_category .txt {
  -webkit-transition: 0.25s var(--transition-default);
  display: block;
  padding: 12px 0;
  border: solid 1px var(--color-ge02);
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-ge02);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.25s var(--transition-default);
}

.t-product__filter .tab_wrapper {
  display: none;
}

.t-product__filter .tab_wrapper.current {
  display: block;
}

.t-product__filter .tab_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 20px;
  overflow-x: scroll;
  gap: 30px;
}

.t-product__filter .tab_button::-webkit-scrollbar {
  height: 5px;
}

.t-product__filter .tab_button::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-base-rgb), 0.1);
}

.t-product__filter .tab_button button {
  -ms-flex-negative: 0;
  -webkit-transition: 0.25s var(--transition-default);
  position: relative;
  flex-shrink: 0;
  padding: 2px 0 14px 25px;
  border-bottom: solid 1px transparent;
  color: var(--color-ge02);
  font-weight: 700;
  opacity: 0.4;
  transition: 0.25s var(--transition-default);
}

.t-product__filter .tab_button button.current {
  border-bottom: solid 1px var(--color-ge02);
  opacity: 1;
  pointer-events: none;
}

.t-product__filter .tab_button button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.t-product__filter .tab_button button.button_series::before {
  background-image: url(../img/product/icon-series.svg);
}

.t-product__filter .tab_button button.button_height::before {
  background-image: url(../img/product/icon-height.svg);
}

.t-product__filter .tab_button button.button_forme::before {
  background-image: url(../img/product/icon-forme.svg);
}

.t-product__filter .tab_button button.button_size::before {
  background-image: url(../img/product/icon-size.svg);
}

.t-product__filter .tab_button button.button_price::before {
  background-image: url(../img/product/icon-price.svg);
}

.t-product__filter .tab_button button.button_color::before {
  background-image: url(../img/product/icon-color.svg);
}

.t-product__filter .tab_button button.button_type::before {
  background-image: url(../img/product/icon-type.svg);
}

.t-product__filter .tab__contents {
  -ms-flex-wrap: wrap;
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.t-product__filter .tab__contents.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.t-product__filter .tab__contents label {
  position: relative;
}

.t-product__filter .tab__contents label input {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.t-product__filter .tab__contents label input:checked + span {
  background-color: var(--color-bg02) !important;
}

.t-product__filter .tab__contents span:not(.count) {
  -webkit-transition: 0.25s var(--transition-default);
  display: inline-block;
  padding: 4px 20px;
  border: solid 1px var(--color-ge02);
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-ge02);
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.25s var(--transition-default);
}

.t-product__filter .tab__contents.height label,
.t-product__filter .tab__contents.forme label,
.t-product__filter .tab__contents.size label,
.t-product__filter .tab__contents.typeParts label,
.t-product__filter .tab__contents.typeYugu label,
.t-product__filter .tab__contents.typeFurniture label {
  width: 224px;
}

.t-product__filter .tab__contents.height span,
.t-product__filter .tab__contents.forme span,
.t-product__filter .tab__contents.size span,
.t-product__filter .tab__contents.typeParts span,
.t-product__filter .tab__contents.typeYugu span,
.t-product__filter .tab__contents.typeFurniture span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 50px 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 9px 10px;
  gap: 10px;
}

.t-product__filter .tab__contents.height span::before,
.t-product__filter .tab__contents.forme span::before,
.t-product__filter .tab__contents.size span::before,
.t-product__filter .tab__contents.typeParts span::before,
.t-product__filter .tab__contents.typeYugu span::before,
.t-product__filter .tab__contents.typeFurniture span::before {
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.t-product__filter .tab__contents.height input[value=その他] + span::before,
.t-product__filter .tab__contents.forme input[value=その他] + span::before,
.t-product__filter .tab__contents.size input[value=その他] + span::before,
.t-product__filter .tab__contents.typeParts input[value=その他] + span::before,
.t-product__filter .tab__contents.typeYugu input[value=その他] + span::before,
.t-product__filter .tab__contents.typeFurniture input[value=その他] + span::before {
  background-image: url(../img/product/icon-other.svg);
}

.t-product__filter .tab__contents.height input[value="リス(200mm)"] + span::before {
  background-image: url(../img/product/icon-height_squirrel.webp);
}

.t-product__filter .tab__contents.height input[value="バンビ(300mm)"] + span::before {
  background-image: url(../img/product/icon-height_bambi.webp);
}

.t-product__filter .tab__contents.height input[value="ライオン(350mm)"] + span::before {
  background-image: url(../img/product/icon-height_lion.webp);
}

.t-product__filter .tab__contents.forme input[value=四角] + span::before {
  background-image: url(../img/product/icon-forme_square.webp);
}

.t-product__filter .tab__contents.forme input[value=角丸] + span::before {
  background-image: url(../img/product/icon-forme_corner.webp);
}

.t-product__filter .tab__contents.forme input[value=サークル] + span::before {
  background-image: url(../img/product/icon-forme_circle.webp);
}

.t-product__filter .tab__contents.size input[value="1畳"] + span::before {
  background-image: url(../img/product/icon-size_1.webp);
}

.t-product__filter .tab__contents.size input[value="2畳"] + span::before {
  background-image: url(../img/product/icon-size_2.webp);
}

.t-product__filter .tab__contents.size input[value="3畳"] + span::before {
  background-image: url(../img/product/icon-size_3.webp);
}

.t-product__filter .tab__contents.size input[value="4畳"] + span::before {
  background-image: url(../img/product/icon-size_4.webp);
}

.t-product__filter .tab__contents.size input[value="4.5畳"] + span::before {
  background-image: url(../img/product/icon-size_45.webp);
}

.t-product__filter .tab__contents.typeParts input[value=マット] + span::before {
  background-image: url(../img/product/icon-typeParts_mat.webp);
}

.t-product__filter .tab__contents.typeParts input[value=サイドガード] + span::before {
  background-image: url(../img/product/icon-typeParts_side.webp);
}

.t-product__filter .tab__contents.typeParts input[value=ウォールマット] + span::before {
  background-image: url(../img/product/icon-typeParts_wall.webp);
}

.t-product__filter .tab__contents.typeParts input[value=キッズコーナー家具] + span::before {
  background-image: url(../img/product/icon-typeParts_furniture.webp);
}

.t-product__filter .tab__contents.typeParts input[value=キッズコーナー遊具] + span::before {
  background-image: url(../img/product/icon-typeParts_yugu.webp);
}

.t-product__filter .tab__contents.typeYugu input[value=ボールプール用パーツ] + span::before {
  background-image: url(../img/product/icon-typeYugu_ball.webp);
}

.t-product__filter .tab__contents.typeYugu input[value=大型クッション遊具] + span::before {
  background-image: url(../img/product/icon-typeYugu_bigcushion.webp);
}

.t-product__filter .tab__contents.typeYugu input[value=遊具] + span::before {
  background-image: url(../img/product/icon-typeYugu_yugu.webp);
}

.t-product__filter .tab__contents.typeYugu input[value=クッション] + span::before {
  background-image: url(../img/product/icon-typeYugu_cushion.webp);
}

.t-product__filter .tab__contents.typeFurniture input[value=ソファ] + span::before {
  background-image: url(../img/product/icon-typeFurniture_sofa.webp);
}

.t-product__filter .tab__contents.typeFurniture input[value=ベンチ] + span::before {
  background-image: url(../img/product/icon-typeFurniture_bench.webp);
}

.t-product__filter .tab__contents.typeFurniture input[value=チェア] + span::before {
  background-image: url(../img/product/icon-typeFurniture_chair.webp);
}

.t-product__filter .tab__contents.typeFurniture input[value=テーブル] + span::before {
  background-image: url(../img/product/icon-typeFurniture_table.webp);
}

.t-product__filter .tab__contents.typeFurniture input[value=スツール] + span::before {
  background-image: url(../img/product/icon-typeFurniture_stool.webp);
}

.t-product__filter .tab__contents.typeFurniture input[value=EVA家具] + span::before {
  background-image: url(../img/product/icon-typeFurniture_eva.webp);
}

.t-product__filter .tab__contents.price label {
  width: calc(20% - 8px);
}

.t-product__filter .tab__contents.price span {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.t-product__filter .tab__contents.color span:has(.icon) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  padding: 6px 40px;
  gap: 5px;
}

.t-product__filter .tab__contents.color .icon {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
}

.t-product__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1360px;
  margin: 60px auto 0;
  padding: 0 20px;
  gap: 30px 25px;
}

.t-product__item__img {
  position: relative;
  aspect-ratio: 310/233;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--color-bg05);
}

.t-product__item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-product__item__label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 5px;
  left: 5px;
  align-items: center;
  width: 100%;
  gap: 5px;
}

.t-product__item__label .sideguard {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}

.t-product__item__label .simulation {
  width: calc(100% - 50px);
  max-width: 162px;
  padding: 3px 10px 4px;
  overflow: hidden;
  border: solid 1px var(--color-r);
  border-radius: 100px;
  background-color: #fff;
  color: var(--color-r);
  font-weight: 500;
  font-size: 1rem;
}

.t-product__item__label .simulation .inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
}

.t-product__item__label .simulation .txt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 10px;
}

.t-product__item__color {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}

.t-product__item__color .color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.t-product__item__title {
  margin: 15px 0;
  font-weight: 500;
  font-size: 1.4rem;
}

.t-product__item__price {
  margin: 15px 0;
  font-weight: 700;
  font-size: 1.8rem;
}

.t-product__item__price .unit {
  font-size: 1.4rem;
}

.t-product__item__price .tax {
  font-size: 1rem;
}

.t-product__item__tag {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 3px;
}

.t-product__item__tag li {
  color: var(--color-ge02);
  font-size: 1.2rem;
  line-height: 1.3;
}

.t-product__item__tag li:not(:last-of-type) {
  position: relative;
  padding-right: 9px;
}

.t-product__item__tag li:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "/";
}

.t-product .pagination-wrap {
  margin-top: 40px;
}

.t-product .pagination-wrap .pagination-area {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.t-product .pagination-wrap a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding-top: 3px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Comfortaa", sans-serif;
}

.t-product .pagination-wrap a.prev::after,
.t-product .pagination-wrap a.next::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.t-product .pagination-wrap a.prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.t-product .pagination-wrap .active {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding-top: 3px;
  border-radius: 50%;
  background-color: var(--color-base);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Comfortaa", sans-serif;
  pointer-events: none;
}

/* ------------------------------
* 詳細
------------------------------ */

.t-detail .c-lowmv {
  padding: 0 0 30px;
}

.t-detail__container {
  padding: 0;
}

.t-detail__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  gap: 10px 20px;
  border-bottom: solid 1px var(--color-line);
}

.t-detail__head__back {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  display: grid;
  position: relative;
  grid-template-columns: 40px -webkit-max-content;
  grid-template-columns: 40px max-content;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.t-detail__head__back::before {
  -webkit-transition: 0.45s var(--transition-default);
  width: 40px;
  height: 40px;
  border: solid 1px var(--color-base);
  border-radius: 50%;
  content: "";
  transition: 0.45s var(--transition-default);
}

.t-detail__head__back::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transform: scale(-1, 1);
  -webkit-transition: 0.45s var(--transition-default);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: scale(-1, 1);
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: 0.45s var(--transition-default);
}

.t-detail__head__simulation {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 215px 1fr;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  gap: 15px;
  border-radius: 3px;
  background-color: rgba(var(--color-r-rgb), 0.15);
}

.t-detail__head__simulation.off {
  background-color: #fff;
}

.t-detail__head__simulation.off a {
  background-color: var(--color-bg04);
  color: var(--color-r);
}

.t-detail__head__simulation.off a::after {
  left: 20px;
  background-color: #ccc;
}

.t-detail__head__simulation a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 22px 1fr;
  align-items: center;
  padding: 10px;
  gap: 10px;
  border-radius: 100px;
  background-color: var(--color-r);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.t-detail__head__simulation a::before {
  width: 22px;
  height: 14px;
  border-radius: 100px;
  background-color: #fff;
  content: "";
}

.t-detail__head__simulation a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--color-r);
  content: "";
}

.t-detail__head__simulation .wrap {
  overflow: hidden;
}

.t-detail__head__simulation ul {
  -webkit-animation: infinityScroll 10s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1452px;
  animation: infinityScroll 10s linear infinite;
}

.t-detail__head__simulation ul li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 15px -webkit-max-content;
  grid-template-columns: 15px max-content;
  align-items: center;
  padding-right: 20px;
  gap: 15px;
  font-size: 1.2rem;
}

.t-detail__head__simulation ul li.orange {
  color: var(--color-o);
}

.t-detail__head__simulation ul li.red {
  color: var(--color-r);
}

.t-detail__head__simulation ul li.green {
  color: var(--color-ge);
}

.t-detail__head__simulation ul li .icon {
  width: 20px;
  height: 20px;
}

.t-detail__contents {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 55px;
}

.t-detail__panel {
  position: relative;
}

.t-detail__panel__wrapper {
  position: sticky;
  top: 150px;
}

.t-detail__tab {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  padding: 0 20px;
  gap: 5px;
}

.t-detail__tab__button {
  display: inline-block;
  padding: 10px 30px;
  border-top: solid 1px var(--color-ge);
  border-right: solid 1px var(--color-ge);
  border-left: solid 1px var(--color-ge);
  border-radius: 20px 20px 0 0;
  color: var(--color-ge);
  font-weight: 700;
  font-size: 1.4rem;
}

.t-detail__tab__button.current {
  background-color: var(--color-ge);
  color: #fff;
}

.t-detail__images {
  width: 100%;
}

.t-detail__images__main {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.t-detail__images__main .swiper-slide img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background-color: var(--color-bg05);
}

.t-detail__images__main .swiper-slide figcaption {
  margin-top: 8px;
  font-size: 1.2rem;
}

.t-detail__images__thumb {
  position: relative;
  margin-top: 20px;
  padding: 0 20px;
  overflow: hidden;
}

.t-detail__images__thumb::before,
.t-detail__images__thumb::after {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  background-color: #fff;
  content: "";
}

.t-detail__images__thumb::before {
  left: 0;
}

.t-detail__images__thumb::after {
  right: 0;
}

.t-detail__images__thumb .swiper-wrapper {
  height: auto;
}

.t-detail__images__thumb .swiper-slide {
  aspect-ratio: 1/1;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  border: solid 2px transparent;
  border-radius: 10px;
  background-color: var(--color-bg05);
  cursor: pointer;
}

.t-detail__images__thumb .swiper-slide img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
}

.t-detail__images__thumb .swiper-slide-thumb-active {
  border: solid 2px var(--color-o);
}

.t-detail__images__thumb .swiper-button-prev,
.t-detail__images__thumb .swiper-button-next {
  -webkit-transform: translateY(-50%);
  width: 15px;
  height: 15px;
  margin: 0;
  transform: translateY(-50%);
}

.t-detail__images__thumb .swiper-button-prev::after,
.t-detail__images__thumb .swiper-button-next::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  width: 100%;
  height: 100%;
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.t-detail__images__thumb .swiper-button-prev {
  left: 0;
}

.t-detail__images__thumb .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.t-detail__images__thumb .swiper-button-next {
  right: 0;
}

.t-detail__drawing {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background-color: var(--color-bg05);
}

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

.t-detail__tag {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 8px 10px;
}

.t-detail__tag__item {
  padding: 5px 10px 6px;
  border-radius: 100px;
  background-color: var(--color-bg03);
  color: var(--color-ge02);
  font-weight: 700;
  font-size: 1.2rem;
}

.t-detail__tag__item.simulation {
  background-color: var(--color-r);
  color: #fff;
}

.t-detail__tag__item.main {
  background-color: var(--color-yG);
  color: #fff;
}

.t-detail__title {
  margin: 30px 0 20px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
}

.t-detail__size,
.t-detail__number {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.3rem;
  opacity: 0.6;
}

.t-detail__txt {
  margin: 30px 0;
  font-size: 1.4rem;
  line-height: 2;
}

.t-detail__txt strong {
  font-weight: 700;
}

.t-detail__txt.caution {
  font-size: 1.2rem;
  line-height: 1.5;
}

.t-detail__color {
  margin: 30px 0;
}

.t-detail__color__label {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.t-detail__color__list {
  position: relative;
  padding-bottom: 10px;
}

.t-detail__color__list .swiper-slide.active .img {
  border: solid 2px var(--color-o);
}

.t-detail__color__list label {
  position: relative;
  cursor: pointer;
}

.t-detail__color__list label input {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.t-detail__color__list .img {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: solid 2px transparent;
  border-radius: 10px;
}

.t-detail__color__list .img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.t-detail__color__list .txt {
  display: block;
  margin-top: 5px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  text-align: center;
}

.t-detail__color__list .swiper-scrollbar {
  bottom: 0;
  height: 4px;
  background-color: transparent;
}

.t-detail__color__list .swiper-scrollbar-drag {
  background-color: rgba(var(--color-base-rgb), 0.1);
}

.t-detail__price {
  margin: 30px 0;
  font-weight: 700;
  font-size: 3.2rem;
  text-align: right;
}

.t-detail__price .unit {
  font-size: 2rem;
}

.t-detail__price .tax {
  font-size: 1rem;
}

.t-detail__set {
  margin: 30px 0;
}

.t-detail__set__label {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.t-detail__set__table table {
  width: 100%;
}

.t-detail__set__table th,
.t-detail__set__table td {
  padding: 10px;
  border: solid 1px var(--color-line);
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
}

.t-detail__set__table thead th {
  background-color: var(--color-bg05);
  font-weight: 500;
}

.t-detail__set__table td.error {
  background-color: rgba(var(--color-r-rgb), 0.15);
}

.t-detail__set__table .no {
  width: 45px;
}

.t-detail__set__table .number {
  width: 97px;
}

.t-detail__set__table .size {
  width: 194px;
}

.t-detail__set__table .count {
  width: 75px;
}

.t-detail__set__table.select td,
.t-detail__set__table.select th {
  padding: 10px 4px;
}

.t-detail__set__table.select .no {
  width: 40px;
}

.t-detail__set__table.select .number {
  width: 80px;
}

.t-detail__set__table.select .size {
  width: 160px;
}

.t-detail__set__table.select .color {
  width: 125px;
}

.t-detail .choices__inner {
  min-height: inherit;
  padding: 0 !important;
  border: none;
  background-color: transparent;
}

.t-detail .choices__list--single {
  padding: 0;
}

.t-detail .select-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 16px -webkit-max-content;
  grid-template-columns: 16px max-content;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  gap: 10px;
}

.t-detail .choices[data-type*=select-one]::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transform: rotate(90deg);
  top: 46%;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(90deg);
  border: none;
  background-color: var(--color-base);
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.t-detail__button {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  margin-top: 20px;
  gap: 20px 45px;
}

.t-detail__button__form {
  margin: 30px 0 0;
}

.t-detail__button__form button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: 0.45s var(--transition-default);
  display: grid;
  position: relative;
  grid-template-columns: 20px -webkit-max-content;
  grid-template-columns: 20px max-content;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 10px 22px;
  gap: 10px;
  border-radius: 100px;
  background-color: var(--color-o);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.45s var(--transition-default);
}

.t-detail__button__form button::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-check.svg) no-repeat center center/contain;
  content: "";
}

.t-detail__button__form.noSet {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 282px 1fr;
  gap: 28px;
}

.t-detail__button__simulation .txt {
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 7px;
  padding: 0 12px;
  font-weight: 500;
  font-size: 1.2rem;
}

.t-detail__button__simulation .txt::before,
.t-detail__button__simulation .txt::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 14px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
}

.t-detail__button__simulation .txt::before {
  -webkit-transform: rotate(-25deg);
  left: 0;
  transform: rotate(-25deg);
}

.t-detail__button__simulation .txt::after {
  -webkit-transform: rotate(25deg);
  right: 0;
  transform: rotate(25deg);
}

.t-detail__button__simulation a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: 0.45s var(--transition-default);
  display: grid;
  position: relative;
  grid-template-columns: 20px -webkit-max-content;
  grid-template-columns: 20px max-content;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 10px 22px;
  gap: 10px;
  border-radius: 100px;
  background-color: var(--color-ge);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.45s var(--transition-default);
}

.t-detail__button__simulation a::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-plus.svg) no-repeat center center/contain;
  content: "";
}

.t-detail__contact {
  margin-top: 40px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--color-bg05);
}

.t-detail__contact .txt {
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 10px;
  padding: 0 12px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
}

.t-detail__contact .txt::before,
.t-detail__contact .txt::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 14px;
  margin: auto;
  background-color: var(--color-base);
  content: "";
}

.t-detail__contact .txt::before {
  -webkit-transform: rotate(-25deg);
  left: 0;
  transform: rotate(-25deg);
}

.t-detail__contact .txt::after {
  -webkit-transform: rotate(25deg);
  right: 0;
  transform: rotate(25deg);
}

.t-detail__contact__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.t-detail__contact__list li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  position: relative;
  grid-template-columns: 14px -webkit-max-content;
  grid-template-columns: 14px max-content;
  align-items: center;
  justify-content: center;
  width: calc(33.3333333333% - 5px);
  padding: 10px;
  gap: 8px;
  border: dashed 1px rgba(var(--color-base-rgb), 0.4);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.t-detail__contact__list li .icon {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
}

.t-detail__contact__list li .icon::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 4px;
  width: 11px;
  height: 7px;
  margin: auto;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--color-ge);
  border-left: solid 2px var(--color-ge);
  content: "";
}

.t-detail__contact__button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10px;
  gap: 10px;
}

.t-detail__contact__button .tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 12px 12px 14px;
  gap: 3px;
  border-radius: 100px;
  background-color: #fff;
  text-align: center;
}

.t-detail__contact__button .tel .num {
  color: var(--color-o);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

.t-detail__contact__button .tel small {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

.t-detail__contact__button .contact {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  position: relative;
  grid-template-columns: 28px -webkit-max-content;
  grid-template-columns: 28px max-content;
  align-items: center;
  justify-content: center;
  height: 62px;
  gap: 10px;
  border-radius: 100px;
  background-color: var(--color-base);
  color: #fff;
  font-weight: 700;
}

.t-detail__contact__button .contact::before {
  width: 28px;
  height: 28px;
  background: url(../img/common/icon-mail.svg) no-repeat center center/contain;
  content: "";
}

.t-detail__select__label {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.t-detail__select .select-wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.t-detail__select .choices {
  padding: 15px 0 15px 25px;
  border: solid 1px var(--color-line);
  border-radius: 100px;
  text-align: left;
}

.t-detail__select .choices[data-type*=select-one]::after {
  right: 15px !important;
}

.t-detail__select .choices__list--dropdown .select-wrap {
  padding: 5px 10px;
}

.t-detail .is-error {
  margin-bottom: 4px;
  color: var(--color-r);
  font-weight: 700;
  font-size: 1.4rem;
}

/* ------------------------------
* カラーシミュレーション図形
------------------------------ */

.simulation__drawing {
  background-color: var(--color-bg05);
}

.simulation__drawing:has(.circle) {
  aspect-ratio: 1/1;
  padding: 20px;
}

.simulation__drawing:has(.square1) {
  aspect-ratio: 498/311;
}

.simulation__drawing:has(.square3) {
  aspect-ratio: 498/402;
}

.simulation__drawing:has(.square4) {
  aspect-ratio: 498/284;
}

.simulation__drawing:has(.square2),
.simulation__drawing:has(.square45) {
  aspect-ratio: 1/1;
}

.simulation__drawing .square {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 1px;
  gap: 1px;
}

.simulation__drawing .square .piece {
  display: grid;
  place-content: center;
  outline: solid 1px var(--color-base);
  background-color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.simulation__drawing .square .piece.highlight {
  border: solid 4px var(--color-r);
}

.simulation__drawing .square1 {
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(8, 1fr);
  aspect-ratio: 498/311;
}

.simulation__drawing .square1 .piece1 {
  grid-row: 2/6;
  grid-column: 2/5;
}

.simulation__drawing .square1 .piece2 {
  grid-row: 2/7;
  grid-column: 5/8;
}

.simulation__drawing .square1 .piece3 {
  grid-row: 2/7;
  grid-column: 1/2;
}

.simulation__drawing .square1 .piece4 {
  grid-row: 6/7;
  grid-column: 2/5;
}

.simulation__drawing .square1 .piece5 {
  grid-row: 2/7;
  grid-column: 8/9;
}

.simulation__drawing .square1 .piece6 {
  grid-row: 1/2;
  grid-column: 5/9;
}

.simulation__drawing .square1 .piece7 {
  grid-row: 1/2;
  grid-column: 1/5;
}

.simulation__drawing .square1.no-entrance .piece2 {
  grid-row: 2/6;
}

.simulation__drawing .square1.no-entrance .piece5 {
  grid-row: 6/7;
  grid-column: 5/8;
}

.simulation__drawing .square1.no-entrance .piece6 {
  grid-row: 2/7;
  grid-column: 8/9;
}

.simulation__drawing .square1.no-entrance .piece7 {
  grid-column: 5/9;
}

.simulation__drawing .square1.no-entrance .piece8 {
  grid-row: 1/2;
  grid-column: 1/5;
}

.simulation__drawing .square2 {
  grid-template-rows: repeat(8, 1fr);
  grid-template-columns: repeat(8, 1fr);
  aspect-ratio: 1/1;
}

.simulation__drawing .square2 .piece1 {
  grid-row: 2/5;
  grid-column: 2/5;
}

.simulation__drawing .square2 .piece2 {
  grid-row: 2/5;
  grid-column: 5/8;
}

.simulation__drawing .square2 .piece3 {
  grid-row: 5/8;
  grid-column: 2/5;
}

.simulation__drawing .square2 .piece4 {
  grid-row: 5/9;
  grid-column: 5/8;
}

.simulation__drawing .square2 .piece5 {
  grid-row: 1/5;
  grid-column: 1/2;
}

.simulation__drawing .square2 .piece6 {
  grid-row: 5/9;
  grid-column: 1/2;
}

.simulation__drawing .square2 .piece7 {
  grid-row: 8/9;
  grid-column: 2/5;
}

.simulation__drawing .square2 .piece8 {
  grid-row: 5/9;
  grid-column: 8/9;
}

.simulation__drawing .square2 .piece9 {
  grid-row: 1/5;
  grid-column: 8/9;
}

.simulation__drawing .square2 .piece10 {
  grid-row: 1/2;
  grid-column: 5/8;
}

.simulation__drawing .square2 .piece11 {
  grid-row: 1/2;
  grid-column: 2/5;
}

.simulation__drawing .square2.no-entrance .piece4 {
  grid-row: 5/8;
}

.simulation__drawing .square2.no-entrance .piece8 {
  grid-row: 8/9;
  grid-column: 5/8;
}

.simulation__drawing .square2.no-entrance .piece9 {
  grid-row: 5/9;
}

.simulation__drawing .square2.no-entrance .piece10 {
  grid-row: 1/5;
  grid-column: 8/9;
}

.simulation__drawing .square2.no-entrance .piece11 {
  grid-column: 5/8;
}

.simulation__drawing .square2.no-entrance .piece12 {
  grid-column: 2/5;
}

.simulation__drawing .square3 {
  grid-template-rows: repeat(8, 1fr);
  grid-template-columns: repeat(11, 1fr);
  aspect-ratio: 498/402;
}

.simulation__drawing .square3 .piece1 {
  grid-row: 2/5;
  grid-column: 2/5;
}

.simulation__drawing .square3 .piece2 {
  grid-row: 2/5;
  grid-column: 5/8;
}

.simulation__drawing .square3 .piece3 {
  grid-row: 2/5;
  grid-column: 8/11;
}

.simulation__drawing .square3 .piece4 {
  grid-row: 5/8;
  grid-column: 2/5;
}

.simulation__drawing .square3 .piece5 {
  grid-row: 5/9;
  grid-column: 5/8;
}

.simulation__drawing .square3 .piece6 {
  grid-row: 5/8;
  grid-column: 8/11;
}

.simulation__drawing .square3 .piece7 {
  grid-row: 1/5;
  grid-column: 1/2;
}

.simulation__drawing .square3 .piece8 {
  grid-row: 5/9;
  grid-column: 1/2;
}

.simulation__drawing .square3 .piece9 {
  grid-row: 8/9;
  grid-column: 2/5;
}

.simulation__drawing .square3 .piece10 {
  grid-row: 8/9;
  grid-column: 8/11;
}

.simulation__drawing .square3 .piece11 {
  grid-row: 5/9;
  grid-column: 11/12;
}

.simulation__drawing .square3 .piece12 {
  grid-row: 1/5;
  grid-column: 11/12;
}

.simulation__drawing .square3 .piece13 {
  grid-row: 1/2;
  grid-column: 8/11;
}

.simulation__drawing .square3 .piece14 {
  grid-row: 1/2;
  grid-column: 5/8;
}

.simulation__drawing .square3 .piece15 {
  grid-row: 1/2;
  grid-column: 2/5;
}

.simulation__drawing .square3.no-entrance .piece5 {
  grid-row: 5/8;
}

.simulation__drawing .square3.no-entrance .piece10 {
  grid-column: 5/8;
}

.simulation__drawing .square3.no-entrance .piece11 {
  grid-row: 8/9;
  grid-column: 8/11;
}

.simulation__drawing .square3.no-entrance .piece12 {
  grid-row: 5/9;
}

.simulation__drawing .square3.no-entrance .piece13 {
  grid-row: 1/5;
  grid-column: 11/12;
}

.simulation__drawing .square3.no-entrance .piece14 {
  grid-column: 8/11;
}

.simulation__drawing .square3.no-entrance .piece15 {
  grid-column: 5/8;
}

.simulation__drawing .square3.no-entrance .piece16 {
  grid-column: 2/5;
}

.simulation__drawing .square4 {
  grid-template-rows: repeat(8, 1fr);
  grid-template-columns: repeat(14, 1fr);
  aspect-ratio: 498/284;
}

.simulation__drawing .square4 .piece1 {
  grid-row: 2/5;
  grid-column: 2/5;
}

.simulation__drawing .square4 .piece2 {
  grid-row: 2/5;
  grid-column: 5/8;
}

.simulation__drawing .square4 .piece3 {
  grid-row: 2/5;
  grid-column: 8/11;
}

.simulation__drawing .square4 .piece4 {
  grid-row: 2/5;
  grid-column: 11/14;
}

.simulation__drawing .square4 .piece5 {
  grid-row: 5/8;
  grid-column: 2/5;
}

.simulation__drawing .square4 .piece6 {
  grid-row: 5/9;
  grid-column: 5/8;
}

.simulation__drawing .square4 .piece7 {
  grid-row: 5/8;
  grid-column: 8/11;
}

.simulation__drawing .square4 .piece8 {
  grid-row: 5/8;
  grid-column: 11/14;
}

.simulation__drawing .square4 .piece9 {
  grid-row: 1/5;
  grid-column: 1/2;
}

.simulation__drawing .square4 .piece10 {
  grid-row: 5/9;
  grid-column: 1/2;
}

.simulation__drawing .square4 .piece11 {
  grid-row: 8/9;
  grid-column: 2/5;
}

.simulation__drawing .square4 .piece12 {
  grid-row: 8/9;
  grid-column: 8/11;
}

.simulation__drawing .square4 .piece13 {
  grid-row: 8/9;
  grid-column: 11/14;
}

.simulation__drawing .square4 .piece14 {
  grid-row: 5/9;
  grid-column: 14/15;
}

.simulation__drawing .square4 .piece15 {
  grid-row: 1/5;
  grid-column: 14/15;
}

.simulation__drawing .square4 .piece16 {
  grid-row: 1/2;
  grid-column: 11/14;
}

.simulation__drawing .square4 .piece17 {
  grid-row: 1/2;
  grid-column: 8/11;
}

.simulation__drawing .square4 .piece18 {
  grid-row: 1/2;
  grid-column: 5/8;
}

.simulation__drawing .square4 .piece19 {
  grid-row: 1/2;
  grid-column: 2/5;
}

.simulation__drawing .square4.no-entrance .piece6 {
  grid-row: 5/8;
}

.simulation__drawing .square4.no-entrance .piece12 {
  grid-column: 5/8;
}

.simulation__drawing .square4.no-entrance .piece13 {
  grid-column: 8/11;
}

.simulation__drawing .square4.no-entrance .piece14 {
  grid-row: 8/9;
  grid-column: 11/14;
}

.simulation__drawing .square4.no-entrance .piece15 {
  grid-row: 5/9;
}

.simulation__drawing .square4.no-entrance .piece16 {
  grid-row: 1/5;
  grid-column: 14/15;
}

.simulation__drawing .square4.no-entrance .piece17 {
  grid-column: 11/14;
}

.simulation__drawing .square4.no-entrance .piece18 {
  grid-column: 8/11;
}

.simulation__drawing .square4.no-entrance .piece19 {
  grid-column: 5/8;
}

.simulation__drawing .square4.no-entrance .piece20 {
  grid-column: 2/5;
}

.simulation__drawing .square45 {
  grid-template-rows: repeat(11, 1fr);
  grid-template-columns: repeat(11, 1fr);
  aspect-ratio: 1/1;
}

.simulation__drawing .square45 .piece1 {
  grid-row: 2/5;
  grid-column: 2/5;
}

.simulation__drawing .square45 .piece2 {
  grid-row: 2/5;
  grid-column: 5/8;
}

.simulation__drawing .square45 .piece3 {
  grid-row: 2/5;
  grid-column: 8/11;
}

.simulation__drawing .square45 .piece4 {
  grid-row: 5/8;
  grid-column: 2/5;
}

.simulation__drawing .square45 .piece5 {
  grid-row: 5/8;
  grid-column: 5/8;
}

.simulation__drawing .square45 .piece6 {
  grid-row: 5/8;
  grid-column: 8/11;
}

.simulation__drawing .square45 .piece7 {
  grid-row: 8/11;
  grid-column: 2/5;
}

.simulation__drawing .square45 .piece8 {
  grid-row: 8/12;
  grid-column: 5/8;
}

.simulation__drawing .square45 .piece9 {
  grid-row: 8/11;
  grid-column: 8/11;
}

.simulation__drawing .square45 .piece10 {
  grid-row: 1/5;
  grid-column: 1/2;
}

.simulation__drawing .square45 .piece11 {
  grid-row: 5/8;
  grid-column: 1/2;
}

.simulation__drawing .square45 .piece12 {
  grid-row: 8/12;
  grid-column: 1/2;
}

.simulation__drawing .square45 .piece13 {
  grid-row: 11/12;
  grid-column: 2/5;
}

.simulation__drawing .square45 .piece14 {
  grid-row: 11/12;
  grid-column: 8/11;
}

.simulation__drawing .square45 .piece15 {
  grid-row: 8/12;
  grid-column: 11/12;
}

.simulation__drawing .square45 .piece16 {
  grid-row: 5/8;
  grid-column: 11/12;
}

.simulation__drawing .square45 .piece17 {
  grid-row: 1/5;
  grid-column: 11/12;
}

.simulation__drawing .square45 .piece18 {
  grid-row: 1/2;
  grid-column: 2/5;
}

.simulation__drawing .square45 .piece19 {
  grid-row: 1/2;
  grid-column: 5/8;
}

.simulation__drawing .square45 .piece20 {
  grid-row: 1/2;
  grid-column: 8/11;
}

.simulation__drawing .square45.no-entrance .piece8 {
  grid-row: 8/11;
}

.simulation__drawing .square45.no-entrance .piece14 {
  grid-column: 5/8;
}

.simulation__drawing .square45.no-entrance .piece15 {
  grid-row: 11/12;
  grid-column: 8/11;
}

.simulation__drawing .square45.no-entrance .piece16 {
  grid-row: 8/12;
}

.simulation__drawing .square45.no-entrance .piece17 {
  grid-row: 5/8;
}

.simulation__drawing .square45.no-entrance .piece18 {
  grid-row: 1/5;
  grid-column: 11/12;
}

.simulation__drawing .square45.no-entrance .piece19 {
  grid-column: 2/5;
}

.simulation__drawing .square45.no-entrance .piece20 {
  grid-column: 5/8;
}

.simulation__drawing .square45.no-entrance .piece21 {
  grid-column: 8/11;
}

.simulation__drawing .circle {
  position: relative;
}

.simulation__drawing .circle .piece-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.simulation__drawing .circle .piece-button-num {
  position: absolute;
  font-weight: 700;
  font-size: 2rem;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(1) {
  top: 30%;
  left: 33%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(2) {
  top: 30%;
  left: 65%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(3) {
  top: 60%;
  left: 33%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(4) {
  top: 60%;
  left: 65%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(5) {
  top: 14%;
  left: 19%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(6) {
  top: 14%;
  left: 78%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(7) {
  top: 77%;
  left: 19%;
}

.simulation__drawing .circle .piece-button-num:nth-of-type(8) {
  top: 77%;
  left: 80%;
}

.simulation__drawing .circle .piece.highlight .cls-1 {
  stroke: var(--color-r);
  stroke-width: 10px;
}

.simulation__drawing .circle .cls-1 {
  stroke: var(--color-base);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.t-product__list-area {
  position: relative;
}

/* ローディングレイヤー */

.t-product__loading {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /* ← 横中央 */
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-transition: opacity 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 50;
  position: absolute;
  align-items: flex-start;
  justify-content: center;
  inset: 0;
  /* ← 上寄せ */
  /* 上からの距離を指定 */
  padding-top: 30px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* SVG サイズ*/

.product-spinner {
  width: 156px;
  height: 103px;
  margin-left: -53px;
}

/* 表示制御 */

.t-product__list.is-loading + .t-product__loading {
  opacity: 1;
  pointer-events: auto;
}

.t-product__list.is-ready + .t-product__loading {
  opacity: 0;
}

/* 商品側フェード */

.t-product__list {
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.t-product__list.is-loading {
  opacity: 0.4;
}

.t-product__list.is-ready {
  opacity: 1;
}

/* ------------------------------
* suksuk world header
------------------------------ */

.header.suksuk {
  background-color: transparent !important;
}

.header.suksuk .header__button {
  grid-column: 3/4;
}

/* ------------------------------
* 全体マップ
------------------------------ */

.t-suksuk .container {
  width: 100%;
  height: 100dvh;
  padding: 0;
  background: url(../img/suksuk/bg-pc.svg) no-repeat center center/cover;
}

.t-suksuk .container__wrap {
  z-index: 10;
  position: absolute;
  top: 50px;
  left: 70px;
}

.t-suksuk .container__title {
  color: #fff;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1.5;
}

.t-suksuk .container__txt {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
}

.t-suksuk .container__map {
  width: 100%;
  height: 100%;
}

.t-suksuk .container #animation_container {
  -webkit-transform: translate(-50%, -50%);
  z-index: 5;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.t-suksuk .container #animation_container canvas {
  -o-object-fit: contain;
  z-index: 1;
  position: relative;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.t-suksuk .container__fukidashi {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: absolute;
  top: 50px;
  right: 30%;
  flex-direction: column;
  align-items: flex-end;
}

.t-suksuk .container__fukidashi::before,
.t-suksuk .container__fukidashi::after {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-yG);
  content: "";
}

.t-suksuk .container__fukidashi:before {
  bottom: -8px;
  left: 44%;
  width: 11px;
  height: 11px;
}

.t-suksuk .container__fukidashi:after {
  bottom: -19px;
  left: 42%;
  width: 6px;
  height: 6px;
}

.t-suksuk .container__fukidashi span {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 100px;
  background-color: var(--color-yG);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.t-suksuk .container__fukidashi span + span {
  margin-right: 20px;
}

.t-suksuk .container .floor__btn {
  -webkit-transition: 0.35s var(--transition-default);
  position: absolute;
  width: 100%;
  max-width: 220px;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  background-color: var(--color-base);
  color: #fff;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 0.7;
  text-align: center;
  transition: 0.35s var(--transition-default);
}

.t-suksuk .container .floor__btn::after {
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--color-base);
  content: "";
}

.t-suksuk .container .floor__btn.hidden {
  opacity: 0.3;
}

.t-suksuk .container .floor__btn .num {
  padding-right: 2px;
  font-size: 3.2rem;
}

.t-suksuk .container .floor__btn small {
  font-weight: 600;
  font-size: 1.4rem;
}

.t-suksuk .container .floor__btn.floor1 {
  right: 138px;
  bottom: 220px;
}

.t-suksuk .container .floor__btn.floor1::after {
  left: -28px;
  width: 28px;
}

.t-suksuk .container .floor__btn.floor2 {
  top: 220px;
  right: 138px;
}

.t-suksuk .container .floor__btn.floor2::after {
  left: -115px;
  width: 115px;
}

.t-suksuk .container .illust__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.t-suksuk .container .illust__list .illust {
  -webkit-animation: balloon 10s ease-in-out infinite alternate;
  position: absolute;
  width: 30px;
  animation: balloon 10s ease-in-out infinite alternate;
}

.t-suksuk .container .illust__list .balloon01 {
  top: 90px;
  right: 190px;
}

.t-suksuk .container .illust__list .balloon02 {
  -webkit-animation-delay: 0.3s;
  top: 30%;
  right: 80px;
  animation-delay: 0.3s;
}

.t-suksuk .container .illust__list .balloon03 {
  top: 360px;
  right: 240px;
}

.t-suksuk .container .illust__list .balloon04 {
  top: 290px;
  left: 240px;
}

.t-suksuk .container .illust__list .balloon05 {
  -webkit-animation-delay: 0.3s;
  top: 380px;
  left: 120px;
  animation-delay: 0.3s;
}

.t-suksuk .container .illust__list .balloon06 {
  top: 550px;
  left: 270px;
}

.t-suksuk .container #confettiCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.t-suksuk .container .floor__bottom {

}

.t-suksuk .container .ariballoon {
  -webkit-animation: airballoon 10s ease-in-out infinite alternate;
  position: absolute;
  bottom: 20px;
  left: 70px;
  width: 122px;
  animation: airballoon 10s ease-in-out infinite alternate;
}

.t-suksuk .c-modal__content {
  width: calc(100% - 40px);
  max-width: 560px;
  padding: 50px 30px;
  border-radius: 20px;
  background-color: #fff;
}

.t-suksuk .c-modal__close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color-ge);
  color: transparent;
}

.t-suksuk .c-modal__close::before,
.t-suksuk .c-modal__close::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
  content: "";
}

.t-suksuk .c-modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.t-suksuk .c-modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.t-suksuk .c-modal__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.t-suksuk .c-modal__title + .txt {
  font-weight: 500;
}

.t-suksuk .c-modal .js-modal-swiper {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}

.t-suksuk .c-modal .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
}

.t-suksuk .c-modal .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 14px;
}

.t-suksuk .c-modal .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 7px;
  background-color: var(--color-base);
}

.t-suksuk .c-modal .swiper-pagination-bullet-active {
  position: relative;
}

.t-suksuk .c-modal .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--color-base);
  border-radius: 50%;
  content: "";
}

/* ------------------------------
* 各フロア
------------------------------ */

.t-suksuk.floor .container #animation_container {
  left: 50%;
}

.t-suksuk .container .floor__bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
  position: absolute;
  bottom: 40px;
  left: 50%;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  gap: 20px;
  transform: translateX(-50%);
}

.t-suksuk .container .floor__bottom .c-btn01 .c-btn01__txt {
  color: var(--color-base);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
}

.t-suksuk .container .floor__bottom .c-btn01 .letter {
  color: var(--color-base);
  text-shadow: none;
}

.t-suksuk .container .floor__bottom .c-btn01 .c-btn01__arrow {
  background-color: var(--color-base);
}

.t-suksuk .container .floor__bottom .c-btn01.back {
  grid-template-columns: 45px 1fr;
  padding: 7px 25px 7px 10px;
}

.t-suksuk .container .floor__bottom .c-btn01.back .c-btn01__arrow {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.t-suksuk.floor .container .illust__list::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100dvh;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: overlay;
  content: "";
}

.t-suksuk.floor .container .button__list {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.t-suksuk.floor .container .button__list button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  z-index: 1;
  position: absolute;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 5px 25px 5px 6px;
  gap: 10px;
  border: solid 2px var(--color-r);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.t-suksuk.floor .container .button__list button::before {
  width: 30px;
  height: 30px;
  background: url(../img/common/icon-search.svg) no-repeat center center/contain;
  content: "";
}

.t-suksuk.floor .container .button__list button::after {
  -webkit-clip-path: polygon(50% 90%, 0 0, 100% 0);
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
  background-color: var(--color-r);
  content: "";
  clip-path: polygon(50% 90%, 0 0, 100% 0);
}

.t-suksuk.floor .container .button__list button[data-modal=modal01] {
  top: 330px;
  left: 394px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal02] {
  top: 170px;
  left: 624px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal03] {
  top: 330px;
  left: 654px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal04] {
  top: 470px;
  left: 604px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal05] {
  top: 320px;
  left: 904px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal06] {
  top: 380px;
  left: 434px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal07] {
  top: 250px;
  left: 674px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal08] {
  top: 390px;
  left: 654px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal09] {
  top: 500px;
  left: 614px;
}

.t-suksuk.floor .container .button__list button[data-modal=modal10] {
  top: 370px;
  left: 854px;
}

.t-suksuk.floor .c-modal__content {
  -webkit-transform: translate(0, 0);
  top: 0;
  right: 0;
  left: auto;
  width: 50%;
  max-width: inherit;
  max-width: 560px;
  height: 100dvh;
  padding: 80px 60px;
  transform: translate(0, 0);
  border-radius: 0;
}

.t-suksuk.floor .c-modal .head {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 20px;
}

.t-suksuk.floor .c-modal .head__txt {
  font-weight: 700;
  font-size: 1.4rem;
}

.t-suksuk.floor .c-modal .inner {
  height: calc(100dvh - 315px);
  padding: 0 10px 0 0;
  overflow-y: auto;
}

.t-suksuk.floor .c-modal .inner::-webkit-scrollbar {
  width: 8px;
}

.t-suksuk.floor .c-modal .inner::-webkit-scrollbar-track {
  border-radius: 100px;
  background-color: rgba(var(--color-base-rgb), 0.1);
}

.t-suksuk.floor .c-modal .inner::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: rgba(var(--color-base-rgb), 0.2);
}

.t-suksuk.floor .c-modal .inner .img {
  overflow: hidden;
  border-radius: 20px;
}

.t-suksuk.floor .c-modal .inner .img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-suksuk.floor .c-modal .inner .title {
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: dotted 2px var(--color-line);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: left;
}

.t-suksuk.floor .c-modal .c-btn01 {
  margin: 30px auto 0;
}

.t-suksuk.floor .c-modal__close {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  top: 0;
  right: 0;
  grid-template-columns: -webkit-max-content 45px;
  grid-template-columns: max-content 45px;
  align-items: center;
  width: auto;
  height: auto;
  gap: 10px;
  background-color: transparent;
  color: var(--color-base);
}

.t-suksuk.floor .c-modal__close::before,
.t-suksuk.floor .c-modal__close::after {
  content: none;
}

.t-suksuk.floor .c-modal__close .txt {
  font-weight: 500;
  font-size: 1.6rem;
}

.t-suksuk.floor .c-modal__close .cross {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-line);
}

.t-suksuk.floor .c-modal__close .cross::before {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-color: var(--color-base);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .c-navigation__item:nth-child(4n+1) a,
  .c-navigation__item:nth-child(4n+3) a,
  .c-navigation__item:nth-child(n+5):nth-child(4n+2) a,
  .c-navigation__item:nth-child(n+5):nth-child(4n+4) a {
    background-color: rgba(var(--color-y-rgb), 0.4);
  }

  .c-navigation__item:nth-child(4n+2) a,
  .c-navigation__item:nth-child(4n+4) a,
  .c-navigation__item:nth-child(n+5):nth-child(4n+1) a,
  .c-navigation__item:nth-child(n+5):nth-child(4n+3) a {
    background-color: rgba(var(--color-yG-rgb), 0.3);
  }

  .c-navigation__item:nth-of-type(1) a {
    border-radius: 30px 0 0 0;
  }

  .c-navigation__item:nth-of-type(4) a {
    border-radius: 0 30px 0 0;
  }

  .c-navigation__item:nth-of-type(5) a {
    border-radius: 0 0 0 30px;
  }

  .c-navigation__item:nth-of-type(8) a {
    border-radius: 0 0 30px 0;
  }

  .header__nav_contents {
    -webkit-transform: translateY(-50%);
    top: 50%;
    transform: translateY(-50%);
  }

  .header__nav_list li:first-of-type {
    grid-column: 1/3;
  }

  .header__nav_list li:has(.button) {
    margin-bottom: 16px;
  }

  .header__nav_list li:has(.button):nth-of-type(2),
  .header__nav_list li:has(.button):nth-of-type(3) {
    margin-top: 30px;
  }

  .header__nav_list li:has(.button):nth-of-type(4),
  .header__nav_list li:has(.button):nth-of-type(5) {
    margin-bottom: 30px;
  }

  .t-home__select__slide_item .txt {
    grid-column: 1/3;
  }

  .t-home__select__slide_item .c-btn02 {
    grid-column: 2/3;
  }

  .t-home__select__slide_img {
    grid-column: 1/3;
  }

  .t-home__about__logo_txt {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
  }

  .t-home__about__wrap::before {
    top: 0;
    left: -85px;
    width: 86px;
    height: 100%;
    background: url(../img/common/parts-wave04.svg) no-repeat center left/cover;
  }

  .t-features__intro_wrapper:first-of-type .t-features__intro_wrap {
    grid-column: 1/2;
  }

  .t-features__intro_wrapper:last-of-type .t-features__intro_wrap {
    grid-column: 2/3;
  }

  .t-features__intro_wrapper:last-of-type .t-features__intro_img {
    grid-row: 1/2;
    grid-column: 1/2;
  }

  .t-features__commitment {
    padding-bottom: 0;
  }

  .t-features__container {
    height: 700dvh;
  }

  .t-features__wrapper {
    position: sticky;
    top: 60px;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
  }

  .t-features .js-commitment-swiper .swiper-slide {
    display: grid;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
    grid-template-columns: 1fr 420px;
  }

  .t-features .js-commitment-swiper .title {
    grid-column: 1/2;
  }

  .t-features .js-commitment-swiper .txt {
    grid-row: 2/3;
    grid-column: 1/2;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding-bottom: 80px;
  }

  .t-features .js-commitment-swiper .img {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .t-side__intro__title {
    grid-column: 1/2;
  }

  .t-side__intro .txt {
    grid-column: 1/2;
  }

  .t-side__intro__img {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .t-howto__intro__link.link05 {
    grid-column: 3/4;
  }

  .t-brand__concept .inner .t-brand__concept__title,
  .t-brand__concept .inner .txt {
    grid-column: 2/3;
  }

  .t-contact__head .txt {
    text-align: center;
  }

  .t-contact__wrapper__table th,
  .t-contact__wrapper__table td {
    border: solid 1px var(--color-line);
    vertical-align: middle;
  }

  .t-contact.t-list .t-contact__wrapper__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: grid;
    grid-template-columns: 1fr 282px;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
  }

  .t-contact.t-list .t-contact__wrapper__price,
  .t-contact.t-list .t-contact__wrapper__button {
    margin-top: 0;
  }

  .t-detail {
    overflow: inherit;
  }

  .t-detail__wrapper {
    padding-top: 40px;
  }

  .t-detail__button__form.noSet .button {
    grid-row: 2/3;
    grid-column: 1/2;
  }

  .t-detail__button__form.noSet .t-detail__price {
    grid-row: 1/2;
    grid-column: 2/3;
  }

  .t-detail__contact__button .tel {
    pointer-events: none;
  }

  .t-suksuk .container .floor__btn {
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .c-navigation__item:nth-child(4n+1) a:hover,
  .c-navigation__item:nth-child(4n+3) a:hover,
  .c-navigation__item:nth-child(n+5):nth-child(4n+2) a:hover,
  .c-navigation__item:nth-child(n+5):nth-child(4n+4) a:hover {
    background-color: rgba(var(--color-y-rgb), 0.6);
  }

  .c-navigation__item:nth-child(4n+2) a:hover,
  .c-navigation__item:nth-child(4n+4) a:hover,
  .c-navigation__item:nth-child(n+5):nth-child(4n+1) a:hover,
  .c-navigation__item:nth-child(n+5):nth-child(4n+3) a:hover {
    background-color: rgba(var(--color-yG-rgb), 0.5);
  }
}

@media screen and (max-width: 1200px) {
  .c-navigation__txt {
    font-size: 1.2rem;
  }

  .header {
    gap: 30px;
  }

  .t-home__about__logo {
    gap: 60px;
  }

  .t-fabric__list__wrapper {
    grid-template-columns: 1fr 450px;
    padding: 60px;
    gap: 30px 45px;
  }

  .t-side__intro .inner {
    grid-template-columns: 1fr 400px;
    gap: 40px 60px;
  }

  .t-brand__concept .inner {
    grid-template-columns: 1fr 600px;
  }

  .t-brand__point__wrapper {
    gap: 0 60px;
  }

  .t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__wrap {
    padding-right: 40px;
  }

  .t-brand__point__wrapper:nth-of-type(even) {
    padding-left: 0;
  }

  .t-brand__point__img {
    width: 380px;
  }

  .t-brand__point__deco.deco01 {
    width: 190px;
  }

  .t-brand__point__deco.deco02 {
    top: -10px;
    width: 222px;
  }

  .t-brand__point__deco.deco03 {
    width: 150px;
  }

  .t-brand__point__line01 {
    bottom: 30px;
    width: 550px;
  }

  .t-brand__point__line02 {
    bottom: -20px;
    width: 550px;
  }

  .t-detail__contents {
    grid-template-columns: 35% 1fr;
    gap: 30px;
  }

  .t-detail__tab {
    padding: 0 8px;
  }

  .t-detail__tab__button {
    padding: 8px 10px;
    border-radius: 12px 12px 0 0;
    font-size: 1.4rem;
  }

  .t-suksuk .container__wrap {
    top: 0px;
    left: 40px;
  }

  .t-suksuk .container #animation_container {
    width: 1200px !important;
    height: 600px !important;
  }

  .t-suksuk .container__fukidashi {
    right: 20%;
  }

  .t-suksuk .container .floor__btn {
    max-width: 180px;
    padding: 10px 10px 15px;
    font-size: 2rem;
  }

  .t-suksuk .container .floor__btn .num {
    font-size: 2.6rem;
  }

  .t-suksuk .container .floor__btn small {
    font-size: 1.2rem;
  }

  .t-suksuk .container .floor__btn.floor1 {
    bottom: 180px;
  }

  .t-suksuk .container .floor__btn.floor2 {
    top: 180px;
  }

  .t-suksuk .container .floor__btn.floor2::after {
    left: -75px;
    width: 75px;
  }

  .t-suksuk .container .illust__list .illust {
    width: 20px;
  }

  .t-suksuk .container .illust__list .balloon03 {
    top: 280px;
  }

  .t-suksuk .container .illust__list .balloon04 {
    top: 160px;
  }

  .t-suksuk .container .illust__list .balloon05 {
    top: 250px;
  }

  .t-suksuk .container .illust__list .balloon06 {
    top: 360px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal01] {
    top: 240px;
    left: 324px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal02] {
    top: 116px;
    left: 504px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal03] {
    top: 240px;
    left: 532px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal04] {
    top: 350px;
    left: 504px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal05] {
    top: 240px;
    left: 724px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal06] {
    top: 280px;
    left: 364px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal07] {
    top: 190px;
    left: 549px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal08] {
    top: 290px;
    left: 532px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal09] {
    top: 380px;
    left: 504px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal10] {
    top: 270px;
    left: 694px;
  }
}

@media screen and (max-width: 1023px) {
  .tab {
    display: none !important;
  }

  body {
    font-size: 1.4rem;
  }

  .c-title01 .jp {
    font-size: 3.2rem;
  }

  .c-title01 .letter.small {
    font-size: 1.6rem;
  }

  .c-title02 .bubble {
    font-size: 1.2rem;
  }

  .c-title02 .bubble::after {
    bottom: -9px;
    width: 12px;
    height: 12px;
  }

  .c-title02 .txt {
    padding-top: 5px;
    font-size: 2.4rem;
  }

  .c-lowmv {
    margin-top: 80px;
    padding: 0 0 50px;
  }

  .c-lowmv__wrapper {
    padding: 20px;
  }

  .c-lowmv .c-title01 .en {
    font-size: 1.5rem;
  }

  .c-lowmv__role {
    right: -25%;
    width: 700px;
  }

  .c-navigation {
    padding: 80px 0 120px;
  }

  .c-navigation__bubble {
    top: -9%;
    left: -5%;
  }

  .c-navigation__icon {
    width: 70px;
    height: 70px;
  }

  .c-navigation__txt {
    font-size: 1.4rem;
    text-align: center;
  }

  .form_area .form_wrap {
    padding: 50px 30px;
  }

  .header {
    grid-template-columns: 1fr 60px;
    height: 60px;
  }

  .header:has(.header__btn.active) {
    background-color: var(--main-color);
  }

  .header:has(.header__btn.active) .header__logo {
    visibility: hidden;
    opacity: 0;
  }

  .header__logo {
    width: 170px;
  }

  .header__logo_top {
    width: 190px;
  }

  .header__logo_top a {
    padding: 15px 25px;
  }

  .header__logo_top img {
    width: 140px;
  }

  .header__list {
    display: none;
  }

  .header__button {
    width: 60px;
    height: 60px;
  }

  .header__button .inn {
    width: 30px;
    height: 25px;
  }

  .header__button .line {
    height: 3px;
  }

  .header__button .line:nth-of-type(2) {
    top: 11px;
  }

  .header__nav {
    width: calc(100% - 20px);
  }

  .header__nav_inner {
    padding: 60px 50px;
  }

  .header__nav_bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header__nav .header__button .line:first-of-type {
    top: 11px;
  }

  .header__nav .header__button .line:last-of-type {
    bottom: 11px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer__contents {
    gap: 30px;
  }

  .footer__logo {
    margin: 0 auto;
  }

  .footer__wrap {
    max-width: inherit;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .t-home__point {
    margin-top: 0;
  }

  .t-home__point .splide__track {
    padding-left: 250px !important;
  }

  .t-home__concept .inner {
    grid-template-columns: 320px 1fr;
    gap: 0;
  }

  .t-home__concept__title .jp {
    font-size: 4.5rem;
  }

  .t-home__concept .txt {
    margin-top: 34px;
    font-size: 1.6rem;
  }

  .t-home__concept .icon-circle {
    width: 69px;
    height: 69px;
  }

  .t-home__concept .icon-rectangle {
    width: 90px;
    height: 30px;
  }

  .t-home__concept .icon-triangle {
    width: 60px;
    height: 54px;
  }

  .t-home__concept .icon-quadrant {
    width: 65px;
    height: 65px;
  }

  .t-home__concept .icon-hexagon {
    width: 77px;
    height: 67px;
  }

  .t-home__concept .icon-piece {
    width: 74px;
    height: 74px;
  }

  .t-home__select::before {
    height: 460px;
  }

  .t-home__select__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-home__select .c-title01 {
    grid-column: 1/2;
  }

  .t-home__select__wrapper {
    max-width: 480px;
    height: 450px;
  }

  .t-home__select__slide {
    width: 480px;
    height: 2320px;
  }

  .t-home__select__slide_title {
    font-size: 2.4rem;
  }

  .t-home__select__slide_height {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    font-size: 1.4rem;
  }

  .t-home__world {
    padding: 90px 0 160px;
  }

  .t-home__world .inner {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }

  .t-home__about {
    padding: 80px 0;
  }

  .t-home__about__wrapper {
    grid-template-columns: 1fr 390px;
  }

  .t-home__about__logo {
    gap: 30px;
  }

  .t-home__about__logo_img {
    max-width: 260px;
  }

  .t-home__about__wrap {
    padding: 60px 40px 120px;
  }

  .t-home__about__wrap::before {
    left: -65px;
    width: 66px;
  }

  .t-home__about__wrap .c-title01 {
    margin-bottom: 30px;
  }

  .t-home__about__wrap .txt {
    margin-bottom: 30px;
  }

  .t-home__news__item_title {
    font-size: 1.4rem;
  }

  .t-fabric__sample {
    margin-top: 200px;
  }

  .t-fabric__sample__deco {
    top: -112px;
  }

  .t-fabric__sample__deco img {
    width: 324px;
  }

  .t-fabric__sample .c-title01 {
    margin-bottom: 30px;
  }

  .t-fabric__sample__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-fabric__list::before {
    top: calc(343px - 11vw);
  }

  .t-fabric__list::after {
    height: calc(100% - 343px);
  }

  .t-fabric__list__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-fabric__list__wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .t-fabric__list__color {
    grid-row: 3/4;
    grid-column: 1/2;
  }

  .t-side__intro .inner {
    grid-template-columns: 1fr 360px;
  }

  .t-howto__intro__wrapper {
    margin-top: 40px;
    padding: 30px;
  }

  .t-howto__intro__list {
    gap: 10px;
  }

  .t-howto__intro__link .list {
    grid-template-columns: 1fr;
  }

  .t-brand__mv {
    height: 820px;
  }

  .t-brand__mv__txt {
    font-size: 4.8rem;
  }

  .t-brand__mv__item.item01 {
    top: 74px;
    left: 290px;
    width: 80px;
  }

  .t-brand__mv__item.item02 {
    left: 198px;
    width: 255px;
  }

  .t-brand__mv__item.item03 {
    bottom: 27px;
    left: 123px;
    width: 400px;
  }

  .t-brand__mv__item.item04 {
    top: -41px;
    left: 430px;
    width: 210px;
  }

  .t-brand__mv__item.item05 {
    left: 380px;
    width: 150px;
  }

  .t-brand__mv__item.item06 {
    top: -16px;
    right: 494px;
    width: 110px;
  }

  .t-brand__mv__item.item07 {
    right: 250px;
    width: 296px;
  }

  .t-brand__mv__item.item08 {
    right: 304px;
    width: 125px;
  }

  .t-brand__mv__item.item09 {
    right: 280px;
    bottom: 100px;
    width: 250px;
  }

  .t-brand__concept {
    padding: 110px 0 460px;
  }

  .t-brand__concept .inner {
    grid-template-columns: 1fr;
    max-width: 850px;
  }

  .t-brand__concept .inner .t-brand__concept__title,
  .t-brand__concept .inner .txt {
    grid-column: 1/2 !important;
  }

  .t-brand__concept__img .img01 {
    top: 10px;
    left: 43%;
    width: 320px;
  }

  .t-brand__concept__img .img02 {
    top: 266px;
    right: 290px;
    width: 220px;
  }

  .t-brand__concept__img .img03 {
    bottom: 120px;
    left: 380px;
  }

  .t-brand__concept__img .img04 {
    -webkit-transform: rotate(10deg);
    top: -30px;
    right: 315px;
    width: 157px;
    transform: rotate(10deg);
  }

  .t-brand__concept__img .img05 {
    right: 32%;
    bottom: 284px;
    width: 149px;
  }

  .t-brand__concept__img .item01 {
    width: 110px;
  }

  .t-brand__concept__img .item02 {
    width: 98px;
  }

  .t-brand__concept__img .item03 {
    bottom: -40px;
    width: 110px;
  }

  .t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__img {
    padding: 0 30px 30px 0;
  }

  .t-brand__point__wrapper:nth-of-type(even) .t-brand__point__img {
    padding: 0 0 30px 30px;
  }

  .t-brand__point__title {
    margin-bottom: 30px;
    gap: 0;
    font-size: 3.6rem;
  }

  .t-brand__point__title .num {
    font-size: 2rem;
  }

  .t-brand__point__sub {
    font-size: 1.8rem;
  }

  .t-brand__point__sub .line.tabSp {
    display: block;
  }

  .t-brand__point__sub .line.tabPc {
    display: none;
  }

  .t-brand__point__img {
    width: 280px;
  }

  .t-brand__point__img::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }

  .t-brand__point__img .bg {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }

  .t-brand__point__deco.deco01 {
    width: 130px;
  }

  .t-brand__point__deco.deco02 {
    left: 40%;
    width: 152px;
  }

  .t-brand__point__deco.deco03 {
    width: 100px;
  }

  .t-brand__point__line01 {
    right: 0;
    bottom: 0;
    left: 0;
    width: 480px;
    margin: auto;
  }

  .t-brand__point__line02 {
    bottom: 20px;
    width: 480px;
  }

  .t-contact__product {
    font-size: 1.8rem;
  }

  .t-contact__wrapper__table th,
  .t-contact__wrapper__table td {
    padding: 10px;
  }

  .t-contact__wrapper__table thead th:first-of-type,
  .t-contact__wrapper__table thead th:last-of-type {
    width: 52px;
  }

  .t-contact__wrapper__table thead th.w100 {
    width: 70px;
  }

  .t-contact__wrapper__table thead th.w120 {
    width: 100px;
  }

  .t-contact__wrapper__table thead th.w160 {
    width: 110px;
  }

  .t-product__filter .main_category {
    gap: 5px;
  }

  .t-product__filter .tab__contents.price label {
    width: auto;
  }

  .t-product__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .t-detail__contents {
    display: block;
  }

  .t-detail__panel {
    margin-bottom: 30px;
  }

  .t-detail__tab {
    padding: 0 13px;
  }

  .t-detail__tab__button {
    padding: 5px 10px;
    font-size: 1.2rem;
  }

  .simulation__drawing .square .piece {
    font-size: 1.4rem;
  }

  .simulation__drawing .circle .piece-button-num {
    font-size: 1.4rem;
  }

  .t-suksuk .container #animation_container {
    left: 38%;
  }

  .t-suksuk .container .ariballoon {
    bottom: 10px;
    left: 30px;
    width: 82px;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  section {
    padding: 80px 0;
  }

  .c-bgTxt__inn {
    width: 2832px;
  }

  .c-bgTxt img {
    width: 1416px;
    padding-right: 60px;
  }

  .c-title01 .jp {
    font-size: 2.6rem;
  }

  .c-title01 .en {
    font-size: 1.2rem;
  }

  .c-title01 .letter.small {
    font-size: 1.4rem;
  }

  .c-title01__fukidashi {
    font-size: 1.2rem;
  }

  .c-title03 {
    grid-template-columns: 45px 1fr;
  }

  .c-title03 .txt {
    font-size: 2.4rem;
  }

  .c-title04 {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }

  .c-lowmv__wrapper {
    min-height: 220px;
  }

  .c-lowmv .c-title01 .en {
    font-size: 1.2rem;
  }

  .c-lowmv__role {
    right: -55%;
    bottom: 190px;
    width: 370px;
  }

  .c-lowmv__anim {
    left: inherit;
    width: clamp(606px, 161.6vw, 1000px) !important;
    height: clamp(163px, 43.467vw, 273px) !important;
  }

  .c-fixNavigation {
    width: calc(100% - 40px);
  }

  .c-fixNavigation__txt {
    font-size: 1rem;
  }

  .c-navigation__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-navigation__item:nth-child(4n+1) a,
  .c-navigation__item:nth-child(4n+4) a {
    background-color: rgba(var(--color-y-rgb), 0.4);
  }

  .c-navigation__item:nth-child(4n+2) a,
  .c-navigation__item:nth-child(4n+3) a {
    background-color: rgba(var(--color-yG-rgb), 0.3);
  }

  .c-navigation__item:nth-of-type(1) a {
    border-radius: 20px 0 0 0;
  }

  .c-navigation__item:nth-of-type(2) a {
    border-radius: 0 20px 0 0;
  }

  .c-navigation__item:nth-of-type(7) a {
    border-radius: 0 0 0 20px;
  }

  .c-navigation__item:nth-of-type(8) a {
    border-radius: 0 0 20px 0;
  }

  .c-navigation__item a {
    padding: 30px 20px;
    gap: 12px;
  }

  .c-navigation__bubble {
    top: -15%;
    left: -40px;
    margin: auto;
  }

  .c-navigation__bubble span {
    font-size: 1rem;
  }

  .c-product__title {
    font-size: 1.4rem;
  }

  .c-pager .page-numbers {
    gap: 5px;
  }

  .c-pager li:has(.prev) {
    margin-right: 20px;
  }

  .c-pager li:has(.next) {
    margin-left: 20px;
  }

  .form_area .form_wrap {
    padding: 0;
    background-color: transparent;
  }

  .form_area .form_wrap th {
    display: block;
    width: 100%;
    padding: 14px 10px;
    background-color: var(--color-bg05);
    font-size: 1.4rem;
    text-align: center;
  }

  .form_area .form_wrap td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }

  .form_area .form_wrap input[type=email],
  .form_area .form_wrap input[type=text],
  .form_area .form_wrap textarea {
    font-size: 1.4rem;
  }

  .form_area .form_wrap input[type=email]::-webkit-input-placeholder,
  .form_area .form_wrap input[type=text]::-webkit-input-placeholder,
  .form_area .form_wrap textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }

  .form_area .form_wrap input[type=email]::-moz-placeholder,
  .form_area .form_wrap input[type=text]::-moz-placeholder,
  .form_area .form_wrap textarea::-moz-placeholder {
    font-size: 1.4rem;
  }

  .form_area .form_wrap input[type=email]:-ms-input-placeholder,
  .form_area .form_wrap input[type=text]:-ms-input-placeholder,
  .form_area .form_wrap textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }

  .form_area .form_wrap input[type=email]::-ms-input-placeholder,
  .form_area .form_wrap input[type=text]::-ms-input-placeholder,
  .form_area .form_wrap textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }

  .form_area .form_wrap input[type=email]::placeholder,
  .form_area .form_wrap input[type=text]::placeholder,
  .form_area .form_wrap textarea::placeholder {
    font-size: 1.4rem;
  }

  .form_area .form_wrap textarea {
    height: 140px;
  }

  .form_area .form_wrap .addressbox_num {
    grid-template-columns: 1fr auto 1fr;
  }

  .form_area .form_wrap select {
    font-size: 1.4rem;
  }

  .form_area .form_wrap .addressbox_wrap {
    grid-template-columns: auto 170px;
  }

  .form_area .is-error {
    font-size: 1.2rem;
  }

  .form_area .btn-area {
    grid-template-columns: 1fr;
  }

  .header__nav::-webkit-scrollbar {
    width: 8px;
    padding-right: 10px;
    background-color: transparent;
  }

  .header__nav_inner {
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    padding: 80px 40px;
  }

  .header__nav_list {
    grid-template-columns: 1fr;
  }

  .header__nav_list li:has(.button) {
    margin-bottom: 16px;
  }

  .header__nav_list li:has(.button):nth-of-type(2) {
    margin-top: 10px;
  }

  .header__nav_list li:has(.button):nth-of-type(5) {
    margin-bottom: 10px;
  }

  .header__nav_list a.button {
    grid-template-columns: 33px 1fr;
  }

  .header__nav_list a.button::before {
    width: 33px;
    height: 33px;
  }

  .header__nav_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }

  .footer__contents {
    grid-template-columns: 1fr;
  }

  .footer__logo {
    width: 270px;
  }

  .footer__calendar {
    max-width: 270px;
    margin: 0 auto;
  }

  .footer__wrap {
    grid-template-columns: 1fr;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__list li {
    place-content: center;
  }

  .footer__banner {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 10px;
  }

  .footer__bottom {
    margin-top: 40px;
    padding-top: 30px;
    gap: 50px;
  }

  .footer__bottom_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .t-home .loading {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-home .loading__col {
    grid-template-columns: 1fr;
  }

  .t-home__mv {
    min-height: 580px;
  }

  .t-home__mv__img {
    grid-template-columns: 1fr;
  }

  .t-home__mv__img_txt {
    -webkit-transform: translate(0, -50%);
    top: 50%;
    left: 20px;
    width: 100%;
    max-width: 190px;
    transform: translate(0, -50%);
  }

  .t-home__mv__img img {
    -o-object-position: right;
    object-position: right;
  }

  .t-home__mv__letter {
    top: 40%;
  }

  .t-home__mv__letter_row:has(img) {
    gap: 16px;
  }

  .t-home__mv__letter_row + .mv__letter_row {
    margin-top: 10px;
  }

  .t-home__mv__letter span {
    font-size: 48px;
  }

  .t-home__mv .letter-wa {
    width: 34px;
  }

  .t-home__mv .letter-ku {
    width: 35px;
  }

  .t-home__mv__sub {
    margin-top: 20px;
    font-size: 1.6rem;
  }

  .t-home__mv__banner {
    right: 10px;
    bottom: 100px;
    width: 134px;
  }

  .t-home__point .splide__track {
    padding-left: 0 !important;
  }

  .t-home__point__item .txt {
    top: -100px;
    width: 210px;
  }

  .t-home__point__item .img {
    width: 150px;
  }

  .t-home__point__item.icon .icon {
    width: 45px;
    height: 45px;
  }

  .t-home__concept {
    padding: 84px 0 200px;
  }

  .t-home__concept .inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .t-home__concept__title .en {
    font-size: 1.4rem;
  }

  .t-home__concept__title .jp {
    font-size: 3.6rem;
  }

  .t-home__concept .txt {
    margin-top: 0;
    font-size: 1.4rem;
  }

  .t-home__concept .icon-circle {
    bottom: 100px;
    left: -3px;
  }

  .t-home__concept .icon-rectangle {
    top: 60px;
    right: 100px;
    left: 50%;
  }

  .t-home__concept .icon-triangle {
    right: 100px;
    bottom: 80px;
    left: 50%;
  }

  .t-home__concept .icon-quadrant {
    right: 0;
    bottom: 150px;
  }

  .t-home__concept .icon-hexagon {
    top: 140px;
    right: -10px;
  }

  .t-home__concept .icon-piece {
    top: 35%;
    right: 30px;
    bottom: inherit;
  }

  .t-home__select::before {
    width: 768px;
    height: 375px;
  }

  .t-home__select.lion::before {
    background: url(../img/top/sp/img-selectBg_lion.webp) no-repeat center bottom/contain;
  }

  .t-home__select.squirrel::before {
    background: url(../img/top/sp/img-selectBg_squirrel.webp) no-repeat center bottom/contain;
  }

  .t-home__select.bambi::before {
    background: url(../img/top/sp/img-selectBg_bambi.webp) no-repeat center bottom/contain;
  }

  .t-home__select__wrapper {
    max-width: 335px;
    height: 400px;
    margin: 100px auto 0;
  }

  .t-home__select__slide {
    width: 335px;
    height: 1500px;
  }

  .t-home__select__slide_item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .t-home__select__slide_img {
    margin-bottom: 10px;
    padding: 0 20px;
  }

  .t-home__select__slide_height {
    margin-bottom: 10px;
    margin-left: inherit;
  }

  .t-home__select__slide_button {
    top: 34px;
  }

  .t-home__select__slide_button.prev {
    left: -5px;
  }

  .t-home__select__slide_button.next {
    right: -5px;
  }

  .t-home__select__slide_button .icon {
    width: 20px;
    height: 23px;
  }

  .t-home__size__tab {
    margin: 30px auto 0;
    padding: 0 10px;
    gap: 5px;
  }

  .t-home__size__button {
    font-size: 1.4rem;
  }

  .t-home__size__panel_inn {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 33px 3px 50px 3px;
  }

  .t-home__size .swiper-slide {
    width: 235px;
  }

  .t-home__world {
    margin-top: 40px;
    padding: 80px 0 500px;
  }

  .t-home__world .inner {
    grid-template-columns: 1fr;
  }

  .t-home__world .c-title01,
  .t-home__world .txt,
  .t-home__world .c-btn01 {
    grid-column: 1/2;
  }

  .t-home__world .c-btn01 {
    margin: 10px auto 0;
  }

  .t-home__world__img {
    -webkit-transform: translateX(-50%);
    top: inherit;
    bottom: 0;
    left: 40%;
    width: 768px;
    height: 450px;
    transform: translateX(-50%);
  }

  .t-home__about {
    padding: 60px 0;
  }

  .t-home__about__wrapper {
    grid-template-columns: 1fr;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .t-home__about__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 50px 30px 65px;
  }

  .t-home__about__logo_img {
    max-width: 194px;
  }

  .t-home__about__wrap {
    padding: 60px 20px;
  }

  .t-home__about__wrap::before {
    -webkit-mask: url(../img/common/parts-wave01.svg) no-repeat center top/100%;
    position: absolute;
    top: -11vw;
    left: 0;
    width: 100%;
    height: 11.411vw;
    background-color: var(--color-yG);
    mask: url(../img/common/parts-wave01.svg) no-repeat center top/100%;
  }

  .t-home__about__wrap .c-title01 .letter {
    font-size: 3rem;
  }

  .t-home__about__button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    position: relative;
    right: inherit;
    bottom: inherit;
    flex-direction: column;
    width: 100%;
  }

  .t-home__slide .splide__slide.tall {
    width: 152px !important;
  }

  .t-home__slide .splide__slide:not(.tall) {
    width: 243px !important;
  }

  .t-home__news {
    margin-top: 0;
    padding: 60px 0;
  }

  .t-home__news__list {
    margin-top: 30px;
  }

  .t-home__movie {
    height: 510px;
  }

  .t-features__intro {
    padding-bottom: 120px;
  }

  .t-features__intro_wrapper:first-of-type {
    grid-template-columns: 1fr;
  }

  .t-features__intro_wrapper:first-of-type .t-features__intro_img {
    padding: 0 0 30px 30px;
  }

  .t-features__intro_wrapper:last-of-type {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .t-features__intro_wrapper:last-of-type .t-features__intro_img {
    padding: 0 30px 30px 0;
  }

  .t-features__intro_logo {
    width: 260px;
  }

  .t-features__intro_title {
    margin-bottom: 30px;
  }

  .t-features__intro_title span {
    font-size: 2.4rem;
  }

  .t-features__intro .c-btn01 {
    margin-top: 30px;
  }

  .t-features__intro_img {
    margin-top: 40px;
  }

  .t-features__intro_img::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }

  .t-features__intro_img img:last-of-type {
    width: calc(100% - 30px);
  }

  .t-features__commitment {
    overflow: hidden;
  }

  .t-features__wrapper {
    position: relative;
    padding: 0 50px 0 20px;
  }

  .t-features__pagination {
    -webkit-transform: translate(0);
    top: 0;
    right: 20px;
    gap: 35px;
    transform: translate(0);
  }

  .t-features__pagination .pagination-item {
    font-size: 1.4rem;
  }

  .t-features__pagination .pagination-item:not(.active) {
    width: 12px;
    height: 12px;
  }

  .t-features__pagination .pagination-item + .pagination-item::before {
    top: -25px;
    height: 15px;
  }

  .t-features__wrap {
    margin-top: 70px;
  }

  .t-features__wrap__inner {
    -webkit-transform: translate(0, 0);
    position: relative;
    top: inherit;
    left: inherit;
    padding: 60px 20px 40px;
    transform: translate(0, 0);
  }

  .t-features__wrap .num {
    left: -10px;
    width: 87px;
    height: 87px;
    font-size: 1rem;
  }

  .t-features__wrap .num .en {
    font-size: 3.2rem;
  }

  .t-features__wrap__title {
    margin-bottom: 25px;
    font-size: 2rem;
  }

  .t-features .js-commitment-swiper .title {
    margin: 20px 0 10px;
    font-size: 1.8rem;
  }

  .t-features .js-commitment-swiper .box {
    margin-top: 15px;
  }

  .t-features .js-commitment-swiper .swiper-pagination {
    position: relative;
    width: 100%;
    margin-top: 15px;
  }

  .t-features .js-commitment-swiper .swiper-pagination-bullet {
    width: 35px;
    height: 35px;
  }

  .t-features .js-commitment-swiper .swiper-pagination-bullet-active {
    font-size: 1, 4rem;
  }

  .t-features__list {
    margin-top: 30px;
  }

  .t-features__list::before {
    left: 24px;
  }

  .t-features__item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .t-features__item .num {
    width: 50px;
    height: 50px;
  }

  .t-features__item .wrap {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
  }

  .t-features__item .title {
    font-size: 1.8rem;
  }

  .t-fabric__sample {
    margin-top: 140px;
    padding: 25px 0 80px;
  }

  .t-fabric__sample__deco img {
    width: 253px;
  }

  .t-fabric__sample__list {
    margin-top: 30px;
    gap: 10px;
  }

  .t-fabric__sample__item {
    padding: 10px 10px 15px;
  }

  .t-fabric__sample__item .txt {
    font-size: 1.2rem;
  }

  .t-fabric__sample__thumb {
    margin-bottom: 10px;
  }

  .t-fabric__sample__thumb .thumb {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .t-fabric__sample__thumb .thumb::after {
    width: 20px;
    height: 20px;
    border-radius: 5px 0 0 0;
  }

  .t-fabric__sample__thumb .color li {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .t-fabric__sample__thumb .color li + li {
    margin-left: -4px;
  }

  .t-fabric__sample__title {
    font-size: 1.4rem;
  }

  .t-fabric__list__wrapper {
    margin-top: 30px;
    padding: 40px 20px;
  }

  .t-fabric__list__color {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .t-side__intro {
    padding: 40px 0 0;
  }

  .t-side__intro .inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-side__compare .c-title03 {
    margin: 30px 0;
  }

  .t-side__compare__list {
    grid-template-columns: 1fr;
  }

  .t-side__compare__list + .c-title03 {
    margin-top: 60px;
  }

  .t-side__compare__item .title {
    font-size: 1.8rem;
  }

  .t-side__compare__item .title small {
    font-size: 1.2rem;
  }

  .t-guide__contents {
    padding-top: 40px;
  }

  .t-guide__contents__wrapper {
    margin: 30px auto 60px;
  }

  .t-guide__contents__wrap + .t-guide__contents__wrap {
    margin-top: 50px;
  }

  .t-guide__contents__title {
    margin-top: 40px;
    font-size: 1.8rem;
  }

  .t-guide__contents .img-estimate {
    margin: 30px auto 0;
  }

  .t-guide__contents .img-warranty {
    margin: 30px auto 0;
  }

  .t-howto__intro {
    padding: 60px 0 0;
  }

  .t-howto__intro__wrapper {
    display: grid;
    grid-template-columns: 45px 1fr;
    width: 100vw;
    margin: 60px calc(50% - 50vw) 0;
    padding: 60px 20px;
    gap: 14px;
  }

  .t-howto__intro__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .t-howto__intro__line::after {
    right: 0;
    width: 8px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--color-o)), to(var(--color-r)));
    background: linear-gradient(var(--color-o), var(--color-r));
  }

  .t-howto__intro__txt {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    width: 100%;
    padding: 19px 10px;
    letter-spacing: 0.2em;
    writing-mode: vertical-lr;
  }

  .t-howto__intro__list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .t-howto__intro__link .title {
    padding-right: 28px;
    font-size: 1.6rem;
  }

  .t-howto__intro__link .title::before {
    width: 24px;
    height: 24px;
  }

  .t-howto__intro__link .title::after {
    right: 8px;
    width: 8px;
    height: 8px;
  }

  .t-howto__intro__link .list {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-howto__intro__link .list li {
    padding: 4px 2px 7px;
  }

  .t-howto__container__wrapper + .t-howto__container__wrapper {
    position: relative;
    margin-top: 60px;
    padding-top: 60px;
  }

  .t-howto__container__wrapper + .t-howto__container__wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-line);
    content: "";
  }

  .t-howto__container__wrapper .c-title03 {
    margin-bottom: 30px;
  }

  .t-howto__container__wrapper .c-title03 .txt {
    font-size: 2.2rem;
  }

  .t-howto__container__wrapper .t-howto__container__flow + .c-title04 {
    margin-bottom: 30px;
  }

  .t-howto__container__flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }

  .t-howto__container__flow .img::before {
    width: 21px;
    height: 21px;
    padding: 0;
    font-size: 1.4rem;
  }

  .t-howto__container__col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-howto__container__col .wrap .img {
    gap: 10px;
  }

  .t-howto__container__col .wrap figure {
    width: calc(50% - 5px);
    max-width: inherit;
  }

  .t-howto__container__col .wrap figcaption {
    font-size: 1.2rem;
  }

  .t-howto__video {
    margin-top: 67px;
    padding: 40px 20px;
  }

  .t-howto__video .title {
    top: -17px;
    padding: 0 15px;
    gap: 10px;
  }

  .t-howto__video .title::before,
  .t-howto__video .title::after {
    height: 28px;
  }

  .t-howto__video .title .icon {
    width: 34px;
  }

  .t-howto__video .title .txt {
    font-size: 2rem;
  }

  .t-howto__video__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .t-howto__video__name {
    font-size: 1.6rem;
  }

  .t-brand__mv {
    height: 650px;
  }

  .t-brand__mv .inner {
    padding-top: 30px;
    padding-bottom: 0;
    gap: 25px;
  }

  .t-brand__mv__logo {
    width: 190px;
  }

  .t-brand__mv__txt {
    font-size: 2.4rem;
  }

  .t-brand__mv__list {
    width: 375px;
  }

  .t-brand__mv__item.item01 {
    top: 74px;
    left: -39px;
    width: 104px;
  }

  .t-brand__mv__item.item02 {
    left: -132px;
    width: 192px;
  }

  .t-brand__mv__item.item03 {
    left: -40px;
    width: 224px;
  }

  .t-brand__mv__item.item04 {
    top: -36px;
    left: 170px;
    width: 145px;
  }

  .t-brand__mv__item.item05 {
    top: 170px;
    left: 20px;
    width: 113px;
  }

  .t-brand__mv__item.item06 {
    -webkit-filter: blur(3px);
    top: 84px;
    right: 198px;
    width: 62px;
    filter: blur(3px);
  }

  .t-brand__mv__item.item07 {
    top: 90px;
    right: -40px;
    width: 236px;
  }

  .t-brand__mv__item.item08 {
    right: -22px;
    width: 100px;
  }

  .t-brand__mv__item.item09 {
    right: -65px;
    bottom: 100px;
    width: 166px;
  }

  .t-brand__concept {
    padding: 110px 0 577px;
  }

  .t-brand__concept__rolling {
    width: 1260px;
  }

  .t-brand__concept .inner {
    max-width: 500px;
  }

  .t-brand__concept__title {
    margin-bottom: 60px;
  }

  .t-brand__concept__title .en {
    font-size: 1.4rem;
  }

  .t-brand__concept__title .title {
    margin-top: 10px;
    font-size: 3.6rem;
  }

  .t-brand__concept__img {
    width: 100%;
    max-width: 500px;
  }

  .t-brand__concept__img .img01 {
    top: auto;
    right: 0;
    bottom: 278px;
    left: -40px;
    width: 282px;
    margin: auto;
  }

  .t-brand__concept__img .img02 {
    top: 146px;
    right: 20px;
    width: 131px;
  }

  .t-brand__concept__img .img03 {
    bottom: 120px;
    left: 20px;
    width: 143px;
  }

  .t-brand__concept__img .img04 {
    top: 60px;
    right: 26%;
    width: 133px;
  }

  .t-brand__concept__img .img05 {
    right: 20px;
    bottom: 164px;
    width: 103px;
  }

  .t-brand__concept__img .item01 {
    width: 82px;
  }

  .t-brand__concept__img .item02 {
    width: 92px;
  }

  .t-brand__concept__img .item03 {
    bottom: -30px;
    left: 17px;
    width: 71px;
  }

  .t-brand__concept__logo {
    bottom: -90px;
    width: 190px;
  }

  .t-brand__point {
    padding: 150px 0 140px;
  }

  .t-brand__point__bg {
    width: 100%;
  }

  .t-brand__point__bg .bg01 {
    top: 28.5%;
    right: -208px;
    width: 476px;
  }

  .t-brand__point__bg .bg02 {
    bottom: 27.5%;
    left: -217px;
    width: 476px;
  }

  .t-brand__point__wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 40px;
  }

  .t-brand__point__wrapper:not(:last-of-type) {
    padding-bottom: min(73.333vw, 380px);
  }

  .t-brand__point__wrapper:nth-of-type(odd) .t-brand__point__wrap {
    padding: 0;
  }

  .t-brand__point__sub {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }

  .t-brand__point__sub .line {
    padding: 3px 12px 6px;
  }

  .t-brand__point__img {
    width: 100%;
    max-width: 500px;
  }

  .t-brand__point__deco.deco01 {
    width: 116px;
  }

  .t-brand__point__deco.deco02 {
    top: -60px;
    right: 0;
    left: auto;
    width: 162px;
  }

  .t-brand__point__deco.deco03 {
    width: 92px;
  }

  .t-brand__point__line01 {
    bottom: 50px;
    width: 100%;
    max-width: 500px;
  }

  .t-brand__point__line02 {
    bottom: 70px;
    width: 100%;
    max-width: 500px;
  }

  .t-faq__contents {
    padding-top: 40px;
  }

  .t-faq__contents__link {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .t-faq__contents__link a {
    padding: 12px 10px 20px;
    font-size: 1.2rem;
  }

  .t-faq__contents__link a::after {
    top: auto;
    right: 0;
    bottom: 5px;
    left: 0;
  }

  .t-faq__contents__wrapper {
    padding-top: 60px;
  }

  .t-faq__contents__wrapper + .t-faq__contents__wrapper {
    padding-top: 80px;
  }

  .t-faq__contents__faq button {
    grid-template-columns: 40px 1fr 40px;
    gap: 10px;
    font-size: 1.8rem;
  }

  .t-faq__contents__faq button::before,
  .t-faq__contents__faq button::after {
    right: 30px;
    width: 18px;
  }

  .t-faq__contents__faq .icon {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .t-faq__contents__answer {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .t-news__detail article {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 60px 20px;
  }

  .t-news__detail__title {
    font-size: 2.4rem;
  }

  .t-news__detail__pager {
    margin: 40px auto 0;
  }

  .t-news__detail__link {
    gap: 15px;
  }

  .t-contact__contents {
    padding: 40px 0 80px;
  }

  .t-contact__flow {
    grid-template-columns: repeat(3, 60px);
    margin: 0 auto 30px;
    gap: 40px;
  }

  .t-contact__flow__item {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .t-contact__product {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: left;
  }

  .t-contact.thanks .t-contact__title {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }

  .t-contact.thanks .t-contact__title + .txt {
    text-align: left;
  }

  .t-contact__wrapper__table th,
  .t-contact__wrapper__table td {
    padding: 0;
  }

  .t-contact__wrapper__table tbody tr {
    display: grid;
    grid-template-columns: 1fr 100px;
    width: 100%;
  }

  .t-contact__wrapper__table tbody tr + tr {
    margin-top: 40px;
  }

  .t-contact__wrapper__table tbody td {
    display: block;
  }

  .t-contact__wrapper__table tbody td.count {
    grid-column: 1/3;
    padding: 6px;
    border-top: solid 1px var(--color-line);
    border-bottom: solid 1px var(--color-line);
    background-color: var(--color-bg03);
    font-weight: 500;
    text-align: center;
  }

  .t-contact__wrapper__table tbody td.img {
    grid-column: 1/3;
    margin: 15px 0 20px;
  }

  .t-contact__wrapper__table tbody td.img .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .t-contact__wrapper__table tbody td.img img {
    margin: 0;
  }

  .t-contact__wrapper__table tbody td.title {
    grid-column: 1/3;
    margin: 0 0 20px;
  }

  .t-contact__wrapper__table tbody td.number {
    grid-column: 1/3;
    padding: 20px 20px 10px 20px;
    background-color: var(--color-bg05);
  }

  .t-contact__wrapper__table tbody td.size {
    grid-column: 1/3;
    padding: 10px 20px;
    background-color: var(--color-bg05);
  }

  .t-contact__wrapper__table tbody td.color {
    grid-column: 1/3;
    padding: 10px 20px 20px 20px;
    background-color: var(--color-bg05);
  }

  .t-contact__wrapper__table tbody td.price {
    margin-top: 30px;
  }

  .t-contact__wrapper__table tbody td.price span {
    font-weight: 500;
  }

  .t-contact__wrapper__table tbody td.price small {
    font-size: 1rem;
  }

  .t-contact__wrapper__table tbody td .label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 1.2rem;
    opacity: 0.3;
  }

  .t-contact__wrapper__table tbody td.quantity {
    margin-top: 30px;
  }

  .t-contact__wrapper__table tbody td.quantity span {
    display: inline-block;
    padding-right: 35px;
  }

  .t-contact__wrapper__table .center {
    text-align: left;
  }

  .t-contact__wrapper__price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px var(--color-line);
    font-size: 2.4rem;
  }

  .t-contact__wrapper__price span {
    font-size: 1.4rem;
  }

  .t-contact__wrapper__button {
    margin: 30px auto 0;
  }

  .t-contact.t-list .t-contact__wrapper__table .quantity {
    display: grid;
    grid-template-columns: 1fr 60px;
  }

  .t-contact.t-list .t-contact__wrapper__table .quantity span {
    padding: 0;
  }

  .t-contact.t-list .t-contact__wrapper__table .quantity input {
    padding: 5px 0;
  }

  .t-contact.t-list .t-contact__wrapper__table .quantity .delete {
    grid-row: 2/3;
    grid-column: 2/3;
  }

  .t-law__contents {
    padding: 40px 0 80px;
  }

  .t-law__list {
    grid-template-columns: 1fr;
  }

  .t-law__list__title,
  .t-law__list__detail {
    padding: 5px 20px 25px;
  }

  .t-law__list__title {
    padding: 25px 20px 0;
    border-bottom: none !important;
  }

  .t-privacy__contents {
    padding: 40px 0 80px;
  }

  .t-privacy__wrap {
    margin-top: 60px;
  }

  .t-privacy__title {
    font-size: 2.2rem;
  }

  .t-privacy__sub {
    margin: 30px 0 10px;
    font-size: 1.6rem;
  }

  .t-privacy__list {
    margin-top: 30px;
  }

  .t-product__contents {
    padding: 123px 0 0;
  }

  .t-product__filter__head {
    grid-template-columns: 1fr 76px 110px 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .t-product__filter__head::before {
    -webkit-transition: 0.25s var(--transition-default);
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background-color: var(--color-line);
    content: "";
    opacity: 0;
    transition: 0.25s var(--transition-default);
  }

  .t-product__filter__head:has(.t-product__filter__btn.active)::before {
    opacity: 1;
  }

  .t-product__filter__num {
    font-size: 1.2rem;
  }

  .t-product__filter__num .num {
    font-size: 2.4rem;
  }

  .t-product__filter__btn {
    font-size: 1.2rem;
  }

  .t-product__filter__wrap {
    -ms-flex-wrap: wrap;
    grid-row: 2/3;
    grid-column: 1/5;
    flex-wrap: wrap;
    padding-right: 0;
    gap: 15px 20px;
  }

  .t-product__filter__txt {
    padding-bottom: 5px;
    overflow-x: scroll;
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .t-product__filter__txt::-webkit-scrollbar {
    height: 5px;
  }

  .t-product__filter__txt::-webkit-scrollbar-thumb {
    background-color: rgba(var(--color-base-rgb), 0.1);
  }

  .t-product__filter__content {
    padding: 20px 0 40px;
  }

  .t-product__filter__content::-webkit-scrollbar {
    width: 8px;
  }

  .t-product__filter__content::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--color-base-rgb), 0.1);
  }

  .t-product__filter__content.active {
    position: relative;
  }

  .t-product__filter__content__search {
    max-height: 300px;
    padding: 20px 0 40px;
    overflow-y: scroll;
  }

  .t-product__filter__content__search::-webkit-scrollbar {
    width: 8px;
  }

  .t-product__filter__content__search::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(var(--color-base-rgb), 0.1);
  }

  .t-product__filter__content__search.active {
    position: relative;
  }

  .t-product__filter .main_category {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-product__filter .main_category .txt {
    font-size: 1.2rem;
  }

  .t-product__filter .tab__contents.height label,
  .t-product__filter .tab__contents.forme label,
  .t-product__filter .tab__contents.size label,
  .t-product__filter .tab__contents.typeParts label,
  .t-product__filter .tab__contents.typeYugu label,
  .t-product__filter .tab__contents.typeFurniture label {
    width: calc(50% - 5px);
  }

  .t-product__filter .tab__contents.height span,
  .t-product__filter .tab__contents.forme span,
  .t-product__filter .tab__contents.size span,
  .t-product__filter .tab__contents.typeParts span,
  .t-product__filter .tab__contents.typeYugu span,
  .t-product__filter .tab__contents.typeFurniture span {
    grid-template-columns: 30px 1fr;
  }

  .t-product__filter .tab__contents.height span::before,
  .t-product__filter .tab__contents.forme span::before,
  .t-product__filter .tab__contents.size span::before,
  .t-product__filter .tab__contents.typeParts span::before,
  .t-product__filter .tab__contents.typeYugu span::before,
  .t-product__filter .tab__contents.typeFurniture span::before {
    width: 30px;
    height: 30px;
  }

  .t-product__filter .tab__contents.price label {
    width: calc(50% - 5px);
  }

  .t-product__filter .tab__contents.color label {
    width: calc(50% - 5px);
  }

  .t-product__filter .tab__contents.color span:has(.icon) {
    grid-template-columns: 14px -webkit-max-content;
    grid-template-columns: 14px max-content;
    place-content: center;
    padding: 6px;
  }

  .t-product__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-product__item__img {
    margin-bottom: 15px;
  }

  .t-product__item__label .simulation .inn {
    -webkit-animation: infinityScroll 5s linear infinite;
    animation: infinityScroll 5s linear infinite;
  }

  .t-product__item__title {
    margin: 10px 0 5px;
    font-size: 1.2rem;
  }

  .t-product__item__price {
    margin: 5px 0 10px;
    font-size: 1.6rem;
  }

  .t-product__item__price .unit {
    font-size: 1.2rem;
  }

  .t-product__item__tag li {
    font-size: 1rem;
  }

  .t-detail .c-lowmv {
    padding: 0 0 20px;
  }

  .t-detail__head {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 12px;
  }

  .t-detail__head__back {
    grid-template-columns: 30px -webkit-max-content;
    grid-template-columns: 30px max-content;
    font-size: 1.2rem;
  }

  .t-detail__head__back::before {
    width: 30px;
    height: 30px;
  }

  .t-detail__head__back::after {
    left: 11px;
    width: 8px;
    height: 8px;
  }

  .t-detail__head__simulation {
    grid-template-columns: 172px 1fr;
    padding: 8px;
  }

  .t-detail__head__simulation a {
    grid-template-columns: 16px -webkit-max-content;
    grid-template-columns: 16px max-content;
    place-content: center;
    padding: 6px 0;
    gap: 6px;
    font-size: 1rem;
  }

  .t-detail__head__simulation a::before {
    width: 16px;
  }

  .t-detail__head__simulation a::after {
    width: 8px;
    height: 8px;
  }

  .t-detail__head__simulation ul {
    width: 1266px;
  }

  .t-detail__head__simulation ul li {
    font-size: 1rem;
  }

  .t-detail__head__simulation ul li .icon {
    width: 19px;
  }

  .t-detail__images__main .swiper-slide figcaption {
    font-size: 1rem;
  }

  .t-detail__images__thumb {
    margin-top: 10px;
  }

  .t-detail__tag {
    gap: 7px;
  }

  .t-detail__tag__item {
    font-size: 1rem;
  }

  .t-detail__title {
    margin: 20px 0 15px;
    font-size: 2rem;
  }

  .t-detail__size,
  .t-detail__number {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .t-detail__color {
    margin: 20px 0;
  }

  .t-detail__price {
    margin: 20px 0;
    font-size: 2.8rem;
  }

  .t-detail__price .unit {
    font-size: 1.8rem;
  }

  .t-detail__set__table {
    overflow-x: scroll;
  }

  .t-detail__set__table::-webkit-scrollbar {
    height: 4px;
  }

  .t-detail__set__table::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(var(--color-base-rgb), 0.1);
  }

  .t-detail__set__table table {
    width: 450px;
  }

  .t-detail__set__table .number {
    width: 70px;
  }

  .t-detail__set__table .size {
    width: 146px;
  }

  .t-detail__set__table .count {
    width: 56px;
  }

  .t-detail__set__table.select .number {
    width: 60px;
  }

  .t-detail__set__table.select .size {
    width: 120px;
  }

  .t-detail__set__table.select .color {
    width: 93px;
  }

  .t-detail .choices[data-type*=select-one]::after {
    right: 4px;
  }

  .t-detail__button {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 40px auto 0;
  }

  .t-detail__button__form.noSet {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-detail__button__form.noSet .t-detail__price {
    margin: 0;
  }

  .t-detail__contact .txt {
    margin: 0 auto 20px;
    padding: 0 20px;
  }

  .t-detail__contact .txt::before,
  .t-detail__contact .txt::after {
    height: 24px;
  }

  .t-detail__contact__list li {
    grid-template-columns: 12px -webkit-max-content;
    grid-template-columns: 12px max-content;
    width: calc(50% - 5px);
    padding: 8px;
    font-size: 1rem;
  }

  .t-detail__contact__list li .icon {
    width: 12px;
    height: 12px;
  }

  .t-detail__contact__list li .icon::after {
    width: 9px;
    height: 5px;
  }

  .t-detail__contact__button {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .t-detail .is-error {
    font-size: 1.2rem;
  }

  .t-suksuk .container {
    background: url(../img/suksuk/bg-sp.svg) no-repeat center center/cover;
  }

  .t-suksuk .container__wrap {
    top: 20px;
    left: 20px;
  }

  .t-suksuk .container__title {
    font-size: 4.2rem;
  }

  .t-suksuk .container__txt {
    font-size: 1.2rem;
  }

  .t-suksuk .container #animation_container {
    top: 49%;
    left: 50%;
    width: 800px !important;
    height: 100% !important;
  }

  .t-suksuk .container__fukidashi {
    z-index: 1;
    top: 150px;
    right: 30%;
  }

  .t-suksuk .container__fukidashi span {
    font-size: 1rem;
  }

  .t-suksuk .container .floor__btn_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    position: absolute;
    bottom: 70px;
    left: 50%;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    max-width: 375px;
    padding: 0 20px;
    gap: 5px;
    transform: translateX(-50%);
  }

  .t-suksuk .container .floor__bottom.all .c-btn01.back {
    width: 100% !important;
  }

  .t-suksuk .container .floor__btn {
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: inherit !important;
    border-radius: 10px;
    line-height: 0.8;
  }

  .t-suksuk .container .floor__btn::after {
    content: none;
  }

  .t-suksuk .container .floor__btn.floor1 {
    right: inherit;
    bottom: 0;
  }

  .t-suksuk .container .floor__btn.floor2 {
    top: inherit;
    right: inherit;
  }

  .t-suksuk .container .illust__list .illust {
    width: 15px;
  }

  .t-suksuk .container .illust__list .balloon01 {
    top: 190px;
    right: 310px;
  }

  .t-suksuk .container .illust__list .balloon02 {
    top: 35%;
    right: 272px;
  }

  .t-suksuk .container .illust__list .balloon03 {
    top: 350px;
    right: 320px;
  }

  .t-suksuk .container .illust__list .balloon04 {
    top: 120px;
    left: 310px;
  }

  .t-suksuk .container .illust__list .balloon05 {
    top: 170px;
    left: 280px;
  }

  .t-suksuk .container .illust__list .balloon06 {
    top: 210px;
    left: 320px;
  }

  .t-suksuk .container .ariballoon {
    bottom: 0px;
    left: 20px;
    width: 62px;
  }

  .t-suksuk .c-modal__content {
    padding: 40px 20px;
  }

  .t-suksuk .c-modal__close {
    right: 0;
  }

  .t-suksuk .c-modal__title {
    font-size: 1.8rem;
  }

  .t-suksuk.floor .container #animation_container {
    height: 500px !important;
    width: 900px !important;
  }

  .t-suksuk.floor .container__fukidashi {
    top: 40px;
  }

  .t-suksuk .container .floor__bottom {
    bottom: 10px;
  }

  .t-suksuk .container .floor__bottom .c-btn01 {
    width: calc(50% - 10px);
    min-width: inherit;
  }

  .t-suksuk.floor .container .illust__list::after {
    top: 42%;
    height: calc(100dvh + 100px);
  }

  .t-suksuk.floor .container .button__list button {
    padding: 3px 15px 3px 5px;
    gap: 5px;
    font-size: 1rem;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal01] {
    top: 200px;
    left: 271px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal01]::after {
    left: 30%;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal02] {
    top: 96px;
    left: 374px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal03] {
    top: 195px;
    left: 400px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal04] {
    top: 290px;
    left: 374px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal05] {
    top: 200px;
    left: 531px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal06] {
    top: 230px;
    left: 271px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal06]::after {
    left: 30%;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal07] {
    top: 151px;
    left: 414px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal08] {
    top: 250px;
    left: 400px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal09] {
    top: 310px;
    left: 374px;
  }

  .t-suksuk.floor .container .button__list button[data-modal=modal10] {
    top: 227px;
    left: 521px;
  }

  .t-suksuk.floor .c-modal__content {
    width: calc(100% - 20px);
    min-width: inherit;
    padding: 20px 20px 33px;
  }

  .t-suksuk.floor .c-modal .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }

  .t-suksuk.floor .c-modal .inner {
    height: calc(100dvh - 238px);
  }

  .t-suksuk.floor .c-modal .inner .title {
    margin: 20px 0 15px;
    font-size: 2rem;
  }

  .t-suksuk.floor .c-modal__close {
    margin-left: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01:hover .c-btn01__txt .letter {
    -webkit-animation: btn02Txt 0.25s var(--transition-default) forwards;
    animation: btn02Txt 0.25s var(--transition-default) forwards;
  }

  .c-btn01:hover .c-btn01__arrow .arrow::before {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  .c-btn01:hover .c-btn01__arrow .arrow::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-btn02:hover .c-btn02__txt .letter {
    -webkit-animation: btn02Txt 0.25s var(--transition-default) forwards;
    animation: btn02Txt 0.25s var(--transition-default) forwards;
  }

  .c-btn02:hover .c-btn02__arrow {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .c-btn02:hover .c-btn02__arrow .arrow::before {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  .c-btn02:hover .c-btn02__arrow .arrow::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-btn03:hover .c-btn03__txt .letter {
    -webkit-animation: btn02Txt 0.25s var(--transition-default) forwards;
    animation: btn02Txt 0.25s var(--transition-default) forwards;
  }

  .c-btn03:hover .c-btn03__arrow {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .c-btn03:hover .c-btn03__arrow .arrow::before {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  .c-btn03:hover .c-btn03__arrow .arrow::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-navigation__item a:hover .c-navigation__txt .letter {
    -webkit-animation: btn02Txt 0.25s var(--transition-default) forwards;
    animation: btn02Txt 0.25s var(--transition-default) forwards;
  }

  .c-navigation__item a:hover .c-navigation__txt .arrow::before {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  .c-navigation__item a:hover .c-navigation__txt .arrow::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-product a:hover .c-product__thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .c-product a:hover .c-product__title,
  .c-product a:hover .c-product__price,
  .c-product a:hover .c-product__tag {
    opacity: 0.8;
  }

  .c-pager li a:hover {
    background-color: rgba(var(--color-base-rgb), 0.1);
  }

  .c-pager li .prev:hover,
  .c-pager li .next:hover {
    background-color: transparent;
  }

  .c-pager li .prev:hover::after,
  .c-pager li .next:hover::after {
    opacity: 0.3;
  }

  .form_area .btn-area #reset:hover,
  .form_area .btn-area .return:hover {
    background-color: var(--color-line02);
  }

  .form_area .btn-area #submit:hover,
  .form_area .btn-area .submit:hover {
    background-color: var(--color-o);
  }

  .header__list a:hover {
    background-color: var(--color-ge);
    color: #fff !important;
  }

  .header__nav_list a:not(.button):hover {
    color: var(--color-ge);
  }

  .header__nav_list a:not(.button):hover::before {
    background-color: var(--color-ge);
  }

  .header__nav_list a:not(.button):hover::after {
    background-color: #fff;
  }

  .header__nav_list a.button:hover {
    background-color: var(--color-bg02);
  }

  .header__nav_bottom a:hover {
    opacity: 0.4;
  }

  .footer__list a:hover {
    color: var(--color-ge);
  }

  .footer__list a:hover::before {
    background-color: var(--color-ge);
  }

  .footer__list a:hover::after {
    background-color: #fff;
  }

  .footer__banner a:hover {
    opacity: 0.6;
  }

  .footer__bottom_list a:hover {
    opacity: 0.4;
  }

  .t-home__mv__banner:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  .t-home__size__button:hover {
    background-color: var(--color-bg);
  }

  .t-home__news__item a:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }

  .t-home__news__item a:hover .t-home__news__item_title {
    text-decoration-color: var(--color-base);
  }

  .t-fabric__sample__button:hover + .t-fabric__sample__thumb img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }

  .t-howto__intro__link:hover {
    background-color: var(--color-bg);
  }

  .t-howto__intro__link:hover .title::after {
    top: 6px;
  }

  .t-faq__contents__link a:hover {
    background-color: var(--color-bg02);
  }

  .t-faq__contents__faq button:hover {
    background-color: var(--color-bg06);
  }

  .t-news__archive__item a:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }

  .t-news__archive__item a:hover .title {
    text-decoration-color: var(--color-base);
  }

  .t-news__detail__link:hover .arrow {
    background-color: var(--color-base);
  }

  .t-news__detail__link:hover .arrow::after {
    background-color: #fff;
  }

  .t-contact.t-list .t-contact__wrapper__button:hover {
    background-color: #F79D35;
  }

  .t-contact.t-list .t-contact__wrapper__button:hover::before {
    -webkit-animation: poyoyon 2.5s infinite;
    animation: poyoyon 2.5s infinite;
  }

  .t-product__filter .main_category .txt:hover {
    background-color: var(--color-bg);
  }

  .t-product__filter .tab_button button:hover {
    opacity: 0.8;
  }

  .t-product__filter .tab__contents span:not(.count):hover {
    background-color: var(--color-bg);
  }

  .t-product .pagination-wrap a:hover {
    background-color: rgba(var(--color-base-rgb), 0.1);
  }

  .t-detail__head__back:hover::before {
    background-color: var(--color-base);
  }

  .t-detail__head__back:hover::after {
    background-color: #fff;
  }

  .t-detail__button__form button:hover {
    background-color: #F79D35;
  }

  .t-detail__button__form button:hover::before {
    -webkit-animation: poyoyon 2.5s infinite;
    animation: poyoyon 2.5s infinite;
  }

  .t-detail__button__simulation a:hover {
    background-color: #559800;
  }

  .t-detail__button__simulation a:hover::before {
    -webkit-animation: poyoyon 2.5s infinite;
    animation: poyoyon 2.5s infinite;
  }

  .t-detail__contact__button .contact:hover {
    opacity: 0.8;
  }

  .t-suksuk.floor .container .floor__bottom .c-btn01:hover {
    background-color: var(--color-base);
  }

  .t-suksuk.floor .container .floor__bottom .c-btn01:hover .c-btn01__txt {
    color: #fff;
  }

  .t-suksuk.floor .container .floor__bottom .c-btn01:hover .c-btn01__arrow {
    background-color: #fff;
  }

  .t-suksuk.floor .container .floor__bottom .c-btn01:hover .c-btn01__arrow .arrow::before,
  .t-suksuk.floor .container .floor__bottom .c-btn01:hover .c-btn01__arrow .arrow::after {
    background-color: var(--color-base);
  }

  .t-suksuk.floor .container .button__list button:hover {
    -webkit-animation: bound 0.5s forwards;
    animation: bound 0.5s forwards;
  }
}
/*# sourceMappingURL=style.css.map */
