@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #212f45;
  line-height: 2;
}
body img {
  width: 100%;
}

body.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

body.fixed .head-detail {
  background-color: #e8f8ff;
}

main {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 1320px) {
  main {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 50px;
  }
}

/* =======================================
レスポンシブ切り替え
======================================= */
.is-pc,
.is-sp {
  display: block;
}

/* SP（スマホ）だけ表示 */
@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}
/* PC / タブレット以上だけ表示 */
@media (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}
/* =======================================
スクロールアニメーション
======================================= */
.js-bottomin {
  -webkit-transform: translateY(50px);
  opacity: 0;
  transform: translateY(50px);
}

.js-bottomin.active {
  -webkit-animation-name: bottomin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: bottomin;
  animation-timing-function: ease;
}

@-webkit-keyframes bottomin {
  0% {
    -webkit-transform: translateY(50px);
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes bottomin {
  0% {
    -webkit-transform: translateY(50px);
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
    transform: translateY(0px);
  }
}
/* =======================================
h1タグ用
======================================= */
.visually-hidden {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* =========================
   Header
========================= */
.header {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-family: "Noto Sans JP", sans-serif;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* 共有トランジション */
  /* ===== header content ===== */
  /* ===== ナビ本体（ここから右スライド対応）===== */
  /* ===== ハンバーガー: MENU / CLOSE ===== */
}
.header .btn-gmenu span,
.header .head-navi,
.header .head-navi-detail ul li a:after,
.header .site-ttl img {
  transition-duration: 0.3s;
  transition-property: all;
}
.header .head-detail {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 100px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1320px) {
  .header .head-detail {
    min-height: 80px;
  }
}
@media screen and (min-width: 1080) {
  .header .head-detail {
    margin-left: auto;
    margin-right: auto;
    max-width: 1840px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header .head-detail {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .head-detail .logo {
  position: relative;
  z-index: 2;
}
.header .head-detail .logo a {
  display: block;
  max-width: 276px;
}
@media screen and (max-width: 1320px) {
  .header .head-detail .logo a {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .header .head-detail .logo a {
    max-width: 177px;
  }
}
.header .head-detail .logo a svg {
  height: auto;
  width: 100%;
}
.header .open-menu {
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(100%);
  background-color: #e8f8ff;
  display: block;
  height: 100vh;
  left: auto !important;
  margin-top: 50px;
  max-width: 100%;
  overflow-y: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 50px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}
.header .open-menu.nav-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.header .head-navi-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .header .head-navi-wrap {
    gap: 40px;
  }
}
.header .head-navi {
  display: none;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .header .head-navi {
    gap: 20px;
  }
}
.header .head-navi__link {
  color: #212f45;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5px;
  padding-top: 5px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .header .head-navi__link {
    padding-bottom: 3px;
    padding-top: 3px;
  }
}
.header .btn-gmenu {
  -webkit-transform: translateY(-50%);
  background: 0 0;
  border: 0;
  display: block;
  height: 14px;
  line-height: 0;
  outline: 0;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  width: 25px;
  z-index: 1003;
}
.header .btn-gmenu__label {
  -webkit-transform: translateX(-50%);
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 9px);
  transform: translateX(-50%);
}
.header .btn-gmenu__bar {
  background-color: #000;
  height: 1px;
  left: 0;
  position: absolute;
  transition-timing-function: cubic-bezier(0.36, 0.22, 0.17, 0.93);
  width: 100%;
}
.header .btn-gmenu__bar:nth-child(1) {
  top: 0;
}
.header .btn-gmenu__bar:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}
.header .btn-gmenu__bar:nth-child(3) {
  bottom: 0;
  width: 20px;
}
.header .btn-gmenu.active span {
  transition-duration: 0.5s;
}
.header .btn-gmenu.active span:nth-child(1) {
  -webkit-transform: rotate(-153deg);
  top: 6px;
  transform: rotate(-153deg);
}
.header .btn-gmenu.active span:nth-child(2) {
  opacity: 0;
}
.header .btn-gmenu.active span:nth-child(3) {
  -webkit-transform: rotate(153deg);
  top: 6px;
  transform: rotate(153deg);
  width: 100%;
}
@media screen and (min-width: 1081px) {
  .header .btn-gmenu,
.header .btn-gmenu span {
    display: none;
  }
}

/* =======================================
オープン時
======================================= */
.open .head-detail,
.open .site-ttl {
  background-color: #e8f8ff !important;
  box-shadow: none !important;
}

/* =========================
   Utility (head-detail transition)
========================= */
.head-detail {
  transition-duration: 0.3s;
  transition-property: all;
}

/* =======================================
オープン時　２つのボタン
======================================= */
.sp-btns {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 265px;
  width: 100%;
}

.open .head-navi {
  display: flex;
}
.open .sp-btns {
  display: flex;
}

/* =======================================
pC用メニュー
======================================= */
.pc-menu-wrap {
  align-items: center;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1320px) {
  .pc-menu-wrap {
    gap: 25px;
  }
}
@media screen and (max-width: 1080px) {
  .pc-menu-wrap {
    display: none;
  }
}
.pc-menu-wrap .main-c-btn {
  align-items: center;
  background-color: #d74800;
  border: 2px solid #d74800;
  border-radius: 6px;
  display: block;
  display: flex;
  height: 50px;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
  width: 200px;
}
@media screen and (max-width: 1320px) {
  .pc-menu-wrap .main-c-btn {
    width: 150px;
  }
}
.pc-menu-wrap .main-c-btn span {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1320px) {
  .pc-menu-wrap .main-c-btn span {
    font-size: 16px;
  }
}
.pc-menu-wrap .main-c-btn svg {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1320px) {
  .pc-menu-wrap .main-c-btn svg {
    right: 10px;
  }
}
.pc-menu-wrap .main-c-btn svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 769px) {
  .pc-menu-wrap .main-c-btn:hover {
    background-color: #fff;
    cursor: pointer;
  }
  .pc-menu-wrap .main-c-btn:hover svg path {
    fill: #d74800;
  }
  .pc-menu-wrap .main-c-btn:hover span {
    color: #d74800;
  }
}

.pc-menu {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1320px) {
  .pc-menu {
    gap: 15px;
  }
}
.pc-menu__item a {
  color: #212f45;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  /* 下線アニメーション */
  position: relative;
}
@media screen and (max-width: 1320px) {
  .pc-menu__item a {
    font-size: 16px;
  }
}
.pc-menu__item a::after {
  -webkit-transform: scaleX(0) scaleY(0);
  -webkit-transform-origin: left center;
  background-color: #212f45;
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0) scaleY(0);
  transform-origin: left center;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
  will-change: transform;
}
.pc-menu__item a:hover::after {
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1);
  /* 横: 左→右に伸びる／縦: 0→2pxへ上下に広がる */
}

.footer {
  background-color: #212f45;
  padding: 39px 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 18px 9px;
  }
}
.footer p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer p {
    font-size: 9px;
  }
}

/* =======================================
共通セクション
======================================= */
.c-sec {
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-sec {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  .c-sec {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.c-sec__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.c-sec__bg picture {
  height: 100%;
  width: 100%;
}
.c-sec__bg img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* =======================================
bid-txt
======================================= */
.big-txt {
  font-family: "Roboto", sans-serif;
  font-size: 200px;
  font-weight: 700;
  left: -13px;
  line-height: 1;
  position: absolute;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .big-txt {
    font-size: 120px;
    left: -7px;
  }
}
@media screen and (max-width: 768px) {
  .big-txt {
    font-size: 70px;
    left: -4px;
  }
}

/* =======================================
共通inner
======================================= */
.c-inner {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .c-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =======================================
共通inlineブロック
======================================= */
.inline-b {
  display: inline-block;
}

/* =======================================
共通タイトル
======================================= */
.c-ttls {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.c-ttls__en {
  align-items: center;
  display: flex;
  gap: 11px;
  justify-content: center;
}
.c-ttls__en span {
  color: #0066cc;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.c-ttls--w .c-ttls__en span {
  color: #fff;
}
.c-ttls--w .c-ttls__ttl {
  color: #fff;
}
.c-ttls__ttl {
  font-size: 0;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.c-ttls__ttl .inline-b {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .c-ttls__ttl .inline-b {
    font-size: 24px;
  }
}

/* =======================================
mv
======================================= */
.mv {
  position: relative;
  z-index: 2;
}

/* =======================================
top-cta
======================================= */
.top-cta {
  background-color: #212f45;
  padding-bottom: 30px;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-cta {
    display: none;
  }
}
.top-cta__txt {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  gap: 6px;
  justify-content: center;
}
.top-cta__txt span {
  display: block;
}
.top-cta__btns {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.top-cta__btns a {
  align-items: center;
  border-radius: 6px;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 300px;
}
.top-cta__btn-01 {
  background-color: #fff;
  border: 2px solid #0066cc;
  flex-direction: column;
  transition: background-color 0.3s ease;
}
.top-cta__btn-01 svg path {
  transition: fill 0.3s ease;
}
@media screen and (min-width: 769px) {
  .top-cta__btn-01:hover {
    background-color: #0066cc;
    cursor: pointer;
  }
  .top-cta__btn-01:hover svg path {
    fill: #fff;
  }
  .top-cta__btn-01:hover span {
    color: #fff;
  }
}
.top-cta__btn-01 span {
  color: #0066cc;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  transition: color 0.3s ease;
}
.top-cta__btn-01 span .f-robot {
  font-family: "Roboto", sans-serif;
}
.top-cta__btn-02 {
  background-color: #d74800;
  border: 2px solid #d74800;
  position: relative;
  transition: background-color 0.3s ease;
}
.top-cta__btn-02 span {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.top-cta__btn-02 svg {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.top-cta__btn-02 svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 769px) {
  .top-cta__btn-02:hover {
    background-color: #fff;
    cursor: pointer;
  }
  .top-cta__btn-02:hover svg path {
    fill: #d74800;
  }
  .top-cta__btn-02:hover span {
    color: #d74800;
  }
}

/*----------------------------------------------------------
probrem - 防水性能が高ければ結露対策出来ると思っていませんか？
------------------------------------------------------------*/
#ploblem {
  position: relative;
  z-index: 1;
}

.problem {
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .problem {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.problem .big-txt {
  top: -25px;
}
@media screen and (max-width: 1080px) {
  .problem .big-txt {
    top: -15px;
  }
}
@media screen and (max-width: 768px) {
  .problem .big-txt {
    top: -9px;
  }
}
@media screen and (max-width: 480px) {
  .problem {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.problem .big-txt {
  color: #fff;
  opacity: 0.6;
}
.problem__img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .problem__img {
    margin-top: 20px;
  }
}
.problem__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem__txt {
    font-size: 14px;
    margin-top: 20px;
  }
}

/* =======================================
problem02
結露が原因でトラブルに …
施工現場でこんなお悩みございませんか？
======================================= */
.problem02 {
  padding-bottom: 100px;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .problem02 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  .problem02 {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.problem02__flex {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-width: 1090px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .problem02__flex {
    flex-direction: column;
    margin-top: 20px;
  }
}
.problem02__item {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: calc((100% - 20px * 2) / 3);
}
@media screen and (max-width: 768px) {
  .problem02__item {
    width: 100%;
  }
}
.problem02__ttl {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(237.74deg, #0168ca 14.38%, #01d768 126.26%);
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem02__ttl {
    font-size: 20px;
  }
}
.problem02__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .problem02__txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .problem02 .c-ttls__ttl span {
    font-size: 20px !important;
  }
}
.problem02__big-ttl {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem02__big-ttl {
    margin-top: 20px;
  }
}
.problem02__big-ttl span {
  color: #fff;
  font-size: 0;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.problem02__big-ttl .inline-b {
  font-size: 44px;
}
@media screen and (max-width: 768px) {
  .problem02__big-ttl .inline-b {
    font-size: 22px;
  }
}

/* =======================================
features - ドライキーパー miniの特徴
======================================= */
.features-wrap {
  position: relative;
  z-index: 2;
}
.features-wrap .big-txt {
  top: -25px;
}
@media screen and (max-width: 1080px) {
  .features-wrap .big-txt {
    top: -16px;
  }
}
@media screen and (max-width: 768px) {
  .features-wrap .big-txt {
    top: -9px;
  }
}

@media screen and (max-width: 768px) {
  .features {
    background-color: #e8f8ff;
  }
}
.features .big-txt {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
  background-clip: text;
  color: #fff;
  /* Firefox用 */
  color: transparent;
  opacity: 0.1;
}
.features .fix-btns__flex {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .features .fix-btns__flex {
    margin-top: 30px;
  }
}

.features-contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  .features-contents {
    gap: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 30px;
  }
}
.features-contents__item {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .features-contents__item:nth-of-type(even) {
    background-color: #e8f8ff;
  }
}
.features-contents__ttl {
  align-items: center;
  background-color: #0066cc;
  display: flex;
  gap: 20px;
  justify-content: center;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  .features-contents__ttl {
    gap: 10px;
    min-height: 50px;
  }
}
.features-contents__ttl--num {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .features-contents__ttl--num {
    font-size: 26px;
  }
}
.features-contents__ttl--txt {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .features-contents__ttl--txt {
    font-size: 24px;
  }
}
.features-contents__box {
  padding: 40px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .features-contents__box {
    padding: 20px 30px;
  }
}
.features-contents__num {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
  background-clip: text;
  color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 200px;
  font-weight: 700;
  left: -9px;
  line-height: 1;
  opacity: 0.08;
  position: absolute;
  top: -23px;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .features-contents__num {
    font-size: 120px;
    left: -7px;
    top: -13px;
  }
}
@media screen and (max-width: 768px) {
  .features-contents__num {
    font-size: 100px;
    left: -4px;
    top: 10px;
  }
}
.features-contents__sub {
  font-size: 0;
  position: relative;
  text-align: center;
  z-index: 2;
}
.features-contents__sub span {
  color: #0066cc;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .features-contents__sub span {
    font-size: 24px;
  }
}
.features-contents__flex {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .features-contents__flex {
    flex-direction: column;
    gap: 20px;
    margin-top: 5px;
  }
}
.features-contents__txts {
  width: calc((100% - 40px * 1) / 2);
}
@media screen and (max-width: 768px) {
  .features-contents__txts {
    width: 100%;
  }
}
.features-contents__txt {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .features-contents__txt {
    font-size: 14px;
  }
}
.features-contents__min {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .features-contents__min {
    margin-top: 5px;
  }
}
.features-contents__min span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .features-contents__min span {
    font-size: 11px;
  }
}
.features-contents__img {
  width: calc((100% - 40px * 1) / 2);
}
@media screen and (max-width: 768px) {
  .features-contents__img {
    width: 100%;
  }
}
.features-contents .img02 {
  margin-top: 20px;
}
.features-contents #features03 .features-contents__flex {
  flex-direction: column-reverse;
}
@media screen and (max-width: 768px) {
  .features-contents #features03 .features-contents__flex {
    flex-direction: column;
  }
}
.features-contents #features03 .features-contents__flex .features-contents__txts {
  width: 100%;
}
.features-contents #features03 .features-contents__flex .features-contents__img {
  margin-left: auto;
  margin-right: auto;
  max-width: 668px;
  width: 100%;
}
.features-contents #features04 .features-contents__min span {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

/* =======================================
spec - 商品詳細
======================================= */
.spec {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.spec .big-txt {
  top: -24px;
}
@media screen and (max-width: 1080px) {
  .spec .big-txt {
    top: -15px;
  }
}
@media screen and (max-width: 768px) {
  .spec .big-txt {
    top: -8.5px;
  }
}
.spec .big-txt {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
  background-clip: text;
  color: #fff;
  /* Firefox用 */
  color: transparent;
  opacity: 0.2;
}
.spec__inner {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 900px) {
  .spec__inner {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}
.spec .feature-block {
  /* 画像側 */
  /* 右側 */
  /* タブ行 */
  /* 左「01」＋右タイトルの行: gapは20px（ご指定） */
  /* 本文 */
}
.spec .feature-block__media {
  flex: 1 1 50%;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__media {
    width: 100%;
  }
}
.spec .feature-block__viewport {
  aspect-ratio: 1/1;
  background: #eef4fb;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__viewport {
    margin-left: auto;
    margin-right: auto;
    max-width: 62.66%;
  }
}
.spec .feature-block__track {
  -ms-grid-columns: (100%)[3];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 100%);
  height: 100%;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.spec .feature-block__slide {
  height: 100%;
  width: 100%;
}
.spec .feature-block__slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
  /* 指定どおり */
}
.spec .feature-block__pager {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__pager {
    justify-content: center;
  }
}
.spec .feature-block__dot {
  background: #d4e6f9;
  border: 0;
  cursor: pointer;
  height: 4px;
  padding: 0;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__dot {
    height: 5px;
    width: 30px;
  }
}
.spec .feature-block__dot.is-active {
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
  /* グラデーション */
}
.spec .feature-block__content {
  flex: 1 1 50%;
  min-width: 0;
}
.spec .feature-block__tabs {
  display: flex;
  flex-direction: column;
}
.spec .feature-block__tab {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #94a8bc;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 80px;
  padding: 10px 10px 10px 40px;
  transition: background 0.3s ease;
  width: 100%;
}
.spec .feature-block__tab .feature-block__num,
.spec .feature-block__tab .feature-block__title {
  transition: color 0.3s ease;
}
.spec .feature-block__tab .feature-block__triangle svg path {
  transition: fill 0.3s ease;
}
@media screen and (min-width: 769px) {
  .spec .feature-block__tab:hover {
    background: #0066cc;
    border-color: transparent;
    opacity: 1;
  }
  .spec .feature-block__tab:hover .feature-block__num,
.spec .feature-block__tab:hover .feature-block__title {
    color: #fff;
  }
  .spec .feature-block__tab:hover .feature-block__triangle svg path {
    fill: url(#paint0_linear_4663_2757) !important;
  }
}
@media screen and (max-width: 768px) {
  .spec .feature-block__tab {
    min-height: 42.5px;
    padding: 5px 5px 5px 20px;
  }
}
.spec .feature-block__tab.is-active {
  background: #0066cc;
  border-color: transparent;
}
.spec .feature-block__tab.is-active .feature-block__num,
.spec .feature-block__tab.is-active .feature-block__title {
  color: #fff;
}
.spec .feature-block__tab:not(.is-active) .feature-block__triangle svg path {
  fill: #0066cc;
}
.spec .feature-block__head {
  align-items: center;
  display: flex;
  gap: 20px;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__head {
    gap: 10px;
  }
}
.spec .feature-block__num {
  color: #0066cc;
  flex: 0 0 auto;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__num {
    font-size: 19px;
  }
}
.spec .feature-block__title {
  color: #0066cc;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__title {
    font-size: 16px;
  }
}
.spec .feature-block__triangle {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 20px;
  justify-content: center;
  margin-top: auto;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__triangle {
    height: 10px;
    width: 10px;
  }
}
.spec .feature-block__triangle svg {
  display: block;
  height: 20px;
  width: 20px;
}
.spec .feature-block__panels {
  margin-top: 0;
}
.spec .feature-block__panel {
  display: none;
}
.spec .feature-block__panel.is-active {
  display: block;
}
.spec .feature-block__desc {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 2;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .spec .feature-block__desc {
    font-size: 14px;
    margin-top: 30px;
  }
}

/* ビューポートを基準に重ねる */
.feature-block__viewport {
  aspect-ratio: 1/1;
  /* 460x460なら正方形でOK */
  overflow: hidden;
  position: relative;
}

/* trackは重ねる土台に */
.feature-block__track {
  height: 100%;
  position: relative;
  width: 100%;
}

/* 各スライドを重ねてフェード */
.feature-block__slide {
  display: block;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.35s ease;
  visibility: hidden;
}

.feature-block__slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* 画像のフィット */
.feature-block__slide img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* =======================================
spec テーブル
======================================= */
.spec-table {
  background: #fff;
  border: 2px solid #94a8bc;
  border-collapse: separate;
  border-radius: 6px;
  border-spacing: 0;
  color: #212f45;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-width: 1100px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .spec-table {
    border: 1px solid #94a8bc;
    border-radius: 3px;
    margin-top: 20px;
  }
}
.spec-table__col-section {
  width: 152px;
}
@media screen and (max-width: 768px) {
  .spec-table__col-section {
    width: 72px;
  }
}
.spec-table__col-label {
  width: 152px;
}
@media screen and (max-width: 768px) {
  .spec-table__col-label {
    width: 72px;
  }
}
.spec-table th,
.spec-table td {
  vertical-align: middle;
}
.spec-table__section {
  /* ← ここが左の青セル（rowspanあり） */
  background-color: #0066cc;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  /* 縦中央 */
  padding: 0;
  text-align: center;
  vertical-align: middle;
  /* 余白でズレないよう0に */
}
@media screen and (max-width: 768px) {
  .spec-table__section {
    font-size: 13px;
  }
}
.spec-table__label {
  background-color: #cce5ff;
  border-left: 1px solid #94a8bc;
  color: #212f45;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding: 2px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .spec-table__label {
    font-size: 13px;
  }
}
.spec-table__data {
  border-left: 1px solid #94a8bc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .spec-table__data {
    font-size: 12px;
  }
}
.spec-table__data--pd {
  padding: 4px 10px 6.4px 10px;
}
@media screen and (max-width: 768px) {
  .spec-table__data--pd {
    padding: 2px 5px;
  }
}
.spec-table__features-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spec-table__features-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 4px 10px 6.4px 10px;
}
@media screen and (max-width: 768px) {
  .spec-table__features-list li {
    font-size: 12px;
    padding: 2px 5px;
  }
}
.spec-table__features-list li + li {
  border-top: 1px dashed #94a8bc;
}
.spec-table__note {
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .spec-table__note {
    font-size: 12px;
  }
}
.spec-table tr + tr th,
.spec-table tr + tr td {
  border-top: 1px solid #94a8bc;
}

/* =======================================
case study - 導入事例
======================================= */
.case {
  position: relative;
  z-index: 2;
}
.case .big-txt {
  color: #fff;
  opacity: 0.2;
}
.case .big-txt {
  top: -24px;
}
@media screen and (max-width: 1080px) {
  .case .big-txt {
    top: -14px;
  }
}
@media screen and (max-width: 768px) {
  .case .big-txt {
    top: -8px;
  }
}
@media screen and (max-width: 600px) {
  .case .c-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.swiper-wrap {
  margin-inline: auto;
  max-width: 1100px;
  overflow: visible;
  position: relative;
}

.swiper {
  margin-top: 60px;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .swiper {
    margin-top: 20px;
  }
}
.swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.4s ease;
}

.swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  position: relative;
  z-index: 2;
}

.swiper-pagination {
  -webkit-transform: none !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  overflow: initial !important;
  position: static;
  transform: none !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
@media screen and (max-width: 768px) {
  .swiper-pagination {
    margin-top: 20px;
  }
}

.swiper-pagination-bullet {
  -webkit-transform: none !important;
  background-color: #fff;
  height: 20px;
  margin-left: 10px !important;
  margin-right: 10px !important;
  opacity: 1 !important;
  transform: none !important;
  transition: all 0.3s ease;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    height: 15px;
    margin-left: 7px !important;
    margin-right: 7px !important;
    width: 15px;
  }
}
@media screen and (min-width: 769px) {
  .swiper-pagination-bullet:hover {
    cursor: pointer;
    opacity: 0.6 !important;
  }
}

/* dynamicBullets の挙動を強制停止 */
.swiper-pagination-bullets-dynamic {
  -webkit-transform: none !important;
  left: auto !important;
  transform: none !important;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
}

.swiper-button-next,
.swiper-button-prev {
  -webkit-transform: translateY(-50%);
  align-items: center;
  background: transparent;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 71px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .swiper-button-next,
.swiper-button-prev {
    width: 35px;
  }
}
@media screen and (min-width: 769px) {
  .swiper-button-next:hover,
.swiper-button-prev:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-button-next {
  right: -190px;
}
@media screen and (max-width: 1600px) {
  .swiper-button-next {
    right: -50px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: -20px;
  }
}

.swiper-button-prev {
  left: -190px;
}
@media screen and (max-width: 1600px) {
  .swiper-button-prev {
    left: -50px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: -20px;
  }
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: block;
  height: auto;
  width: 71px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next svg,
.swiper-button-prev svg {
    width: 35px;
  }
}

.swiper-ttl {
  background: linear-gradient(90deg, #0066cc 0%, #09d9dc 100%);
  padding-bottom: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .swiper-ttl {
    padding-bottom: 12px;
    padding-top: 20px;
  }
}
.swiper-ttl__flex {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .swiper-ttl__flex {
    gap: 10px;
  }
}
.swiper-ttl__icon {
  width: 76px;
}
@media screen and (max-width: 768px) {
  .swiper-ttl__icon {
    width: 38px;
  }
}
.swiper-ttl__ttl {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swiper-ttl__ttl {
    font-size: 19px;
  }
}
.swiper-ttl__sub {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swiper-ttl__sub {
    font-size: 14px;
  }
}

.swiper-txts {
  background-color: #fff;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .swiper-txts {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.swiper-txts__flex {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .swiper-txts__flex {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-txts__flex {
    flex-direction: column;
  }
}
.swiper-txts__box {
  flex: 1 1 50%;
  width: 100%;
}
.swiper-txts__ttl {
  align-items: center;
  color: #0066cc;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.02em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .swiper-txts__ttl {
    font-size: 14px;
    gap: 5px;
  }
}
.swiper-txts__ttl::before {
  background-color: #0066cc;
  content: "";
  height: 14px;
  width: 14px;
}
@media screen and (max-width: 768px) {
  .swiper-txts__ttl::before {
    height: 10px;
    width: 10px;
  }
}
.swiper-txts__txt {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 2;
  margin-top: 10px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .swiper-txts__txt {
    font-size: 14px;
    margin-top: 5px;
  }
}
.swiper-txts__list {
  background-color: #d4e6f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .swiper-txts__list {
    gap: 5px;
    margin-top: 5px;
    padding: 10px;
  }
}
.swiper-txts__list li {
  align-items: flex-start;
  display: flex;
  gap: 8px;
}
.swiper-txts__list .icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .swiper-txts__list .icon {
    width: 22.5px;
  }
}
.swiper-txts__list .txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .swiper-txts__list .txt {
    font-size: 14px;
    font-weight: 500;
  }
}

.txt-after {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .txt-after {
    gap: 20px;
    margin-top: 20px;
  }
}
.txt-after img {
  max-width: 82px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .txt-after img {
    max-width: 41px;
  }
}
.txt-after__txt {
  color: #d74800;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .txt-after__txt {
    font-size: 14px;
  }
}

.slide-txt {
  color: #0066cc;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .slide-txt {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    text-align: justify;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* =======================================
flow - 導入までの流れ
======================================= */
.flow {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.flow .big-txt {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
  background-clip: text;
  color: #fff;
  /* Firefox用 */
  color: transparent;
  opacity: 0.2;
}
.flow .big-txt {
  top: -26px;
}
@media screen and (max-width: 1080px) {
  .flow .big-txt {
    top: -16px;
  }
}
@media screen and (max-width: 768px) {
  .flow .big-txt {
    top: -10px;
  }
}

.flow-list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-list {
    margin-top: 10px;
  }
}
.flow-list__item {
  align-items: center;
  border-bottom: 1px solid #94a8bc;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .flow-list__item {
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.flow-list__txts {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .flow-list__txts {
    gap: 10px;
  }
}
.flow-list__icon {
  flex-shrink: 0;
  max-width: 140px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-list__icon {
    max-width: 100px;
  }
}
.flow-list__ttl {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #0168ca 0%, #01d768 100%);
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .flow-list__ttl {
    font-size: 20px;
  }
}
.flow-list__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .flow-list__txt {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 10px;
  }
}
.flow-list__btn {
  align-items: center;
  background-color: #fff;
  border: 2px solid #d74800;
  border-radius: 100px;
  display: flex;
  height: 65px;
  justify-content: center;
  margin-top: 20px;
  max-width: 282px;
  position: relative;
  transition: background-color 0.3s ease;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-list__btn {
    height: 40px;
    margin-top: 10px;
    max-width: 199px;
    width: 100%;
  }
}
.flow-list__btn span {
  color: #d74800;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .flow-list__btn span {
    font-size: 14px;
    font-weight: 500;
    padding-right: 15px;
  }
}
.flow-list__btn svg {
  -webkit-transform: translateY(-50%);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
@media screen and (max-width: 768px) {
  .flow-list__btn svg {
    right: 10px;
  }
}
.flow-list__btn svg path {
  fill: #d74800;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 769px) {
  .flow-list__btn:hover {
    background-color: #d74800;
    cursor: pointer;
  }
  .flow-list__btn:hover svg path {
    fill: #fff;
  }
  .flow-list__btn:hover span {
    color: #fff;
  }
}
.flow-list__img {
  flex-shrink: 0;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-list__img {
    margin-top: 10px;
    max-width: 100px;
  }
}

/* =======================================
faq - よくある質問
======================================= */
.faq {
  position: relative;
}
.faq .big-txt {
  color: #0066cc;
  opacity: 0.2;
}
.faq .big-txt {
  top: -25px;
}
@media screen and (max-width: 1080px) {
  .faq .big-txt {
    top: -15px;
  }
}
@media screen and (max-width: 768px) {
  .faq .big-txt {
    top: -9px;
  }
}

/* list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .faq-list {
    gap: 10px;
    margin-top: 30px;
  }
}

/* item */
.faq-item {
  position: relative;
  /* 開いているときのアイコン反転 */
}
.faq-item__head {
  align-items: center;
  background: #fff;
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .faq-item__head {
    gap: 8px;
    padding: 10px;
  }
}
.faq-item__head:focus-visible {
  outline: 3px solid #9ed5ff;
  outline-offset: 2px;
}
.faq-item__head-left {
  align-items: baseline;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .faq-item__head-left {
    gap: 5px;
  }
}
.faq-item__q {
  color: #0066cc;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .faq-item__q {
    font-size: 16px;
  }
}
.faq-item__ttl {
  color: #0066cc;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .faq-item__ttl {
    font-size: 14px;
  }
}
.faq-item__icon {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq-item__icon {
    width: 7px;
  }
}
.faq-item[data-open=true] .faq-item__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-item__a {
  background-color: #fff;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .faq-item__a {
    font-size: 13px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.faq-item__a-mark {
  color: #d74800;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .faq-item__a-mark {
    font-size: 16px;
    margin-right: 5px;
  }
}

/* =======================================
追従メニューー
======================================= */
.fix-btns {
  background: linear-gradient(90deg, #0066cc 0%, #09d9dc 100%);
  left: 0;
  opacity: 0;
  padding-bottom: 20px;
  padding-top: 20px;
  position: fixed;
  top: 100px;
  transition: opacity 0.3s ease, z-index 0s linear 0.3s;
  width: 100%;
  z-index: 2;
  z-index: -1;
}
@media screen and (max-width: 1320px) {
  .fix-btns {
    top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .fix-btns {
    top: 50px;
  }
}
.fix-btns__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 1020px) {
  .fix-btns__flex {
    max-width: 670px;
  }
}
@media screen and (max-width: 768px) {
  .fix-btns__flex {
    gap: 10px;
    max-width: 336px;
  }
}
.fix-btns__item {
  width: calc((100% - 20px * 3) / 4);
}
@media screen and (max-width: 1020px) {
  .fix-btns__item {
    width: calc((100% - 20px * 1) / 2);
  }
}
@media screen and (max-width: 768px) {
  .fix-btns__item {
    width: calc((100% - 10px * 1) / 2);
  }
}
.fix-btns__items {
  align-items: center;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .fix-btns__items {
    gap: 10px;
  }
}
.fix-btns__link {
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 30px;
  padding-right: 30px;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .fix-btns__link:hover {
    background-color: #0066cc;
  }
  .fix-btns__link:hover .fix-btns__num,
.fix-btns__link:hover .fix-btns__txt {
    color: #fff;
  }
  .fix-btns__link:hover svg path {
    fill: #fff;
  }
}
@media screen and (max-width: 768px) {
  .fix-btns__link {
    border-radius: 3px;
    min-height: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.fix-btns__link svg path {
  transition: fill 0.3s ease;
}
.fix-btns__link svg {
  height: auto;
  width: 14px;
}
@media screen and (max-width: 768px) {
  .fix-btns__link svg {
    width: 8px;
  }
}
.fix-btns__num {
  color: #0066cc;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .fix-btns__num {
    font-size: 14px;
  }
}
.fix-btns__txt {
  color: #0066cc;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .fix-btns__txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .inner-fix-btn .fix-btns__link {
    background-color: #0066cc;
  }
  .inner-fix-btn .fix-btns__link .fix-btns__num,
.inner-fix-btn .fix-btns__link .fix-btns__txt {
    color: #fff;
  }
  .inner-fix-btn .fix-btns__link svg path {
    fill: #fff;
  }
}

.fix-btns.is-fixed {
  opacity: 1;
  position: fixed;
  top: var(--headerH, 0px);
  transition: opacity 0.3s ease, z-index 0s;
  z-index: 998;
}

/* features セクションを抜けたら固定を解除する */
.fix-btns.is-bottom {
  bottom: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease, z-index 0s linear 0.3s;
  z-index: -1;
}

/* =======================================
ボトムメニュー
======================================= */
/* ボトムメニュー */
.bottom-menu {
  -webkit-transform: translateY(10px);
  background: transparent;
  bottom: 0;
  display: flex;
  gap: 10px;
  left: 0;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: fixed;
  right: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 999;
  /* 非表示時のクリック防止 */
}

.bottom-menu.is-show {
  -webkit-transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* SPのみ表示する場合（任意） */
@media (min-width: 769px) {
  .bottom-menu {
    display: none;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */