@charset "UTF-8";
:root {
  --color-Main: #DD4500;
  --color-Black: #000;
  --color-Gray: #545454;
  --color-Light_Gray: #8C8C8C;
  --color-Light_Gray2: #C6C6C6;
  --color-Line-gray: #E6E6E6;
  --color-Bg_Gray: #F5F5F7;
  --color-BG_Light-Pink: #FFF5FC;
  --color-BG_Light-Yellow: #FFF9EB;
  --color-Link-Blue: #4E84F2;
  --color-White: #FFF;
  --color-green: #70B92D;
  --color-bg: #F4EFD9;
  --color-brown: #4B2C37;
  --color-orange: #EF8200;
  --color-bg_right: #FCFCF0;
  --color-bg_2: #FCF6DF;
  --color-txt: #2A2A2A;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

.button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-Black, #000);
  overflow-y: auto;
  overflow-x: hidden;
}
body.is-fixed {
  position: fixed;
  width: 100%;
}

ul, ol {
  list-style: none;
}

ul, ol {
  list-style: none;
}

section {
  background-color: var(--color-White, #FFF);
}

.container-fluid {
  margin: 0 auto;
  width: 100%;
  max-width: 1366px;
}

.container {
  margin: 0 20px;
}
@media (min-width: 768px) {
  .container {
    margin: 0 auto;
    width: calc(100% - 56px);
    max-width: 1200px;
  }
}

.c-article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

a, button {
  text-decoration: underline;
  color: var(--color-Main, #DD4500);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover, button:hover {
  opacity: 0.7;
  cursor: pointer;
}
a:active, button:active {
  opacity: 0.7;
}

.c-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-header_container {
  margin: 0 auto;
  padding-left: 12px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-header.is-visible {
  opacity: 1;
  border-bottom: 1px solid #EEE;
  background-color: rgba(255, 255, 255, 0.9);
}
.c-header.is-visible .c-header_logo {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
}
.c-header.is-visible .--language {
  background-color: rgb(255, 255, 255);
}
.c-header_logo {
  opacity: 0;
}
.c-header_logo .img {
  width: 140px;
  height: auto;
}
.c-header_ls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .c-header_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* fallback */
    height: 100dvh; /* modern */
    inset: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1000;
    background-color: #FFF;
    display: flex;
  }
  .c-header_slide.is-open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .c-header_nav_ls {
    margin: 96px 0 0 56px;
  }
  .c-header_nav-link {
    display: block;
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .c-header_container {
    padding: 8px 40px;
    max-width: 1366px;
  }
  .c-header_container .c-logo {
    width: 67.2px;
    height: auto;
  }
  .c-header_nav_ls {
    margin-left: 1em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
  }
  .c-header_nav-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
  }
}
.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999em;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn_secondary {
  border: 2px solid #DD4500;
  font-weight: 700;
  color: #DD4500;
}
.c-btn.--language {
  padding: 0 20px;
  height: 35px;
  font-size: 1.4rem;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.5);
}
.c-btn.--language::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/assets/img/ico_globe.svg) 0 0 #FFF no-repeat;
  background-size: 100%;
}
.c-btn.--nouken {
  width: 310px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
.c-btn.--nouken::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/assets/img/ico_arrow_right.png) 0 0 no-repeat;
  background-size: 100%;
}
.c-btn_kebab {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 22px 21px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.c-btn_kebab .bar {
  width: 18px;
  height: 2px;
  background: #474645;
  display: block;
}
.c-btn_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  /* タップ時の青ハイライト対策 */
  -webkit-tap-highlight-color: transparent;
}
.c-btn_close::before, .c-btn_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px; /* ×の横幅 */
  height: 2px; /* 線の太さ（好みで） */
  background: #000;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.c-btn_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-btn_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-btn_contact {
  margin: 0 auto 64px;
  width: 310px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  color: #FFF;
  font-weight: 700;
  background-color: var(--color-Main, #DD4500);
}
.c-btn_contact::after {
  content: "";
  display: block;
  width: 18px;
  height: 20px;
  background: url(/assets/img/ico_arrow_right_white.svg) 0 2px no-repeat;
  background-size: 100%;
}
@media (min-width: 768px) {
  .c-btn_contact {
    margin-bottom: 80px;
    width: 480px;
    height: 72px;
    font-size: 1.8rem;
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .c-btn_contact {
    margin-bottom: 96px;
    width: 560px;
    height: 88px;
    font-size: 2.2rem;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .c-btn.--nouken {
    margin: 0 auto;
    width: 480px;
    height: 72px;
    font-size: 2.4rem;
  }
  .c-btn.--nouken::after {
    width: 24px;
    height: 24px;
  }
}
.c-title {
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
}

.c-footer {
  padding: 24px 0 80px;
  background-color: #F6F6F6;
}
.c-footer_copyright {
  text-align: center;
}
.c-footer_copyright small {
  font-size: 1.2rem;
  color: #888;
}

.kv {
  padding-top: 88px;
  padding-bottom: 34px;
  background: url(/assets/img/kv_bg.jpg) no-repeat center top;
  background-size: cover;
}
.kv_container {
  margin: 0 auto;
  padding-bottom: 48px;
  width: 82.93%;
  max-width: 400px;
  background: url(/assets/img/ico_arrow_scroll.png) no-repeat center bottom;
  background-size: 38px;
}
.kv_catch {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.kv_catch-main {
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  display: block;
  width: 300px;
  height: 299px;
  background: url(/assets/img/kv_catch_main.png) 0 0 no-repeat;
  background-size: 100%;
}
.kv_catch-sub {
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .kv {
    padding-top: 104px;
    padding-bottom: 40px;
  }
  .kv_container {
    padding-bottom: 56px;
    width: 904px;
    max-width: none;
    background-size: 48px;
  }
  .kv_catch {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 64px;
  }
  .kv_catch-main {
    width: 400px;
    height: 399px;
  }
  .kv_catch-sub {
    margin-bottom: 0;
    width: 440px;
  }
}
.vision > .container {
  margin: 0 auto 104px;
  width: 66.7%;
  max-width: 640px;
}
.vision .c-title {
  margin: 80px auto 32px;
}
.vision .text {
  margin: 0 auto;
  width: 96%;
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: center;
}
.vision .motion-logo__wrapper {
  margin: 0 auto;
  width: 250px;
  height: 200px;
}
.vision .motion-logo__wrapper .motion-logo {
  width: 100% !important;
  height: 100%;
  text-align: center;
}
.vision .motion-logo__wrapper .motion-logo > div:active {
  -webkit-tap-highlight-color: transparent;
}

.future {
  background-color: #F6F6F6;
}
.future_def {
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .future_def::before {
    content: "";
    display: block;
    width: 100%;
    height: 67.46vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.future_def.--first::before {
  background-image: url(/assets/img/img_future_1.jpg);
}
.future_def.--second::before {
  background-image: url(/assets/img/img_future_2.jpg);
}
.future_def-content {
  padding: 0 20px 24px;
  background-color: #F6F6F6;
}
.future_def .future_title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}
.future_def .future_text {
  margin: 0 auto;
  width: 71.64%;
  font-size: 1.4rem;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .future {
    background: transparent;
  }
  .future_def {
    padding-bottom: 0;
    flex-direction: row;
    gap: 0;
  }
  .future_def.--first::before {
    content: "";
    width: 50%;
    background: url(/assets/img/img_future_1.jpg) 35% center no-repeat;
    background-size: cover;
  }
  .future_def.--second::after {
    content: "";
    width: 50%;
    background: url(/assets/img/img_future_2.jpg) left center no-repeat;
    background-size: cover;
  }
  .future_def-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: 50%;
    height: 560px;
  }
  .future_def .future_title {
    margin: 0 auto 28px;
    width: 80%;
    max-width: 480px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .future_def .future_text {
    margin: 0 auto;
    width: 71.64%;
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.products_ls {
  margin: 56px auto;
  width: 76.8%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.products_ls .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.products_name {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
}
.products_text {
  font-size: 1.4rem;
  line-height: 1.9;
}
.products_link {
  position: relative;
  padding-right: 1em;
  text-align: right;
}
.products_link::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background: url(/assets/img/ico_arrow_right.png) 0 0 no-repeat;
  background-size: contain;
}
.products_link a {
  display: inline-block;
  text-decoration: none;
  gap: 4px;
}
.products_link a span {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: underline;
  text-align: right;
}
.products_container {
  margin: 0 auto;
  width: 76.8%;
  max-width: 1024px;
}
.products_title {
  margin-bottom: 20px;
  padding-top: 44px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  background: url(/assets/img/ico_catch.png) center top no-repeat;
  background-size: 32px 40px;
}
.products_lead {
  margin: 0 auto;
  width: 83.3%;
  font-size: 1.4rem;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .products_ls {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .products_ls {
    margin: 96px auto;
    width: 92%;
    flex-direction: row;
    gap: 40px;
  }
  .products_ls .item {
    flex: 1;
  }
  .products_ls.--second .products_name {
    height: 130px;
  }
}
@media (min-width: 1440px) {
  .products_ls {
    gap: 56px;
  }
}
.profile {
  padding: 56px 0;
  background-color: #F6F6F6;
}
.profile .c-title {
  margin-bottom: 32px;
}
.profile_def {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.4rem;
  gap: 16px 0;
}
.profile_def .tit {
  width: 31%;
  text-align: right;
}
.profile_def .data {
  width: 62%;
}

@media (min-width: 768px) {
  .profile {
    padding: 80px 0;
  }
  .profile .container {
    max-width: 800px;
  }
}
/* img */
img.img {
  display: block;
  width: 100%;
  height: auto;
}

.visible-sp,
.visible-tb,
.visible-pc,
.visible-wide,
.visible-sp-up,
.visible-tb-up,
.visible-pc-up,
.visible-wide-up,
.visible-flex-sp,
.visible-flex-tb,
.visible-flex-pc,
.visible-flex-wide,
.visible-flex-sp-up,
.visible-flex-tb-up,
.visible-flex-pc-up,
.visible-flex-wide-up {
  display: none !important;
}

/* =======================
 * SPのみ表示（〜767）
 * ======================= */
@media (max-width: 767px) {
  .visible-sp {
    display: block !important;
  }
  .visible-flex-sp {
    display: flex !important;
  }
  .hidden-sp {
    display: none !important;
  }
  .visible-sp-up {
    display: block !important;
  }
  .visible-flex-sp-up {
    display: flex !important;
  }
  .hidden-sp-up {
    display: none !important;
  }
}
/* =======================
 * TBのみ表示（768〜1023）
 * ======================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .visible-tb {
    display: block !important;
  }
  .visible-flex-tb {
    display: flex !important;
  }
  .hidden-tb {
    display: none !important;
  }
}
/* =======================
 * TB以上表示（768〜）
 * ======================= */
@media (min-width: 768px) {
  .visible-tb-up {
    display: block !important;
  }
  .visible-flex-tb-up {
    display: flex !important;
  }
  .hidden-tb-up {
    display: none !important;
  }
}
/* =======================
 * PCのみ表示（1024〜1439）
 * ======================= */
@media (min-width: 1024px) and (max-width: 1439px) {
  .visible-pc {
    display: block !important;
  }
  .visible-flex-pc {
    display: flex !important;
  }
  .hidden-pc {
    display: none !important;
  }
}
/* =======================
 * PC以上表示（1024〜）※PC + WIDE
 * ======================= */
@media (min-width: 1024px) {
  .visible-pc-up {
    display: block !important;
  }
  .visible-flex-pc-up {
    display: flex !important;
  }
  .hidden-pc-up {
    display: none !important;
  }
}
/* =======================
 * WIDEのみ表示（1440〜）
 * ======================= */
@media (min-width: 1440px) {
  .visible-wide {
    display: block !important;
  }
  .visible-flex-wide {
    display: flex !important;
  }
  .hidden-wide {
    display: none !important;
  }
}
/* =======================
 * WIDE以上表示（1440〜）※事実上 WIDEのみ
 * ======================= */
@media (min-width: 1440px) {
  .visible-wide-up {
    display: block !important;
  }
  .visible-flex-wide-up {
    display: flex !important;
  }
  .hidden-wide-up {
    display: none !important;
  }
}
/*# sourceMappingURL=main.css.map */