@charset "UTF-8";
:root {
  --io-tm-2-m-base: #1F3140;
  --io-tm-2-m-white: #fff;
  --io-tm-2-m-orange: #f5830d;
  --io-tm-2-m-gray: #c0c0c0;
  --LP-blue: #1f55b0;
  --io-tm-2-m-gold: #9F7B2B;
  --io-tm-2-m-linear:linear-gradient(60deg, #f79e01 18.04%, #f46819 81.86%);
}

/* ========================================
   Foundation / Base（LP向け・PC-first）
======================================== */
/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--io-tm-2-m-base);
  background: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

/* 余白リセット */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

/* リスト */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.3;
}

/* 画像 */
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* フォーカス（アクセシビリティ） */
:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* フォーム */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* タップ時の青ハイライト消す */
a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* モーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.l-section {
  padding: 104px 24px;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 80px 16px;
  }
}

.l-container {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

/* footer
--------------------------*/
.l-footer {
  color: #ffffff;
  background-color: var(--io-tm-2-m-base);
  padding: 3.5% 0;
}
.l-footer .footer-logo {
  width: 180px;
  height: auto;
}
.l-footer__contents {
  width: 65%;
  min-width: 650px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.l-footer__box {
  width: 77.5%;
  display: flex;
  flex-direction: column;
}
.l-footer__box ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5%;
}
.l-footer__box ul li {
  padding: 0 2.5% 0 2.5%;
  border-left: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
}
.l-footer__box ul li:first-child {
  padding: 0 2.5% 0 0%;
  border-left: initial;
}
.l-footer__box ul li:last-child {
  padding: 0 0 0 2.5%;
  border-right: initial;
}
.l-footer__box p {
  font-size: 12px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 40px 0;
  }
  .l-footer__contents {
    width: initial;
    min-width: initial;
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
  }
  .l-footer__box {
    align-items: center;
  }
  .l-footer__box ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }
  .l-footer__box ul li {
    font-size: 1.4rem;
    padding: initial;
    border-left: initial;
    border-right: initial;
    margin-bottom: 8px;
  }
  .l-footer__box p {
    text-align: center;
    font-size: 1.2;
  }
  .l-footer__box ul li:first-child {
    padding: 0;
  }
  .l-footer__box ul li:last-child {
    padding: 0;
    margin-bottom: 0;
  }
}
.l-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 16px;
  padding: 16px 32px 16px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 94%;
  width: calc(100% - 32px);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

.freebit-mvno-logo {
  flex-shrink: 0;
  max-width: 192px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.l-header-nav {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.l-header-nav__list {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.l-header-nav__list-item {
  color: var(--io-tm-2-m-base);
  text-align: left;
  font-family: "NotoSansJp-Bold", sans-serif;
  font-size: 1.6rem;
  line-height: 100%;
  font-weight: 700;
  position: relative;
}
.l-header-nav__list-item a {
  transition: 0.3s ease all;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav__list-item a:hover {
    opacity: 0.7;
  }
}

.l-header-button {
  background: var(--lp-linear, linear-gradient(60.45deg, rgb(247, 158, 1) 0%, rgb(244, 104, 25) 100%));
  border-radius: 3px;
  padding: 12px 32px 12px 32px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 2px 2px 8px 0px rgba(104, 49, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-button:hover {
    transform: translateY(2px);
    box-shadow: none;
  }
}

.l-header-button span {
  color: var(--lp-white, #ffffff);
  text-align: left;
  font-family: "NotoSansJp-Bold", sans-serif;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-header {
    top: 0;
    max-width: 100%;
    width: 100%;
    height: 70px;
    padding: 16px;
    align-items: center;
    background-color: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    box-shadow: none;
  }
  .freebit-mvno-logo {
    max-width: 140px;
  }
  .l-header-nav {
    display: none;
    visibility: hidden;
  }
  .form-state .l-header {
    top: 12px;
    max-width: 94%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
  }
}
.l-header__details {
  position: relative;
}
.l-header__details summary {
  position: relative;
  display: block;
  padding-right: 24px;
  cursor: pointer;
  transition: 0.3s ease all;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__details summary:hover {
    opacity: 0.7;
  }
}
.l-header__details summary::-webkit-details-marker {
  display: none;
}
.l-header__details summary::after {
  content: "";
  position: absolute;
  background: url("../img/icon-arw-down.svg") center/cover no-repeat;
  width: 16px;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
.l-header__details-content {
  position: absolute;
  top: 32px;
  left: -105px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding: 24px 32px;
  align-items: flex-start;
  background-color: var(--io-tm-2-m-white);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.l-header__details-content-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-left: 24px;
  border-left: 1px solid #CDCDCD;
  padding-left: 24px;
}
.l-header__details-content-ttl {
  color: var(--io-tm-2-m-base, #1F3140);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 100%;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

details[open].l-header__details summary::after {
  transform: rotate(180deg);
}
details[open] .l-header__details-content {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(-10px);
    /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* drawer */
.nav-ham {
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 100;
}

.nav-ham span {
  position: absolute;
  display: block;
  left: 50%;
  width: 55%;
  height: 3px;
  margin: auto;
  background-color: var(--io-tm-2-m-base);
  border-radius: 10px;
  transform: translate(-50%, 0);
  transition: transform 0.3s, opacity 0.3s, width 0.3s, background 0.3s;
}

.nav-ham span:nth-child(1) {
  top: 12px;
}

.nav-ham span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav-ham span:nth-child(3) {
  bottom: 12px;
}

.l-sp-nav-layout {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  padding: 16px 24px;
  color: var(--io-tm-2-m-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  transition: 0.5s ease-in-out;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.95) 59.74%, rgba(245, 246, 246, 0.95) 75.2%, rgba(241, 242, 242, 0.95) 90.66%);
  z-index: 50;
}

@media screen and (max-width: 768px) {
  /* drawer */
  .nav-ham {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: linear-gradient(225deg, rgba(255, 255, 255, 0.9) 59.74%, rgba(245, 246, 246, 0.9) 75.2%, rgba(241, 242, 242, 0.9) 90.66%);
    border-radius: 4px;
    z-index: 100;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
  }
  .open .nav-ham {
    background: transparent;
    box-shadow: none;
  }
  .nav_txt {
    margin-top: 24px;
    font-size: 1.1rem;
    color: var(--io-tm-2-m-base);
    font-weight: bold;
  }
  .open .nav-ham span {
    transition: 0.3s all ease-out;
  }
  .open .nav-ham span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
  }
  .open .nav-ham span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0px;
    opacity: 0;
  }
  .open .nav-ham span:nth-child(3) {
    bottom: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .l-sp-nav-layout {
    right: -100svw;
  }
  .open .l-sp-nav-layout {
    right: 0;
    opacity: 1;
  }
  .open .l-sp-nav-layout ul li {
    transform: translateX(0);
  }
  .l-sp-nav__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .l-sp-nav__list-item a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    color: var(--io-tm-2-m-base);
  }
  .l-sp-nav__list-item a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin-block: auto;
    right: 0;
    width: 16px;
    height: 16px;
    background: url("../img/icon-arw-right--back.svg") center/cover no-repeat;
  }
  .l-sp-nav__case-ttl {
    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #CDCDCD;
  }
  .l-sp-nav__case-sublist {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .l-sp-nav__case-sublist a {
    font-size: 1.6rem;
  }
  .l-header-button span {
    font-size: 2rem;
    line-height: 1.5;
  }
}
/* cv_btn */
.c-cv-btn {
  position: relative;
  padding: 24px 84px;
  color: var(--io-tm-2-m-white);
  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  background: var(--io-tm-2-m-linear, linear-gradient(60deg, #f79e01 18.04%, #f46819 81.86%));
  box-shadow: 20px 8px 24px 0 rgba(231, 108, 0, 0.36);
  text-align: center;
  transform: translateY(0);
  transition: 0.3s ease box-shadow, 0.3s ease transform;
}
.c-cv-btn--secondary {
  background: var(--io-tm-2-m-gray);
  color: var(--io-tm-2-m-base);
  box-shadow: 20px 8px 24px 0 rgba(0, 0, 0, 0.1);
}

.icon-arrow--right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .icon-arrow--right {
    width: 16px;
    height: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-cv-btn:hover {
    transform: translateY(2px);
    box-shadow: 20px 8px 24px 0 rgba(231, 108, 0, 0);
  }
}

@media screen and (max-width: 1024px) {
  .c-cv-btn {
    font-size: 1.6rem;
    padding: 14px 24px;
    box-shadow: 4px 4px 16px 0 rgba(231, 108, 0, 0.36);
  }
  .c-cv-btn--secondary {
    background: var(--io-tm-2-m-gray);
    color: var(--io-tm-2-m-base);
    box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.1);
  }
}
.c-cv-area {
  display: flex;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  color: var(--io-tm-2-m-white);
  background: var(--LP-blue, #1f55b0);
}

.c-cv-subttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-block: 0 4px;
}
@media screen and (max-width: 768px) {
  .c-cv-subttl {
    font-size: 1.4rem;
  }
}

.c-cv-ttl {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-block: 0 16px;
}
@media screen and (max-width: 768px) {
  .c-cv-ttl {
    font-size: 2rem;
  }
}

.c-cv-area .c-cv-btn {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 2px 2px 8px 0 rgba(104, 49, 0, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .c-cv-area .c-cv-btn:hover {
    box-shadow: 2px 2px 8px 0 rgba(104, 49, 0, 0);
  }
}

.balloon {
  position: relative;
}
.balloon::before {
  content: "";
  position: absolute;
  left: -16px;
  width: 1px;
  height: 100%;
  border: 1px dotted var(--io-tm-2-m-white);
  transform: rotate(-30deg);
}
.balloon::after {
  content: "";
  position: absolute;
  right: -16px;
  width: 1px;
  height: 100%;
  border: 1px dotted var(--io-tm-2-m-white);
  transform: rotate(30deg);
}

.c-heading {
  font-weight: 700;
  line-height: 1.2;
}
.c-heading--xl {
  font-size: 4rem;
}
.c-heading--lg {
  font-size: 3.2rem;
}
.c-heading--ml {
  font-size: 2.8rem;
}
.c-heading--md {
  font-size: 2.4rem;
}
.c-heading--ms {
  font-size: 2rem;
}
.c-heading--sm {
  font-size: 1.8rem;
}
.c-heading--xs {
  font-size: 1.6rem;
}
.c-heading--xxs {
  font-size: 1.4rem;
}
.c-heading--xxxs {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-heading--xl {
    font-size: 2.8rem;
  }
  .c-heading--lg {
    font-size: 2.4rem;
  }
  .c-heading--ml {
    font-size: 2.4rem;
  }
  .c-heading--md {
    font-size: 2rem;
  }
  .c-heading--ms {
    font-size: 2rem;
  }
  .c-heading--sm {
    font-size: 1.8rem;
  }
  .c-heading--xs {
    font-size: 1.6rem;
  }
  .c-heading--xxs {
    font-size: 1.4rem;
  }
  .c-heading--xxxs {
    font-size: 1.2rem;
  }
}

.c-note {
  display: flex;
  flex-direction: column;
}

.c-note__item {
  display: inline-flex;
  font-size: 1.2rem;
}

.c-note__mark {
  padding-right: 8px;
}

/* =========================
   common
========================= */
.p-num {
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  opacity: 0.3;
}

.p-title-en {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-55%);
  font-size: 18rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0.1;
  background: linear-gradient(90deg, #4c4948 0%, #b2aba9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
}

.js-inview {
  opacity: 0;
  transform: translateY(30px);
}

@media screen and (max-width: 768px) {
  .p-title-en {
    font-size: 8rem;
  }
}
/* =========================
   FV（vw版）
========================= */
.p-fv {
  position: relative;
  padding: 137px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 0;
}

.p-fv-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-fv-bg img {
  width: 100%;
}

.p-fv-img {
  margin-left: -96px;
  width: clamp(902px, 50vw, 1024px);
  top: 0;
  right: 0;
  z-index: -1;
}
.p-fv-img img {
  width: 100%;
}

.p-fv-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-left: 6vw;
}

@media screen and (max-width: 1400px) {
  .p-fv {
    position: relative;
    padding: 137px 0 40px;
    width: 100%;
    z-index: 0;
  }
  .p-fv-img {
    position: absolute;
    width: 54vw;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .p-fv-img img {
    width: 100%;
  }
  .p-fv-container {
    max-width: clamp(1024px, 87vw, 1400px);
    width: 100%;
    padding: 0 32px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-h1-inner {
  display: flex;
  gap: 16px;
}

.p-h1-ttl-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.p-icon-sim {
  width: 68px;
}

.p-h1-subttl {
  padding: 8px 40px;
  border-radius: 4px;
  border: 2px solid #1f3140;
  color: #1f3140;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.15;
}

.p-h1-ttl {
  color: #1f3140;
  font-family: Inter;
  font-size: 5.4rem;
  font-weight: bold;
  line-height: 1;
}

.p-badge {
  display: flex;
  align-items: center;
  gap: 19px;
}
.p-badge img {
  max-width: 153px;
  width: 100%;
}

.p-fv-text {
  font-size: 2rem;
}

.p-fv-text--gold {
  padding: 4px 6px;
  font-weight: bold;
}

.p-fv-cv-btn {
  max-width: 536px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .p-fv-img {
    width: 74vw;
  }
  .p-fv {
    padding: 70vw 0 0;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-fv-img {
    width: 94vw;
  }
  .p-fv {
    padding: 88vw 0 0;
    z-index: 0;
  }
  .p-h1-subttl {
    padding: 4px 8px;
    font-size: 1.4rem;
  }
  .p-h1-ttl {
    font-size: min(3.9rem, 8.9vw);
  }
  .p-fv-text--gold {
    padding: 2px 4px;
    margin-inline: 2px;
  }
  .p-badge {
    gap: 12px;
  }
  .p-badge img {
    width: 31%;
  }
  .p-fv-text {
    font-size: 1.4rem;
  }
  .p-fv-container {
    padding: 0 16px;
  }
}
/* =========================
   iot-plans
========================= */
.p-iotplans {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.p-iotplans__panel {
  position: relative;
  width: auto;
  margin-block: 40px auto;
}
.p-iotplans__title {
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}
.p-iotplans__h-wrap {
  position: relative;
  width: 100%;
}
.p-iotplans__track {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-iotplans__card {
  max-width: 47%;
  width: 100%;
}
.p-iotplans__card:nth-of-type(even) {
  margin-top: 48px;
}
.p-iotplans__card-title {
  margin: 0 0 24px;
}
.p-iotplans__img {
  display: block;
}
.p-iotplans__arrow {
  position: relative;
  height: 22px;
  margin: 16px 0;
}
.p-iotplans__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 22px solid #f28c28;
}
.p-iotplans__desc-wrap {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.p-iotplans__desc-em {
  color: #f28c28;
}
.p-iotplans__desc {
  margin: 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-iotplans .p-iotplans__card:nth-of-type(even) {
    margin: 0;
  }
  .p-iotplans__card {
    max-width: 400px;
  }
  .p-iotplans__track {
    flex-direction: column;
    gap: 40px;
  }
  .p-iotplans__panel {
    margin-block: 0;
    padding: 0;
  }
  .p-iotplans__desc {
    font-size: 1.6rem;
  }
  .p-iotplans__card {
    flex-basis: 220px;
  }
}

/* =========================
   painpoints
========================= */
.p-painpoints {
  background: linear-gradient(80deg, #fff 17.25%, #f1f2f2 82.71%);
}
.p-painpoints.l-section {
  padding: 54px 24px 24px;
}
.p-painpoints__head {
  margin-bottom: 36px;
  text-align: center;
}
.p-painpoints__titleText {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--io-tm-2-m-gold);
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.2;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-painpoints__titleText {
    font-size: 2.2rem;
  }
}
.p-painpoints__titleText::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 12px solid var(--io-tm-2-m-gold);
}
.p-painpoints__list-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-painpoints__list-wrap {
    flex-direction: column;
    gap: 6px;
  }
}
.p-painpoints__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.p-painpoints__item {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.p-painpoints__icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-painpoints__text {
  margin: 0;
  color: var(--io-tm-2-m-base);
  font-size: 16px;
  line-height: 1.9;
}
.p-painpoints__em {
  border-bottom: 2px solid var(--io-tm-2-m-gold);
}
.p-painpoints__illustration {
  margin-top: 32px;
  margin-inline: auto;
}

/* =========================
   Feature
========================= */
.p-feature {
  position: relative;
  z-index: 0;
}
.p-feature__bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.p-feature__head {
  position: relative;
  margin-bottom: 40px;
}
.p-feature__label {
  display: inline-block;
  padding: 8px 12px;
  border: 2px solid var(--io-tm-2-m-base);
  border-radius: 4px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  background: var(--io-tm-2-m-white);
}
.p-feature__lead {
  margin: 8px 0 0;
  line-height: 1.6;
}
.p-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  align-items: start;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .p-feature__grid {
    grid-template-columns: 1fr;
  }
}

/* 2カラム内カード */
.p-feature-card {
  position: relative;
}
.p-feature-card:nth-of-type(even) {
  margin-top: 40px;
}
.p-feature-card:last-of-type {
  margin-top: 120px;
}
.p-feature-card__title {
  margin: 0 0 16px;
  font-weight: bold;
}
.p-feature-card__media {
  width: 100%;
}
.p-feature-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-feature-card__text {
  margin-top: 16px;
  line-height: 1.8;
}
.p-feature-card__note {
  margin: 10px 0 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-feature-card {
    margin-block: 0 40px;
  }
  .p-feature-card:nth-of-type(even) {
    margin-top: auto;
  }
  .p-feature-card:last-of-type {
    margin-block: 0;
  }
}
/* 04：横長ブロック */
.p-feature-wide {
  margin-block: 40px;
}
.p-feature-wide__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f3140;
}
.p-feature-wide__text {
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1f3140;
  max-width: 85ch;
}
.p-feature-wide__figure {
  margin-top: 16px;
  border-radius: 12px;
}

/* 用途マップ */
.p-featureMap {
  margin-top: 44px;
}
.p-featureMap__text {
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1f3140;
}
.p-featureMap__figure {
  margin-top: 16px;
}

/* =========================
   case
========================= */
.p-case {
  position: relative;
  z-index: 0;
}
.p-case__bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.p-case__title {
  position: relative;
  margin-bottom: 40px;
}
.p-case__tab {
  width: 100%;
  margin-bottom: 40px;
}
.p-case__tablist {
  display: flex;
  justify-content: space-between;
}
.p-case__tab-button {
  width: 32%;
  padding: 12px 24px;
  text-align: center;
  border-radius: 16px 16px 0 0;
  background: #ddd;
  font-size: 2rem;
  color: #878f96;
  font-weight: bold;
  transition: 0.3s ease all;
}
.p-case [role=tab][aria-selected=true] {
  background-color: var(--io-tm-2-m-orange);
  color: var(--io-tm-2-m-white);
}
@media (hover: hover) and (pointer: fine) {
  .p-case [role=tab][aria-selected=false]:hover {
    opacity: 0.7;
  }
}
.p-case__tab-panel {
  padding-bottom: 24px;
  border-radius: 0 0 16px 16px;
  border: 1px solid #ddd;
  background: var(--io-tm-2-m-white, #fff);
}
.p-case__tab-panel-head {
  display: flex;
  align-items: center;
  align-self: stretch;
}
.p-case__tab-panel-thumnail {
  max-width: 383px;
  width: 100%;
}
.p-case__tab-panel-title-wrap {
  padding: 0 32px;
}
.p-case__tab-panel-title {
  font-size: 3.2rem;
}
.p-case__tab-panel-subtitle {
  display: inline-block;
  padding: 8px 16px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 16px 0;
  color: var(--io-tm-2-m-white);
  background: var(--io-tm-2-m-base, #1f3140);
}
.p-case__solution-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 30px 42px;
}
.p-case__solution-col {
  display: flex;
  width: 32%;
  flex-direction: column;
  align-items: flex-start;
}
.p-case__solution-raw {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-case__solution-raw .p-case__request {
  width: 24%;
}
.p-case__solution-raw .p-case__solution {
  width: 32%;
}
.p-case__request {
  position: relative;
  height: 140px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 10px;
  margin-block: 0 60px;
  padding: 30px 24px;
  border: 2px solid var(--io-tm-2-m-base);
}
.p-case__request-ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  width: 80px;
  padding: 4px;
  margin: auto;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  background-color: var(--io-tm-2-m-base);
  text-align: center;
}
.p-case__solution {
  position: relative;
  height: 140px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 10px;
  padding: 30px 24px;
  border: 2px solid var(--io-tm-2-m-orange);
}
.p-case__solution-ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  width: 80px;
  padding: 4px;
  margin: auto;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  background-color: var(--io-tm-2-m-orange);
  text-align: center;
}
.p-case-arw {
  width: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: auto;
}
.p-case-arw02 {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 70px;
}
.p-case__solution-raw .p-case__request:last-of-type .p-case-arw02 {
  left: -50px;
}
.p-case-arw03 {
  position: absolute;
  right: 50px;
  bottom: -30px;
  width: 10px;
}
.p-case__flow {
  padding: 0 42px;
}
@media screen and (max-width: 768px) {
  .p-case__tab-button {
    padding: 8px;
    font-size: 1.4rem;
  }
  .p-case__tab-panel-head {
    flex-direction: column;
  }
  .p-case__tab-panel-title-wrap {
    padding: 16px;
  }
  .p-case__tab-panel-subtitle {
    line-height: 1.5;
    margin-block: 8px;
  }
  .p-case__tab-panel-thumnail {
    max-width: 500px;
  }
  .p-case__tab-panel-title {
    font-size: 2.4rem;
  }
  .p-case__solution-container {
    flex-direction: column;
    padding: 16px;
    gap: 32px;
  }
  .p-case__solution-col {
    width: 100%;
  }
  .p-case__request, .p-case__solution {
    width: 100%;
    height: auto;
  }
  .p-case__request {
    margin-block: 0 46px;
  }
  .p-case__flow {
    padding: 24px 16px 0;
  }
  .p-case__solution-container-sp {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.p-case-other__balloon {
  position: relative;
  display: inline-block;
  min-width: 90px;
  padding: 6px 14px;
  margin-bottom: 20px;
  text-align: center;
  background: #fff;
  color: var(--io-tm-2-m-base);
  border: 2px solid var(--io-tm-2-m-base);
  border-radius: 8px;
  font-weight: bold;
}
.p-case-other__balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--io-tm-2-m-white);
  border-right: 2px solid var(--io-tm-2-m-base);
  border-bottom: 2px solid var(--io-tm-2-m-base);
  transform: translate(-50%, 55%) rotate(45deg);
  transform-origin: center center;
}
.p-case-other__img {
  margin-block: 16px;
}

/* qa */
.p-faq {
  position: relative;
  z-index: 0;
}
.p-faq__bg {
  position: absolute;
  right: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.p-faq__title {
  position: relative;
  margin-bottom: 40px;
}
.p-faq__list {
  width: 100%;
}
.p-faq__list-item {
  width: 100%;
  border-top: 1px solid #c4c4c4;
}
.p-faq__list-item:last-of-type {
  border-bottom: 1px solid #c4c4c4;
}
.p-faq__q-contents, .p-faq__a-contents {
  position: relative;
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-faq__q-contents {
  cursor: pointer;
}
.p-faq__q {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1px 8px;
  gap: 8px;
  border-radius: 16px;
  font-size: 1.4rem;
  background: var(--io-tm-2-m-orange, #f5830d);
  color: var(--io-tm-2-m-white);
  font-weight: bold;
}
.p-faq__q-txt {
  font-weight: bold;
  color: var(--io-tm-2-m-orange, #f5830d);
}
.p-faq__a-contents {
  padding-top: 0;
  align-items: flex-start;
}
.p-faq__a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 1px 8px;
  font-size: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--io-tm-2-m-orange, #f5830d);
  color: var(--io-tm-2-m-orange);
  font-weight: bold;
}
.p-faq__a-txt {
  width: 80%;
}
.p-faq__arw {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  transition: transform 0.3s ease;
}
.p-faq details[open] .p-faq__arw {
  transform: translate(0, -70%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  .p-faq__arw {
    width: 18px;
  }
  .p-faq__q-txt {
    width: 85%;
  }
  .p-faq__a-txt {
    width: 100%;
  }
}

/* form */
.p-form {
  position: relative;
  background-color: var(--LP-blue, #1f55b0);
  overflow: hidden;
  z-index: 0;
}
.p-form--lg-body {
  min-height: 90svh;
}
.p-form--lg-body .l-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90svh;
}
.p-form__bg {
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.p-form .p-title-en {
  opacity: 0.2;
  background: linear-gradient(90deg, #fff 1.33%, rgba(255, 255, 255, 0.15) 98.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: -1;
}
.p-form__head {
  position: relative;
  margin-bottom: 40px;
}
.p-form__title {
  color: var(--io-tm-2-m-white);
}
.p-form__annotation {
  display: flex;
  width: 100%;
  padding: 24px 144px;
  margin-block: 0 40px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #ffd9b9;
}
.p-form__annotation h3 {
  text-align: center;
  font-size: 2.4rem;
}
.p-form__annotation strong {
  color: #c60f0f;
}
.p-form__container {
  display: flex;
  width: 100%;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 8px;
  background: var(--io-tm-2-m-white, #fff);
  box-shadow: 2px 2px 24px 0 rgba(0, 0, 0, 0.26);
}
.p-form__table {
  width: 100%;
}
.p-form__inputs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-block: 0 24px;
}
.p-form__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
}
.p-form__label-title {
  font-weight: bold;
}
.p-form__placeholder {
  color: #79787d;
  font-weight: 400;
  line-height: 130%;
}
.p-form__required {
  padding: 2px 12px;
  text-align: center;
  border-radius: 24px;
  background: #c60f0f;
  color: var(--io-tm-2-m-white, #fff);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 130%;
}
.p-form__optional {
  padding: 2px 12px;
  text-align: center;
  border-radius: 24px;
  background: #d7d7d7;
  color: #7d7d7d;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 130%;
}
.p-form__poricy-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  max-width: 572px;
  width: 100%;
  margin-inline: auto;
}
.p-form__check {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.p-form__check a {
  text-decoration: underline;
}
.p-form__button-wrap {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px auto 0;
}
.p-form__button {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-form__container {
    padding: 32px 16px;
  }
  .p-form__annotation {
    padding: 24px 16px;
  }
  .p-form__annotation h3 {
    font-size: 1.6rem;
  }
}

.validError {
  display: inline-block;
  background: rgb(255, 110, 110);
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  border-radius: 11px;
  padding: 4px 5px;
  margin: 0 1px;
}

.inputError {
  background-image: none;
  border: 1px solid rgb(255, 110, 110);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=postel],
input[type=address],
textarea {
  border-radius: 8px;
  border: 1px solid #a3a3a3;
  background: var(--io-tm-2-m-white, #fff);
  min-width: 400px;
  padding: 8px 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=postel],
  input[type=address],
  textarea {
    min-width: inherit;
  }
}

textarea {
  resize: vertical;
  height: 131px;
  min-height: 100px;
  width: 100%;
  margin-bottom: 0;
}

.form-state .l-section {
  padding: 160px 40px;
}
.form-state input[type=text],
.form-state input[type=tel],
.form-state input[type=email],
.form-state input[type=postel],
.form-state input[type=address],
.form-state textarea {
  border-radius: 0;
  border: none;
  min-width: 100%;
  padding: 0;
}
.form-state textarea {
  min-height: auto;
}
.form-state .p-form__check input[type=text] {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form-state {
    padding: 140px 24px;
  }
}

.u-inter {
  font-family: "Inter", sans-serif;
}

.u-color-white {
  color: var(--io-tm-2-m-white);
}

.u-bg-gold {
  background: var(--io-tm-2-m-gold, #9f7b2b);
}

.u-text-right {
  text-align: left;
}/*# sourceMappingURL=style.css.map */