@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/*===================================================

 DIEX-Flow LP
 20250827

===================================================*/
:root {
  --txt-main: #113133;
  --txt-note: #6C797A;
  --link: #1972E6;
  --red1: #E32B34;
  --green1: #038296;
  --green2: #4BDEE6;
  --yellow1: #F7C908;
  --l-blue1: #DFF7FF;
  --l-blue2: #EFFBFF;
  --l-blue3: #B4EDFF;
  --l-gray1: #F5F5F5;
  --border-gray1: #DDD;
  --border-gray2: #CCC;
  --font-ja: "Noto Sans JP", sans-serif;
  --content-width: 1280px;
  --content-small-width: 1080px;
  --content-large-width: 1440px;
  --content-full-width: 1760px;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  box-shadow: none;
}

input,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

html {
  scroll-behavior: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt-main);
  font-family: var(--font-ja);
  word-break: break-word;
  overflow-x: hidden;
  padding-top: 100px;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

sub {
  vertical-align: baseline;
  font-size: 0.75em;
}

sup {
  vertical-align: top;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.75;
    padding-top: 0;
  }
}

/*===================================================

 共通パーツ

===================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

/* 余白----- */
.pt--0 {
  padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .sp-pt--0 {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .pc-pt--0 {
    padding-top: 0 !important;
  }
}

.mt--1em {
  margin-top: 1em;
}

.mt--1-5em {
  margin-top: 1.5em;
}

.mt--2em {
  margin-top: 2em;
}

.mt--3em {
  margin-top: 3em;
}

/* テキスト----- */
.txt-hightlight {
  background: var(--yellow1);
  padding: 0 .2em;
}

.txt-note {
  color: var(--txt-note);
  font-size: .9em;
}

.txt-s {
  font-size: 14px;
}

.txt-m {
  font-size: 16px;
}

.txt-l {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .txt-note {
    font-size: 11px;
  }
}

.bold {
  font-weight: 700;
}

.center {
  text-align: center;
}

/* カラー----- */
.fc--red {
  color: var(--red1);
}

.bg--white {
  background: #fff;
}

/* ボタン----- */
.btn-primary,
.btn-secondary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 40px 8px 24px;
  border-radius: 40px;
  max-width: 540px;
  height: 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: all .3s;
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.btn-primary:hover {
  filter: brightness(1.15);
}

.btn-primary {
  background: var(--green1);
  color: #fff;
  box-shadow: 0 -3px 0 0 rgba(0, 0, 0, .2) inset, 0 2px 8px 0 rgba(0, 0, 0, .16);
}

.btn-primary::after {
  background-image: url(../img/icon-btn-arrow-01_white.svg)
}

.btn-secondary::after {
  background-image: url(../img/icon-btn-arrow-01.svg)
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--green1);
  color: var(--green1);
}

.btn-secondary:hover {
  background: var(--l-blue2);
}

@media screen and (max-width: 767px) {

  .btn-primary,
  .btn-secondary {
    padding: 8px 40px 8px 24px;
    max-width: 88vw;
    height: 48px;
    font-size: 16px;
  }

  .btn-primary::after,
  .btn-secondary::after {
    width: 20px;
    height: 20px;
    right: 16px;
  }

  .btn-primary {
    box-shadow: 0 -2px 0 0 rgba(0, 0, 0, .2) inset, 0 2px 8px 0 rgba(0, 0, 0, .16);
  }
}

/* リンク----- */
.link-blank {
  display: inline-flex;
  align-items: center;
  gap: 0 4px;
}

.link-blank::after {
  content: "";
  display: block;
  background: url(../img/icon-blank.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
}

.link-zoom {
  position: relative;
  cursor: pointer;
}

.link-zoom::before {
  content: "";
  display: block;
  background: rgba(3, 130, 150, .8) url(../img/icon-zoom.svg) no-repeat center;
  background-size: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: absolute;
  bottom: -24px;
  right: -24px;
  transition: transform .2s;
}

.link-zoom:hover::before {
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .link-zoom::before {
    background-size: 16px;
    width: 32px;
    height: 32px;
    bottom: 8px;
    right: 8px;
  }
}

.link-movie {
  position: relative;
  display: flex;
}

.link-movie::after {
  content: "";
  display: block;
  background: url(../img/icon-movie-play.svg) no-repeat center;
  background-size: contain;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .2s;
}

.link-movie:hover::after {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .link-movie::after {
    width: 40px;
    height: 40px;
  }
}

.link-pdf {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4;
  color: var(--txt-main);
  text-decoration: none;
}

.link-pdf::before {
  content: "";
  display: block;
  background: url(../img/icon-pdf.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: .3em;
  left: 0;
}

.link-download {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4;
  color: var(--txt-main);
  text-decoration: none;
}

.link-download::before {
  content: "";
  display: block;
  background: url(../img/icon-download.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: .4em;
  left: 0;
}

/* CVボタンエリア----- */
.cv-btn-wrap {
  margin-top: 80px;
  text-align: center;
}

.cv-btn-wrap .btn-primary {
  height: 80px;
  font-size: 20px;
}

.cv-btn-wrap .btn-primary::after {
  right: 24px;
}

@media screen and (max-width: 767px) {
  .cv-btn-wrap {
    margin-top: 40px;
  }

  .cv-btn-wrap .btn-primary {
    height: 56px;
    font-size: 16px;
  }

  .cv-btn-wrap .btn-primary::after {
    right: 12px;
  }
}

/* セクション----- */
.section {
  padding: 0 2.4vw;
  position: relative;
}

.section__container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
  position: relative;
}

.section__container.small {
  max-width: var(--content-small-width);
}

.section__container.full {
  max-width: var(--content-full-width);
}

.container-small {
  max-width: var(--content-small-width);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 56px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.section-heading__ttl small {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-top: .5em;
}

.section-heading__btn {
  position: absolute;
  right: 0;
  top: 0;
}

.section-lead {
  /*font-size: 18px;*/
  line-height: 2;
  max-width: var(--content-small-width);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 0 10px;
  }

  .section.gray-arrow::before,
  .section.gray-arrow::after {
    border-width: 25px 50px;
  }

  .section.gray-arrow+.section .section__container {
    padding-top: 60px;
  }

  .section__container {
    padding: 40px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading__ttl {
    font-size: 20px;
  }

  .section-heading__ttl small {
    font-size: 12px;
  }

  .section-heading__btn {
    position: static;
    margin: 16px 0 0 0;
  }

  .section-heading__btn .btn-secondary {
    font-size: 12px;
    height: auto;
    padding: 8px 32px 8px 16px;
  }

  .section-heading__btn .btn-secondary::after {
    width: 16px;
    height: 16px;
    right: 10px;
  }

  .section-lead {
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* リスト----- */
.list-dot>li {
  padding-left: 1em;
  text-indent: -1em;
}

.list-dot>li::before {
  content: "・";
}

.list-circle>li {
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.list-circle>li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--green2);
  position: absolute;
  top: .3em;
  left: 0;
}

.list-circle>li:not(:last-child) {
  margin-bottom: .5em;
}

/* flex----- */
.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

/*===================================================

 ヘッダー

===================================================*/
.l-header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-header__container {
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 2.4vw;
  position: relative;
  transition: all .3s;
}

.header-logo {
  width: 140px;
  position: absolute;
  top: 16px;
  left: 2.4vw;
  transition: all .3s;
}

.l-header.is-scroll .l-header__container {
  height: 80px
}

.l-header.is-scroll .header-logo {
  width: 100px;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.header-nav__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 2em;
}

.header-nav__list>li {
  display: flex;
  position: relative;
}

.header-nav__list>li a {
  color: var(--txt-main);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0 4px;
}

.header-nav__list>li::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green3);
  position: absolute;
  bottom: -4px;
  left: 0;
  opacity: 0;
}

.header-nav__list>li.is-active::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .l-header {
    background: transparent;
  }

  .l-header__container {
    height: auto;
    padding: 10px;
  }

  .header-logo {
    width: 80px;
    top: 10px;
    left: 10px;
  }

  .l-header.is-scroll .l-header__container {
    height: auto
  }

  .l-header.is-scroll .header-logo {
    width: 48px;
  }

  .header-nav {
    gap: 0 5px;
  }

  .header-nav__list {
    display: none;
  }
}

/* ヘッダー CVボタン */
.header-nav__cv-list {
  display: flex;
  gap: 0 12px;
}

.header-pulldown {
  position: relative;
}

.header-pulldown__trigger {
  background: var(--green1);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px 8px 32px;
  border-radius: 40px;
  transition: all .3s;
}

.l-header.is-scroll .header-pulldown__trigger {
  font-size: 14px;
  height: 44px;
}

.header-pulldown__trigger::after {
  content: "";
  background: url(../img/icon-btn-arrow-03.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.header-pulldown.is-active .header-pulldown__content {
  display: block;
}

.header-pulldown__content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .4);
  border-radius: 8px;
}

.header-pulldown__content::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: #fff;
  position: absolute;
  bottom: calc(100% - 8px);
  left: 50%;
  transform: rotate(45deg);
}

.header-pulldown__list>li+li {
  margin-top: 8px;
}

.header-pulldown__list>li a {
  color: var(--txt-main);
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .header-pulldown__list>li a:hover {
    text-decoration: underline;
  }
}

.header-btn-entry {
  text-decoration: none;
  background: var(--green1);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 40px;
  transition: all .3s;
}

.header-btn-entry:hover {
  filter: brightness(1.15);
}

.header-btn-contact {
  text-decoration: none;
  background: #fff;
  color: var(--green1);
  border: 2px solid var(--green1);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 40px;
  transition: all .3s;
}

.l-header.is-scroll .header-btn-entry,
.l-header.is-scroll .header-btn-contact {
  font-size: 14px;
  height: 44px;
}

.header-btn-contact:hover {
  background: var(--l-blue2);
}

@media screen and (max-width: 767px) {
  .header-nav__cv-list {
    display: none;
  }
}

/*===================================================

 SP用ナビゲーション

===================================================*/
@media screen and (min-width: 768px) {

  .sp-menu-btn,
  .sp-gnav {
    display: none !important;
  }
}

/* メニューボタン */
.sp-menu-btn {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.sp-menu-btn .line {
  display: block;
  width: 22px;
  height: 18px;
  position: relative;
}

.sp-menu-btn .line>span {
  display: block;
  background: var(--green1);
  width: 22px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  transition: all 0.2s ease-in-out;
}

.sp-menu-btn .line>span:nth-child(1) {
  top: 0;
}

.sp-menu-btn .line>span:nth-child(2) {
  top: 8px;
  transition: all 0.1s ease-in-out;
}

.sp-menu-btn .line>span:nth-child(3) {
  top: 16px;
}

.sp-menu-btn.is-active .line>span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.sp-menu-btn.is-active .line>span:nth-child(2) {
  width: 0;
}

.sp-menu-btn.is-active .line>span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* ナビゲーションの開閉 */
.sp-gnav {
  position: fixed;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  transition: left .3s ease;
  display: flex;
  justify-content: flex-end;
}

.sp-gnav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.sp-gnav__container {
  position: relative;
  padding-top: 60px;
  width: 280px;
  height: 100%;
  background: #fff;
}

.sp-gnav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  left: 0;
}

.sp-gnav.is-active .sp-gnav__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-gnav-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: var(--green1);
}

/* ナビゲーションのデザイン */
.sp-gnav__list {
  border-top: 1px solid var(--border-gray1);
}

.sp-gnav__list>li {
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  border-bottom: 1px solid var(--border-gray1);
}

.sp-gnav__list>li a {
  text-decoration: none;
  color: var(--txt-main);
  display: block;
  padding: 16px 24px;
}

.sp-gnav__list>li a::after {
  content: "";
  background-image: url(../img/icon-btn-arrow-01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.sp-gnav__cv-list {
  padding: 16px 24px;
}

.sp-gnav__cv-list>li {
  margin-top: 10px;
}

.sp-gnav .header-btn-application,
.sp-gnav .header-btn-renewal {
  text-decoration: none;
  background: var(--green1);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 24px;
  border-radius: 40px;
  transition: all .3s;
}

.sp-gnav .header-btn-renewal {
  filter: saturate(1.5);
}

.sp-gnav .header-btn-contact {
  height: 44px;
  font-size: 14px;
  font-weight: 500;
}

/*===================================================

 フッター

===================================================*/
.l-footer {
  padding: 0 2.4vw;
  background: #fff;
}

.l-footer__container {
  padding: 40px 0 64px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.l-footer .footer-quote {
  font-size: 12px;
  color: var(--txt-note);
  text-align: left;
  margin-bottom: 40px;
}

.l-footer .trademark-txt {
  font-size: 12px;
  color: var(--txt-note);
  text-align: center;
  margin-bottom: 40px;
}

.l-footer .copyright {
  font-size: 12px;
  color: var(--txt-note);
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 10px;
  }

  .l-footer__container {
    padding: 24px 0;
  }

  .l-footer .footer-quote {
    font-size: 11px;
    margin-bottom: 24px;
  }

  .l-footer .trademark-txt {
    margin-bottom: 24px;
    text-align: left;
    background: var(--l-gray1);
    padding: 10px 12px;
    border-radius: 4px;
  }

  .l-footer .copyright {
    font-size: 10px;
  }
}

/* フッターメニュー */
.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  margin-bottom: 32px;
}

.footer-menu-list>li a {
  color: var(--txt-note);
  font-size: 14px;
}

.footer-menu-list>li a:hover {
  text-decoration: underline;
}

.footer-menu-list>li a .icon-blank {
  margin-left: 2px;
}

@media screen and (max-width: 767px) {
  .footer-menu-list {
    margin-bottom: 24px;
  }

  .footer-menu-list>li a {
    font-size: 12px;
  }
}

/* アクセシビリティ */
.footer-accessibility {
  font-size: 12px;
  color: var(--txt-note);
  border-top: 1px solid #ddd;
  padding-top: 32px;
  margin-top: 32px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .footer-accessibility {
    padding-top: 16px;
    margin-top: 16px;
  }
}

/* ページトップボタン */
.btn-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--green1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.btn-pagetop::before {
  content: "";
  display: inline-flex;
  background: url(../img/icon-btn-arrow-05.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.btn-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .btn-pagetop {
    right: 4px;
    bottom: 8px;
    width: 32px;
    height: 32px;
  }

  .btn-pagetop::before {
    width: 16px;
    height: 16px;
  }
}

/*===================================================

 メインビジュアル

===================================================*/
.mv {
  position: relative;
  padding: 0 4vw;
  background: url(../img/mv-top.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  min-height: 480px;
  height: calc(100vh - 300px);
  max-height: 800px;
}

.mv::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.mv__container {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  padding-bottom: 120px;
  display: flex;
  gap: 0 2vw;
  display: flex;
  align-items: flex-end;
}

.mv__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv__copy {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .24);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .mv {
    padding: 0;
    min-height: 480px;
    height: 480px;
    max-height: 480px;
  }

  .mv::after {
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .mv__container {
    padding: 40px 24px;
    gap: 0;
  }

  .mv__copy {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .24);
    color: #fff;
  }
}

/*===================================================

 メインコンテンツ

===================================================*/
/* 幾何学模様の背景画像 */
.main-content {
  padding-top: 120px;
  position: relative;
  background: linear-gradient(0deg, rgba(180, 237, 255, 1) 0%, rgba(83, 246, 255, 0) 100%);
}

.main-content::before {
  content: "";
  mix-blend-mode: multiply;
  background: url(../img/bg-01.png) no-repeat 0 100px;
  background-attachment: fixed;
  background-size: 100% auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: wave-skew 12s ease-in-out infinite;
}

@keyframes wave-skew {
  0% {
    transform: skew(0deg, 0deg);
  }

  50% {
    transform: skew(0deg, 2deg);
  }

  100% {
    transform: skew(0deg, 0deg);
  }
}

@media screen and (max-width: 767px) {
  .main-content {
    padding-top: 80px;
  }

  .main-content::before {
    background-position: 0 0;
    background-size: 200% auto;
  }
}

/*===================================================

 トップ

===================================================*/
.mv+.main-content {
  padding-top: 0;
}

.section-index .section__container {
  position: relative;
}

.index-nav-list {
  display: flex;
  gap: 0 24px;
  justify-content: center;
}

.index-nav-list__item {
  width: 480px;
}

.index-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 48px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 4px 1px 0 rgba(0, 0, 0, .1);
  color: var(--txt-main);
  text-decoration: none;
  position: relative;
  transition: all .2s;
}

.index-nav-btn::after {
  content: "";
  background: url(../img/icon-btn-arrow-01.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  transition: opacity .4s;
}

@media screen and (min-width: 768px) {
  .index-nav-btn:hover {
    box-shadow: 2px 6px 1px 1px rgba(0, 0, 0, .1);
  }

  .index-nav-btn:hover .logo,
  .index-nav-btn:hover::after {
    opacity: .8;
  }
}

.index-nav-btn .logo {
  width: 160px;
  margin-bottom: 24px;
  transition: opacity .4s;
}

.index-nav-btn .ttl {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.index-nav-btn .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .section-index .section__container {
    padding-top: 32px;
  }

  .index-nav-list {
    flex-direction: column;
    gap: 16px 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .index-nav-list__item {
    width: auto;
  }

  .index-nav-btn {
    min-height: 114px;
    padding: 16px 24px 16px 108px;
    border-radius: 8px;
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, .1);
    align-items: flex-start;
    justify-content: center;
  }

  .index-nav-btn::after {
    width: 24px;
    height: 24px;
    bottom: 50%;
    right: 16px;
    margin-bottom: -12px;
  }

  .index-nav-btn .logo {
    position: absolute;
    top: 16px;
    left: 10px;
    width: 80px;
    margin-bottom: 0;
  }

  .index-nav-btn .ttl {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .index-nav-btn .txt {
    font-size: 13px;
  }
}

/* DIEX法を用いた流量算出 */
.index-nav-list+.section-heading {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .index-nav-list+.section-heading {
    padding-top: 64px;
  }
}

/* 流量算出 */
.index-fig {
  display: flex;
  margin-top: 80px;
}

.index-fig__col-left {
  width: 48%;
}

.index-fig__col-center {
  width: 12%;
  padding-right: 1%;
}

.index-fig__col-right {
  width: 40%;
}

.index-fig .box {
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 40px 32px 32px;
  text-align: center;
}

.index-fig .box-1 {
  height: 100%;
}

.index-fig .box__head {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  text-align: center;
}

.index-fig .box__head .box-ttl {
  margin: auto;
  width: 60%;
  min-width: 8em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  border-radius: 40px;
  text-align: center;
  padding: 10px;
  white-space: nowrap;
  background: var(--txt-main);
  color: #fff;
}

.index-fig .box-2 .box-ttl {
  background: var(--green2);
  color: var(--txt-main);
}

.index-fig .box-3 {
  margin-top: 56px;
}

.index-fig .box-3 .box-ttl {
  background: #E1EFF3;
  color: var(--txt-main);
}

.index-fig .box-txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
}

.index-fig .box-1 .box-txt {
  margin-top: 1em;
  margin-bottom: 2em;
}

.index-fig .box-txt em {
  font-size: 1.4em;
}

.index-fig .method-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  gap: 40px 24px;
}

.index-fig .method-list .method-txt {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.index-fig__col-center .arrow {
  position: relative;
  top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-fig__col-center .arrow::before {
  content: "";
  background: url(../img/arrow-01.svg) no-repeat right 0;
  background-size: contain;
  display: block;
  width: 100%;
  aspect-ratio: 165/55;
}

.index-fig__col-center .arrow-txt {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .index-fig {
    display: block;
    margin-top: 64px;
  }

  .index-fig__col-left {
    width: auto;
  }

  .index-fig__col-center {
    width: auto;
    padding-right: 0;
  }

  .index-fig__col-right {
    width: auto;
  }

  .index-fig .box {
    padding: 32px 16px 24px;
  }

  .index-fig .box-1 {
    height: auto;
  }

  .index-fig .box__head {
    top: -19px;
  }

  .index-fig .box__head .box-ttl {
    font-size: 18px;
  }

  .index-fig .box-3 {
    margin-top: 40px;
  }

  .index-fig .box-txt {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .index-fig .box-1 .box-txt {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .index-fig .method-list {
    gap: 16px;
  }

  .index-fig .method-list .method-txt {
    margin-top: 8px;
    font-size: 12px;
  }

  .index-fig__col-center .arrow {
    top: 0;
    overflow: hidden;
    height: 72px;
    margin-bottom: 16px;
  }

  .index-fig__col-center .arrow::before {
    transform: rotate(90deg);
    display: block;
    width: 80px;
  }

  .index-fig__col-center .arrow-txt {
    font-size: 12px;
    padding-left: 110px;
  }

  .index-fig .box-2 .calc-img,
  .index-fig .box-3 .calc-img {
    width: 61.5%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*===================================================

 下層ページ 共通

===================================================*/
/* ローカルヘッダ */
.local-header {
  background: url(../img/mv-diex.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  height: 480px;
  padding: 0 2.4vw;
}

.local-header::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .2) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.local-header__row {
  position: relative;
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
}

.local-header__col-l {
  align-self: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .4);
}

.local-header__col-r {
  position: relative;
  flex: 1;
}

.local-header__ttl {
  font-size: 64px;
  font-weight: 700;
}

.local-header__txt {
  font-size: 24px;
  font-weight: 700;
}

.local-header .monitor {
  width: 675px;
  aspect-ratio: 675/429;
  max-width: 40vw;
  background: url(../img/diex-mv-pc.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: 2;
}

.local-header .monitor-img {
  position: absolute;
  width: 83%;
  top: 2%;
  left: 8.5%;
}

@media screen and (max-width: 767px) {
  .local-header {
    height: 120vw;
    padding: 68px 16px 0;
  }

  .local-header__row {
    flex-direction: column;
    justify-content: flex-end;
  }

  .local-header::before {
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, 0) 100%);
  }

  .local-header__col-l {
    padding: 0 8px 56vw;
    flex: none;
    width: 100%;
  }

  .local-header__col-r {
    flex: none;
  }

  .local-header__ttl {
    font-size: 40px;
  }

  .local-header__txt {
    font-size: 18px;
  }

  .local-header .monitor {
    width: 90vw;
    max-width: initial;
    bottom: -50px;
    right: 0;
    z-index: 2;
  }

  .local-header .monitor-img {
    width: 83%;
    top: 2%;
    left: 8.5%;
  }
}

/* ページアンカーリンク */
.page-navigation {
  padding: 0 2.4vw;
  position: relative;
}

.page-navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

.page-navigation a {
  color: var(--txt-main);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 22px;
  font-weight: 700;
}

.page-navigation a::after {
  content: "";
  background: url(../img/icon-btn-arrow-02.svg) no-repeat center;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .page-navigation {
    padding: 0 16px;
  }

  .page-navigation ul {
    gap: 12px 24px;
  }

  .page-navigation ul>li {
    font-size: 12px;
  }

  .page-navigation a {
    padding-right: 16px;
  }

  .page-navigation a::after {
    width: 12px;
    height: 12px;
  }
}

/*===================================================

 下層ページ：DIEX-Flowとは、DIEX-Flow RTとは

===================================================*/
/*.section-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(223, 247, 255, 1) 0%, rgba(223, 247, 255, 0) 100%);
  mix-blend-mode: multiply;
}*/
.section-about .section__container {
  position: relative;
}

/* fig1 */
.fig1 {
  display: flex;
  gap: 0 72px;
}

.fig1__box1 {
  width: 310px;
  background: var(--green1);
  border-radius: 8px;
  padding: 24px 16px 16px;
  text-align: center;
  position: relative;
}

.fig1__box1::after {
  content: "";
  background: url(../img/arrow-02.svg) no-repeat right 0;
  background-size: contain;
  display: block;
  width: 90px;
  aspect-ratio: 106/55;
  position: absolute;
  top: 50%;
  left: calc(100% - 5px);
  transform: translateY(-50%);
  z-index: 0;
}

.fig1__box1-ttl {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

.fig1__box1-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  position: relative;
  z-index: 1;
}

.fig1__box1-list>li {
  padding: 10px 8px 4px;
  border-radius: 4px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.fig1__box1-list>li img {
  width: 20px;
  margin-bottom: 4px;
}

.fig1__box1-list>li .label {
  display: flex;
  height: 2.2em;
  align-items: center;
}

.fig1__box2 {
  flex: 1;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(3, 130, 150, .1);
}

.fig1__box2-row {
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.fig1__box2-img {
  width: 306px;
}

.fig1__box2-txt {
  padding-top: 20px;
}

.fig1__box2-txt .ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.fig1__box2-txt .list-circle>li:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .fig1 {
    flex-direction: column;
    padding: 0 22px;
    gap: 40px 0;
  }

  .fig1__box1 {
    width: auto;
    padding: 16px 10px 10px;
  }

  .fig1__box1::after {
    transform: rotate(90deg);
    width: 56px;
    top: 100%;
    left: 50%;
    margin-left: -28px;
  }

  .fig1__box1-ttl {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .fig1__box1-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .fig1__box1-list>li {
    padding: 8px 4px 6px;
    font-size: 12px;
  }

  .fig1__box1-list>li img {
    width: 16px;
    margin-bottom: 4px;
  }

  .fig1__box2 {
    padding: 16px 24px 24px;
  }

  .fig1__box2-row {
    flex-direction: column;
    gap: 24px 0;
  }

  .fig1__box2-img {
    max-width: 306px;
  }

  .fig1__box2-txt {
    padding-top: 0;
    width: 100%;
  }

  .fig1__box2-txt .ttl {
    font-size: 20px;
    text-align: center;
  }

  .fig1__box2-txt .list-circle>li:not(:last-child) {
    margin-bottom: 4px;
  }
}

/* fig2 */
.fig2 {
  text-align: center;
}

/* fig3 */
.fig3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fig3__capture {
  background: var(--txt-main);
  border-radius: 4px;
  padding: 10px;
}

.fig3__txt {
  margin-top: 1.5em;
  text-align: center;
}

@media screen and (max-width: 767px) {}

/*===================================================

 下層ページ：操作イメージ

===================================================*/
.section-operation {
  background: linear-gradient(0deg, rgba(223, 247, 255, 1) 0%, rgba(223, 247, 255, 0) 100%);
}

.section-operation .section__container {
  padding-top: 40px;
}

.operation-box-list .operation-box {
  margin-bottom: 24px;
}

.operation-box {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 3px 10px 0 rgba(3, 130, 150, .16);
}

.operation-box__row {
  display: flex;
}

.operation-box__img {
  width: 360px;
}

.operation-box__img img {
  border: 1px solid var(--border-gray1);
}

.operation-box__desc {
  flex: 1;
  padding-left: 48px;
}

.operation-box__desc .step {
  font-size: 20px;
  font-weight: 700;
  color: var(--green1);
}

.operation-box__desc .ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .section-operation .section__container {
    padding-top: 40px;
  }

  .operation-box-list .operation-box {
    margin-bottom: 24px;
  }

  .operation-box {
    padding: 16px 16px 24px;
  }

  .operation-box__row {
    flex-direction: column;
  }

  .operation-box__img {
    width: auto;
  }

  .operation-box__desc {
    flex: auto;
    padding: 16px 0 0;
  }

  .operation-box__desc .step {
    font-size: 14px;
    text-align: center;
  }

  .operation-box__desc .ttl {
    font-size: 20px;
    text-align: center;
    margin-bottom: .5em;
  }
}

/*===================================================

  下層ページ：課題解決

===================================================*/
.section-problem {
  background: #fff;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8%;
}

.problem-item {
  background: #fff;
  border: 2px solid var(--green1);
  border-radius: 10px;
  padding: 32px;
  position: relative;
}

.problem-item__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.8em;
  margin-bottom: 16px;
}

.problem-item__img {
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}

.problem-item__img img {
  height: 140px;
}

@media screen and (max-width: 767px) {
  .problem-list {
    display: block
  }

  .problem-item {
    border-width: 2px;
    border-radius: 8px;
    padding: 20px 16px;
    margin-bottom: 10px;
  }

  .problem-item:last-child {
    margin-bottom: 0;
  }

  .problem-item::before {
    width: 36px;
    height: 36px;
    top: -18px;
  }

  .problem-item__ttl {
    font-size: 18px;
    min-height: initial;
    margin-bottom: 8px;
  }

  .problem-item__img {
    margin-bottom: 0;
  }

  .problem-item__img img {
    height: 140px;
  }
}

/*===================================================

 下層ページ：導入イメージ

===================================================*/
.section-use {
  background: #fff;
}

.section-use .section__container {
  padding-top: 40px;
}

.use-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8%;
}

.use-item {
  background: var(--l-blue2);
  border-radius: 16px;
  text-align: center;
}

.use-list:has(.use-item:only-child) {
  justify-content: center;
  display: flex;
}

.use-item:only-child {
  max-width: 640px;
  min-width: 480px;
}

.use-item__number {
  background: var(--green1);
  border-radius: 0 0 8px 8px;
  padding: 6px 16px 8px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 700;
  line-height: 1;
}

.use-item__number .number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--green1);
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.use-item__body {
  text-align: left;
  padding: 24px 40px 40px;
}

.use-item__img {
  max-width: 445px;
  margin: 0 auto 24px;
}

.use-item__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.use-item__link {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .use-list {
    display: block;
  }

  .use-item {
    border-radius: 8px;
    border-width: 2px;
    margin-bottom: 16px;
  }

  .use-item:last-child {
    margin-bottom: 0;
  }

  .use-item:only-child {
    max-width: initial;
    min-width: initial;
  }

  .use-item__number {
    border-radius: 0 0 6px 6px;
    padding: 4px 12px 6px;
    gap: 0 4px;
    font-size: 12px;
  }

  .use-item__number .number {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .use-item__body {
    padding: 16px 16px 24px;
  }

  .use-item__img {
    max-width: 280px;
    margin: 0 auto 16px;
  }

  .use-item__ttl {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .use-item__sub-ttl {
    font-size: 16px;
  }
}

/* 対応している流速計測手法 */
.method-box {
  margin-top: 100px;
  border: 2px solid var(--green1);
  border-radius: 10px;
  position: relative;
}

.method-box__head {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.method-box__head-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  background: #fff;
  color: var(--green1);
  padding: 0 1em;
}

.method-box__body {
  padding: 80px 56px 48px;
}

.method-box .method-list {
  display: flex;
  gap: 0 3%;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.method-box .method-list>li {
  width: calc((100% - 9%) / 4);
}

.method-box .method-txt {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .method-box {
    margin-top: 64px;
    border-radius: 8px;
  }

  .method-box__head {
    top: -10px;
  }

  .method-box__head-ttl {
    font-size: 16px;
  }

  .method-box__body {
    padding: 32px 24px 16px;
  }

  .method-box .method-list {
    gap: 16px 10%;
    flex-wrap: wrap;
  }

  .method-box .method-list>li {
    width: calc((100% - 10%) / 2);
    max-width: 120px;
  }

  .method-box .method-txt {
    font-size: 12px;
  }
}

.confirmed-device {
  margin-top: 24px;
}

.confirmed-device__heading {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.confirmed-device__heading span {
  font-size: 18px;
  font-weight: 700;
}

.confirmed-device__heading::before {
  content: "■";
  color: var(--green1);
  margin-right: 4px;
}

.confirmed-device__heading::after {
  content: "";
  display: block;
  background: var(--green1);
  flex: 1;
  height: 1px;
  margin-left: 16px;
}

.confirmed-device__list {
  font-size: 18px;
  font-weight: 700;
}

.confirmed-device__list>li {
  margin-bottom: .2em;
}

@media screen and (max-width: 767px) {}

/*===================================================

 下層ページ：料金

===================================================*/
.price-contents {
  background: #fff;
  border-radius: 10px;
  padding: 56px 7.8% 80px;
}

.price-flow-img {
  text-align: center;
}

.price-table-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 732px;
  margin: 72px auto 0;
}

.price-table-wrap .heading {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 12px;
}

.price-table-wrap .heading-ttl {
  font-size: 18px;
  font-weight: 700;
}

.price-table-wrap .heading-txt {
  font-size: 14px;
  margin-left: 1em;
}

.price-table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid var(--border-gray1);
}

.price-table tbody th {
  padding: 1em;
  border-bottom: 1px solid var(--border-gray1);
  background: var(--l-blue2);
  text-align: left;
  font-weight: 500;
}

.price-table tbody td {
  width: 50%;
  padding: 1em 2em;
  border-bottom: 1px solid var(--border-gray1);
}

.price-table tbody td .price {
  font-size: 18px;
  font-weight: 700;
}

.price-table tbody td .price em {
  font-size: 24px;
  margin-right: 2px;
}

.price-table tbody td .tax {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .price-contents {
    border-radius: 8px;
    padding: 24px 16px;
  }

  .price-table-wrap {
    margin-top: 40px;
  }

  .price-table-wrap .heading {
    margin-bottom: 8px;
  }

  .price-table-wrap .heading-ttl {
    font-size: 14px;
  }

  .price-table-wrap .heading-txt {
    font-size: 12px;
  }

  .price-table tbody th {
    padding: .8em;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .price-table tbody td {
    padding: .8em 0 .8em .8em;
    width: auto;
  }

  .price-table tbody td .price {
    font-size: 12px;
  }

  .price-table tbody td .price em {
    font-size: 20px;
  }

  .price-table tbody td .tax {
    font-size: 12px;
  }
}

/* RT */
.page-DiexFlowRt .price-table-wrap {
  margin-top: 40px;
}

.page-DiexFlowRt .price-table tbody th {
  height: 100px;
}

.price-note {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {}

/*===================================================

 導入までの流れ

===================================================*/
.section-flow {
  background: var(--l-blue2);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
  margin-bottom: 24px;
}

.flow-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .16);
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent var(--green2);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 14px;
}

.flow-item__number {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--green1);
  line-height: 1;
  margin-bottom: 16px;
}

.flow-item__img {
  text-align: center;
  margin-bottom: 8px;
}
.flow-item__img img{
  max-width: 120px;
}

.flow-item__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-item__sub-ttl {
  margin-top: 8px;
  color: var(--green1);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-item__txt {
  margin-top: .8em;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin: 0 40px 24px;
  }
}

@media screen and (max-width: 767px) {
  .flow-list {
    display: block;
    margin-bottom: 0;
  }

  .flow-item {
    padding: 20px 16px 20px 96px;
    margin-bottom: 32px;
    position: relative;
  }

  .flow-item:last-child {
    margin-bottom: 16px;
  }

  .flow-item:not(:last-child)::after {
    border-width: 14px 14px 0 14px;
    border-color: var(--green2) transparent transparent transparent;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin: 10px 0 0;
  }

  .flow-item__number {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
  }

  .flow-item__img {
    position: absolute;
    top: 20px;
    left: 8px;
    width: 80px;
  }

    .flow-item__img img{
      max-width: 100%;
    }

  .flow-item__ttl {
    font-size: 18px;
    text-align: left;
  }


.flow-item__sub-ttl {
  margin-top: 4px;
  text-align: left;
}
}

/* フルサイズ */
@media screen and (min-width: 768px) {
  .flow-list--full {
    display: flex;
    justify-content: center;
    gap: 24px 16px;
  }

  .flow-list--full .flow-item {
    width: 224px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .16);
  }

  .flow-item:not(:last-child)::after {
    margin-left: 0;
    z-index: 1;
  }
}

/*===================================================

 よくある質問

===================================================*/
.section-faq {
  background: #fff;
}

/* ▼マーカー消す */
.faq-item summary::marker {
  content: "";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* //マーカー消す */
.faq-item {
  border-top: 1px solid var(--border-gray1);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-gray1);
}

.faq-item__head {
  padding: 24px 72px 24px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-item__head::before,
.faq-item__head::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--green1);
  position: absolute;
  right: 24px;
  transition: all .3s;
}

.faq-item__head::before {
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__head::before {
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__head::after {
  opacity: 0;
}

.faq-item__head:hover .question,
.faq-item[open] .faq-item__head .question {
  color: var(--green1);
}

.faq-item__head .question {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  padding-left: 56px;
  position: relative;
  min-height: 40px;
}

.faq-item__head .question::before {
  content: "Q";
  color: #fff;
  background: var(--green1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  padding: 8px 0 0 12px;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.faq-item__body {
  padding: 0 72px 24px 16px;
}

.faq-item__body .answer {
  padding-left: 56px;
  position: relative;
  min-height: 40px;
}

.faq-item__body .answer::before {
  content: "A";
  color: var(--green1);
  background: #fff;
  border: 1px solid var(--green1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  padding: 7px 0 0 13px;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .faq-item__head {
    padding: 16px 40px 16px 6px;
  }

  .faq-item__head::before,
  .faq-item__head::after {
    content: "";
    width: 13px;
    height: 1px;
    right: 8px;
  }

  .faq-item__head:hover .question,
  .faq-item[open] .faq-item__head .question {
    color: var(--green1);
  }

  .faq-item__head .question {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 36px;
    min-height: 24px;
  }

  .faq-item__head .question::before {
    width: 24px;
    height: 24px;
    padding: 5px 0 0 7px;
    font-size: 12px;
  }

  .faq-item__body {
    padding: 0 0 16px 6px;
  }

  .faq-item__body .answer {
    padding-left: 36px;
    min-height: 24px;
  }

  .faq-item__body .answer::before {
    width: 24px;
    height: 24px;
    padding: 4px 0 0 7px;
    font-size: 12px;
  }
}

/*===================================================

 動作環境

===================================================*/
.section-requirements {
  background: #fff;
}

.requirements-table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid var(--border-gray1);
}

.requirements-table tbody th {
  padding: 1em;
  border-bottom: 1px solid var(--border-gray1);
  background: var(--l-blue2);
  text-align: left;
  font-weight: 500;
  width: 240px;
}

.requirements-table tbody td {
  padding: 1em 2em;
  border-bottom: 1px solid var(--border-gray1);
}

@media screen and (max-width: 767px) {
  .requirements-table tbody th {
    padding: .8em;
    width: auto;
    white-space: nowrap;
    font-size: 12px;
  }

  .requirements-table tbody td {
    padding: .8em 0 .8em .8em;
  }
}

/* ダウンロード */
.download-box {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid var(--border-gray1);
  border-radius: 4px;
}

.download-box__ttl {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1em;
}

.download-box__list>li {
  margin-bottom: .5em;
}

.update-box {
  margin-top: 32px;
  border-radius: 4px;
  background: var(--l-gray1);
  padding: 20px 24px;
  display: flex;
  font-size: 14px;
}

.update-box__label {
  font-weight: 700;
  padding-right: 2em;
}

.update-box__detail {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .download-box {
    margin-top: 24px;
    padding: 16px;
  }

  .download-box__ttl {
    font-size: 16px;
  }

  .download-box__list>li {
    margin-bottom: 12px;
  }

  .update-box {
    margin-top: 24px;
    padding: 16px;
    font-size: 12px;
  }

  .update-box__label {
    padding-right: 1em;
  }
}

/*===================================================

 Luminous 画像拡大プラグイン 調整

===================================================*/
.lum-lightbox.lum-open {
  z-index: 120;
  background: rgba(0, 0, 0, .7);
}

.lum-lightbox-inner img.lum-img {
  max-width: 100%;
  border-radius: 4px;
}

.lum-lightbox .lum-close-button {
  opacity: .8;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

/* 矢印を消す */
.lum-gallery-button {
  display: none;
}

/*===================================================

 準備中画面

===================================================*/

.comingsoon-page {
  padding-top: 0;
}

.comingsoon-wrap {
  padding: 40px 2.4vw;
  text-align: center;
}

.comingsoon-logo {
  width: 160px;
  margin: 0 auto;
}

.comingsoon-txt-wrap {
  margin-top: 40px;
}
.comingsoon-txt-wrap p{
  margin-bottom: 1.5em;
}

.comingsoon-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .comingsoon-wrap {
    padding: 40px 24px;
  }

  .comingsoon-logo {
    width: 120px;
  }

  .comingsoon-txt-wrap {
    text-align: left;
    margin-top: 24px;
  }

  .comingsoon-txt-wrap p {
    margin-bottom: 1.5em;
  }

  .comingsoon-ttl {
    text-align: center;
    font-size: 20px;
  }
}