@charset "UTF-8";
/* ===============================================
reset
=============================================== */
* {
  margin: 0;
  padding: 0;
}

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

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
  outline: none;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}

/* 各メディア要素のデフォルト */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズ */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblock */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: 1em;
  overflow-wrap: break-word;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

em {
  font-style: normal;
}

img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .sip-slider, .swiper-container, .swiper-wrapper, .swiper-slide, .swiper-slide img {
    transition-duration: 100ms !important;
  }
}
/*clamp自動計算*/
/* ===============================================
カラーパレット
=============================================== */
/*カラーパレットのstyle名指定が無い時mainの色が適用*/
/* ===============================================
z-index管理
=============================================== */
/* ===============================================
breakpoint
=============================================== */
/*各画面サイズ●px以上の時～ ※スマホファースト*/
/* ===============================================
gridで重ねる
=============================================== */
/* ===============================================
疑似要素 オーバーレイセット
=============================================== */
/* ===============================================
矢印
=============================================== */
/* ===============================================
タイトル横棒装飾
=============================================== */
/* ===============================================
ボタン共通
=============================================== */
/* ===============================================
ボタンホバー要アフター処理
=============================================== */
/* ===============================================
ボタンホバー
=============================================== */
/* ===============================================
base
=============================================== */
body {
  margin-inline: auto;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  color: #171B61;
  line-height: 1.3;
  word-wrap: break-word;
  width: 100%;
  font-weight: 500;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  position: relative;
  top: 0;
}
@media screen and (min-width: 768px) {
  body {
    font-size: clamp(0.875rem, 1.953125vw, 1rem);
  }
}
@media screen and (min-width: 1024px) {
  body {
    line-height: 1.5;
  }
}

a {
  color: #171B61;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: #E83928;
    transition: 0.3s ease-in-out;
  }
  a:hover img {
    opacity: 0.75;
    transition: opacity 0.2s ease-in-out;
  }
}

input, select, textarea {
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #eee;
  box-sizing: border-box;
  cursor: text;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #eee;
  font-weight: initial;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #eee;
  font-weight: initial;
}
input::placeholder, select::placeholder, textarea::placeholder {
  color: #eee;
  font-weight: initial;
}

select {
  color: #171B61;
  cursor: pointer;
}

button {
  background-color: #eee;
}
@media (hover: hover) and (pointer: fine) {
  button:hover {
    opacity: 0.75;
    transition: 0.3s ease-in-out;
  }
}

/* ===============================================
text
=============================================== */
.c-jost {
  font-family: "Jost", sans-serif;
}

.c-txt-center {
  text-align: center;
}

.c-txt-left {
  text-align: left;
}

.c-txt-right {
  text-align: right;
}

.c-txt-just {
  text-align: justify;
}

.c-txt-weight--400 {
  font-weight: 400;
}

.c-txt-weight--700 {
  font-weight: 700;
}

.c-txt-weight--900 {
  font-weight: 900;
}

.c-txt-italic {
  font-style: italic;
}

.c-line-height--L {
  line-height: 1.8;
}

.c-txt-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.c-txt-u-line {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .c-txt-u-line:hover {
    text-decoration: none;
  }
}

.c-fs--sm {
  font-size: 0.8em;
}

.c-fs--10 {
  font-size: clamp(0.625rem, 1.4322916667vw, 0.75rem);
}

.c-fs--11 {
  font-size: clamp(0.6875rem, 1.5625vw, 0.8125rem);
}

.c-fs--12 {
  font-size: clamp(0.75rem, 1.6927083333vw, 0.875rem);
}

.c-fs--14 {
  font-size: clamp(0.875rem, 1.953125vw, 1rem);
}

.c-fs--16 {
  font-size: clamp(1rem, 2.34375vw, 1.25rem);
}

.c-fs--18 {
  font-size: clamp(1.125rem, 2.6041666667vw, 1.5rem);
}

.c-fs--20 {
  font-size: clamp(1.25rem, 3.125vw, 1.75rem);
}

.c-fs--24 {
  font-size: clamp(1.5rem, 3.6458333333vw, 2rem);
}

.c-fs--26 {
  font-size: clamp(1.625rem, 4.1666666667vw, 2.25rem);
}

.c-fs--30 {
  font-size: clamp(1.875rem, 5.859375vw, 3.75rem);
}

.c-fs--60 {
  font-size: clamp(3.75rem, 10.4166666667vw, 7.5rem);
}

/* ===============================================
color
=============================================== */
.c-txt-color--white {
  color: #fff;
}

.c-txt-color--l-blue {
  color: #F6F8FA;
}

.c-txt-color--accent {
  color: #E83928;
}

/******************************************************************************
background-color
******************************************************************************/
.c-bg--main {
  background: #F6F8FA;
}

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

.c-bg--blue {
  background-color: #171B61;
}

.c-bg--gray {
  background-color: #eee;
}

/******************************************************************************
 position
******************************************************************************/
.c-position-relative {
  position: relative;
}

.c-position-absolute {
  position: absolute;
}

/******************************************************************************
etc
******************************************************************************/
/*縦横100％*/
.c-wh100 {
  width: 100%;
  height: 100%;
}

/*中央揃え*/
.c-center {
  margin-inline: auto;
}

/* display*/
.c-grid {
  display: grid;
}

.c-grid-over {
  grid-column: 1/2;
  grid-row: 1/2;
}

.c-flex {
  display: flex;
}

/* ===============================================
layout overall
=============================================== */
.l-inner--S, .l-inner--M, .l-inner--L {
  margin-inline: auto;
}

.l-inner--L {
  width: min(92%, 1200px);
}
.l-inner--M {
  width: min(92%, 1000px);
}
.l-inner--S {
  width: min(92%, 900px);
}

.l-hidden-x {
  overflow-x: hidden !important;
}

/*---------- none ----------*/
.l-none {
  display: none;
}

.l-pc-none {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-pc-none {
    display: none;
  }
}

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

/* ===============================================
header
=============================================== */
.l-header {
  display: initial;
  width: 100%;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 2%;
  padding-right: 2%;
  grid-template-columns: auto;
  position: fixed;
  top: 0;
  z-index: 15;
}
@media screen and (min-width: 1200px) {
  .l-header {
    display: grid;
    grid-template-columns: min(100%, 12.5rem) 1fr;
    place-items: end;
    align-items: center;
  }
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .l-header.js-scroll::before {
    opacity: 1;
    transition: 0.3s ease-in-out;
  }
}

.l-header__logo {
  width: clamp(6.25rem, 15.625vw, 12.5rem);
}
@media screen and (min-width: 1200px) {
  .l-header__logo {
    width: 100%;
  }
}
.l-header__logo a {
  display: block;
}

.l-nav {
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 20;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}
@media screen and (min-width: 1200px) {
  .l-nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    opacity: 1;
    pointer-events: initial;
    position: relative;
    top: initial;
    left: initial;
    overflow-y: initial;
  }
}
.l-nav .p-button--normal {
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .l-nav .p-button--normal {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
  }
}
.l-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100lvh;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  .l-nav::before {
    content: none;
  }
}

.l-nav__wrap {
  margin-inline: auto;
  margin-top: 5em;
  width: min(100%, 600px);
  grid-template-columns: auto;
  text-align: center;
  place-items: center;
}
@media screen and (min-width: 1200px) {
  .l-nav__wrap {
    margin-top: initial;
    grid-template-columns: repeat(5, auto) 18.75rem;
    -moz-column-gap: clamp(0.625rem, 1.46484375vw, 1.875rem);
         column-gap: clamp(0.625rem, 1.46484375vw, 1.875rem);
    text-align: initial;
    width: 100%;
    padding-left: 1em;
  }
}
.l-nav__wrap li {
  width: 100%;
}
.l-nav__wrap .p-btn-round {
  width: 100%;
}
.l-nav__wrap .p-arr-bottom {
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-nav__wrap .p-arr-bottom {
    padding-left: 1em;
  }
}
.l-nav__wrap .p-arr-bottom::before {
  left: 4%;
}
@media screen and (min-width: 1200px) {
  .l-nav__wrap .p-arr-bottom::before {
    left: 0;
  }
}
.l-nav__wrap .p-arr-bottom.js-arrow-open::before {
  rotate: 180deg;
  transition: 0.3s ease-in-out;
}

.l-nav__wrap__item {
  display: block;
  font-weight: 600;
  padding-top: 1em;
  padding-bottom: 1em;
  cursor: pointer;
  font-size: clamp(0.75rem, 1.1666666667vw, 1rem);
}
@media screen and (min-width: 1200px) {
  .l-nav__wrap__item {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.l-nav__sub {
  display: none;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .l-nav__sub {
    width: 100%;
    position: absolute;
    left: 0;
    top: clamp(2.5rem, 7.8125vw, 4.375rem);
    padding: 1.8em 1.8em 2.5em;
  }
}
.l-nav__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #171B61;
  z-index: -1;
}

.l-nav__sub__wrap {
  grid-template-columns: auto;
}
@media screen and (min-width: 1200px) {
  .l-nav__sub__wrap {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0.5em;
         column-gap: 0.5em;
  }
}
.l-nav__sub__wrap li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.l-nav__sub__wrap li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1200px) {
  .l-nav__sub__wrap li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.l-nav__sub__item {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
  text-indent: 0;
  font-weight: 700;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .l-nav__sub__item {
    text-indent: 2.5em;
  }
}
.l-nav__sub__item::before {
  content: "";
  margin: auto;
  display: block;
  background: #E83928;
  width: 8px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav__sub__item:hover {
    background-color: #fff;
    transition: 0.3s ease-in-out;
  }
  .l-nav__sub__item:hover::before {
    left: 1.3em;
    transition: 0.3s ease-in-out;
  }
}

/* ===============================================
hamburger
=============================================== */
.l-hamburger {
  margin: auto;
  display: block;
  position: fixed;
  top: 0.875rem;
  right: 4%;
  z-index: 25;
}
@media screen and (min-width: 1200px) {
  .l-hamburger {
    display: none;
  }
}

.l-hamburger__button {
  display: block;
  width: clamp(1.875rem, 4.5572916667vw, 2.5rem);
  height: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  margin: auto;
  outline: none;
  background: transparent;
  z-index: 10;
}

.l-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: clamp(1.875rem, 4.5572916667vw, 2.5rem);
  height: 2px;
  background: linear-gradient(90deg, #171B61 12%, #4882C7 100%);
  transition: top 0.3s ease-in-out, bottom 0.3s ease-in-out, right 0.3s ease-in-out, left 0.3s ease-in-out;
}
.l-hamburger__line:before, .l-hamburger__line::after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: inherit;
}

.l-hamburger__line:before {
  top: 8px;
  width: 70%;
}

.l-hamburger__button[aria-expanded=true] .l-hamburger__line::before {
  content: none;
}

.l-hamburger__line:after {
  top: 16px;
  width: 50%;
}

.l-hamburger__button[aria-expanded=true] .l-hamburger__line,
.l-hamburger__button[aria-expanded=true] .l-hamburger__line::after {
  width: 100%;
  top: 43%;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out;
}

.l-hamburger__button[aria-expanded=true] .l-hamburger__line::after {
  top: 0;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

.l-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 5px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.l-hamburger.js-close {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 85%;
  top: 10%;
}
@media screen and (min-width: 375px) {
  .l-hamburger.js-close {
    top: 7%;
  }
}

/* ===============================================
l-breadcrumbs
=============================================== */
.l-breadcrumbs {
  padding-top: 1em;
  margin-bottom: clamp(2.5rem, 10.4166666667vw, 6.25rem);
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumbs li {
  font-size: clamp(0.6875rem, 1.5625vw, 0.875rem);
  font-weight: 700;
  position: relative;
}
.l-breadcrumbs li:not(:last-child) {
  margin-right: 2em;
  font-weight: 500;
}
.l-breadcrumbs li:not(:last-child)::after {
  content: "";
  display: block;
  margin: auto;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.5em;
  background-color: #171B61;
}
.l-breadcrumbs li a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .l-breadcrumbs li a:hover {
    text-decoration: none;
    color: #E83928;
    transition: 0.3s ease-in-out;
  }
}

/* ===============================================
footer
=============================================== */
.l-footer__wrap {
  padding-top: clamp(1.875rem, 5.2083333333vw, 3.75rem);
  padding-bottom: clamp(1.875rem, 5.2083333333vw, 3.75rem);
  grid-template-columns: auto;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer__wrap {
    grid-template-columns: 25% 70%;
    place-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__wrap {
    grid-template-columns: 30% 55%;
  }
}

.l-footer-nav {
  grid-template-columns: repeat(2, 1fr);
  width: min(100%, 620px);
  -moz-column-gap: 6%;
       column-gap: 6%;
}
@media screen and (min-width: 768px) {
  .l-footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-footer-nav__list li {
  border-bottom: 1px solid #171B61;
}
.l-footer-nav__list li:not(:first-child) {
  text-indent: 1.5em;
}
.l-footer-nav__list li:not(:first-child) a::after {
  content: "";
  margin: auto;
  display: block;
  background: #E83928;
  width: 8px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5em;
}
.l-footer-nav__list a {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  display: block;
  position: relative;
}

.l-footer-nav__hover-none:hover {
  color: #171B61;
}

.l-footer-nav__list--normal {
  margin-top: 1.5em;
  grid-column: 1/3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .l-footer-nav__list--normal {
    margin-top: 0;
    display: grid;
    grid-column: initial;
    flex-wrap: initial;
    justify-content: initial;
    row-gap: 1em;
  }
}
.l-footer-nav__list--normal > li > a {
  font-weight: 700;
}

.l-footer__logo {
  padding-bottom: 0.625rem;
  margin-bottom: 1.25rem;
  display: grid;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-right: 15%;
  }
}
.l-footer__logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #eee;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__logo::before {
    bottom: initial;
    width: 1px;
    height: 100%;
    right: 0;
  }
}
.l-footer__logo img {
  width: clamp(9.375rem, 26.0416666667vw, 15.625rem);
  height: auto;
  margin: auto;
}

.l-copyright {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}

/*----------------▼ ページトップ----------------*/
.l-page-top {
  display: block;
  width: clamp(3.125rem, 8.4635416667vw, 5rem);
  height: auto;
  position: absolute;
  bottom: 20%;
  right: 2%;
}
@media screen and (min-width: 768px) {
  .l-page-top {
    bottom: clamp(2.5rem, 6.5104166667vw, 3.75rem);
  }
}

/* ===============================================
project
=============================================== */
.p-common-bg {
  position: relative;
}
.p-common-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff url(../images/bg-dot.png);
  background-size: clamp(0.625rem, 1.5625vw, 1.125rem) auto;
  z-index: -1;
}

/* ===============================================
共通
=============================================== */
/*スクロールアニメーション用ディレイ*/
.p-delay-1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.p-delay-2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.p-delay-3 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.p-delay-4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

/*-----------メインボタン-----------*/
.p-button--main {
  display: block;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  border-radius: 3em;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin-inline: auto;
  width: min(100%, clamp(15.625rem, 31.25vw, 20rem));
  font-size: clamp(1.125rem, 2.8645833333vw, 1.5rem);
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}
.p-button--main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #171B61;
  z-index: -1;
}
.p-button--main::after {
  content: "";
  background: #E83928;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  scale: 0 1;
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-button--main:hover {
    color: #fff;
    transition: 0.2s ease-in-out;
  }
  .p-button--main:hover::after {
    scale: 1 1;
  }
}
@media screen and (min-width: 768px) {
  .p-button--main {
    margin-inline: initial;
  }
}

.p-button--main-txt {
  display: block;
  position: relative;
}
.p-button--main-txt::after {
  content: "";
  margin: auto;
  width: clamp(1.25rem, 3.125vw, 1.625rem);
  height: clamp(1.25rem, 3.125vw, 1.625rem);
  position: absolute;
  right: 0.8em;
  top: 0;
  bottom: 0;
  background: url(../images/icon-arr-round.svg) no-repeat;
  background-size: clamp(1.25rem, 3.125vw, 1.625rem);
}

.p-button--normal {
  display: block;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  border-radius: 3em;
  text-align: center;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-button--normal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #171B61;
  z-index: -1;
}
.p-button--normal::after {
  content: "";
  background: #E83928;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  scale: 0 1;
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-button--normal:hover {
    color: #fff;
    transition: 0.2s ease-in-out;
  }
  .p-button--normal:hover::after {
    scale: 1 1;
  }
}

/*-----------サブボタン-----------*/
.p-button--sub {
  display: block;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  border-radius: 3em;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.125rem, 2.34375vw, 2rem);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-button--sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #171B61 12%, #4882C7 100%);
  z-index: -1;
}
.p-button--sub::after {
  content: "";
  background: #E83928;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  scale: 0 1;
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-button--sub:hover {
    color: #fff;
    transition: 0.2s ease-in-out;
  }
  .p-button--sub:hover::after {
    scale: 1 1;
  }
}

/*-----------見出し-----------*/
.p-title dt {
  position: relative;
  margin-left: 2.5em;
  font-size: clamp(0.875rem, 2.0833333333vw, 1.25rem);
}
.p-title dt::before {
  content: "";
  display: block;
  margin: auto;
  width: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.5em;
  background-color: #E83928;
}
.p-title dd {
  font-size: clamp(1.625rem, 3.90625vw, 2.5rem);
}

.p-arr-bottom {
  position: relative;
}
.p-arr-bottom::before {
  content: "";
  margin: auto;
  display: block;
  background: #E83928;
  width: 8px;
  height: 8px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  position: absolute;
  top: 0;
  bottom: 0;
}

/* ===============================================
project top
=============================================== */
.p-mv__wrap {
  height: clamp(30rem, 160vw, 43.75rem);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv__wrap {
    height: clamp(25rem, 54.1666666667vw, 48.75rem);
  }
}

.p-mv__content {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-inline: auto;
  width: min(85%, 400px);
  padding-top: clamp(3.125rem, 10.4166666667vw, 10.625rem);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  row-gap: 1em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    width: min(92%, clamp(56.25rem, 91.6666666667vw, 75rem));
    grid-template-columns: auto 45%;
    grid-template-rows: repeat(2, auto);
    row-gap: clamp(0.625rem, 1.6666666667vw, 1.875rem);
  }
}
.p-mv__content.js-txt-anime {
  transform: translate(0, 0);
}
.p-mv__content .p-button-wrap {
  width: 100%;
  grid-row: 3;
}
@media screen and (min-width: 768px) {
  .p-mv__content .p-button-wrap {
    grid-row: 2;
  }
}
.p-mv__content .p-button--sub {
  margin-inline: auto;
  width: min(100%, clamp(22.5rem, 46.3414634146vw, 26.875rem));
}
@media screen and (min-width: 768px) {
  .p-mv__content .p-button--sub {
    margin-inline: initial;
  }
}

.p-mv__txt {
  font-size: min(8vw, clamp(2rem, 4.8828125vw, 3.75rem));
}
@media screen and (min-width: 768px) {
  .p-mv__txt {
    grid-row: 1;
  }
}
.p-mv__txt span {
  display: block;
}

.p-mv__img {
  margin-left: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: min(85%, 31.25rem);
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    grid-column: 2;
    grid-row: 1/3;
    width: 100%;
  }
}

#js-particle {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ===============================================
p-introduction
=============================================== */
.p-intro {
  padding-top: clamp(1.25rem, 3.90625vw, 3.125rem);
}

.p-intro__deco-txt {
  font-size: clamp(3.125rem, 8.4635416667vw, 7.5rem);
  line-height: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-intro__deco-txt {
    text-align: center;
  }
}

.p-intro-title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.25rem, 3.125vw, 2.25rem);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-intro-title {
    margin-left: 1.5em;
  }
}
.p-intro-title::before {
  content: "";
  display: block;
  margin: auto;
  width: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  height: 3px;
  position: absolute;
  top: -0.5em;
  bottom: initial;
  left: 0;
  background-color: #E83928;
  right: 0;
  background-color: #E83928;
}
@media screen and (min-width: 768px) {
  .p-intro-title::before {
    top: 0;
    bottom: 0;
    left: -1.5em;
    right: initial;
  }
}

.p-intro__wrap {
  padding-top: clamp(2.5rem, 5.859375vw, 3.75rem);
}

.p-intro__content {
  grid-template-rows: repeat(3, auto);
}

.p-intro__problems-list {
  list-style: disc;
  row-gap: 0.8em;
  font-size: clamp(0.8125rem, 1.8229166667vw, 1.2rem);
}
.p-intro__problems-list li {
  margin-left: 1.5em;
}
.p-intro__problems-list::after {
  content: "";
  display: block;
}

.p-intro__arr {
  grid-column: 1;
  grid-row: 4;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-intro__arr {
    grid-column: 1/3;
    grid-row: 2;
  }
}
@media screen and (min-width: 1024px) {
  .p-intro__arr {
    grid-column: 1;
  }
}

.p-intro__solution-txt {
  grid-column: 1;
  grid-row: 5;
}
@media screen and (min-width: 768px) {
  .p-intro__solution-txt {
    grid-column: 1/3;
    grid-row: 3;
  }
}
@media screen and (min-width: 1024px) {
  .p-intro__solution-txt {
    grid-column: 1;
  }
}

.p-intro__img {
  grid-column: 1;
  grid-row: 1;
  margin-inline: auto;
  width: 80%;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-intro__img {
    grid-column: 2;
    grid-row: 1/4;
    width: 100%;
  }
}

/* ===============================================
p-reason
=============================================== */
.p-reason__wrap {
  grid-template-columns: auto;
  place-content: space-around;
}
@media screen and (min-width: 768px) {
  .p-reason__wrap {
    grid-template-columns: min(100%, clamp(15.625rem, 39.0625vw, 27.5rem)) 42%;
  }
}
.p-reason__wrap .p-title dd {
  text-indent: -0.5em;
}

.p-reason__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-reason__content {
    display: initial;
    grid-column: 2;
  }
}

.p-reason__img {
  margin-bottom: 1.25rem;
  grid-row: 2;
}
@media screen and (min-width: 768px) {
  .p-reason__img {
    grid-column: 1;
    grid-row: 1;
  }
}

/* ===============================================
p-about-speed
=============================================== */
.p-about-speed__wrap {
  grid-template-columns: auto;
}
@media screen and (min-width: 768px) {
  .p-about-speed__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-about-speed__title {
  padding-top: clamp(1.875rem, 5.2083333333vw, 5rem);
  padding-bottom: clamp(1.875rem, 5.2083333333vw, 5rem);
  background: url(../images/speed-img.png) no-repeat center;
  background-size: cover;
  place-items: center;
  -webkit-animation: top-zoom 1s ease-in-out;
          animation: top-zoom 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.p-about-speed__title h2 {
  font-size: clamp(1.5rem, 3.90625vw, 2.5rem);
}

@-webkit-keyframes top-zoom {
  0% {
    background-size: 100% auto;
  }
  100% {
    background-size: 120% auto;
  }
}

@keyframes top-zoom {
  0% {
    background-size: 100% auto;
  }
  100% {
    background-size: 120% auto;
  }
}
.p-about-speed__link {
  padding-top: clamp(1.875rem, 5.2083333333vw, 5rem);
  padding-bottom: clamp(1.875rem, 5.2083333333vw, 5rem);
  background-color: #e9ecf9;
}
.p-about-speed__link .p-button--main {
  margin-inline: auto;
}

/* ===============================================
p-about
=============================================== */
.p-about__wrap {
  padding-top: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  padding-bottom: clamp(1.875rem, 4.5572916667vw, 2.5rem);
}

.p-about__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    display: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-about__wrap__inner {
    grid-template-columns: 42% min(100%, clamp(18.75rem, 52.0833333333vw, 38.75rem));
    place-content: space-between;
    place-items: center;
  }
}

.p-about-bg {
  margin-top: clamp(3.125rem, 14.6666666667vw, 5rem);
  margin-left: auto;
  width: 90%;
  height: calc(50% - 10vw);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-bg {
    margin-top: 0;
    width: 60%;
    height: initial;
  }
}

.p-about__img {
  margin-left: auto;
  margin-bottom: 1.25rem;
  grid-row: 2;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    margin-left: initial;
    grid-row: initial;
    width: 100%;
  }
}

/* ===============================================
p-news
=============================================== */
.p-news {
  background: linear-gradient(#F6F8FA 70%, transparent 0%);
}
@media screen and (min-width: 768px) {
  .p-news {
    background: linear-gradient(#F6F8FA 80%, transparent 0%);
  }
}

.p-news__wrap {
  row-gap: 2em;
}

.p-news__title {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    display: initial;
  }
}
.p-news__title .p-title {
  margin-inline: auto;
  width: 92%;
  grid-row: 1;
  grid-column: 1/2;
}
@media screen and (min-width: 768px) {
  .p-news__title .p-title {
    margin-inline: initial;
    width: initial;
    grid-row: initial;
    grid-column: initial;
  }
}

.p-news__list-wrap {
  margin-top: clamp(3.75rem, 18.6666666667vw, 5rem);
  margin-left: auto;
  width: 90%;
  padding: clamp(1.5625rem, 5.2083333333vw, 3.125rem) clamp(2.1875rem, 6.5104166667vw, 4.375rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-news__list-wrap {
    margin-top: clamp(0.625rem, 1.953125vw, 1.25rem);
    width: 60%;
  }
}

.p-news__list {
  row-gap: 1.5em;
}
.p-news__list li:not(:last-child) {
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
}
.p-news__list a {
  font-size: clamp(0.75rem, 1.8229166667vw, 1rem);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-news__date-new {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-template-columns: repeat(2, auto);
  place-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}

.p-news__new {
  display: block;
  padding-left: 1.2em;
  padding-right: 1.2em;
  background-color: #E83928;
}

/* ===============================================
p-download
=============================================== */
.p-download .p-title dd {
  font-size: clamp(1.125rem, 2.6041666667vw, 1.875rem);
}
.p-download .p-button-wrap {
  margin-top: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-download .p-button--sub {
  font-size: clamp(1.375rem, 3.125vw, 1.75rem);
}

.p-download__free {
  background: url(../images/free-dl-bg.png) no-repeat;
  background-position: 80% 0;
}
@media screen and (min-width: 768px) {
  .p-download__free {
    background-size: cover;
    background-position: center;
  }
}

.p-download__free__content-wrap {
  grid-template-columns: auto;
  row-gap: 3em;
}
@media screen and (min-width: 768px) {
  .p-download__free__content-wrap {
    grid-template-columns: auto clamp(22.5rem, 52.0833333333vw, 26.875rem);
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}

.p-download__free__content {
  width: initial;
}
@media screen and (min-width: 768px) {
  .p-download__free__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-txt-link-arr {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 2.34375vw, 1.25rem);
  position: relative;
}
.p-txt-link-arr::before {
  content: "";
  margin: auto;
  width: clamp(1.25rem, 3.125vw, 1.625rem);
  height: clamp(1.25rem, 3.125vw, 1.625rem);
  position: absolute;
  left: -2em;
  top: 0;
  bottom: 0;
  background: url(../images/icon-arr-round--red.svg) no-repeat center;
  background-size: clamp(1.25rem, 3.125vw, 1.625rem);
}

.p-download__start {
  background: url(../images/start-dl-bg.png) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.p-download__start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}
.p-download__start .p-txt-link-arr {
  margin-inline: auto;
  padding-left: 2em;
}
.p-download__start .p-txt-link-arr::before {
  left: 0;
}
.p-download__start .p-button--sub {
  margin-inline: auto;
  width: min(100%, clamp(22.5rem, 52.0833333333vw, 26.875rem));
  color: #171B61;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
}
.p-download__start .p-button--sub::before {
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .p-download__start .p-button--sub:hover {
    color: #fff;
    transition: 0.2s ease-in-out;
  }
}

.p-download__start__content {
  margin-bottom: clamp(1.875rem, 5.859375vw, 3.75rem);
  z-index: 1;
}

.p-download__start__deco-txt {
  position: absolute;
  top: 15%;
  width: 100%;
  height: clamp(2.8125rem, 8.4635416667vw, 5.3125rem);
  background: url(../images/txt-esperic.svg) repeat-x 0 0;
  background-size: auto clamp(2.8125rem, 8.4635416667vw, 5.3125rem);
  -webkit-animation: scroll-txt 100s linear infinite;
          animation: scroll-txt 100s linear infinite;
  mix-blend-mode: overlay;
}

@-webkit-keyframes scroll-txt {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 3000px 0;
  }
}

@keyframes scroll-txt {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 3000px 0;
  }
}
/* ===============================================
project page
=============================================== */
.p-page-title-bg {
  width: 100%;
  height: clamp(15rem, 46.875vw, 31.25rem);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
	z-index:-1;
}
.p-page-title-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: clamp(15rem, 46.875vw, 31.25rem);
  background: url(../images/page-title-img.png) no-repeat center;
  z-index: -10;
  -webkit-animation: SPzoom 1s ease-in-out;
          animation: SPzoom 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .p-page-title-bg::before {
    -webkit-animation: zoom 1s ease-in-out;
            animation: zoom 1s ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}

@-webkit-keyframes zoom {
  0% {
    background-size: 100% auto;
  }
  100% {
    background-size: 110% auto;
  }
}

@keyframes zoom {
  0% {
    background-size: 100% auto;
  }
  100% {
    background-size: 110% auto;
  }
}
@-webkit-keyframes SPzoom {
  0% {
    background-size: auto 100%;
  }
  100% {
    background-size: auto 110%;
  }
}
@keyframes SPzoom {
  0% {
    background-size: auto 100%;
  }
  100% {
    background-size: auto 110%;
  }
}
.p-page-title {
  padding: clamp(1.25rem, 3.90625vw, 2.5rem) clamp(2.1875rem, 7.1614583333vw, 4.6875rem);
  width: 90%;
  position: absolute;
  left: 0;
  bottom: clamp(1.875rem, 6.5104166667vw, 4.375rem);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media screen and (min-width: 1024px) {
  .p-page-title {
    width: 40%;
  }
}
.p-page-title .p-title {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-wp-page .p-content-wrap {
  z-index: 1;
}

/* ===============================================
p-news-detail
=============================================== */
.p-news-detail__post-area {
  padding: clamp(0.75rem, 1.8229166667vw, 1rem) clamp(0.75rem, 1.8229166667vw, 1rem) clamp(2.5rem, 7.8125vw, 5rem);
  position: relative;
}

.p-news-detail__date {
  margin-bottom: 1em;
  display: inline-block;
  padding: 0.8em 1em;
  border: 1px solid;
}

.p-news-detail__title {
  position: relative;
}
.p-news-detail__title::after {
  content: "";
  margin: auto;
  width: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  height: 3px;
  position: absolute;
  bottom: -0.8em;
  left: 0;
  right: 0;
  background-color: #E83928;
}

.p-news-detail__txt-area {
  margin-inline: auto;
  width: 85%;
  line-height: 1.8;
}
.p-news-detail__txt-area a {
  font-weight: 700;
  color: #E83928;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-detail__txt-area a:hover {
    text-decoration: none;
  }
}

.p-news-detail .p-button--main {
  margin-inline: auto;
}

.p-recent-post__list li:not(:last-child) {
  border-bottom: 1px solid;
}
.p-recent-post__list time {
  margin-right: 1em;
}
.p-recent-post__list a {
  display: block;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

/* ===============================================
feature
=============================================== */
.p-feature__point {
  background: linear-gradient(transparent 5%, #F6F8FA 0%);
}

.p-feature__point__title {
  position: relative;
  font-size: clamp(1.5rem, 3.90625vw, 2.25rem);
}
.p-feature__point__title span {
  display: block;
  line-height: 1;
  font-size: clamp(4.375rem, 11.0677083333vw, 6.25rem);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20%;
  z-index: -1;
  color: #F6F8FA;
}

.p-feature__point-wrap {
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  -moz-column-gap: 5%;
       column-gap: 5%;
  row-gap: clamp(1rem, 2.6041666667vw, 1.625rem);
}
@media screen and (min-width: 768px) {
  .p-feature__point-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-feature__point__item {
  place-items: center;
  position: relative;
  row-gap: 2.5em;
}
.p-feature__point__item dd {
  height: clamp(5rem, 11.0677083333vw, 6rem);
}
.p-feature__point__item dd p {
  font-size: clamp(0.8125rem, 1.8229166667vw, 1rem);
}

.p-feature__point__item__title {
  height: clamp(7.5rem, 20.8333333333vw, 12.5rem);
  display: grid;
  place-items: center;
}
.p-feature__point__item__title svg {
  padding-top: 1.5em;
  grid-column: 1/2;
  grid-row: 1/2;
  display: block;
  width: clamp(3.125rem, 7.8125vw, 4.375rem);
  z-index: 1;
  fill: currentcolor;
}

.p-feature__point__item__title__top {
  position: absolute;
  top: 1em;
}
.p-feature__point__item__title__top em, .p-feature__point__item__title__top span {
  display: block;
  text-align: center;
  color: #E83928;
  font-weight: 700;
  line-height: 1.1;
}
.p-feature__point__item__title__top em {
  font-size: clamp(1.125rem, 2.6041666667vw, 1.375rem);
}
.p-feature__point__item__title__top span {
  font-size: clamp(0.75rem, 1.8229166667vw, 1rem);
}

.p-feature__point__item-bg {
  grid-column: 1/2;
  grid-row: 1/2;
  width: clamp(8.75rem, 19.53125vw, 12.5rem);
  height: clamp(8.75rem, 19.53125vw, 12.5rem);
  border-radius: 50%;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.p-app-task__list__item {
  padding: 1.5em 5%;
  grid-template-columns: auto;
  align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-app-task__list__item {
    grid-template-columns: 38% 1fr;
  }
}
.p-app-task__list__item:nth-child(2n+1) {
  background-color: #F6F8FA;
}
.p-app-task__list__item h3 {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  font-size: clamp(0.875rem, 2.0833333333vw, 1.25rem);
  position: relative;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .p-app-task__list__item h3 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.p-app-task__list__item h3::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .p-app-task__list__item h3::after {
    content: "";
    margin: auto;
    display: block;
    width: 1px;
    height: clamp(1.5625rem, 6.5104166667vw, 4.375rem);
    background-color: #171B61;
    rotate: 30deg;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16%;
  }
}
.p-app-task__list__item p {
  font-weight: 700;
  font-size: clamp(0.75rem, 1.8229166667vw, 1rem);
}

/* ===============================================
p-page-solution
=============================================== */
.p-page-solution__table {
  row-gap: 0.5em;
}
.p-page-solution__table li {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-page-solution__table li {
    grid-template-columns: auto 1fr;
  }
}
.p-page-solution__table span {
  display: block;
  padding-left: 2em;
}
@media screen and (min-width: 768px) {
  .p-page-solution__table span {
    padding-left: 0;
  }
}

/* ===============================================
p-page-lower 下層共通
=============================================== */
.p-page-lower__box {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-page-lower__box {
    grid-template-columns: repeat(2, 46%);
    -moz-column-gap: 8%;
         column-gap: 8%;
  }
}
@media screen and (min-width: 768px) {
  .p-page-lower__box:nth-child(even) .p-page-lower__txt {
    order: 1;
  }
}
.p-page-lower__box .p-page-lower__img {
  width: 100%;
  max-width: none;
}

.p-page-lower__img {
  margin-inline: auto;
  width: min(90%, 750px);
}

.p-page-lower__imgL {
  margin-inline: auto;
  width: min(90%, 900px);
}

.p-page-lower__button a {
  margin-inline: auto;
  width: min(100%, clamp(22.5rem, 52.0833333333vw, 26.875rem));
}

.p-page-lower__list {
  list-style: decimal;
  row-gap: 0.8em;
}
.p-page-lower__list > li {
  margin-left: 1.5em;
}

.p-page-lower__inner-list {
  row-gap: clamp(0.625rem, 2.6041666667vw, 1.875rem);
}

.p-page__list {
  list-style: disc;
}
.p-page__list li {
  margin-left: 1.5em;
}

.p-nav-button-column {
  grid-template-columns: auto;
  row-gap: clamp(0.625rem, 1.953125vw, 1.25rem);
}
@media screen and (min-width: 1024px) {
  .p-nav-button-column {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: clamp(1.25rem, 3.2552083333vw, 1.875rem);
         column-gap: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  }
}

.p-nav-button--main {
  line-height: 1;
  width: 100%;
}

.p-page-anchor-button-txt::after {
  transform: rotate(90deg);
}

.p-page-arr-bottom::before {
  width: 15px;
  height: 15px;
  top: 3px;
  left: 0;
}

/* ===============================================
p-page-technology
=============================================== */
.p-page-technology__box {
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-page-technology__box {
    grid-template-columns: repeat(2, auto);
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
}

.p-page-technology__box:nth-child(even) .p-page-technology__img {
  order: 1;
}

/* ===============================================
p-page-cfeature-list
=============================================== */
.p-page-feature-list .p-page-lower__list {
  row-gap: 2em;
}
.p-page-feature-list .p-page-lower__list li::marker {
  font-weight: 700;
  font-size: clamp(1.125rem, 2.6041666667vw, 1.5rem);
}

/* ===============================================
p-page-feature-list
=============================================== */
.p-page-feature-list .p-page-lower__list {
  row-gap: clamp(2.5rem, 6.5104166667vw, 4.375rem);
}
.p-page-feature-list .p-page-lower__list > li {
  list-style-position: inside;
  margin-left: 0;
}
.p-page-feature-list .p-page-lower__list > li > p:first-child {
  display: inline-block;
}
.p-page-feature-list .p-page-lower__list li::marker {
  font-weight: 700;
  font-size: clamp(1.25rem, 3.125vw, 1.75rem);
}
.p-page-feature-list .p-page-lower__list img {
  max-width: 800px;
}
.p-page-feature-list .p-page-lower__inner-list li p {
  padding-left: 1em;
}

.feature-list-detail-list {
  padding-left: 1em;
}

/* ===============================================
p-page-release
=============================================== */
.p-page-release dt {
  font-weight: 700;
}

.p-page-release-title dt {
  border-bottom: 1px solid #E83928;
}

.p-page-release__list {
  row-gap: 0.8em;
}
.p-page-release__list li {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-page-release__list li {
    grid-template-columns: 12em auto;
  }
}
.p-page-release__list em {
  position: relative;
}
.p-page-release__list em::after {
  content: ":";
  position: absolute;
  right: auto;
  left: 11em;
}
@media screen and (min-width: 768px) {
  .p-page-release__list em::after {
    right: 0.5em;
    left: auto;
  }
}
.p-page-release__list span {
  padding: 0 0 0 2.5em;
}
@media screen and (min-width: 768px) {
  .p-page-release__list span {
    padding: 0;
  }
}

/* ===============================================
p-page-movie
=============================================== */
.p-page-movie .p-arr-bottom {
  padding-left: 1em;
}

.p-movie-nav-area {
  background: #F6F8FA;
}

.p-movie__wrap {
  width: min(100%, 850px);
}

.p-page-movie__box {
  text-align: center;
  margin: auto;
}

/* ===============================================
p-page-download
=============================================== */
@media screen and (min-width: 1024px) {
  .p-page-download .p-page-technology__box {
    grid-template-columns: 30% 1fr;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .p-page-download .p-page-technology__box:nth-child(even) {
    grid-template-columns: 1fr 30%;
  }
}
@media screen and (min-width: 1024px) {
  .p-page-download .p-page-technology__box:nth-child(even) .p-page-lower__txt {
    order: 1;
  }
}

.p-download-page__button {
  grid-template-columns: 1fr;
  -moz-column-gap: 8%;
       column-gap: 8%;
  row-gap: 1em;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-download-page__button {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-download-text a {
  text-decoration: underline;
}

/* ===============================================
p-page-provide
=============================================== */
.p-provide__list-wrap {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-provide__list-wrap {
    grid-template-columns: 20% 1fr;
  }
}

.p-page-provide .p-page-lower__list li::marker {
  font-weight: 700;
}

.p-provide__list-area {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding-top: clamp(1.25rem, 4.5572916667vw, 3.125rem);
  padding-bottom: clamp(1.25rem, 4.5572916667vw, 3.125rem);
}
@media screen and (min-width: 768px) {
  .p-provide__list-area > p {
    margin-left: calc(20% + 1.5em);
  }
}
.p-provide__list-area a {
  text-decoration: underline;
}

.p-page-provide .p-button-wrap {
  width: min(100%, 450px);
}
.p-page-provide .p-button--sub {
  font-size: clamp(1.125rem, 2.6041666667vw, 1.5rem);
}

/* ===============================================
FAQ
=============================================== */
.p-faq-item dt, .p-faq-item dd {
  padding-top: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  padding-bottom: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  padding-left: clamp(3.75rem, 9.1145833333vw, 4.6875rem);
  padding-right: 1em;
  position: relative;
}
.p-faq-item span {
  display: block;
  font-size: clamp(1.875rem, 4.5572916667vw, 2.5rem);
  position: absolute;
  top: clamp(0.9375rem, 1.5vw, 1.25rem);
  left: 0.5em;
}

/* ===============================================
usage-scence
=============================================== */
.p-usage-scence {
  background: #F6F8FA;
	padding-top: clamp(1.25rem, 3.2552083333vw, 1.875rem);
  padding-bottom: clamp(1.875rem, 4.5572916667vw, 2.5rem);
}


/* ===============================================
p-page-about-feature
=============================================== */
.p-page-about-feature__box {
  background: #F6F8FA;
  padding-left: clamp(1.875rem, 5.859375vw, 3.75rem);
  padding-right: clamp(1.875rem, 5.859375vw, 3.75rem);
}
.p-page-about-feature__box h3 {
  border-bottom: 1px solid #E83928;
  padding-bottom: 0.5em;
}

.p-page-about-feature__inner {
  grid-template-columns: 15% auto;
  align-items: center;
  justify-content: center;
  -moz-column-gap: clamp(1.25rem, 3.2552083333vw, 1.875rem);
       column-gap: clamp(1.25rem, 3.2552083333vw, 1.875rem);
}

.p-page-about-feature__icon {
  padding: clamp(0.625rem, 1.953125vw, 1.25rem);
  grid-row: 1/3;
}

.p-page-about-feature__list-wrap {
  background: #fff;
  padding: clamp(1.25rem, 3.2552083333vw, 1.875rem) clamp(1.875rem, 5.859375vw, 3.75rem);
}

.p-page-about-feature__use {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  row-gap: clamp(0.625rem, 1.953125vw, 1.25rem);
  -moz-column-gap: clamp(1.25rem, 3.2552083333vw, 1.875rem);
       column-gap: clamp(1.25rem, 3.2552083333vw, 1.875rem);
}
@media screen and (min-width: 1024px) {
  .p-page-about-feature__use {
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    margin-inline: auto;
  }
}
.p-page-about-feature__use li {
  border-radius: 50px;
  border: 1px solid #171B61;
  padding: clamp(0.625rem, 1.8229166667vw, 1rem) 0;
}

/* ===============================================
 p-page-benchmark
=============================================== */
.p-page-benchmark__wrap {
  padding: clamp(1.875rem, 4.5572916667vw, 2.5rem) clamp(1.875rem, 5.2083333333vw, 3.125rem);
  background: #F6F8FA;
}

/******************************************************************************
wp-plugin
******************************************************************************/
/* ===============================================
WP ページナビゲーション
=============================================== */
.wp-pagenavi {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: clamp(1.875rem, 6.5104166667vw, 5rem);
  padding-bottom: 1em;
  position: relative;
  display: flex;
  align-items: center;
}
.wp-pagenavi .pages {
  font-size: clamp(0.75rem, 1.6927083333vw, 0.875rem);
  padding: 0;
  margin-inline: auto;
  position: absolute;
  bottom: -0.5em;
  left: 0;
  right: 0;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  padding: 0 0.2em;
  margin-right: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: clamp(0.8125rem, 2.0833333333vw, 1.125rem);
  font-weight: 700;
  box-sizing: border-box;
  position: relative;
  border: none;
  font-family: "Jost", sans-serif;
}
@media screen and (min-width: 375px) {
  .wp-pagenavi a, .wp-pagenavi span {
    padding: 0 clamp(0.5rem, 1.5625vw, 0.875rem);
  }
}
.wp-pagenavi .current::after {
  content: "";
  display: block;
  margin: auto;
  width: 0.8em;
  height: 2px;
  background: #E83928;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ===============================================
Contact 7
=============================================== */
.wpcf7-form {
  margin-inline: auto;
  padding: 2em 5%;
  width: min(100%, 780px);
  background-color: #F6F8FA;
}
.wpcf7-form p {
  font-weight: 700;
  margin-bottom: 1.5em;
}
.wpcf7-form p:first-of-type {
  margin-bottom: 2em;
  text-align: center;
}
.wpcf7-form p:last-of-type {
  margin-inline: auto;
  width: 50%;
  text-align: center;
}
.wpcf7-form a {
  color: #E83928;
  text-decoration: underline;
}
.wpcf7-form input {
  margin-top: 0.5em;
  padding: 0.5em;
  width: 100%;
}
.wpcf7-form input[type=submit]:disabled {
  opacity: 0.5;
}
.wpcf7-form input[type=submit] {
  cursor: pointer;
  margin-top: 3em;
  padding: 0.8em;
  width: 100%;
  font-weight: 700;
  color: #fff;
  background-color: #171B61;
  border: none;
}
.wpcf7-form input[type=checkbox] {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.5em 0 0;
  padding: 0;
  width: auto;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.wpcf7-form input[type=radio] {
  margin-top: 1em;
  cursor: pointer;
}
.wpcf7-form textarea {
  margin-top: 0.5em;
  padding: 0.5em;
  width: 100%;
}
.wpcf7-form select {
  margin-top: 0.5em;
  padding: 0.4em;
  width: 50%;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-weight: 700;
  color: #E83928;
}
.wpcf7-form .wpcf7-list-item {
  font-size: clamp(0.75rem, 1.6927083333vw, 0.875rem);
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 1em;
  text-align: center;
  font-size: clamp(1rem, 1.8229166667vw, 1.125rem);
  color: #E83928;
  border-radius: 5em;
  border: 2px solid #E83928;
  background-color: #fff;
}

/* ===============================================
utility
=============================================== */
/******************************************************************************
 Margin
******************************************************************************/
.u-mt--6 {
  margin-top: clamp(0.375rem, 1.0416666667vw, 0.625rem);
}

.u-mt--10 {
  margin-top: clamp(0.625rem, 1.5625vw, 0.875rem);
}

.u-mt--20 {
  margin-top: clamp(1.25rem, 3.90625vw, 2.5rem);
}

.u-mb--6 {
  margin-bottom: clamp(0.375rem, 1.0416666667vw, 0.625rem);
}

.u-mb--10 {
  margin-bottom: clamp(0.625rem, 1.5625vw, 0.875rem);
}

.u-mb--15 {
  margin-bottom: clamp(0.9375rem, 2.34375vw, 1.5rem);
}

.u-mb--20 {
  margin-bottom: clamp(1.25rem, 3.90625vw, 2.5rem);
}

.u-mb--30 {
  margin-bottom: clamp(1.875rem, 5.859375vw, 3.75rem);
}

.u-mb--50 {
  margin-bottom: clamp(3.125rem, 8.4635416667vw, 6.25rem);
}

.u-mb--70 {
  margin-bottom: clamp(4.375rem, 12.3697916667vw, 8.75rem);
}

.u-mb--90 {
  margin-bottom: clamp(5.625rem, 15.625vw, 11.25rem);
}

/******************************************************************************
padding
******************************************************************************/
.u-pt--30 {
  padding-top: clamp(1.875rem, 5.859375vw, 3.75rem);
}

.u-pt--50 {
  padding-top: clamp(3.125rem, 10.4166666667vw, 6.25rem);
}

.u-pb--30 {
  padding-bottom: clamp(1.875rem, 5.859375vw, 3.75rem);
}

.u-pb--40 {
  padding-bottom: clamp(2.5rem, 7.8125vw, 5rem);
}

.u-pb--50 {
  padding-bottom: clamp(3.125rem, 10.4166666667vw, 6.25rem);
}

.u-pb--60 {
  padding-bottom: clamp(3.75rem, 11.71875vw, 7.5rem);
}/*# sourceMappingURL=style.css.map */

a[target="_blank"]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: .8rem;
    content: "\f35d";
    margin: 0 0 0 5px;
}