@charset "UTF-8";
/*======================================
  変数定義 (Variables)
======================================*/
/*======================================
  ミックスイン定義 (Mixins)
======================================*/
/*======================================
  基本スタイル (Reset & Base)
======================================*/
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

div,
span,
h1,
h2,
h3,
h4,
h5,
p,
input {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

section {
  overflow: hidden;
  box-sizing: border-box;
}

/*======================================
  汎用クラス (Utility Classes)
======================================*/
.main {
  background-color: #e9e9f1;
}

.section-inner {
  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
}

.site-link {
  color: #152ed3;
}

a.icon-link {
  display: inline-flex;
  align-items: center;
}
a.icon-link .window-icon {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  margin-right: 3px;
  background-image: url(../images/redeck/icon_window_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
a.icon-link .window-icon-bk {
  width: 15px;
  height: 15px;
  margin-left: 5px;
  margin-right: 3px;
  background-image: url(../images/redeck/icon_window_bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.sp-br {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp-br {
    display: block;
  }
}

.tb-br {
  display: none;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .tb-br {
    display: block;
  }
}

.pc-br {
  display: block;
}
@media screen and (max-width: 640px) {
  .pc-br {
    display: none;
  }
}

.show-sml {
  display: none;
}
@media screen and (max-width: 640px) {
  .show-sml {
    display: block;
  }
}

.hide-sml {
  display: block;
}
@media screen and (max-width: 640px) {
  .hide-sml {
    display: none;
  }
}

/*======================================
  共通コンポーネント (Common Components)
======================================*/
.section-title {
  font-size: clamp(20px, 2.25vw, 27px);
  text-align: center;
}

.section-title-sub {
  position: relative;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.section-title-sub.title-decoration {
  display: inline-block;
}
.section-title-sub.title-decoration::before, .section-title-sub.title-decoration::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: #0034e0;
  position: absolute;
  top: 50%;
}
.section-title-sub.title-decoration::before {
  left: -100px;
}
.section-title-sub.title-decoration::after {
  right: -100px;
}
@media screen and (max-width: 640px) {
  .section-title-sub.title-decoration::before, .section-title-sub.title-decoration::after {
    width: 30px;
  }
  .section-title-sub.title-decoration::before {
    left: -50px;
  }
  .section-title-sub.title-decoration::after {
    right: -50px;
  }
}

.skew-bg-block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: url(../images/redeck/img_hero-bg.jpg) center center/cover no-repeat;
}
.skew-bg-block.-left-in:after {
  right: 100vw;
  transform-origin: top right;
  transition: right 0.8s cubic-bezier(0.07, 0.24, 0.16, 0.94);
}
.skew-bg-block.-right-in:after {
  left: 100vw;
  transform: skew(-15deg);
  transform-origin: bottom left;
  transition: left 0.8s cubic-bezier(0.07, 0.24, 0.16, 0.94);
}
.skew-bg-block.-right-in.-js-show:after {
  transform-origin: top left;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .skew-bg-block:after {
    left: 186.5%;
    width: 300vw;
  }
}
@media screen and (max-width: 640px) {
  .skew-bg-block:after {
    left: 148.5%;
    width: 300vw;
  }
}

/* ===========================
   Mobile Header (共通スタイル)
   =========================== */
.mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(68, 86, 149, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  display: none;
  /* デフォルトは非表示 */
}
.mobile-header.show {
  transform: translateY(0);
  display: block;
}

.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.mobile-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(to right, #ff5656, #b92ed3);
}

.mobile-menu-trigger {
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.mobile-menu-trigger.active .hamburger-line {
  display: none;
}
.mobile-menu-trigger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-trigger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-trigger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #445695;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* ===========================
   利用規約ページ（共通スタイル）
   =========================== */
.section-terms {
  padding: 40px 20px;
  min-height: 100vh;
  overflow: unset;
}
.section-terms .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.terms-page-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  color: #445695;
}

.terms-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  color: #666;
}

.terms-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-direction: row-reverse;
  min-height: calc(100vh - 200px);
  position: relative;
}

.terms-content {
  flex: 1;
  min-width: 0;
}

.terms-section-title {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px 0;
  padding-bottom: 8px;
  color: #445695;
  border-bottom: 2px solid #445695;
}
.terms-section-title:first-child {
  margin-top: 0;
}

.terms-text {
  line-height: 1.8;
  margin-bottom: 20px;
}

.terms-list {
  padding-left: 20px;
  margin-bottom: 20px;
}
.terms-list li {
  line-height: 1.8;
  margin-bottom: 12px;
}

.terms-sub-list {
  padding-left: 20px;
  margin-top: 12px;
}
.terms-sub-list li {
  line-height: 1.7;
  margin-bottom: 8px;
}

.terms-footer {
  margin-top: 40px;
  text-align: right;
}

.terms-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* 目次（PC版1025px以上用） */
.terms-toc {
  width: 300px;
  flex-shrink: 0;
  padding: 24px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: rgba(248, 249, 250, 0.8);
  border: 1px solid rgba(233, 236, 239, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.terms-toc-title {
  position: sticky;
  top: 0;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #445695;
  background: rgba(248, 249, 250, 0.9);
  border-bottom: 1px solid rgba(233, 236, 239, 0.3);
}

.terms-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.terms-toc-list li {
  margin-bottom: 8px;
}
.terms-toc-list a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.terms-toc-list a:hover {
  color: white;
  background: #445695;
  border-left-color: #445695;
}
.terms-toc-list a.active {
  font-weight: 500;
  color: #445695;
  background: rgba(68, 86, 149, 0.1);
  border-left-color: #445695;
}

/* フローティングバナーはPC版では表示しない */
.floating-banner {
  display: none;
}

/* ===========================
   PCヘッダー
=========================== */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
}
@media screen and (max-width: 640px) {
  .pc-header {
    display: none;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .pc-header {
    display: none;
  }
}
.pc-header.hide {
  display: none;
}

.pc-header-logo {
  width: 188px;
}

.pc-header-login {
  margin-left: 30px;
}

.pc-header-right {
  display: flex;
  align-items: center;
}

.pc-header-nav-list {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 24px;
}

/* ===========================
   モバイルメニューオーバーレイ
=========================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: block;
}
.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

.mobile-menu-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #152ed3;
  border-radius: 1px;
}
.close-line:nth-child(1) {
  transform: rotate(45deg);
}
.close-line:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  width: 100%;
  text-align: center;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  display: flex;
  padding: 22px 16px;
  border-bottom: 1px solid #a5abb2;
}
.mobile-menu-item:nth-child(5) {
  margin-bottom: 40px;
}

.mobile-menu-link {
  display: inline-block;
  padding-right: 20px;
  color: #0f1419;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  background-image: url(../images/redeck/img_arrow-down-black.svg);
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: right 0 top 58%;
}

/*======================================
  セクション別スタイル (Sections)
======================================*/
/* hero-area */
.section-hero {
  position: relative;
  height: 800px;
  overflow: visible;
}
@media screen and (max-width: 640px) {
  .section-hero {
    height: 515px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section-hero {
    padding: 0 20px;
  }
}
.section-hero .trial-form-area {
  position: absolute;
  right: 10px;
  top: 30px;
  width: 40%;
  max-width: 412px;
}
@media screen and (max-width: 1024px) {
  .section-hero .trial-form-area {
    display: none;
  }
}
.section-hero .trial-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section-hero .trial-form {
    height: auto;
    flex-direction: column;
  }
  .section-hero .trial-form .right-area {
    border-radius: 0 0 22px 22px;
  }
}
.section-hero .key-visual {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  height: 623px;
}
@media screen and (max-width: 640px) {
  .section-hero .key-visual {
    padding-left: 0;
    height: 383px;
  }
}
.section-hero .hero-logo {
  width: 100%;
  max-width: 191px;
  position: absolute;
  top: 60px;
  left: 50px;
}
@media screen and (max-width: 640px) {
  .section-hero .hero-logo {
    width: 120px;
    top: 55px;
    left: 0;
  }
}
.section-hero .hero-title-area {
  position: absolute;
  top: 100px;
  left: 100px;
  min-width: max-content;
}
@media screen and (max-width: 640px) {
  .section-hero .hero-title-area {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-hero .hero-title-area {
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-hero .hero-title-area .preface-text {
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .section-hero .hero-title-area .preface-text {
    margin-top: 0;
    line-height: 1.5;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-hero .hero-title-area .preface-text {
    font-size: 26px;
  }
}
.section-hero .hero-title-area .hero-title {
  font-size: clamp(30px, 3.083vw, 51px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .section-hero .hero-title-area .hero-title {
    margin-top: 16px;
    line-height: 1.25;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-hero .hero-title-area .hero-title {
    font-size: 42px;
  }
}
.section-hero .hero-title-area .hero-title .hero-title-color {
  background: #0f1419;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-hero .hero-title-area .hero-title .hero-title-large {
  font-size: clamp(30px, 3.833vw, 46px);
}
.section-hero .hero-kv {
  width: 55%;
  max-width: 1000px;
  position: absolute;
  top: 250px;
  left: 6%;
}
/* video + pc frame overlay */
.section-hero .hero-kv .kv-pc {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.section-hero .hero-kv .kv-video {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  width: 85%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}
.section-hero .hero-kv .kv-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
}
/* smartphone fallback image (hidden by default) */
.section-hero .hero-kv .kv-image {
  display: none;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-hero .hero-kv {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 550px;
  }
  .section-hero .hero-kv .kv-video {
    top: 4%;
  }
  .section-hero .hero-kv .kv-image {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .section-hero .hero-kv {
    width: 100%;
    left: 50%;
    top: 45%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section-hero .hero-kv .kv-video {
    top: 3.5%;
    display: none;
  }
  .section-hero .hero-kv .kv-image {
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 85%;
    top: 3.5%;
    border-radius: 4px;
  }
  .section-hero .hero-kv .kv-pc {
    display: none;
  }
}
.section-hero .hero-attention-area {
  display: flex;
  position: relative;
  top: -35px;
}
.section-hero .hero-attention-area .inner {
  width: 100%;
  max-width: 1012px;
  margin: 0 auto;
  position: relative;
}
.section-hero .hero-attention-text {
  text-align: right;
  font-size: 9px;
  color: #dddddd;
}
@media screen and (max-width: 640px) {
  .section-hero .hero-attention-text {
    font-size: 8px;
  }
}

/* trial-form-area */
.trial-form-area {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

.trial-form {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 640px) {
  .trial-form {
    width: unset;
    height: auto;
    flex-direction: column;
  }
}
.trial-form .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .trial-form .inner {
    height: auto;
  }
}
.trial-form .left-area {
  position: relative;
  padding: 25px 23px;
  background: linear-gradient(to bottom right, #40bee0, #152ed3);
  border-radius: 22px 22px 0 0;
  width: 100%;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .trial-form .left-area {
    width: 100%;
    max-width: 600px;
    background-size: cover;
  }
}
@media screen and (max-width: 640px) {
  .trial-form .left-area {
    width: 100%;
    padding: 36px 23px 32px;
    background-size: cover;
  }
}
.trial-form .left-area::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: inline-block;
  width: 20px;
  height: 17.3px;
  background: linear-gradient(90deg, #2052cf 0%, #1e4dce 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.trial-form .left-area.left-area--end {
  background: linear-gradient(to right, #ff7777, #cf67e8);
}
.trial-form .left-area.left-area--end::after {
  background: linear-gradient(90deg, #df6ca7 0%, #dd6bab 100%);
}
.trial-form .left-area.left-area--end .left-area-trial {
  color: #0f1419;
}
.trial-form .left-area .left-area-trial {
  padding: 5px 51px;
  background-color: #fff;
  border-radius: 20px;
  color: #0034e0;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .trial-form .left-area .left-area-trial {
    font-size: 18px;
  }
}
.trial-form .left-area .left-area-title {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(22px, 2.75vw, 28px);
  font-weight: 700;
  color: #fff;
}
.trial-form .left-area .left-area-pc {
  width: 100%;
  max-width: 405px;
  margin-top: 37px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .trial-form .left-area .left-area-pc {
    max-width: 300px;
  }
}
.trial-form .right-area {
  width: 100%;
  padding: 25px 30px 35px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  border-radius: 0 0 22px 22px;
}
.trial-form .right-area .form-title {
  color: #1a3be1;
  font-size: clamp(14px, 1.333vw, 16px);
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .trial-form .right-area {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .trial-form .right-area {
    width: auto;
    padding: 36px 25px 32px;
  }
}
.trial-form .form-hope {
  margin-top: 15px;
  font-size: 14px;
}
.trial-form .form-head-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.trial-form .form-input-group {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  width: 100%;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .trial-form .form-input-group .flex {
    flex-direction: column;
    row-gap: 16px;
  }
}
.trial-form .form-input-group .flex .input-wrapper:not(:first-child) {
  margin-left: 17px;
}
@media screen and (max-width: 640px) {
  .trial-form .form-input-group .flex .input-wrapper:not(:first-child) {
    margin: 0;
  }
}
.trial-form .form-input-group .input-wrapper {
  width: 100%;
}
.trial-form .form-input-group .input-label {
  color: #000;
  font-size: 11px;
}
.trial-form .form-input-group .input-form {
  display: flex;
  align-items: center;
  margin-top: 4px;
  padding: 0 16px;
  width: 100%;
  height: 40px;
  border-radius: 7px;
  border: 1px solid #58c3ea;
}
.trial-form .form-input-group .input-form:focus {
  outline: 0.01px solid #0096ff;
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.3);
}
.trial-form .form-input-group .input-form::placeholder {
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .trial-form .form-input-group .input-form {
    height: 43px;
    font-size: 19px;
  }
}
@media screen and (max-width: 640px) {
  .trial-form .form-input-group {
    row-gap: 16px;
  }
}
.trial-form .company-post {
  margin-top: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #42bfed;
  padding: 9px 16px;
  border-radius: 7px;
  background: white url("../images/redeck/img_arrow-down.png") no-repeat right 16px top 15px;
  background-size: 11px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}
.trial-form .company-post:focus {
  outline: none;
  border-color: #0096ff;
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.3);
}
.trial-form .asterisk {
  margin-left: 8px;
  color: #ff0000;
}
.trial-form .form-attention-text {
  color: #141414;
  font-size: 10px;
  margin: 10px 0;
}
@media screen and (max-width: 640px) {
  .trial-form .form-attention-text {
    margin-top: 16px;
  }
}
.trial-form .agreement-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  font-size: 10px;
  position: relative;
  z-index: 2;
}
.trial-form .submit-button {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 25px;
  position: relative;
}

/* section-trial-form (Bottom Form) */
.section-trial-form {
  padding: 66px 0;
  background: url(../images/redeck/img_bg-trial.png) center center/cover no-repeat;
  width: 100%;
  height: 1045px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-trial-form {
    padding: 50px 30px;
    height: auto;
  }
  .section-trial-form .trial-form .inner {
    max-width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .section-trial-form {
    padding: 30px 20px;
    height: auto;
  }
}
.section-trial-form .section-title {
  color: #fff;
}
.section-trial-form .trial-form {
  margin-top: 39px;
}
@media screen and (max-width: 640px) {
  .section-trial-form .trial-form {
    width: 100%;
  }
}
.section-trial-form .trial-form .inner {
  height: auto;
}
.section-trial-form .trial-form .form-head-text {
  margin-top: 15px;
}
.section-trial-form .trial-form .form-input-group {
  margin-top: 26px;
}
.section-trial-form .trial-form .right-area {
  padding: 25px 100px 35px;
}
@media screen and (max-width: 640px) {
  .section-trial-form .trial-form .right-area {
    width: auto;
    padding: 36px 25px 32px;
  }
}
.section-trial-form .trial-form.sent .wpcf7-response-output {
  margin-top: 20px;
}

/* section-issue */
.section-issue {
  position: relative;
  padding-top: 37px;
  background-color: #203075;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}
.section-issue .section-title {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  .section-issue .section-title {
    font-size: 18px;
  }
}
.section-issue .issue-img-area {
  position: relative;
  padding-top: 35px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-issue .issue-img-area {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.section-issue .worry {
  position: relative;
  align-items: unset;
  max-width: 1063px;
  width: 100%;
  height: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .section-issue .worry {
    height: 367px;
  }
}
.section-issue .person-issue {
  position: absolute;
  bottom: 0;
  left: 52%;
  transform: translateX(-50%);
  height: 252px;
}
@media screen and (max-width: 640px) {
  .section-issue .person-issue {
    top: 25px;
    bottom: unset;
    height: 192px;
  }
}
.section-issue .issue-design img,
.section-issue .issue-text img,
.section-issue .issue-composition img,
.section-issue .issue-chart img {
  position: absolute;
}
.section-issue .issue-design img {
  left: 0;
  top: 40px;
  width: 190px;
}
@media screen and (max-width: 640px) {
  .section-issue .issue-design img {
    top: unset;
    bottom: 66px;
    left: 30px;
    width: 110px;
  }
}
.section-issue .issue-text img {
  left: 200px;
  width: 150px;
}
@media screen and (max-width: 640px) {
  .section-issue .issue-text img {
    top: unset;
    left: 30px;
    width: 110px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-issue .issue-text img {
    left: 170px;
  }
}
.section-issue .issue-composition img {
  right: 200px;
  width: 143px;
}
@media screen and (max-width: 640px) {
  .section-issue .issue-composition img {
    top: -20px;
    right: 20px;
    width: 110px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-issue .issue-composition img {
    right: 170px;
  }
}
.section-issue .issue-chart img {
  right: 0;
  top: 40px;
  width: 173px;
}
@media screen and (max-width: 640px) {
  .section-issue .issue-chart img {
    top: unset;
    bottom: 66px;
    right: 25px;
    width: 110px;
  }
}

/* chip-area */
.chip-area {
  padding: 34px 86px;
  background: linear-gradient(to right, rgba(21, 46, 211, 0.5), rgba(64, 190, 224, 0.5));
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .chip-area {
    padding: 19px 40px;
  }
}
@media screen and (max-width: 640px) {
  .chip-area {
    padding: 19px 24px;
  }
}
.chip-area .chip-area-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.chip-area .chip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 71%;
  gap: 7px;
}
@media screen and (max-width: 1024px) {
  .chip-area .chip-list {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
.chip-area .chip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 40px;
  padding: 0 7px;
  border-radius: 30px;
  border: 2px solid transparent;
  background-color: #fff;
  background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #2339d7, #6e2bcf) border-box;
}
@media screen and (max-width: 640px) {
  .chip-area .chip-item {
    width: unset;
    height: 32px;
  }
}
.chip-area .chip-etc {
  margin-left: 3px;
  margin-bottom: 4px;
  font-size: 14px;
}
.chip-area .chip-item-icon {
  margin-top: 2px;
}
@media screen and (max-width: 640px) {
  .chip-area .chip-item-icon {
    width: 11px;
    height: 11px;
  }
}
.chip-area .chip-item-text {
  margin-left: 5px;
  color: #0f1419;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .chip-area .chip-item-text {
    font-size: 12px;
  }
}

/* section-company-about */
.section-company-about {
  padding: 65px 98px;
  background-color: #fff;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 640px) {
  .section-company-about {
    padding: 40px 20px;
  }
}
.section-company-about .section-title {
  position: relative;
  padding-bottom: 24px;
  color: #0f1419;
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .section-company-about .section-title {
    padding-bottom: 16px;
    font-size: 22px;
  }
}
.section-company-about .section-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 80px;
  height: 7px;
  border-radius: 16px;
  background: linear-gradient(to right, #152ed3, #d9def4);
}
@media screen and (max-width: 640px) {
  .section-company-about .section-title::after {
    width: 50px;
  }
}
.section-company-about .company-info-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  gap: 52px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .company-info-area {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .section-company-about .company-info-area {
    display: block;
    margin-top: 30px;
  }
}
.section-company-about .usage-fee {
  margin-top: 90px;
}
.section-company-about .usage-fee-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 53px;
  padding: 30px 0 39px;
  border-radius: 16px;
  border: solid 2px #152ed3;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area {
    margin-top: 30px;
    padding: 34px 0 36px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .usage-fee-area {
    margin-top: 30px;
    padding: 34px 0 36px;
  }
}
.section-company-about .usage-fee-area .top-area {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .top-area {
    flex-direction: column;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .usage-fee-area .top-area {
    flex-direction: column;
  }
}
.section-company-about .usage-fee-area .bottom-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .bottom-area {
    margin-top: 23px;
  }
}
.section-company-about .usage-fee-area .usege-fee-1account {
  padding: 12px 42px;
  border-radius: 32px;
  background-color: #152ed3;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .usege-fee-1account {
    padding: 4px 42px;
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .sp-remarks-wrap {
    margin-top: 15px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .usage-fee-area .sp-remarks-wrap {
    margin-top: 15px;
  }
}
.section-company-about .usage-fee-area .sp-remarks {
  display: none;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .sp-remarks {
    display: block;
    color: #0f1419;
    font-size: 14px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .usage-fee-area .sp-remarks {
    display: block;
    color: #0f1419;
    font-size: 14px;
  }
}
.section-company-about .usage-fee-area .price-wrap {
  display: flex;
  align-items: flex-end;
  margin-left: 13px;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .price-wrap {
    margin-left: 0;
    margin-top: 10px;
  }
}
.section-company-about .usage-fee-area .price-number {
  color: #0f1419;
  font-size: 74px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .price-number {
    font-size: 52px;
  }
}
.section-company-about .usage-fee-area .price-unit {
  color: #0f1419;
  font-size: 37px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .price-unit {
    font-size: 25px;
  }
}
.section-company-about .usage-fee-area .price-unit span {
  margin-left: 5px;
  font-size: 25px;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .price-unit span {
    font-size: 20px;
  }
}
.section-company-about .usage-fee-area .usage-fee-img-wrap {
  margin-top: -36px;
  margin-left: 30px;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .usage-fee-img-wrap {
    margin: 0;
    margin-top: 15px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .usage-fee-area .usage-fee-img-wrap {
    margin: 0;
  }
}
.section-company-about .usage-fee-area .usage-fee-img {
  width: 200px;
}
.section-company-about .usage-fee-area .remarks-wrap {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .remarks-wrap {
    display: none;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-company-about .usage-fee-area .remarks-wrap {
    display: none;
  }
}
.section-company-about .usage-fee-area .remarks {
  color: #0f1419;
  font-size: 14px;
}
.section-company-about .usage-fee-area .trial-text-wrap {
  margin-top: 15px;
}
.section-company-about .usage-fee-area .trial-text-border {
  width: 100%;
  height: 15px;
  margin-top: -12px;
  background: linear-gradient(to right, rgba(255, 86, 86, 0.7), rgba(185, 46, 211, 0.7));
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .trial-text-border {
    height: 10px;
  }
}
.section-company-about .usage-fee-area .trial-text {
  color: #0f1419;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .section-company-about .usage-fee-area .trial-text {
    font-size: 22px;
  }
}
.section-company-about .question {
  margin-top: 100px;
}
@media screen and (max-width: 640px) {
  .section-company-about .question {
    margin-top: 43px;
  }
}
.section-company-about .question .explanation {
  margin-top: 36px;
  color: #0f1419;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .section-company-about .question .explanation {
    margin-top: 25px;
    padding: 0 27px;
    text-align: left;
  }
}
.section-company-about .question-list {
  margin-top: 17px;
}
@media screen and (max-width: 640px) {
  .section-company-about .question-list {
    margin-top: 35px;
  }
}
.section-company-about .question-item {
  padding: 20px 0 25px;
  border-top: solid 1px #a5abb2;
}
@media screen and (max-width: 640px) {
  .section-company-about .question-item {
    padding: 15px 27px 25px;
  }
}
.section-company-about .question-item:last-child {
  border-bottom: solid 1px #a5abb2;
}
.section-company-about .question-item .title-area {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .section-company-about .question-item .title-area {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-company-about .question-item .title-area-mark {
  color: #152ed3;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .section-company-about .question-item .title-area-mark {
    font-size: 36px;
  }
}
.section-company-about .question-item .title-area-text {
  margin-left: 9px;
  color: #152ed3;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .section-company-about .question-item .title-area-text {
    margin-left: 0;
    margin-top: 13px;
    font-size: 18px;
  }
}
.section-company-about .question-item .answer-area {
  margin-top: 6px;
  margin-left: 60px;
}
@media screen and (max-width: 640px) {
  .section-company-about .question-item .answer-area {
    margin-left: 0;
    margin-top: 15px;
    font-size: 14px;
  }
}

/* section-about-redeck */
.section-about-redeck {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-about-redeck {
    padding: 0 40px;
  }
}
@media screen and (max-width: 640px) {
  .section-about-redeck {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}

.about-redeck-area {
  display: inline-block;
  width: 1063px;
  padding: 40px 96px 50px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .about-redeck-area {
    width: 100%;
    padding: 40px 36px 50px;
  }
}
@media screen and (max-width: 640px) {
  .about-redeck-area {
    width: 100%;
    padding: 40px 30px;
  }
}
.about-redeck-area .about-redeck-area-title {
  position: relative;
  padding-bottom: 24px;
  color: #0f1419;
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .about-redeck-area-title {
    font-size: 22px;
  }
}
.about-redeck-area .about-redeck-area-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 80px;
  height: 7px;
  border-radius: 16px;
  background: linear-gradient(to right, #152ed3, #d9def4);
}
@media screen and (max-width: 640px) {
  .about-redeck-area .about-redeck-area-title::after {
    width: 50px;
  }
}
.about-redeck-area .about-redeck-area-sub {
  margin-top: 25px;
  color: #152ed3;
  font-size: 36px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .about-redeck-area-sub {
    font-size: 22px;
  }
}
.about-redeck-area .process {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .process {
    margin-top: 19px;
  }
}
.about-redeck-area .process-text {
  margin-top: 15px;
  color: #0f1419;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .process-text {
    margin-top: 21px;
    text-align: left;
  }
}
.about-redeck-area .use-sean {
  position: relative;
  padding: 62px 0 35px;
  margin-top: 70px;
  border-top: solid 1px #152ed3;
  border-bottom: solid 1px #152ed3;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean {
    margin-top: 48px;
    padding: 40px 0 25px;
  }
}
.about-redeck-area .use-sean-title {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  display: inline-block;
  width: 407px;
  padding: 11px;
  border: solid 2px #152ed3;
  border-radius: 30px;
  color: #0f1419;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean-title {
    top: -20px;
    width: 209px;
    padding: 5px 10px;
    font-size: 18px;
  }
}
.about-redeck-area .use-sean-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean-list {
    flex-direction: column;
    gap: 20px;
  }
}
.about-redeck-area .use-sean-item {
  width: calc(50% - 15px);
  padding: 22px 35px;
  border-radius: 16px;
  background: linear-gradient(to right, #eceef9, #d1d7fa);
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean-item {
    width: 100%;
    padding: 22px 25px;
  }
}
.about-redeck-area .use-sean-item-sub {
  color: #000000;
  font-size: 16px;
  text-align: center;
}
.about-redeck-area .use-sean-item-title {
  margin-top: 4px;
  color: #152ed3;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean-item-title {
    margin-top: 6px;
    font-size: 20px;
  }
}
.about-redeck-area .use-sean-img-wrap {
  display: block;
  margin-top: 26px;
}
.about-redeck-area .use-sean-img-wrap img {
  height: 200px;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean-img-wrap {
    margin-top: 5px;
  }
  .about-redeck-area .use-sean-img-wrap img {
    height: auto;
  }
}
.about-redeck-area .use-sean-text {
  margin-top: 31px;
}
@media screen and (max-width: 640px) {
  .about-redeck-area .use-sean-text {
    margin-top: 23px;
    font-size: 14px;
  }
}

/* function-template-wrap */
.function-template-wrap {
  padding: 100px 0;
  background: linear-gradient(to bottom right, rgba(21, 46, 211, 0.1) 30.2%, rgba(64, 190, 224, 0.1) 50.2%);
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-template-wrap {
    padding: 65px 40px;
  }
}
@media screen and (max-width: 640px) {
  .function-template-wrap {
    padding: 40px 20px;
  }
}

/* section-function */
.section-function {
  display: flex;
  justify-content: center;
}

.function-area {
  display: inline-block;
  width: 1063px;
  padding: 40px 96px 50px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .function-area {
    width: 100%;
    padding: 40px 30px 50px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-area {
    width: 100%;
    padding: 40px 30px 50px;
  }
}
.function-area .fuction-area-title {
  position: relative;
  padding-bottom: 24px;
  color: #0f1419;
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .function-area .fuction-area-title {
    font-size: 22px;
  }
}
.function-area .fuction-area-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 80px;
  height: 7px;
  border-radius: 16px;
  background: linear-gradient(to right, #152ed3, #d9def4);
}
@media screen and (max-width: 640px) {
  .function-area .fuction-area-title::after {
    width: 50px;
  }
}
.function-area .function-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-top: 54px;
  padding: 0 0 40px;
  border-bottom: solid 2px #152ed3;
}
@media screen and (max-width: 640px) {
  .function-area .function-item {
    flex-direction: column;
    margin-top: 34px;
    padding: 0 0 24px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-area .function-item {
    margin-top: 34px;
    flex-direction: column;
  }
}
.function-area .function-item:nth-child(2n) .function-item-main {
  order: 2;
  margin-left: 50px;
}
@media screen and (max-width: 640px) {
  .function-area .function-item:nth-child(2n) .function-item-main {
    order: 1;
    margin-left: 0;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-area .function-item:nth-child(2n) .function-item-main {
    order: 1;
    margin-left: 0;
  }
}
.function-area .function-item:nth-child(2n) .function-item-img-wrap {
  order: 1;
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  .function-area .function-item:nth-child(2n) .function-item-img-wrap {
    order: 2;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-area .function-item:nth-child(2n) .function-item-img-wrap {
    order: 2;
    margin: 20px auto 0;
  }
}
.function-area .function-item-sub {
  position: relative;
  display: inline-block;
  padding-right: 15px;
  background-color: #fff;
  color: #152ed3;
  font-size: 70px;
}
@media screen and (max-width: 640px) {
  .function-area .function-item-sub {
    width: 100%;
    font-size: 54px;
    line-height: 1;
  }
}
.function-area .function-item-sub::after {
  position: absolute;
  bottom: 40%;
  left: 100px;
  content: "";
  width: 361px;
  height: 2px;
  background-color: #152ed3;
}
@media screen and (max-width: 640px) {
  .function-area .function-item-sub::after {
    left: auto;
    right: 0;
    width: 184px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-area .function-item-sub::after {
    left: auto;
    width: calc(100vw - 222px);
  }
}
.function-area .function-item-title {
  color: #152ed3;
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .function-area .function-item-title {
    margin-top: 20px;
    font-size: 20px;
  }
}
.function-area .fuction-item-text {
  color: #0f1419;
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  .function-area .fuction-item-text {
    font-size: 14px;
  }
}
.function-area .function-item-img-wrap {
  z-index: 2;
  width: 358px;
  min-width: 358px;
  height: 236px;
  margin-left: 49px;
  border-radius: 16px;
  background: linear-gradient(#eceef9, #d1d7fa);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .function-area .function-item-img-wrap {
    width: 100%;
    min-width: 100%;
    height: 198px;
    padding: 18px;
    margin-left: 0;
    margin-top: 14px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .function-area .function-item-img-wrap {
    margin: 20px auto 0;
  }
}
.function-area .function-item-img {
  width: 306px;
}
@media screen and (max-width: 640px) {
  .function-area .function-item-img {
    width: 100%;
    max-width: 250px;
  }
}

/* section-template */
.section-template {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  .section-template {
    margin-top: 30px;
  }
}

.template-area {
  display: inline-block;
  width: 1063px;
  padding: 40px 96px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .template-area {
    width: 100%;
    padding: 40px 36px 50px;
  }
}
@media screen and (max-width: 640px) {
  .template-area {
    width: 100%;
    padding: 20px;
  }
}
.template-area .template-area-title {
  position: relative;
  padding-bottom: 24px;
  color: #0f1419;
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .template-area .template-area-title {
    font-size: 20px;
  }
}
.template-area .template-area-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 80px;
  height: 7px;
  border-radius: 16px;
  background: linear-gradient(to right, #152ed3, #d9def4);
}
@media screen and (max-width: 640px) {
  .template-area .template-area-title::after {
    width: 50px;
  }
}
.template-area .template-area-text {
  margin-top: 36px;
  color: #0f1419;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .template-area .template-area-text {
    margin-top: 34px;
    text-align: left;
  }
}
.template-area .template-area-image-wrap {
  display: flex;
  margin-top: 20px;
}
.template-area .template-area-image-wrap picture {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .template-area .template-area-image {
    display: none;
  }
}
.template-area .template-area-image-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .template-area .template-area-image-sp {
    display: block;
  }
}

.wpcf7-wrap {
  width: 540px;
}
@media screen and (max-width: 640px) {
  .wpcf7-wrap {
    width: 100%;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .wpcf7-wrap {
    width: 100%;
  }
}

.wpcf7 {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .wpcf7 {
    width: 100%;
  }
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-list-item {
  margin: -5px 0;
  font-size: 10px;
}
.wpcf7-list-item input[type=checkbox] {
  margin: 0;
  display: none;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #141414;
  font-size: 10px;
}
.wpcf7-list-item label .checkmark {
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #707070;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
}
.wpcf7-list-item input:checked + .wpcf7-list-item-label .checkmark {
  background: linear-gradient(135deg, #c145ff, #255bf1);
  border-color: transparent;
}
.wpcf7-list-item input:checked + .wpcf7-list-item-label .checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 9px;
  background: url("../images/redeck/img_select-check.png") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.wpcf7-list-item-label {
  display: flex;
  align-items: flex-start;
}
.wpcf7-list-item-label span {
  width: fit-content;
}

.form-hope-wrapper .wpcf7-list-item-label {
  align-items: center;
  line-height: 1;
  font-size: 16px;
}

.confirm-wrapper .wpcf7-list-item-label {
  font-size: 12px;
}

/* Custom checkbox base */
.hope-wrapper,
.agreement-wrapper {
  /* CF7の use_label_element により、label 内に input とテキストが入る */
}
.hope-wrapper .wpcf7-list-item,
.agreement-wrapper .wpcf7-list-item {
  display: inline-block;
  margin: 6px 16px 6px 0;
}
.hope-wrapper .wpcf7-list-item:last-child,
.agreement-wrapper .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.hope-wrapper label,
.agreement-wrapper label {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  line-height: 1.6;
  user-select: none;
  color: inherit;
  /* 視覚的に隠すが可アクセスに */
  /* チェックボックス枠 */
  /* チェックマーク */
  /* ホバー時 */
  /* フォーカス可視 */
  /* チェック状態（:has がキー） */
  /* 無効状態 */
  /* エラーステート（CF7が .wpcf7-not-valid を付けた場合の例） */
}
.hope-wrapper label input[type=checkbox],
.agreement-wrapper label input[type=checkbox] {
  position: absolute;
  inset: 0 0 0 0;
  margin: 0;
  width: 1em; /* クリック領域の基準用 */
  height: 1em;
  opacity: 0;
  cursor: pointer;
}
.hope-wrapper label::before,
.agreement-wrapper label::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #B8BFC7;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
  margin-top: 2px; /* テキストのベースラインに合わせて微調整 */
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.hope-wrapper label::after,
.agreement-wrapper label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  top: 2px;
  left: 5px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.hope-wrapper label:hover::before,
.agreement-wrapper label:hover::before {
  border-color: #93A0AE;
}
.hope-wrapper label:focus-within::before,
.agreement-wrapper label:focus-within::before {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}
.hope-wrapper label:has(input[type=checkbox]:checked)::before,
.agreement-wrapper label:has(input[type=checkbox]:checked)::before {
  background: #2B6CB0; /* ブランド色に変更可 */
  border-color: #2B6CB0;
}
.hope-wrapper label:has(input[type=checkbox]:checked)::after,
.agreement-wrapper label:has(input[type=checkbox]:checked)::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
}
.hope-wrapper label:has(input[type=checkbox][disabled]),
.agreement-wrapper label:has(input[type=checkbox][disabled]) {
  cursor: not-allowed;
  opacity: 0.6;
}
.hope-wrapper label:has(input[type=checkbox].wpcf7-not-valid)::before,
.agreement-wrapper label:has(input[type=checkbox].wpcf7-not-valid)::before {
  border-color: #E11D48;
}

/* テキストの折返し・レイアウト調整（任意） */
.hope-wrapper .wpcf7-list-item label,
.agreement-wrapper .wpcf7-list-item label {
  white-space: normal;
  align-items: center;
  /* 複数行に折返してもチェックボックスが上揃えになりすぎないように */
}
.hope-wrapper .wpcf7-list-item label::before,
.agreement-wrapper .wpcf7-list-item label::before {
  margin-top: 0;
}

.agreement-wrapper .wpcf7-list-item label:last-child {
  align-items: flex-start;
}

.wpcf7-form span.wpcf7-not-valid-tip {
  margin-left: 1em;
  font-size: 10px;
  position: absolute;
  bottom: -14px;
  right: 0;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  background: #ffb900;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: linear-gradient(45deg, #399cff, #1938de);
  border: none;
  margin-top: 0.5em;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  margin-left: -5px;
}

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn-registar {
  display: block;
  width: 100%;
  max-width: 446px;
  padding: 11px 0;
  background: linear-gradient(to right, #ff5656, #b92ed3);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #fff;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .btn-registar {
    width: 100%;
    font-size: 18px;
  }
}
.btn-registar.btn-registar--mobile-menu {
  min-width: 335px;
  font-size: 16px;
}
.btn-registar.btn-registar--pc-header {
  width: 160px;
  font-size: 15px;
  margin-left: 20px;
}

.hero-btn-wrapper {
  display: none;
}
@media screen and (max-width: 640px) {
  .hero-btn-wrapper {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .hero-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 70px;
  }
}

.btn-wrapper {
  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.btn-wrapper.btn-wrapper--mobile-menu {
  margin-top: 40px;
}

.problem-about-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: -50px;
  background: linear-gradient(to bottom right, rgba(21, 46, 211, 0.1) 30.2%, rgba(64, 190, 224, 0.1) 50.2%);
}

/* section-problem-solving */
.section-problem-solving {
  position: relative;
  z-index: 0;
}
.section-problem-solving .problem-solving {
  margin-top: 60px;
  display: block;
  justify-content: center;
  align-items: center;
}
.section-problem-solving .problem-solving .inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-problem-solving .problem-solving .inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-problem-solving .problem-solving {
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .section-problem-solving .problem-solving {
    margin-top: 30px;
  }
}
.section-problem-solving .problem-solving-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: bold;
  font-size: clamp(26px, 3.5vw, 32px);
}
.section-problem-solving .problem-solving-title div {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: bold;
  font-size: clamp(26px, 3.5vw, 32px);
}
.section-problem-solving .problem-solving-title div img {
  width: 244px;
}
@media screen and (max-width: 640px) {
  .section-problem-solving .problem-solving-title {
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
  }
}
.section-problem-solving .problem-solving-sub {
  margin: 35px 0 34px;
  color: #1a3be1;
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .section-problem-solving .problem-solving-sub {
    margin: 16px 0 34px;
  }
}
.section-problem-solving .problem-solving-attention-text {
  font-size: 9px;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  .section-problem-solving .problem-solving-attention-text {
    width: 80%;
    margin: 10px auto 0;
  }
}
.section-problem-solving .process-image,
.section-problem-solving .ai-process-image {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.section-problem-solving .process-image img,
.section-problem-solving .ai-process-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-problem-solving .process-image,
  .section-problem-solving .ai-process-image {
    max-width: 700px;
  }
}
@media screen and (max-width: 640px) {
  .section-problem-solving .process-image,
  .section-problem-solving .ai-process-image {
    max-width: 325px;
  }
}
.section-problem-solving .ai-content {
  padding: 0px 30px;
  width: 336px;
  max-width: 100%;
  border-right: 2px solid #b2c0df;
}
.section-problem-solving .ai-content--end {
  border-right: none;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-problem-solving .ai-content {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #b2c0df;
    padding-bottom: 30px;
  }
  .section-problem-solving .ai-content--end {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .section-problem-solving .ai-content {
    width: 100%;
    padding: 0;
    border: none;
    position: relative;
  }
  .section-problem-solving .ai-content::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #b2c0df;
  }
  .section-problem-solving .ai-content--end:after {
    display: none;
  }
}
.section-problem-solving .ai-content-title {
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: bold;
  color: #1a3be1;
}
.section-problem-solving .ai-content-sub {
  margin-top: 20px;
  font-size: clamp(13px, 1.5vw, 15px);
  text-align: start;
}

/* section-cta-area */
.section-cta-area {
  padding: 40px 0;
  background: url(../images/redeck/img_bg-cta.png) center center/cover no-repeat;
}
.section-cta-area .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-cta-area .section-title {
  margin-top: 10px;
  color: #fff;
}
.section-cta-area .cta-sub {
  position: relative;
  display: inline-block;
  padding: 0 23px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-cta-area .cta-sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .section-cta-area .cta-sub {
    font-size: 18px;
  }
}
.section-cta-area .cta-sub::before {
  content: "\\";
  position: absolute;
  top: -1px;
  left: 0;
  transform: rotate(-12deg);
}
.section-cta-area .cta-sub::after {
  content: "/";
  position: absolute;
  top: -1px;
  right: 0;
  transform: rotate(12deg);
}
.section-cta-area .btn-registar {
  margin-top: 29px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .section-cta-area {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 640px) {
  .section-cta-area {
    padding: 40px 20px;
  }
}

/* band-area (PC/Tablet) */
.band-area {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-top: 62px;
  padding-bottom: 69px;
}
.band-area .band-item-wrapper {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.2));
}
.band-area .band-item {
  position: relative;
  height: 388px;
}
.band-area .band-item:nth-child(even) .band-item-wrapper > .band {
  left: unset;
  right: -10%;
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 15% 100%);
}
.band-area .band-item:nth-child(even) .band-color {
  right: unset;
  left: -6%;
  clip-path: polygon(0 0, 85% 0%, 100% 100%, 0 100%);
  background: linear-gradient(135deg, #1938de, #7dedfd);
}
.band-area .band-item:nth-child(even) .band-color .content img {
  margin-right: 70px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band-item:nth-child(even) .band-color .content img {
    margin-right: 40px;
  }
}
.band-area .band-item:nth-child(odd) .band-color .content img {
  margin-left: 70px;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band-item:nth-child(odd) .band-color .content img {
    margin-left: 40px;
  }
}
.band-area .band-item:last-child .band-color img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band-item {
    height: 320px;
  }
}
.band-area .band,
.band-area .band-color {
  position: absolute;
  height: 365px;
  width: calc(59% + 100px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band,
  .band-area .band-color {
    height: 280px;
    width: calc(65% + 80px);
  }
}
.band-area .band {
  top: 0;
  left: -6%;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  box-shadow: 0px 3px 26px 0px rgba(0, 0, 0, 0.45);
}
.band-area .band .content {
  max-width: 450px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band .content {
    max-width: 350px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band {
    left: -3%;
  }
}
.band-area .band-color {
  bottom: 0;
  right: -10%;
  background: linear-gradient(135deg, #7dedfd, #1938de);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.band-area .band-color .content {
  padding: 0 40px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band-color .content img {
    max-width: 320px;
    width: auto;
    height: 100%;
    object-fit: contain;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band-color .content {
    padding: 0 20px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area .band-color {
    right: -5%;
  }
}
.band-area .content {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.band-area .content h4 {
  font-size: clamp(18px, 2.5vw, 30px);
  color: #1a3be1;
  margin-top: 0;
  margin-bottom: 16px;
}
.band-area .content p {
  max-width: 400px;
  font-size: clamp(13px, 1.25vw, 15px);
  color: #334155;
  line-height: 1.7;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .band-area {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .band-area {
    display: none;
  }
}

/* features-mobile-layout (SP only) */
.features-mobile-layout {
  display: none;
}
@media screen and (max-width: 640px) {
  .features-mobile-layout {
    display: block;
    margin-top: 30px;
    padding-bottom: 0;
    background: #fff;
  }
  .features-mobile-layout .feature-section {
    padding: 50px 20px 0;
    margin-bottom: 40px;
    text-align: center;
    color: #000;
    background: linear-gradient(150deg, #cbf8ff 0%, #bce8fc 45%, #1938de 100%);
  }
  .features-mobile-layout .feature-section:last-child {
    margin-bottom: 0;
  }
  .features-mobile-layout .feature-section:last-child .feature-description {
    margin-bottom: 0;
  }
  .features-mobile-layout .feature-section:last-child .feature-image {
    top: 0;
  }
  .features-mobile-layout .feature-content {
    width: 95%;
    max-width: 450px;
    margin: 0 auto;
  }
  .features-mobile-layout .feature-title {
    font-size: clamp(21px, 5.75vw, 23px);
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a3be1;
    white-space: nowrap;
  }
  .features-mobile-layout .feature-description {
    font-size: clamp(14px, 3.75vw, 15px);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000;
  }
  .features-mobile-layout .feature-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    top: 5px;
  }
  .features-mobile-layout .feature-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: contain;
  }
}

/* company-info */
.company-logo {
  padding: 15px;
  width: fit-content;
  border: 1px solid #e0e0e0;
}
@media screen and (max-width: 640px) {
  .company-logo {
    width: 100%;
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto;
  }
  .company-logo img {
    width: 100%;
    max-width: 100px;
    max-height: 100px;
  }
}

.company-info {
  color: #000;
}
.company-info .name {
  font-size: 21px;
}
@media screen and (max-width: 640px) {
  .company-info .name {
    text-align: center;
  }
}
.company-info .detail {
  max-width: 588px;
  margin-top: 16px;
  font-size: 14px;
}
.company-info .site-link {
  display: inline-block;
  position: relative;
  margin-top: 28px;
  padding-right: 49px;
  font-size: 14px;
  color: #1a3be1;
}
.company-info .site-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.company-info .site-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 14px;
  background-image: url(../images/redeck/img_arrow-right.png);
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .company-info .site-link {
    width: calc(100% - 30px);
    text-align: right;
    padding-right: 30px;
  }
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .company-info {
    max-width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .company-info {
    margin-top: 30px;
  }
}

.client-company {
  margin-top: 66px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .client-company {
    margin-top: 40px;
  }
  .client-company img {
    max-width: 80%;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .client-company {
    display: none;
  }
}

.client-logos-mobile {
  display: none;
}
@media screen and (max-width: 640px) {
  .client-logos-mobile {
    display: block;
    margin-top: 30px;
    overflow: hidden;
  }
  .client-logos-mobile .client-logos-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  .client-logos-mobile .client-logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 95%, rgb(255, 255, 255) 100%);
  }
  .client-logos-mobile .client-logos-container:hover .client-logos-scroll {
    animation-play-state: paused;
  }
  .client-logos-mobile .client-logos-scroll {
    display: flex;
    align-items: center;
    animation: scrollLogos 50s linear infinite;
    width: calc(350% + 100px);
  }
  .client-logos-mobile .client-logo-item {
    flex: 0 0 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .client-logos-mobile .client-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  .client-logos-mobile .client-logo-item:hover img {
    opacity: 1;
  }
  .client-logos-mobile .client-logo-item img {
    max-width: 90px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

/* footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 0 90px;
  background-color: #203075;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 60px 30px 90px;
  }
}
.footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
  padding-left: 17px;
}
.footer .footer-inner .company-area {
  display: flex;
  align-items: center;
}
.footer .footer-inner .company-area .site-logo {
  width: 163px;
}
.footer .footer-inner .company-area .company-name {
  position: relative;
  padding-left: 56px;
  font-size: 14px;
  font-weight: 500;
}
.footer .footer-inner .company-area .company-name::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background-color: #415c73;
}
.footer .footer-inner .company-area .company-name a {
  display: flex;
  align-items: center;
}
.footer .footer-inner .company-area .company-name a .window-icon {
  width: 18px;
  height: 18px;
  margin-left: 5px;
  background-image: url(../images/redeck/icon_window_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .footer .footer-inner {
    display: block;
    padding: 0;
  }
  .footer .footer-inner .company-area {
    flex-direction: column;
  }
  .footer .footer-inner .company-area .company-name {
    padding-top: 10px;
    padding-left: 0;
  }
  .footer .footer-inner .company-area .company-name::after {
    display: none;
  }
}
.footer .footer-linklist {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 400px;
  max-height: 140px;
  gap: 18px 63.5px;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .footer .footer-linklist {
    gap: 23px 63.5px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .footer .footer-linklist {
    justify-content: space-between;
    max-height: unset;
    flex-direction: row;
    max-width: 300px;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 640px) {
  .footer .footer-linklist .link-item {
    min-width: 110px;
  }
}
.footer .footer-linklist .link-item a {
  color: #fff;
  font-size: 11px;
}
.footer .footer-copyright {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  font-size: 10px;
}

/*======================================
  フローティングバナー (SP only)
======================================*/
.floating-banner {
  display: none;
}
@media screen and (max-width: 640px) {
  .floating-banner {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 999;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  }
  .floating-banner:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .floating-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  .floating-banner .floating-banner-link {
    display: block;
    text-decoration: none;
    background: linear-gradient(to right, #ff5656, #b92ed3);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(250, 78, 14, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .floating-banner .floating-banner-link:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(250, 78, 14, 0.3);
    transition: all 0.1s ease;
  }
  .floating-banner .floating-banner-link:active .floating-banner-arrow {
    transform: rotate(90deg) translateX(1px) scale(0.95);
    transition: all 0.1s ease;
  }
  .floating-banner .floating-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }
  .floating-banner .floating-banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: opacity 0.3s ease;
  }
  .floating-banner .floating-banner-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.2s ease;
  }
  .floating-banner .floating-banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
  .floating-banner .floating-banner-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: rotate(90deg);
  }
}/*# sourceMappingURL=layout-redeck.css.map */