@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q::before, q::after, blockquote::before, blockquote::after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

input,
button,
select,
textarea {
  font: inherit;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

:root {
  --font-gothic:"Noto Sans JP", sans-serif;
  --color-black:#231815;
  --color-gray-table-border:#595757;
  --color-gray-93:#939393;
  --color-cream:#f8f6de;
  --color-pink:#e35293;
  --color-pink-e98:#e982af;
  --width: 1280;
  --px-vw: calc( 100vw / var( --width ) );
  --duration1:0.5s;
  --delay1:0.5s;
  --delay2:calc(var(--delay1) + var(--duration1));
  --delay3:calc(var(--delay2) + var(--duration1));
}

@media screen and (max-width: 767px) {
  :root {
    --width:375;
  }
}
:root {
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fadein {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform, filter;
  transform: translate(0, 0);
}
.fadein.fadein-down {
  transform: translate(0, -30px);
}
.fadein.fadein-up {
  transform: translate(0, 30px);
}
.fadein.on {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.anim-load {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.loaded .anim-load {
  opacity: 1;
}

.anim-boing {
  animation: myAnim 1.5s linear 1s 1 alternate both;
}

@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: scale(0, 0) translateY(-9%);
  }
  25% {
    opacity: 1;
    animation-timing-function: ease-out;
    transform: scale(1, 1) translateY(0%);
  }
  40% {
    animation-timing-function: ease-in;
    transform: scale(0.47, 0.47) translateY(-4.8%);
  }
  55% {
    animation-timing-function: ease-out;
    transform: scale(1, 1) translateY(0%);
  }
  65% {
    animation-timing-function: ease-in;
    transform: scale(0.74, 0.74) translateY(-2.4%);
  }
  75% {
    animation-timing-function: ease-out;
    transform: scale(1, 1) translateY(0%);
  }
  82% {
    animation-timing-function: ease-in;
    transform: scale(0.87, 0.87) translateY(-1.2%);
  }
  87% {
    animation-timing-function: ease-out;
    transform: scale(1, 1) translateY(0%);
  }
  93% {
    animation-timing-function: ease-in;
    transform: scale(0.94, 0.94) translateY(-0.8%);
  }
  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: scale(1, 1) translateY(0%);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sakura1yoko {
  0% {
    animation-timing-function: ease-in-out;
    transform: translateX(0);
  }
  100% {
    transform: translateX(10%);
  }
}
@keyframes sakura1tate {
  0% {
    animation-timing-function: ease-in-out;
    margin-top: 0;
  }
  100% {
    margin-top: 2%;
  }
}
@keyframes sakura2yoko {
  0% {
    animation-timing-function: ease-in-out;
    transform: translateX(0);
  }
  100% {
    transform: translateX(5%);
  }
}
@keyframes sakura2tate {
  0% {
    animation-timing-function: ease-in-out;
    margin-top: 0;
  }
  100% {
    margin-top: 1%;
  }
}
@keyframes coin1tate {
  0% {
    animation-timing-function: ease-in-out;
    margin-top: 0;
    transform: rotate(0);
  }
  100% {
    margin-top: -2%;
    transform: rotate(5deg);
  }
}
@keyframes coin1yoko {
  0% {
    animation-timing-function: ease-in-out;
    transform: translateX(0);
    transform: rotate(0);
  }
  100% {
    transform: translateX(-5%);
    transform: rotate(-5deg);
  }
}
html {
  font-size: 62.5%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-gothic);
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  line-height: 1.6;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-gothic);
  font-weight: 500;
}

h3 {
  font-size: 40px;
  letter-spacing: 0.04em;
}

p {
  font-family: var(--font-gothic);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: unset;
  text-align: justify;
  letter-spacing: 0.04em;
}
p b {
  font-weight: 700;
}

i {
  font-style: italic;
}

a {
  font-family: var(--font-gothic);
  color: inherit;
  text-decoration: underline;
  letter-spacing: 0.1em;
}

span {
  font-family: inherit;
}

dl {
  font-family: var(--font-gothic);
  letter-spacing: 0.1em;
}

table {
  font-family: var(--font-gothic);
}
table tbody th, table tbody td {
  letter-spacing: 0.1em;
}
.en table tbody th, .en table tbody td {
  letter-spacing: 0;
}

.sp {
  display: none;
}

.dash {
  --dash-w:4px;
  --dash-span:calc(var(--dash-w)*2);
  --color-dash:#8f8f8f;
  background-image: repeating-linear-gradient(0deg, var(--color-dash), var(--color-dash) var(--dash-w), transparent var(--dash-w), transparent var(--dash-span), var(--color-dash) var(--dash-span)), repeating-linear-gradient(90deg, var(--color-dash), var(--color-dash) var(--dash-w), transparent var(--dash-w), transparent var(--dash-span), var(--color-dash) var(--dash-span)), repeating-linear-gradient(180deg, var(--color-dash), var(--color-dash) var(--dash-w), transparent var(--dash-w), transparent var(--dash-span), var(--color-dash) var(--dash-span)), repeating-linear-gradient(270deg, var(--color-dash), var(--color-dash) var(--dash-w), transparent var(--dash-w), transparent var(--dash-span), var(--color-dash) var(--dash-span));
  background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}

.marker {
  line-height: 1.2;
  display: inline-block;
  background: linear-gradient(transparent 70%, #fff200 0%);
}

.sup {
  font-size: 70%;
  vertical-align: top;
  letter-spacing: -0.1em;
  position: relative;
  top: 0em;
}

.flex {
  display: flex;
}

.brown {
  color: var(--color-brown);
}

.red {
  color: var(--color-red);
}

.blue {
  color: var(--color-blue);
}

.orange {
  color: var(--color-orange);
}

.pos-rel {
  position: relative;
}

.w1000 {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

.anchor {
  margin-top: -120px;
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .dash {
    --dash-w:2px;
  }
  .sp {
    display: block;
  }
  .flex {
    display: block;
  }
  .anchor {
    margin-top: calc(-50 * var(--px-vw));
    padding-top: calc(50 * var(--px-vw));
  }
  .pc {
    display: none;
  }
}
.header {
  padding: calc(35 * var(--px-vw)) calc(42 * var(--px-vw)) calc(32 * var(--px-vw));
  min-height: calc(90 * var(--px-vw));
  box-sizing: border-box;
}
.header__inner {
  display: none;
}

.footer__link {
  background: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(32 * var(--px-vw), 32px);
  height: min(80 * var(--px-vw), 80px);
  padding-bottom: min(3 * var(--px-vw), 3px);
  box-sizing: border-box;
}
.footer__link a {
  font-size: min(18 * var(--px-vw), 18px);
  letter-spacing: 0.05em;
  transition: 0.5s ease;
}
.footer__link a:hover {
  color: #969696;
}
.footer__logo__wrap {
  position: relative;
  background: var(--color-pink);
  min-height: min(110 * var(--px-vw), 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: min(3 * var(--px-vw), 3px);
}
.footer__logo__wrap a {
  width: fit-content;
  display: block;
  margin: 0 auto min(6 * var(--px-vw), 6px);
}
.footer__logo img {
  width: min(220 * var(--px-vw), 220px);
}
.footer__copyright {
  text-align: center;
  color: white;
  font-size: min(13 * var(--px-vw), 13px);
}

@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: calc(16.5 * var(--px-vw)) calc(20 * var(--px-vw));
    min-height: calc(50 * var(--px-vw));
    background: white;
  }
  .header .logo img {
    width: calc(140 * var(--px-vw));
  }
  .header__inner {
    display: block;
  }
  .header__nav-area {
    position: fixed;
    top: -20%;
    left: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100svh;
    padding: calc(33 * var(--px-vw));
    padding-right: calc(27 * var(--px-vw));
    box-sizing: border-box;
    visibility: hidden;
    background-color: var(--color-pink-e98);
    opacity: 0;
    transition-property: opacity, top;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
  .header__nav-area.-active {
    opacity: 1;
    top: 0;
    visibility: visible;
    transition-duration: 0.9s;
    transition-timing-function: ease;
  }
  .hamburger {
    position: fixed;
    top: 0;
    right: calc(6 * var(--px-vw));
    z-index: 777;
    display: block;
    width: calc(50 * var(--px-vw));
    height: calc(50 * var(--px-vw));
    margin-left: auto;
    border: none;
  }
  .hamburger.-active .hamburger__line {
    top: calc(25 * var(--px-vw));
    width: calc(24 * var(--px-vw));
    background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
    top: 0;
    background-color: white;
    transform: rotate(45deg);
  }
  .hamburger.-active .hamburger__line::after {
    top: 0;
    background-color: white;
    transform: rotate(-45deg);
  }
  .hamburger.-active .hamburger__text::before {
    content: none;
  }
  .hamburger__line {
    position: absolute;
    top: calc(19.5 * var(--px-vw));
    left: 50%;
    display: block;
    width: calc(30 * var(--px-vw));
    height: 3px;
    background-color: var(--color-gray-93);
    transition: 0.4s;
    transform: translate(-50%, -50%);
  }
  .hamburger__line::before {
    position: absolute;
    top: calc(-8 * var(--px-vw));
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--color-gray-93);
    transition: inherit;
  }
  .hamburger__line::after {
    position: absolute;
    top: calc(8 * var(--px-vw));
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--color-gray-93);
    transition: inherit;
  }
  .hamburger__text {
    position: absolute;
    bottom: calc(9 * var(--px-vw));
    left: 50%;
    width: 100%;
    line-height: 1;
    transform: translateX(-50%);
  }
  .hamburger__text::before {
    font-size: calc(8 * var(--px-vw));
    font-weight: 500;
    color: var(--color-gray-93);
    text-align: center;
    content: "MENU";
  }
  .global-navigation {
    width: 100%;
    flex-direction: column;
  }
  .header .nav .global-navigation__list {
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
  .header .nav .global-navigation__list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: calc(12 * var(--px-vw));
    border-bottom: 1px solid white;
    box-sizing: border-box;
  }
  .header .nav .global-navigation__list li:last-child {
    margin-bottom: 0;
  }
  .header .nav .global-navigation__list li a {
    width: 100%;
    height: calc(109 * var(--px-vw));
    position: relative;
    text-decoration: none;
    font-size: calc(17 * var(--px-vw));
    font-weight: 700;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(14 * var(--px-vw));
  }
  .header .nav .global-navigation__list li a span {
    letter-spacing: 0.04em;
  }
  .header .nav .global-navigation__list li a::after {
    content: "";
    position: absolute;
    top: 51%;
    right: calc(19 * var(--px-vw));
    transform: translateY(-50%);
    display: block;
    width: calc(22 * var(--px-vw));
    height: calc(12 * var(--px-vw));
    background: url("../img/common/icon-arrow-sp.svg") 0 0 no-repeat;
    background-size: 100% auto;
  }
  .header .nav .global-navigation__list li a.link-point:after {
    top: 64%;
  }
  .header .nav .global-navigation__list li a.link-card i {
    position: relative;
    bottom: calc(-6 * var(--px-vw));
    left: calc(-5 * var(--px-vw));
  }
  .header .nav .global-navigation__list li a.link-caution i {
    margin-right: calc(6 * var(--px-vw));
  }
  .footer__link {
    height: calc(44 * var(--px-vw));
    gap: calc(22 * var(--px-vw));
    padding-bottom: 0;
  }
  .footer__link a {
    font-size: calc(11 * var(--px-vw));
  }
  .footer__logo__wrap {
    min-height: calc(70 * var(--px-vw));
    padding: 0 0 calc(5 * var(--px-vw));
    box-sizing: border-box;
  }
  .footer__logo__wrap a {
    margin: 0 auto;
  }
  .footer__logo img {
    width: calc(123 * var(--px-vw));
  }
  .footer__copyright {
    font-size: calc(9 * var(--px-vw));
  }
}
@media screen and (min-width: 1280px) {
  .header {
    padding: 35px 42px 32px;
    min-height: 90px;
  }
}
.wpcf7 {
  --font-size-base:1.6rem;
  width: var(--width800);
  max-width: 100%;
  margin: 0 auto;
  --box-size:20px;
}
.wpcf7 .contact7 {
  width: 100% !important;
}
.wpcf7 dt {
  font-size: var(--font-size-base);
}
.wpcf7 dt .must {
  font-size: 1.4rem;
}
.wpcf7 input, .wpcf7 select {
  width: 100%;
  font-size: var(--font-size-base);
  background: #efefef;
  border-radius: 4px;
  min-height: 60px;
}
.wpcf7 textarea {
  width: 100%;
  font-size: var(--font-size-base);
  background: #efefef;
  border-radius: 4px;
}
.wpcf7 input[type=checkbox] {
  min-height: auto;
  position: relative;
  width: var(--box-size);
  height: var(--box-size);
  border: none;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 1em;
}
.wpcf7 input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.wpcf7 table {
  table-layout: fixed;
}
.wpcf7 tr {
  display: flex;
  gap: 40px;
}
.wpcf7 th, .wpcf7 td {
  padding: 0 !important;
  height: fit-content;
  margin-bottom: 40px;
}
.wpcf7 th {
  flex: 1;
  font-size: 1.4rem;
  vertical-align: top;
  background: none;
}
.wpcf7 th span:first-child {
  font-weight: 700;
  line-height: 60px;
}
.wpcf7 th .require {
  float: right;
  background: var(--color-red);
  border-radius: 100px;
  color: white;
  font-weight: 700;
  border: none;
  padding: 0 1em;
  position: relative;
  top: 30px;
  transform: translateY(-50%);
}
.wpcf7 th span:last-child {
  font-size: 1.4rem;
}
.wpcf7 td {
  padding: 0 !important;
  width: 390px;
  max-width: 60.9375%;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 1.4rem;
}
.wpcf7 .foot p {
  text-align: center;
}
.wpcf7 .foot p span {
  display: inline-block;
}
.wpcf7 .foot .wpcf7-acceptance {
  margin-bottom: 40px;
}
.wpcf7 .foot .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .ann p {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (width <= 768px) {
  .wpcf7 {
    --font-size-base:1.4rem;
  }
  .wpcf7 .contact7 input[type=radio], .wpcf7 .contact7 input[type=checkbox] {
    padding: 0;
  }
  .wpcf7 dt {
    font-size: var(--font-size-base);
  }
  .wpcf7 dt .must {
    display: inline-block;
    padding: 0.1em 0.4em;
    margin-top: -0.4em;
    font-size: calc(var(--font-size-base) - 0.2rem);
  }
  .wpcf7 dt .optional {
    padding: 0.1em 0.4em;
  }
  .wpcf7 input {
    font-size: calc(var(--font-size-base) + 0.2rem);
  }
  .wpcf7 textarea {
    font-size: calc(var(--font-size-base) + 0.2rem);
  }
  .wpcf7 .wpcf7-list-item .wpcf7-list-item-label {
    font-size: var(--font-size-base);
  }
}
:root {
  --color-red:#be272d;
  --color-black:#333;
  --font-jost-noto:"Jost","Noto Sans JP", sans-serif;
  --fs16:16px;
  --fs18:18px;
  --fs24:24px;
  --fs30:30px;
  --fs36:36px;
  --fs60:60px;
  --fs200:200px;
}

.l-container, .l-article {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.c-postContent > * {
  margin: 0;
}

.u-mt-40 {
  margin: 0 !important;
}

.l-container h2, .l-container h3, .l-container h4, .l-container h5, .l-container h6, .l-container p {
  font-family: var(--font-jost-noto);
}
.l-container h3 {
  font-size: var(--fs24);
  font-weight: 700;
}
.l-container h2 {
  text-align: left;
  font-size: var(--fs30);
  font-weight: 700;
}
.l-container h2.en {
  font-size: var(--fs60) !important;
}

.head {
  border-left: 10px solid var(--color-red);
  padding: 80px 0 0 40px;
  margin-bottom: 80px;
}
.head h2.en {
  margin-top: 0;
  line-height: 1;
}

.bg-stripe {
  background: url("./img/bg-stripe.svg") 0 0 no-repeat;
  background-size: 325px 40px;
  background-position: right -138px top 60px;
}

.fv a {
  display: block;
}
.fv img {
  width: 100%;
}

.catalog .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 80px;
}
.catalog__cnt {
  position: relative;
  z-index: 1;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 80px;
}
.catalog__cnt__wrap {
  position: relative;
  margin: 0 !important;
}
.catalog__cnt__wrap:before {
  position: absolute;
  top: 68%;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 330px;
  transform: translateY(-50%) skewY(10deg);
  background: var(--color-red);
}
.catalog__cnt .wp-block-group {
  width: 50%;
}
.catalog__cnt__copy {
  width: 311px;
  max-width: 100%;
}
.catalog .df-popup-thumb {
  display: block;
  margin: 0 !important;
  width: 405px;
}

.why .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 80px;
}
.why .cnt {
  margin: 0;
  padding: 80px 0;
}
.why .cnt.tech, .why .cnt.world {
  background: var(--color-red);
  padding: 80px 0;
}
.why .cnt.tech .inner, .why .cnt.world .inner {
  position: relative;
}
.why .cnt.tech .inner:before, .why .cnt.world .inner:before {
  content: "";
  display: block;
  width: 40px;
  height: 325px;
  position: absolute;
  left: -100px;
  top: -80px;
  background: url("./img/bg-stripe-wt1.svg") 0 0 no-repeat;
  background-size: contain;
}
.why .cnt.tech .wp-block-gallery, .why .cnt.world .wp-block-gallery {
  --wp--style--gallery-gap-default:20px;
}
.why .cnt.tech .txt-wrap, .why .cnt.world .txt-wrap {
  justify-content: flex-end;
}
.why .cnt.tech .txt-wrap .num, .why .cnt.tech .txt-wrap .txt, .why .cnt.world .txt-wrap .num, .why .cnt.world .txt-wrap .txt {
  color: white;
}
.why .cnt.tech .txt-wrap .txt, .why .cnt.world .txt-wrap .txt {
  padding: 0;
  padding-left: 80px;
  border: none;
  border-left: 2px solid white;
}
.why .cnt.auth .inner {
  position: relative;
}
.why .cnt.auth .inner:before {
  content: "";
  display: block;
  width: 40px;
  height: 325px;
  position: absolute;
  right: -100px;
  top: -80px;
  background: url("./img/bg-stripe-bk1.svg") 0 0 no-repeat;
  background-size: contain;
}
.why .cnt.world {
  background: url("./img/bg-world@2x-80.jpg") 0 0 no-repeat;
  background-size: cover;
}
.why .cnt.world .txt-wrap {
  margin: 0;
  text-shadow: 0 2px 4px rgb(0, 0, 0);
}
.why .cnt.world .txt-wrap .txt {
  text-shadow: 0 2px 8px rgb(0, 0, 0), 0 2px 4px rgb(0, 0, 0), 0 2px 2px rgb(0, 0, 0);
}
.why .cnt .inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.why .cnt .txt-wrap {
  margin: 0;
  margin-top: 80px;
  gap: 80px;
}
.why .cnt .txt-wrap .num .en {
  font-family: var(--font-jost-noto);
  font-size: var(--fs200);
  font-weight: 700;
  line-height: 1;
}
.why .cnt .txt-wrap .txt {
  width: calc(50% - 10px);
  box-sizing: content-box;
  padding-right: 80px;
  border-right: 2px solid var(--color-black);
}
.why .cnt .txt-wrap .txt h3 {
  font-size: var(--fs24);
  font-weight: 700;
}
.why .cnt .txt-wrap .txt p {
  font-size: var(--fs16);
  font-weight: 700;
}

.production .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.production .cnt {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 40px;
  gap: 40px;
}
.production .cnt .wp-block-group {
  width: 50%;
}
.production .cnt h3 {
  font-size: var(--fs24);
  font-weight: 700;
}
.production .cnt p {
  font-size: var(--fs16);
  font-weight: 700;
}

.step {
  background: #f8e9ea;
  padding-bottom: 40px;
}
.step .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.step .cnt {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.step .cnt .st {
  gap: 40px;
  margin: 0 0 40px;
}
.step .cnt .ttl {
  position: relative;
  background: var(--color-red);
  color: white;
  margin-left: -40px;
  height: 60px;
}
.step .cnt .ttl:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0px solid transparent;
  border-width: 60px 16px 0 16px;
  border-right-color: var(--color-red);
  position: absolute;
  bottom: 0;
  left: -32px;
}
.step .cnt .ttl .num {
  font-size: var(--fs36);
  font-weight: 700;
  transform: skewX(-15deg);
  padding-left: 40px;
  margin-right: 40px;
}
.step .cnt .ttl h3 {
  font-size: var(--fs24);
  transform: skewX(-15deg);
}
.step .cnt p {
  font-weight: 700;
}

.voice {
  background: #e4e9f2;
  padding-bottom: 80px;
}
.voice .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.voice .cnt {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.voice .cnt .cnt__inner {
  gap: 40px;
}
.voice .cnt__block {
  justify-content: space-between;
}
.voice .cnt__block__head {
  width: 100%;
  gap: 40px !important;
}
.voice .cnt__block .logo {
  width: fit-content;
}
.voice .cnt__block .name, .voice .cnt__block .name-en {
  font-size: var(--fs24);
  font-weight: 700;
}
.voice .cnt__block .name-en {
  color: #969696;
}
.voice .cnt__block .txt {
  font-size: var(--fs18);
  font-weight: 500;
  letter-spacing: 0;
}

.gym {
  padding-bottom: 80px;
}
.gym .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.gym .cnt {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.sportec {
  padding: 0;
  padding-bottom: 80px;
  background: #dadfe3;
}
.sportec .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.sportec .cnt {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.sportec .cnt p {
  font-weight: 700;
  margin-bottom: 80px;
}
.sportec .cnt .cnt__grid {
  justify-content: space-between;
  align-items: stretch;
}
.sportec .cnt .img-0 {
  width: 65.6%;
}
.sportec .cnt .img-wrap {
  width: 31.2%;
  justify-content: space-between;
}

.qa {
  padding-bottom: 80px;
}
.qa .head {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.qa .cnt {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}
.qa .cnt .ark-block-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qa .cnt .ark-block-accordion__title {
  position: relative;
  background: var(--color-red);
  color: white;
  font-size: var(--fs16);
  font-weight: 700;
}
.qa .cnt .ark-block-accordion__title:after {
  content: "";
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 20/60;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(99%);
  background: url("./img/tag-ttl.svg") 0 0 no-repeat;
  background-size: contain;
}
.qa .cnt .ark-block-accordion__body {
  padding-left: 1.7em;
}
.qa .cnt .ark-block-accordion__body p {
  font-weight: 700;
}

.contact {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  :root {
    --fs16:12px;
    --fs18:13px;
    --fs24:14px;
    --fs30:18px;
    --fs36:22px;
    --fs60:24px;
    --fs200:60px;
  }
  .fv .wp-block-image {
    margin: 0;
  }
  .fv .sp {
    margin: 0;
  }
  .bg-stripe {
    background-size: 32.5vw 4vw;
    background-position: right -13.8vw top 6vw;
  }
  .catalog .head {
    padding: 8vw 8vw 0;
    margin-bottom: 8vw;
  }
  .catalog__cnt {
    gap: 4vw;
    margin-bottom: 8vw;
    padding: 4vw;
  }
  .catalog__cnt__wrap:before {
    top: 50%;
    height: 33vw;
  }
  .catalog__cnt .wp-block-group {
    width: 60vw;
  }
  .catalog__cnt .wp-block-group:first-child {
    width: 40vw;
  }
  .catalog .df-popup-thumb {
    width: auto;
  }
  .why .head, .production .head, .contact .head, .step .head, .voice .head, .gym .head, .sportec .head, .qa .head {
    padding: 8vw 8vw 0;
    margin-bottom: 8vw;
  }
  .why .cnt, .production .cnt, .contact .cnt, .step .cnt, .voice .cnt, .gym .cnt, .sportec .cnt, .qa .cnt {
    padding: 4vw;
  }
  .why .cnt {
    padding: 8vw 4vw;
  }
  .why .cnt.tech, .why .cnt.world {
    padding: 8vw 4vw;
  }
  .why .cnt.tech .txt-wrap .txt, .why .cnt.world .txt-wrap .txt {
    padding-left: 8vw;
  }
  .why .cnt.auth .wp-block-gallery {
    flex-direction: column;
  }
  .why .cnt.auth .wp-block-gallery .wp-block-image {
    width: 100% !important;
  }
  .why .cnt.auth .txt-wrap .txt {
    padding-right: 8vw;
  }
  .why .cnt .txt-wrap {
    margin-top: 8vw;
    gap: 8vw;
  }
  .why .cnt .txt-wrap .txt {
    width: auto;
  }
  .production .cnt {
    display: block;
    margin-bottom: 4vw;
  }
  .production .cnt .wp-block-group {
    width: 100%;
    margin-bottom: 4vw;
  }
  .contact .wp-block-group {
    padding: 8vw 4vw;
  }
  .contact .wpcf7 tr {
    flex-direction: column;
    gap: 0;
  }
  .contact .wpcf7 th {
    margin-bottom: 0;
  }
  .contact .wpcf7 th .require {
    position: relative;
    float: none;
    top: 0;
  }
  .contact .wpcf7 td {
    width: 100%;
    max-width: 100%;
  }
  .step .cnt .st {
    flex-direction: column;
    gap: 0;
  }
  .step .cnt .ttl {
    margin-left: 16px;
  }
}

/*# sourceMappingURL=btob.css.map */
