@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-text:#1C1C1C;
  --color-main:#102A64;
  --color-sub_1:#4CC7EB;
  --color-sub_2: #9ACF89;
  --color-sub_3: #F5F8FA;
  --color-accent: #8F7336;
  --color-Dgray_2: #3C3C3C;
  --color-Dgray_1: #606060;
  --color-Mgray_2: #808080;
  --color-Mgray_1: #A0A0A0;
  --color-Lgray_2: #C8C8C8;
  --color-Lgray_1: #E8E8E8;
  --color-BGgray: #F6F6F6;
  --color-Accent_red: #570009;
}

/* =============================================
  Base
============================================= */
/*  Display
--------------------------------------------*/
/*  Standard
--------------------------------------------*/
/*  Dense
--------------------------------------------*/
/*  Oneline
--------------------------------------------*/
/*  Wide
--------------------------------------------*/
/*  Caption
--------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
var {
  font-weight: 500;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
  list-style-type: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

area {
  outline: none;
  border: none;
}

abbr,
acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

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

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  outline: none;
}

figure {
  line-height: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

body a {
  color: var(--color-text);
  text-decoration: none;
}

body {
  position: relative;
  margin: 0;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
}
/*
.ef-fade01 {
  transition: 1s;
  opacity: 0;
  transform: translate(0, 10%);
}
.fade01 {
  opacity: 1.0;
  transform: translate(0,0);
}
*/
.header {
  display: flex;
  position: absolute;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
  margin: 16px 48px 8px 14px;
  background: transparent;
}
.header.is-menu-open .header_logo {
  display: none;
}
.header.is-menu-open .header_btn ._contact,
.header.is-menu-open .header_btn ._simulator {
  display: none;
}
@-webkit-keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.header_logo {
  min-width: 0;
}
.header_logo a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  max-width: 313px;
}
.header_logo span {
  display: block;
  width: 100%;
}
.header_logoImg {
  display: block;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  max-width: 420px;
  height: auto;
}
.header_logoTxt {
  display: block;
  width: calc(159 / 313 * 100%);
  max-width: 100%;
}
.header_btn {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  gap: 0;
  z-index: 1000;
  width: 100%;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.header_btn ._contact {
  display: inline-flex;
  position: relative;
  flex: 1;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #102A64, #57C3E8);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 48px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.header_btn ._contact::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.header_btn ._simulator {
  display: inline-flex;
  position: relative;
  flex: 1;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #8F7336, #C3A461);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 48px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.header_btn ._simulator::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.header_menuToggle {
  flex: 0 0 48px;
}

.footer {
  position: relative;
}
.footer_inner {
  padding: 40px 0 0;
}
.footer_logo {
  padding: 0 31px;
}
.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_companyList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  padding: 0 59px;
}
.footer_company {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}
.footer_companyRole {
  border-radius: 4px;
  background-color: var(--color-main);
  padding: 8px 0;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.footer_companyLogo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_companyName {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.footer_companyAddress {
  display: block;
  padding: 0 32px;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.footer_copy {
  margin: 32px 0 64px;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}

.navToggle {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 10;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
}
.navToggle_icon {
  display: block;
  position: relative;
  box-sizing: border-box;
  background: var(--color-main);
  width: 48px;
  height: 48px;
}
.navToggle_line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  border-radius: 999px;
  background: #fff;
  width: 20px;
  height: 1px;
}
.navToggle_line:nth-child(1) {
  top: 15px;
}
.navToggle_line:nth-child(2) {
  top: 23px;
}
.navToggle_line:nth-child(3) {
  top: 31px;
}
.navToggle.is-open .navToggle_line:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.navToggle.is-open .navToggle_line:nth-child(2) {
  opacity: 0;
}
.navToggle.is-open .navToggle_line:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.headerMenu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  inset: 0;
  background-color: var(--color-white);
  pointer-events: none;
  /* =================
    INNER
  ================= */
  /* =================
    MAIN LAYOUT
  ================= */
  /* =================
    LEFT IMAGE
  ================= */
  /* =================
    RIGHT CONTENT
  ================= */
  /* =================
    LOGO
  ================= */
  /* =================
    NAV
  ================= */
  /* =================
    CTA
  ================= */
  /* =================
    BACKGROUND TEXT
  ================= */
}
.headerMenu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.headerMenu_inner {
  position: relative;
  box-sizing: border-box;
  padding: 20px 16px 32px;
  width: 100%;
  height: 100%;
  overflow-x: clip;
  overflow-y: auto;
}
.headerMenu_content {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 2;
  padding: 0 24px;
  min-height: calc(100dvh - 40px);
}
.headerMenu_visual {
  display: none;
}
.headerMenu_visual img {
  display: block;
  border-radius: 16px;
  width: 100%;
  height: auto;
}
.headerMenu_body {
  width: 100%;
  text-align: center;
}
.headerMenu_logo {
  margin: 0 auto 40px;
  max-width: 328px;
}
.headerMenu_logo img {
  width: 100%;
  height: auto;
}
.headerMenu_logo span {
  display: block;
  margin: 2px auto 0;
  width: 136px;
}
.headerMenu_navList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.headerMenu_navItem {
  list-style: none;
}
.headerMenu_navItem a {
  display: inline-block;
  transition: opacity 0.3s ease;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.headerMenu_navItem a:hover {
  opacity: 0.65;
}
.headerMenu_cta {
  display: none;
}
.headerMenu_ctaBtn {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  width: min(100%, 320px);
  min-height: 48px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.headerMenu_ctaBtn:hover {
  opacity: 0.8;
}
.headerMenu_ctaBtn span {
  display: inline-block;
}
.headerMenu ._contact {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #102A64, #57C3E8);
  padding-right: 24px;
  padding-left: 8px;
  width: 320px;
  height: 48px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.headerMenu ._contact::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.headerMenu ._simulator {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #8F7336, #C3A461);
  padding-right: 24px;
  padding-left: 8px;
  width: 320px;
  height: 48px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.headerMenu ._simulator::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.headerMenu_bgText {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: url("../images/kv_logo_bg.svg");
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 9vw;
}

/* =================
  BODY FIX
================= */
body.is-fixed {
  overflow: hidden;
}

.kv {
  position: relative;
  background-image: url("../images/kv_bg.jpg");
  background-position: right top;
  background-size: auto;
  background-repeat: no-repeat;
  background-color: var(--color-main);
  padding-bottom: 40px;
}
.kv_inner {
  display: flex;
  flex-direction: column;
  flex-direction: column-reverse;
}
.kv_content {
  padding: 0 14px;
}
.kv_lead {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.kv_heading {
  text-align: center;
}
.kv_copy {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.kv_badge {
  display: inline-block;
  margin: 4px 0 16px;
  border-radius: 99px;
  background-color: var(--color-main);
  padding: 4px 32px 6px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.kv_title {
  margin-bottom: 8px;
}
.kv_desc {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.kv_featureList {
  display: flex;
  gap: 0;
  margin-top: 8px;
}
.kv_featureItem {
  flex: 1;
  background: url(../images/kv_featureitem_bg.png) no-repeat;
  background-size: 100% auto;
}
.kv_featureIcon {
  margin: 28px;
}
.kv_featureText {
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.kv_cta {
  display: none;
}
.kv_ctaLead {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.kv_ctaBtn {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.kv_visual {
  margin: 58px auto 8px;
  width: 70.13%;
  height: auto;
}

.problem {
  position: relative;
  background: var(--color-main);
  color: var(--color-white);
}
.problem_inner {
  margin: 0 auto;
  padding: 80px 0 0;
  padding-top: 80px;
  max-width: 1080px;
}
.problem_head {
  margin-bottom: 40px;
  padding: 0 10px;
  text-align: center;
}
.problem_lead {
  margin-bottom: 8px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.problem_title {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem_cardList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  padding: 0 24px;
}
.problem_card {
  flex: 1;
  margin: 0 auto;
  border: 1px solid var(--color-sub_1);
  border-radius: 48px;
  padding: 24px;
}
.problem_cardMain {
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem_cardImage {
  margin: 0 auto 16px;
  max-width: 104px;
}
.problem_cardBody {
  flex: 1;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
.problem_cardTitle {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.problem_cardLead {
  margin-bottom: 16px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.problem_cardText {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem_content {
  padding: 0 24px;
}
.problem_copy {
  margin-bottom: 4px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem_copySub {
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem_desc {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem_badge {
  display: inline-block;
  margin: 24px 0 8px;
  border-radius: 8px;
  background-color: var(--color-sub_1);
  padding: 4px 16px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.problem_text {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem .is-accent {
  margin-top: 1.2em;
  margin-bottom: 8px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.problem_featureItem {
  position: relative;
  padding-left: 1em;
}
.problem_featureItem::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.problem_featureText {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.problem_ctaLead {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

.solution {
  position: relative;
  background: url("../images/solution_bg.jpg");
  background-position: top right;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.solution_inner {
  margin: 0 auto;
  padding: 96px 24px 64px;
}
.solution_intro {
  margin-bottom: 40px;
}
.solution_lead {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.solution_title {
  color: var(--color-main);
}
.solution_titleInner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.solution_titleMain {
  position: relative;
  z-index: 1;
  color: var(--color-main);
  font-weight: 700;
  font-size: 3.5rem;
}
.solution_titleMain::after {
  display: block;
  position: absolute;
  bottom: 16px;
  z-index: -1;
  background-color: var(--color-white);
  width: 100%;
  height: 12px;
  content: "";
}
.solution_titleSub {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.solution_titleSub2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.solution_titleSub3 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.solution_titleSub3::after {
  display: block;
  position: absolute;
  bottom: -2px;
  z-index: -1;
  background-color: var(--color-white);
  width: 100%;
  height: 12px;
  content: "";
}
.solution_visual {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.solution_image {
  border-radius: 16px;
  overflow: hidden;
}
.solution_image img {
  display: block;
  width: 100%;
  height: auto;
}
.solution_text {
  margin-bottom: 1.2em;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.solution_text .is_accent {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.solution_featureList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.solution_feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.solution_featureIcon {
  flex: 0 0 auto;
  width: 80px;
}
.solution_featureIcon img {
  display: block;
  width: 100%;
  height: auto;
}
.solution_featureTitle {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.solution_featureText {
  flex: 0 0 100%;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}

.story {
  position: relative;
  background: url("../images/story_bg.jpg");
  background-position: left top;
  background-size: 120% auto;
  background-repeat: no-repeat;
}
.story_inner {
  margin: 0 auto;
  padding: 80px 24px 96px;
}
.story_head {
  border-bottom: 1px solid var(--color-Mgray_1);
  padding-bottom: 32px;
}
.story_intro {
  flex: 1 1 0;
  min-width: 0;
}
.story_lead {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_title {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.story_title::after {
  display: block;
  position: absolute;
  bottom: -2px;
  z-index: -1;
  background-color: var(--color-sub_1);
  width: 100%;
  height: 15px;
  content: "";
}
.story_copy {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_visual {
  margin-top: 8px;
}
.story_visual img {
  display: block;
  width: 100%;
  height: auto;
}
.story_content {
  margin-top: 32px;
}
.story_text {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_tab {
  margin-top: 32px;
}
.story_tabNav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 7px;
  margin-bottom: 32px;
  width: 100%;
}
.story_tabNav > * {
  flex: 1;
}
.story_tabButton {
  display: flex;
  position: relative;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: none;
  background: transparent;
  background-color: var(--color-BGgray);
  padding: 7px 15px 14px;
}
.story_tabButton::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 12px solid var(--color-main);
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-left: 8px solid transparent;
  width: 0;
  height: 0;
  content: "";
}
.story_tabButton.is-active {
  background-color: var(--color-sub_1);
  color: var(--color-white);
}
.story_tabButton.is-active::after {
  border-top: 12px solid var(--color-white);
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-left: 8px solid transparent;
}
.story_tabButton.is-active .story_tabNum {
  color: var(--color-white);
}
.story_tabNum {
  margin: 0 auto;
  color: var(--color-main);
  font-size: 2.125rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.story_tabLabel {
  display: none;
  text-align: left;
}
.story_panel {
  display: none;
}
.story_panel.is-active {
  display: block;
}
.story_panel[hidden] {
  display: none;
}
.story_panelText {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_panelText + .story_panelText {
  margin-top: 1.5em;
}
.story_panelTextLead {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_panelImage {
  margin-top: 24px;
}
.story_panelImage img {
  display: block;
  width: 100%;
  height: auto;
}
.story_recommend {
  margin-top: 64px;
  background-color: var(--color-sub_3);
  padding: 32px 16px;
}
.story_recommendLead {
  display: inline-block;
  margin-left: -16px;
  background-color: var(--color-main);
  padding: 4px 8px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.story_recommendLeadSub {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.story_recommendBody {
  flex: 1;
}
.story_recommendTitle {
  margin-top: 17px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_recommendName {
  margin: 24px 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.story_recommendNameSub {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_recommendNameLabel {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.story_recommendText {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_recommendText.is-accent {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.story_recommendImage {
  margin: 16px auto 0;
  max-width: 240px;
}
.story_recommendImage img {
  display: block;
  width: 100%;
  height: auto;
}

.about {
  position: relative;
  background: url("../images/about_bg_sp.jpg");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #040517;
  color: var(--color-white);
}
.about_inner {
  padding: calc(280 / 375 * 100%) 24px 40px;
}
.about_intro {
  margin-bottom: 48px;
}
.about_lead {
  margin-bottom: 8px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.about_title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.about_heading {
  margin-bottom: 16px;
  color: var(--color-sub_1);
  font-size: 2.125rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.about_deviceImages {
  margin-bottom: 16px;
}
.about_deviceImage {
  margin: 0 auto;
  width: 74.67%;
  max-width: 280px;
  text-align: center;
}
.about_deviceImage img {
  display: block;
  width: 100%;
  height: auto;
}
.about_deviceThumb img {
  display: block;
  width: 100%;
  height: auto;
}
.about_copy {
  margin-bottom: 24px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.about_specItem {
  display: flex;
  margin-bottom: 8px;
}
.about_specHead {
  width: 80px;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.about_specHead span {
  display: inline-block;
  position: relative;
  top: -4px;
  font-size: 0.6em;
  line-height: 1;
}
.about_specData {
  flex: 1;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.about_note {
  margin-top: 24px;
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.about_system {
  margin-top: 48px;
}
.about_systemImage {
  margin: 0 auto;
  width: 74.67%;
  max-width: 280px;
  text-align: center;
}
.about_systemImage img {
  display: block;
  width: 100%;
  height: auto;
}
.about_systemBody {
  margin-top: 16px;
}
.about_featureList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about_featureTitle {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.about_featureText {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.about_visual img {
  display: block;
  width: 100%;
  height: auto;
}

.detail {
  position: relative;
  background-color: #040517;
}
.detail_inner {
  padding: 0 24px 120px;
}
.detail_summaryList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail_summaryItem {
  flex: 1;
  border: 1px solid var(--color-sub_1);
  border-radius: 8px;
  background-color: #363745;
  padding: 24px 16px;
}
.detail_summaryHead {
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail_summaryIcon {
  width: 40px;
}
.detail_summaryIcon img {
  display: block;
  width: 100%;
  height: auto;
}
.detail_summaryTitle {
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.detail_summaryTags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.detail_summaryTag {
  border-radius: 99px;
  background-color: var(--color-white);
  padding: 8px 16px;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.detail_grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 64px;
}
.detail_item {
  flex: 1 1 0;
  min-width: 0;
}
.detail_itemImage {
  margin: 0 auto;
  margin-bottom: 16px;
  max-width: 400px;
}
.detail_itemImage img {
  display: block;
  width: 100%;
  height: auto;
}
.detail_itemTitle {
  margin-bottom: 8px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.detail_itemText {
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.detail_ReadMoreButton {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 20px auto 0;
  border: none;
  background: transparent;
  padding: 0;
  padding-right: 10px;
  color: var(--color-Mgray_1);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.detail_ReadMoreButton::after {
  display: inline-block;
  flex: none;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  margin-bottom: 1px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  width: 6px;
  height: 6px;
  content: "";
}
.detail_itemCta {
  margin: 16px auto 0;
  text-align: center;
}
.detail_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border-radius: 8px;
  background-color: var(--color-accent);
  padding: 8px 16px;
  width: 100%;
  color: var(--color-white);
  text-decoration: none;
}
.detail_buttonText {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.detail_buttonIcon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.detail_buttonIcon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  width: 7px;
  height: 7px;
  content: "";
}

.point {
  position: relative;
}
.point_inner {
  padding: 80px 24px 0;
}
.point_intro {
  margin: 0 auto 16px;
  text-align: center;
}
.point_badge {
  display: inline-block;
  margin: 0 auto 8px;
  border-radius: 8px;
  background-color: var(--color-sub_1);
  padding: 4px 53px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.point_title {
  color: var(--color-main);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.point_featureList {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.point_feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--color-sub_1);
  border-radius: 32px;
  padding: 12px;
  width: calc((100% - 6px) / 2);
  text-align: center;
}
.point_featureIcon {
  margin: 0 auto;
  width: 96px;
}
.point_featureIcon img {
  display: block;
  width: 100%;
  height: auto;
}
.point_featureTitle {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.point_featureText {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.point_desc {
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.point_flow {
  margin-top: 48px;
}
.point_flowInner {
  position: relative;
  border-radius: 24px;
  background-color: var(--color-sub_3);
  padding: 32px 16px;
}
.point_flowInner::after {
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--color-sub_3);
  width: 96px;
  height: 32px;
  content: "";
}
.point_flowTitle {
  margin-bottom: 8px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.point_flowLead {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.point_flowContent {
  margin-top: 24px;
}
.point_flowImage {
  width: 100%;
}
.point_flowImage img {
  display: block;
  width: 100%;
  height: auto;
}
.point_flowBody {
  margin-top: 24px;
}
.point_flowHeading {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.point_stepList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.point_stepItem {
  display: flex;
  align-items: center;
  gap: 16px;
}
.point_stepNum {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--color-main);
  width: 48px;
  height: 48px;
  color: var(--color-white);
  font-size: 1.5rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.point_stepTitle {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.point_stepText {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.point_cycle {
  margin-top: 80px;
}
.point_cycleInner {
  position: relative;
  border-radius: 24px;
  background-color: var(--color-sub_3);
  padding: 64px 16px;
}
.point_cycleTitle {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.point_cycleLead {
  margin-top: 8px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.point_cycleDiagram {
  margin: 40px auto 0;
  width: 100%;
}
.point_cycleDiagramImg {
  margin: 0 auto;
  max-width: 310px;
}
.point_cycleDiagramImg img {
  display: block;
  width: 100%;
  height: auto;
}
.point_cycleNum {
  font-size: 1.75rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.point_cycleLabel {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.point_cycleHeading {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.point_cycleText {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.business {
  position: relative;
  top: 0;
  background: url("../images/business_bg.png");
  background-position: right 0;
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 80px 0 80px;
  overflow: visible;
}
.business_inner {
  margin: 0 auto;
  padding: 0 16px;
}
.business_title {
  color: var(--color-main);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.business_badge {
  margin: 8px auto 0;
  text-align: center;
}
.business_badgeText {
  display: block;
  border-radius: 8px;
  background-color: var(--color-sub_1);
  padding: 4px 0;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.business_desc {
  margin-top: 24px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.business_list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
.business_item {
  display: flex;
  position: sticky;
  top: 20px;
  justify-content: center;
  width: 100%;
}
.business_item--01 .business_card {
  position: relative;
  z-index: 1;
  background-color: var(--color-main);
  color: var(--color-white);
}
.business_item--02 .business_card {
  z-index: 2;
  background-color: var(--color-sub_1);
  color: var(--color-white);
}
.business_item--03 .business_card {
  z-index: 3;
  background-color: var(--color-sub_2);
}
.business_item--04 .business_card {
  z-index: 4;
  background-color: var(--color-sub_3);
}
.business_card {
  align-items: center;
  border-radius: 32px;
  background: #fff;
  padding: 40px 24px;
  width: 100%;
}
.business_card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("../images/business_card_bg.png");
  background-position: right 50% top;
  background-size: 350% auto;
  background-repeat: no-repeat;
  content: "";
}
.business_itemBody {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  margin-bottom: 20px;
  min-width: 0;
}
.business_num {
  margin: 0 auto 24px;
  font-size: 4rem;
  line-height: 1;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
}
.business_heading {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 0;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.business_text {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.business_itemImage {
  position: relative;
  flex: 720;
  z-index: 2;
  margin-top: 8px;
  min-width: 0;
}
.business_itemImage img {
  display: block;
  border-radius: 20px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.price {
  position: relative;
  background-image: url("../images/price_bg_sp.jpg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 27.8vw;
  padding-bottom: 40px;
}
.price_inner {
  margin: 0 auto;
  padding: 0 14px;
  max-width: 1080px;
}
.price_intro {
  padding-top: 100px;
}
.price_visual img {
  display: block;
  width: 100%;
  height: auto;
}
.price_title {
  margin-bottom: 8px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.price_badge {
  margin: 0 auto 24px;
  text-align: center;
}
.price_badgeText {
  display: inline-block;
  border-radius: 8px;
  background-color: var(--color-sub_1);
  padding: 4px 24px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.price_note {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.price_plan {
  margin-top: 24px;
  border-radius: 32px;
  background-color: var(--color-sub_3);
  padding: 32px 16px;
}
.price_planDesc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_planBox {
  position: relative;
  top: 20px;
  margin: 0 auto;
  text-align: center;
}
.price_planBadge {
  display: inline-block;
  border-radius: 8px;
  background-color: var(--color-sub_1);
  padding: 7px 32px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.price_planPrice {
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 48px 16px 24px;
}
.price_planPriceBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.price_planLabel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price_planLabelSmall {
  border: 1px solid var(--color-sub_1);
  border-radius: 4px;
  padding: 4px 30px;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.price_planLabelMain {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_planValueNum {
  font-size: 4rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.price_planValueUnit {
  position: relative;
  bottom: 10px;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_planValueTax {
  position: relative;
  bottom: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_planSub {
  margin-top: 32px;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
}
.price_planFeatureList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.price_planFeature {
  position: relative;
  margin: 0;
  padding: 0;
  padding-left: 32px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.price_planFeature::before {
  position: absolute;
  left: 0;
  background-image: url("../images/icon_check.svg");
  background-size: 24px auto;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  content: "";
}
.price_planFeature.is-strong {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.price_planMessage {
  margin-bottom: 24px;
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.price_planCaution {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--color-sub_1);
  border-radius: 16px;
  padding: 16px;
}
.price_planCautionHead {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.price_planCautionItem {
  margin-left: 12px;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-indent: -12px;
}
.price_planCautionItem::before {
  content: "・";
}
.price_simulatorInner {
  margin: 48px auto 0;
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 0 24px 24px;
  text-align: center;
}
.price_simulatorBadge {
  display: inline-block;
  position: relative;
  top: -20px;
  margin: 0 auto;
  border-radius: 8px;
  background-color: var(--color-accent);
  padding: 7px 32px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.price_simulatorLabel {
  display: inline-block;
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.price_simulatorTitle {
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.price_simulatorDesc {
  margin-top: 16px;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.price_simulatorContent {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}
.price_simulatorHeading {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
}
.price_simulatorImage img {
  display: block;
  width: 100%;
  height: auto;
}
.price_simulatorCaption {
  margin-top: 16px;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.price_simulatorBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}
.price_simulatorLeft {
  flex: 1;
  max-width: 392px;
}
.price_simulatorCard {
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  padding: 24px 16px;
}
.price_simulatorCardLead {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.price_simulatorCardTitle {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.price_simulatorCardText {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.price_simulatorMessage {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_button {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #102A64, #57C3E8);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 48px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.price_button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.price_reason {
  margin-top: 48px;
}
.price_reasonTitle {
  text-align: left;
}
.price_reasonTitleNum {
  color: var(--color-sub_1);
  font-size: 3.625rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.price_reasonTitleUnit {
  color: var(--color-sub_1);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_reasonTitleParticle {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_reasonTitleMain {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_reasonList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.price_reasonItem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.price_reasonIcon {
  width: 80px;
}
.price_reasonIcon img {
  display: block;
  width: 100%;
  height: auto;
}
.price_reasonHeading {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.price_reasonText {
  width: 100%;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.price_buttonText {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.case {
  position: relative;
  background-color: var(--color-main);
  overflow: hidden;
}
.case_inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px;
}
.case_media {
  width: 100%;
}
.case_media img {
  display: block;
  width: 100%;
  height: auto;
}
.case_title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.case_company {
  margin-top: 24px;
  border-radius: 4px;
  background-color: var(--color-sub_1);
  padding: 4px 0;
  width: 100%;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.case_text {
  margin-top: 24px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.case_note {
  margin-top: 8px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.6875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.case_galleryItem {
  width: 100%;
}
.case_galleryItem img {
  display: block;
  width: 100%;
  height: auto;
}

.flow {
  position: relative;
}
.flow_inner {
  padding: 80px 24px;
}
.flow_title {
  position: relative;
  padding-bottom: 16px;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--color-main);
  width: 177px;
  height: 2px;
  content: "";
}
.flow_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-Lgray_1);
  width: 100%;
  height: 1px;
  content: "";
}
.flow_title.is-noborder::before {
  display: none;
}
.flow_title.is-noborder::after {
  display: none;
}
.flow_step {
  margin-bottom: 40px;
}
.flow_stepContent {
  margin-top: 32px;
}
.flow_stepList {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow_stepNum {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--color-main);
  width: 56px;
  height: 56px;
  color: var(--color-white);
  font-size: 1.75rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.flow_stepTextGroup {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.flow_stepTitle {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_stepText {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_stepImage {
  margin-top: 48px;
}
.flow_stepImage img {
  display: block;
  width: 100%;
  height: auto;
}
.flow_developerIntro {
  margin-top: 32px;
}
.flow_developerCatch {
  margin-bottom: 8px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.flow_developerLead {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_developerList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.flow_developerItem {
  flex: 1;
}
.flow_developerImage {
  margin: 0 auto 24px;
  max-width: 240px;
}
.flow_developerImage img {
  display: block;
  width: 100%;
  height: auto;
}
.flow_developerBody {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow_developerCompany {
  display: block;
  margin: 0 auto;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.flow_developerRole {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.flow_developerNameMain {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_developerText {
  margin-top: 24px;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_faq {
  margin-top: 40px;
  color: var(--color-text);
}
.flow_faqTab {
  display: flex;
  border-top: 1px solid var(--color-Lgray_1);
  border-bottom: 1px solid var(--color-Lgray_1);
  padding: 0;
}
.flow_faqTabButton {
  display: flex;
  flex: 1;
  flex: 1;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 16px 9px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: left;
}
.flow_faqTabButton.is-active {
  position: relative;
}
.flow_faqTabButton.is-active::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-sub_1);
  width: 100%;
  height: 2px;
  content: "";
}
.flow_faqPanels {
  margin-top: 16px;
}
.flow_faqPanel {
  display: none;
}
.flow_faqPanel.is-active {
  display: block;
}
.flow_faqPanel[hidden] {
  display: none;
}
.flow_faqQuestion {
  display: flex;
  align-items: center;
  gap: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 24px 0;
  width: 100%;
}
.flow_faqQuestion[aria-expanded=true] .flow_faqQuestionIcon::after {
  opacity: 0;
}
.flow_faqQuestionLabel {
  width: 24px;
  color: var(--color-text);
  font-size: 1.125rem;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}
.flow_faqQuestionText {
  flex: 1;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
}
.flow_faqQuestionIcon {
  position: relative;
  flex: 0 0 24px;
  margin-left: auto;
  width: 24px;
  height: 24px;
}
.flow_faqQuestionIcon::before, .flow_faqQuestionIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  background-color: var(--color-text);
  width: 16px;
  height: 2px;
  content: "";
}
.flow_faqQuestionIcon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.flow_faqAnswer {
  position: relative;
  transition: height 0.35s ease;
  margin: 0 48px 32px 10px;
  padding-left: 24px;
  height: 0;
  overflow: hidden;
}
.flow_faqAnswer.is-open {
  display: block;
  height: auto;
}
.flow_faqAnswer::before {
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--color-sub_1);
  width: 1px;
  height: 100%;
  content: "";
}
.flow_faqAnswerText {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_faqAnswerText + .flow_faqAnswerText {
  margin-top: 1.2em;
}
.flow_faqAnswerTextNote {
  margin-top: 1em;
  margin-bottom: 1.2em;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.flow_faqAnswerList.is-margin {
  margin-bottom: 1.2em;
}
.flow_faqAnswerItem {
  margin-left: 10px;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-indent: -14px;
}
.flow_faqAnswerItem::before {
  content: "・";
}
.flow_faqAnswerAction {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}
.flow_faqAnswerButton {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.flow_faqAnswerButton._contact {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #102A64, #57C3E8);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 56px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.flow_faqAnswerButton._contact::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}

.future {
  position: relative;
  background-image: url("../images/future_bg.jpg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: var(--color-Accent_red);
}
.future_inner {
  padding: 80px 24px 40px;
}
.future_intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  text-align: center;
}
.future_option {
  margin: 0 auto;
  background-image: url("../images/future_option_bg.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 132px;
  height: 64px;
}
.future_optionText {
  padding-top: 8px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.future_badge {
  display: inline-block;
  margin: 0 auto;
  border-radius: 4px;
  background-color: var(--color-accent);
  padding: 4px 16px;
  color: var(--color-Accent_red);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.future_title {
  margin: 0 auto;
  text-align: center;
}
.future_titleTop {
  display: block;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.future_titleMain {
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.future_desc {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.future_cardList {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.future_card {
  flex: 1;
  margin-top: 48px;
  border-radius: 16px;
  background-color: var(--color-accent);
  padding: 16px;
}
.future_cardImage {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}
.future_cardImage img {
  display: block;
  width: 100%;
  height: auto;
}
.future_cardTitle {
  margin-bottom: 24px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.future_tagList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.future_tagHeading {
  display: inline-block;
  border-radius: 4px;
  background-color: var(--color-Accent_red);
  padding: 4px 16px 6px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.future_tagText {
  margin-top: 4px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.future_bottom {
  margin-top: 48px;
}
.future_body {
  flex: 1;
}
.future_text {
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.future_cta {
  margin-top: 32px;
}
.future_ctaLead {
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.future_button {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: var(--color-accent);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 64px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.future_button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.future_buttonText {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.partner {
  position: relative;
  margin: 40px 24px;
  border-radius: 16px;
  background-image: url("../images/partner_bg.jpg");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 96px;
}
.partner_inner {
  padding: 48px 24px 96px;
}
.partner_intro {
  display: flex;
  flex-direction: column;
}
.partner_lead {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.partner_title {
  margin-top: 8px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.partner_desc {
  margin: 16px auto 0;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.partner_cardList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px auto 0;
}
.partner_card {
  border: 1px solid var(--color-white);
  border-radius: 8px;
  padding: 24px;
}
.partner_cardTitle {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.partner_cardText {
  padding: 24px 0 0;
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.partner_message {
  margin-top: 32px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 24px 16px;
}
.partner_messageTitle {
  margin-bottom: 8px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.partner_messageText {
  color: var(--color-main);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.cta {
  position: relative;
  background-image: url("../images/cta_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cta_inner {
  padding: 88px 14px;
}
.cta_intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
.cta_title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.cta_copy {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.cta_desc {
  color: var(--color-white);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: left;
}
.cta_main {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.cta_button {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #102A64, #57C3E8);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 64px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.cta_button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.cta_buttonText {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.cta_support {
  margin-top: 48px;
  border-radius: 8px;
  background-color: var(--color-white);
  padding: 24px 16px;
}
.cta_supportTitle {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.cta_supportNote {
  margin-top: 8px;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.cta_supportLead {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.cta_supportList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.cta_supportItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta_supportLabel {
  display: block;
  border-radius: 4px;
  background-color: var(--color-sub_2);
  padding: 4px 16px;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.cta_supportText {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.cta_supportBottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  border: 1px solid var(--color-sub_2);
  border-radius: 8px;
  padding: 16px;
}
.cta_supportMessage {
  flex: 1;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.cta_supportLink {
  display: block;
  position: relative;
  background-color: var(--color-sub_2);
  padding: 12px 0;
  color: var(--color-text);
  text-align: center;
}
.cta_supportLink.is-blank::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 6px;
  background-image: url("../images/icon_blank.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  content: "";
}
.cta_supportLinkText {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.subCta {
  position: relative;
  z-index: 2;
  padding: 48px 20px;
}
.subCta._overlap {
  margin-top: -72px;
  padding-top: 0;
}
.subCta_inner {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background-image: url("../images/subCta_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 48px 20px;
  min-height: 280px;
  overflow: hidden;
}
.subCta_inner::before {
  position: absolute;
  inset: 0;
  background: rgba(9, 68, 126, 0.18);
  pointer-events: none;
  content: "";
}
.subCta_body {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.subCta_lead {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.subCta_title {
  margin-top: 24px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.subCta_btn {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.subCta_btn ._contact {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #102A64, #57C3E8);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 56px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.subCta_btn ._contact::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
.subCta_btn ._simulator {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #8F7336, #C3A461);
  padding-right: 24px;
  padding-left: 8px;
  width: 100%;
  height: 56px;
  color: var(--color-white);
  font-size: 1pxrem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.subCta_btn ._simulator::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  width: 0;
  height: 0;
  content: "";
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
  body a {
    transition: all 0.5s ease;
  }
  body a:hover {
    opacity: 0.6;
  }
  ._sp {
    display: none !important;
  }
  .header ._sp {
    display: none !important;
  }
  .header {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 16px 24px;
    width: 100%;
  }
  .header.is-scrolled {
    position: fixed;
    -webkit-animation: headerSlideDown 0.4s ease forwards;
            animation: headerSlideDown 0.4s ease forwards;
    background: #fff;
  }
  .header_logo a {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    max-width: 568px;
  }
  .header_logo span {
    flex: none;
    width: auto;
    max-width: 140px;
  }
  .header_logoTxt {
    width: 100%;
    height: auto;
    text-align: left;
  }
  .header_btn {
    font-size: 0.875rem;
  }
  .header_btn {
    position: relative;
    bottom: auto;
    left: auto;
    flex-shrink: 0;
    gap: 24px;
    width: auto;
  }
  .header_btn ._contact {
    display: inline-flex;
    position: relative;
    flex: none;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #102A64, #57C3E8);
    padding-right: 24px;
    padding-left: 8px;
    width: 216px;
    height: 48px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .header_btn ._contact::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .header_btn ._simulator {
    display: inline-flex;
    position: relative;
    flex: none;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #8F7336, #C3A461);
    padding-right: 24px;
    padding-left: 8px;
    width: 216px;
    height: 48px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .header_btn ._simulator::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .main._home {
    padding-top: 5rem;
  }
  .footer_inner {
    margin: 0 auto;
    padding: 40px 0 0;
    max-width: 816px;
  }
  .footer_logo {
    margin: 0 auto 32px;
    padding: 0;
    max-width: 482px;
  }
  .footer_companyList {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    margin-top: 0;
    padding: 0;
    max-width: 816px;
  }
  .footer_companyRole {
    font-size: 0.8125rem;
  }
  .footer_companyName {
    font-size: 0.875rem;
  }
  .footer_companyAddress {
    font-size: 0.8125rem;
  }
  .footer_companyAddress {
    padding: 0 24px;
  }
  .footer_copy {
    font-size: 0.6875rem;
  }
  .footer_copy {
    margin: 32px 0 24px;
  }
  .navToggle.is-open {
    position: fixed !important;
    top: 16px !important;
    right: 24px !important;
    z-index: 1200 !important;
  }
  .headerMenu {
    background: linear-gradient(to bottom, #fff 0%, #fff 58%, #c7cfdf 82%, #102A64 100%);
  }
  .headerMenu_inner {
    padding: 16px 24px 32px;
  }
  .headerMenu_inner::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../images/kv_logo_bg.svg");
    background-position: bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 750px;
    content: "";
  }
  .headerMenu_content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding-top: 56px;
    padding-top: 72px;
    padding-bottom: 40px;
    padding-bottom: 80px;
    min-height: calc(100dvh - 50px);
  }
  .headerMenu_visual {
    display: block;
    flex: 0 1 480px;
    min-width: 360px;
    max-width: 480px;
  }
  .headerMenu_visual img {
    aspect-ratio: 480/580;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .headerMenu_body {
    max-width: 520px;
  }
  .headerMenu_logo {
    max-width: 385px;
  }
  .headerMenu_logo span {
    width: 159px;
  }
  .headerMenu_navList {
    gap: 8px;
  }
  .headerMenu_navItem a {
    font-size: 0.9375rem;
  }
  .headerMenu_cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
  }
  .kv {
    background-position: center top;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: calc(120 / 1440 * 100%);
  }
  .kv::after {
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../images/kv_logo_bg.svg") center/100% auto no-repeat;
    aspect-ratio: 1440/120;
    width: 100%;
    content: "";
  }
  .kv_inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 24px;
    max-width: 1400px;
  }
  .kv_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 61px 0;
  }
  .kv_lead {
    font-size: 0.8125rem;
  }
  .kv_lead {
    margin-bottom: 0;
  }
  .kv_heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .kv_copy {
    font-size: 1.75rem;
  }
  .kv_copy {
    margin: 0;
  }
  .kv_badge {
    font-size: 1.375rem;
  }
  .kv_badge {
    margin: 0;
    border-radius: 99px;
    background-color: var(--color-main);
    padding: 4px 32px 6px;
    color: var(--color-white);
    text-align: center;
  }
  .kv_title {
    margin-bottom: 0;
  }
  .kv_desc {
    font-size: 0.875rem;
  }
  .kv_featureList {
    margin-top: 0;
  }
  .kv_featureItem {
    background-size: 188px 188px;
    padding: 24px 0px 33px;
    width: 188px;
    text-align: center;
  }
  .kv_featureIcon {
    margin: 0 auto 4px;
    width: 64px;
    text-align: center;
  }
  .kv_featureText {
    font-size: 0.8125rem;
  }
  .kv_featureText {
    margin-top: 0;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.4;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0;
  }
  .kv_cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .kv_ctaLead {
    font-size: 1rem;
  }
  .kv_ctaBtn {
    font-size: 0.875rem;
  }
  .kv_ctaBtn {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #102A64, #57C3E8);
    padding-right: 24px;
    padding-left: 8px;
    width: 400px;
    height: 64px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .kv_ctaBtn::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .kv_visual {
    margin: 0;
    width: auto;
    max-width: 720px;
  }
  .problem_inner {
    padding: 112px 0 0;
  }
  .problem_head {
    padding: 0;
  }
  .problem_lead {
    font-size: 0.875rem;
  }
  .problem_title {
    font-size: 2.125rem;
  }
  .problem_cardList {
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding: 0;
  }
  .problem_card {
    display: block;
    border-radius: 180px;
    padding: 64px 40px;
    min-height: 480px;
  }
  .problem_cardMain {
    display: block;
  }
  .problem_cardImage {
    width: 120px;
    max-width: 100%;
  }
  .problem_cardImage img {
    width: 100%;
  }
  .problem_cardTitle {
    font-size: 1.75rem;
  }
  .problem_cardTitle {
    margin-bottom: 16px;
    text-align: center;
  }
  .problem_cardLead {
    font-size: 1rem;
  }
  .problem_cardLead {
    text-align: center;
  }
  .problem_cardText {
    font-size: 0.8125rem;
  }
  .problem_content {
    display: flex;
    gap: 24px;
    padding: 0;
  }
  .problem_message {
    max-width: 400px;
  }
  .problem_copy {
    font-size: 1.75rem;
  }
  .problem_copySub {
    font-size: 1.375rem;
  }
  .problem_copySub {
    margin-top: 0;
    margin-bottom: 0;
  }
  .problem_desc {
    font-size: 0.9375rem;
  }
  .problem_badge {
    font-size: 1.125rem;
  }
  .problem_badge {
    margin: 0 0 8px;
  }
  .problem_text {
    font-size: 0.9375rem;
  }
  .problem .is-accent {
    font-size: 1rem;
  }
  .problem_featureText {
    font-size: 0.9375rem;
  }
  .problem_ctaLead {
    font-size: 1rem;
  }
  .solution {
    background: url("../images/solution_bg.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .solution_inner {
    padding: 96px 0 112px;
    max-width: 1080px;
  }
  .solution_box {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .solution_lead {
    font-size: 1.375rem;
  }
  .solution_titleMain {
    font-size: 5rem;
  }
  .solution_titleSub {
    font-size: 0.8125rem;
  }
  .solution_titleSub2 {
    font-size: 1.75rem;
  }
  .solution_titleSub3 {
    font-size: 2.625rem;
  }
  .solution_text {
    font-size: 0.9375rem;
  }
  .solution_text .is_accent {
    font-size: 1rem;
  }
  .solution_featureTitle {
    font-size: 1.375rem;
  }
  .solution_featureText {
    font-size: 0.875rem;
  }
  .story {
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .story_inner {
    padding: 168px 0 96px;
    max-width: 1080px;
  }
  .story_head {
    display: flex;
    gap: 31px;
    border-bottom: 1px solid var(--color-Mgray_1);
    padding-bottom: 48px;
  }
  .story_lead {
    font-size: 1rem;
  }
  .story_title {
    font-size: 5rem;
  }
  .story_title::after {
    bottom: 0;
    width: 100%;
    height: 12px;
  }
  .story_copy {
    font-size: 1.375rem;
  }
  .story_visual {
    flex: 1 1 0;
    padding-right: 27px;
    min-width: 0;
    max-width: 535px;
  }
  .story_textArea {
    max-width: 487px;
  }
  .story_text {
    font-size: 0.9375rem;
  }
  .story_tab {
    display: flex;
    gap: 88px;
    margin-top: 0;
    padding: 64px 0 32px;
  }
  .story_tabNav {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
    width: calc((100% - 88px) * 0.403);
  }
  .story_tabNav > * {
    flex: none;
  }
  .story_tabButton {
    gap: 16px;
    padding: 20px 24px;
  }
  .story_tabButton::after {
    top: 50%;
    right: 16px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-right: 0;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--color-main);
  }
  .story_tabButton.is-active::after {
    border-top: 6px solid transparent;
    border-right: 0;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--color-white);
  }
  .story_tabNum {
    margin: 0;
    text-align: left;
  }
  .story_tabLabel {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.4;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0;
  }
  .story_tabPanels {
    width: calc((100% - 88px) * 0.597);
  }
  .story_panelText {
    font-size: 0.9375rem;
  }
  .story_panelTextLead {
    font-size: 1.375rem;
  }
  .story_recommend {
    margin-top: 0;
    padding: 32px 40px;
  }
  .story_recommendLead {
    font-size: 0.9375rem;
  }
  .story_recommendLead {
    margin-left: -40px;
  }
  .story_recommendLeadSub {
    font-size: 1.125rem;
  }
  .story_recommendContent {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
  }
  .story_recommendTitle {
    font-size: 1.75rem;
  }
  .story_recommendTitle {
    margin-top: 0;
  }
  .story_recommendName {
    font-size: 1rem;
  }
  .story_recommendNameSub {
    font-size: 1.375rem;
  }
  .story_recommendNameLabel {
    font-size: 0.9375rem;
  }
  .story_recommendText {
    font-size: 0.9375rem;
  }
  .story_recommendText.is-accent {
    font-size: 1.125rem;
  }
  .story_recommendImage {
    margin-top: 0;
  }
  .about {
    background: url("../images/about_bg.jpg");
    background-position: right top;
    background-size: cover;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #040517;
  }
  .about_inner {
    margin: 0 auto;
    padding: 120px 0 40px;
    max-width: 1080px;
  }
  .about_lead {
    font-size: 1.125rem;
  }
  .about_title {
    font-size: 2.625rem;
  }
  .about_deviceContent {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 640px;
  }
  .about_deviceImages {
    margin: 0;
    width: 280px;
  }
  .about_deviceImage {
    width: 280px;
  }
  .about_copy {
    font-size: 1.375rem;
  }
  .about_specHead {
    font-size: 0.8125rem;
  }
  .about_specData {
    font-size: 0.8125rem;
  }
  .about_note {
    font-size: 0.6875rem;
  }
  .about_system {
    margin: 0;
  }
  .about_systemContent {
    display: flex;
    gap: 16px;
    max-width: 640px;
  }
  .about_systemImage {
    width: 280px;
  }
  .about_systemBody {
    flex: 1;
    margin: 0;
  }
  .about_featureTitle {
    font-size: 1rem;
  }
  .about_featureText {
    font-size: 0.8125rem;
  }
  .detail_inner {
    margin: 0 auto;
    padding: 0 0 200px;
    max-width: 1080px;
  }
  .detail_summaryList {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 64px;
  }
  .detail_summaryTitle {
    font-size: 1.125rem;
  }
  .detail_summaryTag {
    font-size: 0.9375rem;
  }
  .detail_summaryTag {
    padding: 17px 16px;
  }
  .detail_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 0;
  }
  .detail_itemTitle {
    font-size: 1.375rem;
  }
  .detail_itemTitle {
    text-align: center;
  }
  .detail_itemText {
    font-size: 0.9375rem;
  }
  .detail_ReadMoreButton {
    font-size: 0.8125rem;
  }
  .detail_ReadMoreButton {
    display: none;
  }
  .detail_itemCta {
    margin: 0 auto;
  }
  .detail_button {
    width: auto;
  }
  .detail_buttonText {
    font-size: 1rem;
  }
  .point_inner {
    margin: 0 auto;
    padding: 160px 0 0;
    max-width: 1080px;
  }
  .point_intro {
    margin: 0 auto 32px;
  }
  .point_badge {
    font-size: 1.125rem;
  }
  .point_badge {
    padding: 4px 80px;
  }
  .point_title {
    font-size: 2.625rem;
  }
  .point_featureList {
    display: flex;
    align-items: stretch;
    gap: 16px;
  }
  .point_feature {
    display: flex;
    flex: 0 0 calc((100% - 48px) / 4);
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    border: 1px solid var(--color-sub_1);
    border-radius: 50%;
    padding: 30px;
    aspect-ratio: 1/1;
    overflow: hidden;
    text-align: center;
  }
  .point_featureTitle {
    font-size: 1.375rem;
  }
  .point_featureText {
    font-size: 0.9375rem;
  }
  .point_featureText {
    text-align: center;
  }
  .point_desc {
    font-size: 1.125rem;
  }
  .point_desc {
    margin-top: 32px;
    text-align: center;
  }
  .point_flowInner {
    padding: 64px 56px;
  }
  .point_flowTitle {
    font-size: 2.125rem;
  }
  .point_flowTitle {
    text-align: center;
  }
  .point_flowLead {
    font-size: 1rem;
  }
  .point_flowLead {
    text-align: center;
  }
  .point_flowContent {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
  }
  .point_flowImage {
    flex: 1;
    min-width: 0;
    max-width: 526px;
  }
  .point_flowBody {
    flex: 1;
    margin-top: 0;
  }
  .point_flowHeading {
    font-size: 1.375rem;
  }
  .point_stepList {
    gap: 32px;
    margin-top: 32px;
  }
  .point_stepItem {
    gap: 24px;
  }
  .point_stepNum {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
  .point_stepTitle {
    font-size: 1.375rem;
  }
  .point_stepText {
    font-size: 0.9375rem;
  }
  .point_cycleInner {
    padding: 64px 56px;
  }
  .point_cycleTitle {
    font-size: 2.125rem;
  }
  .point_cycleTitle {
    text-align: center;
  }
  .point_cycleLead {
    font-size: 1rem;
  }
  .point_cycleLead {
    text-align: center;
  }
  .point_cycleDiagram {
    max-width: 800px;
  }
  .point_cycleDiagramImg {
    max-width: 100%;
  }
  .point_cycleLabel {
    font-size: 0.8125rem;
  }
  .point_cycleHeading {
    font-size: 1.125rem;
  }
  .point_cycleText {
    font-size: 0.8125rem;
  }
  .business {
    padding: 120px 0 80px;
  }
  .business_inner {
    padding: 0 40px;
  }
  .business_intro {
    margin: 0 auto 40px;
    max-width: 780px;
  }
  .business_title {
    font-size: 2.625rem;
  }
  .business_title {
    text-align: center;
  }
  .business_badge {
    margin-top: 16px;
  }
  .business_badgeText {
    font-size: 1.125rem;
  }
  .business_badgeText {
    display: inline-block;
    padding: 4px 80px;
    text-align: center;
  }
  .business_desc {
    font-size: 1rem;
  }
  .business_desc {
    margin-top: 16px;
  }
  .business_item {
    top: 80px;
  }
  .business_card {
    display: flex;
    -ms-grid-columns: minmax(0, 1fr) 440px;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 56px;
    padding: 40px;
  }
  .business_card::before {
    background-position: right top;
    background-size: 100% auto;
  }
  .business_itemBody {
    flex: 560;
    margin-bottom: 0;
    padding: 0 56px;
  }
  .business_num {
    margin: 0 auto 64px;
    font-size: 5rem;
  }
  .business_heading {
    font-size: 2.125rem;
  }
  .business_heading {
    margin-bottom: 32px;
  }
  .business_text {
    font-size: 1rem;
  }
  .price {
    background-image: url("../images/price_bg.jpg");
    padding-bottom: 80px;
  }
  .price_inner {
    padding: 0;
  }
  .price_intro {
    padding: 0;
  }
  .price_title {
    font-size: 2.625rem;
  }
  .price_title {
    text-align: center;
  }
  .price_badgeText {
    font-size: 1.125rem;
  }
  .price_badgeText {
    margin-top: 8px;
    border-radius: 8px;
    background-color: var(--color-sub_1);
    padding: 4px 80px;
    color: var(--color-white);
    text-align: center;
  }
  .price_note {
    font-size: 0.8125rem;
  }
  .price_plan {
    margin-top: 48px;
    padding: 80px;
  }
  .price_planDesc {
    font-size: 1rem;
  }
  .price_planDesc {
    margin-bottom: 0;
    padding: 0 42px;
  }
  .price_planBadge {
    font-size: 1.125rem;
  }
  .price_planBadge {
    padding: 7px 80px;
  }
  .price_planPrice {
    padding: 48px 0;
  }
  .price_planPriceBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .price_planLabel {
    margin-top: 20px;
  }
  .price_planLabelSmall {
    font-size: 0.8125rem;
  }
  .price_planLabelMain {
    font-size: 1.75rem;
  }
  .price_planValueNum {
    font-size: 5rem;
  }
  .price_planValueUnit {
    font-size: 2.125rem;
  }
  .price_planValueUnit {
    position: static;
  }
  .price_planValueTax {
    font-size: 1.75rem;
  }
  .price_planValueTax {
    position: static;
  }
  .price_planSub {
    font-size: 0.8125rem;
  }
  .price_planSub {
    text-align: center;
  }
  .price_planFeatureList {
    flex-direction: row;
    justify-content: center;
    gap: 16px 32px;
    margin: 32px 0 0;
  }
  .price_planFeature {
    font-size: 1rem;
  }
  .price_planFeature.is-strong {
    font-size: 1.125rem;
  }
  .price_planMessage {
    font-size: 1.375rem;
  }
  .price_planMessage {
    margin: 32px 0;
    text-align: center;
  }
  .price_planCaution {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 16px 62px;
  }
  .price_planCautionHead {
    font-size: 1rem;
  }
  .price_planCautionHead {
    min-width: 75px;
    text-align: left;
  }
  .price_planCautionItem {
    font-size: 0.8125rem;
  }
  .price_simulatorInner {
    padding: 0 48px 24px;
  }
  .price_simulatorBadge {
    font-size: 1.125rem;
  }
  .price_simulatorBadge {
    padding: 7px 80px;
  }
  .price_simulatorLabel {
    font-size: 0.8125rem;
  }
  .price_simulatorLabel {
    padding: 8px 24px;
  }
  .price_simulatorTitle {
    font-size: 1.75rem;
  }
  .price_simulatorTitle {
    text-align: center;
  }
  .price_simulatorDesc {
    font-size: 0.9375rem;
  }
  .price_simulatorDesc {
    text-align: center;
  }
  .price_simulatorContent {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 16px;
  }
  .price_simulatorHeading {
    font-size: 0.875rem;
  }
  .price_simulatorCaption {
    font-size: 0.8125rem;
  }
  .price_simulatorCard {
    padding: 24px;
  }
  .price_simulatorCardLead {
    font-size: 0.875rem;
  }
  .price_simulatorCardTitle {
    font-size: 1rem;
  }
  .price_simulatorCardTitle {
    text-align: center;
  }
  .price_simulatorCardText {
    font-size: 0.8125rem;
  }
  .price_simulatorMessage {
    font-size: 0.9375rem;
  }
  .price_reasonTitle {
    text-align: center;
  }
  .price_reasonTitleUnit {
    font-size: 2.625rem;
  }
  .price_reasonTitleParticle {
    font-size: 1.375rem;
  }
  .price_reasonTitleMain {
    font-size: 2.125rem;
  }
  .price_reasonTitleMain {
    display: block;
  }
  .price_reasonHeading {
    font-size: 1.375rem;
  }
  .price_reasonText {
    font-size: 0.9375rem;
  }
  .price_buttonText {
    font-size: 0.9375rem;
  }
  .case_inner {
    display: flex;
    position: relative;
    left: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transform: translateX(-50%);
    padding: 30px 0;
    width: 1680px;
    overflow: hidden;
  }
  .case_media {
    flex-basis: 400px;
    width: 400px;
  }
  .case_body {
    flex-basis: 376px;
    width: 376px;
  }
  .case_title {
    font-size: 1.375rem;
  }
  .case_company {
    font-size: 1.125rem;
  }
  .case_company {
    width: auto;
  }
  .case_text {
    font-size: 1rem;
  }
  .case_note {
    font-size: 0.6875rem;
  }
  .case_galleryItem {
    flex-basis: 400px;
    width: 400px;
  }
  .flow_inner {
    margin: 0 auto;
    padding: 120px 0;
    max-width: 1080px;
  }
  .flow_title {
    font-size: 2.125rem;
  }
  .flow_step {
    margin-bottom: 120px;
  }
  .flow_stepContent {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    max-width: 1080px;
  }
  .flow_stepBody {
    width: calc((100% - 48px) * 566 / 1030);
  }
  .flow_stepNum {
    width: 64px;
    height: 64px;
  }
  .flow_stepTextGroup {
    gap: 24px;
  }
  .flow_stepTitle {
    font-size: 1.375rem;
  }
  .flow_stepText {
    font-size: 0.9375rem;
  }
  .flow_stepImage {
    flex: 1;
    margin-top: 0;
    width: calc((100% - 48px) * 466 / 1030);
  }
  .flow_developerIntro {
    margin-top: 48px;
  }
  .flow_developerCatch {
    font-size: 1.125rem;
  }
  .flow_developerLead {
    font-size: 0.9375rem;
  }
  .flow_developerList {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin-top: 56px;
  }
  .flow_developerCompany {
    font-size: 1rem;
  }
  .flow_developerRole {
    font-size: 1rem;
  }
  .flow_developerNameMain {
    font-size: 1.375rem;
  }
  .flow_developerText {
    font-size: 0.9375rem;
  }
  .flow_faq {
    margin-top: 120px;
  }
  .flow_faqTab {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    border-top: 1px solid var(--color-Lgray_1);
    border-bottom: 1px solid var(--color-Lgray_1);
    padding: 0;
  }
  .flow_faqTabButton {
    font-size: 0.875rem;
  }
  .flow_faqTabButton {
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
  }
  .flow_faqPanels {
    margin-top: 48px;
    padding: 0 120px;
  }
  .flow_faqQuestionText {
    font-size: 1rem;
  }
  .flow_faqAnswerText {
    font-size: 0.9375rem;
  }
  .flow_faqAnswerTextNote {
    font-size: 0.8125rem;
  }
  .flow_faqAnswerItem {
    font-size: 0.9375rem;
  }
  .flow_faqAnswerAction {
    margin-top: 28px;
  }
  .flow_faqAnswerButton {
    font-size: 0.875rem;
  }
  .flow_faqAnswerButton._contact {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #102A64, #57C3E8);
    padding-right: 24px;
    padding-left: 8px;
    width: 320px;
    height: 48px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .flow_faqAnswerButton._contact::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .flow_faqAnswerButton {
    transition: opacity 0.3s ease;
  }
  .flow_faqAnswerButton:hover {
    opacity: 0.6;
  }
  .future_inner {
    margin: 0 auto;
    padding: 136px 24px 40px;
    max-width: 1080px;
  }
  .future_optionText {
    font-size: 1rem;
  }
  .future_badge {
    font-size: 1.125rem;
  }
  .future_titleTop {
    font-size: 2.125rem;
  }
  .future_titleMain {
    font-size: 2.625rem;
  }
  .future_desc {
    font-size: 1rem;
  }
  .future_desc {
    text-align: center;
  }
  .future_cardList {
    flex-direction: row;
    gap: 40px;
  }
  .future_cardTitle {
    font-size: 1.375rem;
  }
  .future_tagList {
    gap: 8px;
  }
  .future_tagHeading {
    font-size: 1rem;
  }
  .future_tagText {
    font-size: 0.9375rem;
  }
  .future_bottom {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .future_text {
    font-size: 0.8125rem;
  }
  .future_cta {
    margin-top: 0;
    width: 280px;
  }
  .future_ctaLead {
    font-size: 0.8125rem;
  }
  .future_button {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: var(--color-accent);
    padding-right: 24px;
    padding-left: 8px;
    width: 280px;
    height: 64px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .future_button::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .future_buttonText {
    font-size: 0.875rem;
  }
  .partner {
    margin: 40px;
    padding-bottom: 96px;
  }
  .partner_inner {
    margin: 0 auto;
    padding: 120px 0 96px;
    max-width: 1080px;
  }
  .partner_lead {
    font-size: 1.125rem;
  }
  .partner_title {
    font-size: 2.625rem;
  }
  .partner_title {
    margin-top: 16px;
  }
  .partner_desc {
    font-size: 0.9375rem;
  }
  .partner_desc {
    margin: 32px auto 0;
    max-width: 584px;
  }
  .partner_cardList {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 840px;
  }
  .partner_card {
    margin-top: 64px;
    padding: 71px 24px;
  }
  .partner_cardTitle {
    font-size: 1.375rem;
  }
  .partner_cardText {
    font-size: 0.9375rem;
  }
  .partner_message {
    margin: 0 auto;
    margin-top: 64px;
    padding: 32px 80px;
    max-width: 840px;
  }
  .partner_messageTitle {
    font-size: 1.75rem;
  }
  .partner_messageTitle {
    text-align: center;
  }
  .partner_messageText {
    font-size: 0.9375rem;
  }
  .cta_inner {
    margin: 0 auto;
    padding: 88px 0;
    max-width: 1080px;
  }
  .cta_intro {
    max-width: 580px;
  }
  .cta_title {
    font-size: 2.125rem;
  }
  .cta_copy {
    font-size: 1.125rem;
  }
  .cta_copy {
    text-align: center;
  }
  .cta_desc {
    font-size: 0.9375rem;
  }
  .cta_desc {
    text-align: center;
  }
  .cta_button {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #102A64, #57C3E8);
    padding-right: 24px;
    padding-left: 8px;
    width: 400px;
    height: 64px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .cta_button::after {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .cta_buttonText {
    font-size: 0.875rem;
  }
  .cta_support {
    margin: 0 auto;
    margin-top: 64px;
    padding: 40px;
    max-width: 840px;
  }
  .cta_supportTitle {
    font-size: 1.375rem;
  }
  .cta_supportNote {
    font-size: 0.8125rem;
  }
  .cta_supportLead {
    font-size: 0.9375rem;
  }
  .cta_supportItem {
    flex-direction: row;
  }
  .cta_supportLabel {
    font-size: 0.9375rem;
  }
  .cta_supportLabel {
    padding: 4px 16px;
  }
  .cta_supportText {
    font-size: 0.9375rem;
  }
  .cta_supportBottom {
    flex-direction: row;
    align-items: center;
  }
  .cta_supportMessage {
    font-size: 0.8125rem;
  }
  .cta_supportConsult {
    width: 280px;
  }
  .cta_supportLinkText {
    font-size: 0.875rem;
  }
  .subCta {
    padding: 80px 0;
  }
  .subCta._overlap {
    margin-top: -120px;
    padding-top: 0;
  }
  .subCta_inner {
    margin: 0 64px;
    padding: 88px 20px;
    max-width: 100%;
    min-height: 352px;
  }
  .subCta_body {
    max-width: 720px;
  }
  .subCta_lead {
    font-size: 1.125rem;
  }
  .subCta_title {
    font-size: 1.75rem;
  }
  .subCta_title {
    margin-top: 28px;
  }
  .subCta_btn {
    font-size: 0.875rem;
  }
  .subCta_btn {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
  }
  .subCta_btn ._contact {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #102A64, #57C3E8);
    padding-right: 24px;
    padding-left: 8px;
    width: 320px;
    height: 48px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .subCta_btn ._contact::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .subCta_btn ._simulator {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #8F7336, #C3A461);
    padding-right: 24px;
    padding-left: 8px;
    width: 320px;
    height: 48px;
    color: var(--color-white);
    font-size: 1pxrem;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
  }
  .subCta_btn ._simulator::after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    width: 0;
    height: 0;
    content: "";
  }
  .subCta_btn ._contact,
.subCta_btn ._simulator {
    transition: opacity 0.3s ease;
  }
  .subCta_btn ._contact:hover,
.subCta_btn ._simulator:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  ._pc {
    display: none !important;
  }
  .detail_itemText.is-collapsed {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .header ._pc {
    display: none !important;
  }
  .header ._sp {
    display: block !important;
  }
  .header_logo a {
    display: block;
    justify-content: flex-start;
  }
  .header_btn {
    gap: 16px;
  }
  .header_btn ._contact {
    width: 176px;
  }
  .header_btn ._simulator {
    width: 176px;
  }
  .kv_inner {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .kv_visual {
    margin: 0 auto;
    max-width: 720px;
  }
  .problem_inner {
    padding: 0 24px;
  }
  .problem_cardList {
    display: flex;
    gap: 24px;
  }
  .problem_card {
    padding: 64px 20px;
  }
  .solution {
    padding: 0 24px;
  }
  .story_inner {
    padding: 80px 24px 96px;
  }
  .story_tab {
    gap: 44px;
  }
  .about {
    background-position: right top;
    background-size: 100% auto;
    padding: 0 24px;
  }
  .detail {
    padding: 0 24px;
  }
  .point_inner {
    padding: 80px 24px 0;
  }
  .point_feature {
    gap: 0;
    padding: 12px;
  }
  .point_featureIcon {
    width: 40%;
  }
  .business_card {
    padding: 24px;
  }
  .business_itemBody {
    padding: 0 24px;
  }
  .price_inner {
    padding: 0 14px;
  }
  .flow_inner {
    padding: 120px 24px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .kv_featureText {
    font-size: 0.9375rem;
  }
  .story_tabLabel {
    font-size: 1.125rem;
  }
  .flow_faqTabButton {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1201px) {
  .solution_featureList {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
  }
  .solution_feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-sub_1);
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: calc((100% - 48px) / 3);
  }
  .solution_featureIcon {
    flex: none;
    margin: 0 auto 8px;
  }
  .solution_featureTitle {
    flex: none;
    margin-bottom: 8px;
    text-align: center;
  }
  .solution_featureText {
    flex: none;
    margin: 0 auto;
    max-width: 220px;
  }
  .price_reasonList {
    flex-direction: row;
  }
  .price_reasonItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-sub_1);
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: calc((100% - 48px) / 3);
  }
  .price_reasonIcon {
    margin: 0 auto;
  }
  .price_reasonHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;
    text-align: center;
  }
  .price_reasonText {
    padding: 0 48px;
    width: auto;
    text-align: center;
  }
}
