@charset "UTF-8";
/*****************************************
* 基本ファイル
*****************************************/
/*! sanitize.css v4.0.0 | CC0 License | github.com/10up/sanitize.css */
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

template, [hidden] {
  display: none;
}

*, ::before, ::after {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: default;
  font-family: sans-serif;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

hr {
  height: 0;
  overflow: visible;
}

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

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

b, strong {
  font-weight: inherit;
}

b, strong {
  font-weight: inherit;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

progress {
  vertical-align: baseline;
}

small {
  font-size: 83.3333%;
}

sub, sup {
  font-size: 83.3333%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

img {
  border-style: none;
}

svg {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

:hover {
  outline-width: 0;
}

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

input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
  font-size: 1em;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox], [type=radio] {
  padding: 0;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-cancel-button, ::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

a, area, button, input, label, select, textarea, [tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[hidden][aria-hidden=false] {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden=false]:focus {
  clip: auto;
}

* {
  padding: 0;
  margin: 0;
}

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

address {
  font-style: normal;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6, button, input, label, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

/*================================
  SCSS Information
----------------------------------
  File name: _functions.scss
  Summary:   自作関数定義用ファイル
  Author:    coder-ao
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _variables.scss
  Summary:   変数定義用ファイル
  Author:    coder-ao
================================*/
/*====================================
フォント設定
====================================*/
/*====================================
余白の設定
====================================*/
/*====================================
幅や高さの設定
====================================*/
/*====================================
共通箇所などの設定
====================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _mixin.scss
  Summary:   汎用定義ファイル
  Author:    coder-ao
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _animations.scss
  Summary:   アニメーション用ファイル
  Author:    coder-ao
================================*/
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-scrollAnime-fadeIn {
  opacity: 0;
}
.js-scrollAnime-fadeIn.is-animated {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

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

@keyframes fadeInUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-scrollAnime-fadeInUp {
  opacity: 0;
}
.js-scrollAnime-fadeInUp.is-animated {
  -webkit-animation-name: fadeInUpAnime;
          animation-name: fadeInUpAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes fadeInLeftRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeftRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-scrollAnime-fadeInLeftRight {
  opacity: 0;
}
.js-scrollAnime-fadeInLeftRight.is-animated {
  -webkit-animation-name: fadeInLeftRightAnime;
          animation-name: fadeInLeftRightAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes fadeInRightLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRightLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-scrollAnime-fadeInRightLeft {
  opacity: 0;
}
.js-scrollAnime-fadeInRightLeft.is-animated {
  -webkit-animation-name: fadeInRightLeftAnime;
          animation-name: fadeInRightLeftAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes headingBand {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  30% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}

@keyframes headingBand {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  30% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    top: 80%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    top: 80%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes procedureLine {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@keyframes procedureLine {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@-webkit-keyframes arrowGrow01 {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  80% {
    width: 120%;
  }
  100% {
    width: 120%;
  }
}
@keyframes arrowGrow01 {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  80% {
    width: 120%;
  }
  100% {
    width: 120%;
  }
}
@-webkit-keyframes txtLeftRightWrap {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes txtLeftRightWrap {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes txtLeftRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes txtLeftRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*================================
  SCSS Information
----------------------------------
  File name: _common.scss
  Summary:   全ページ共通定義用ファイル
  Author:    coder-ao
================================*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 375px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.25vw, 16px);
  font-weight: 400;
  line-height: calc(28 / 16);
  letter-spacing: calc(0 * 0.001em);
  color: #333;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: 1;
}

input,
textarea {
  font-family: inherit;
}

body figure {
  margin: 0;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: opacity, color;
}
a:not([class]) {
  text-decoration: none;
}
a:not([class]):hover {
  text-decoration: underline;
}

img,
a,
button,
select {
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  width: 100%;
  height: 52px;
  padding: 16px 16px 12px;
  border: none;
  border-radius: 5px;
  background: #fff;
  font-family: inherit;
  line-height: 1.5;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #333;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #333;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #333;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #333;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #333;
}

select {
  cursor: pointer;
}
select:focus {
  color: inherit;
}

textarea {
  width: 100%;
  height: 181px;
  padding: 16px 16px 12px;
  resize: vertical;
}

mark {
  display: inline;
  background: #faee00;
  color: #333;
}

strong {
  font-weight: 600;
}

ul {
  list-style-type: none;
}

sub, sup {
  font-size: 10px;
}

time {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(51, 51, 51, 0.5);
}

pre {
  white-space: pre-wrap;
  font-family: "Consolas", "ＭＳ ゴシック", "Osaka", sans-serif;
  font-weight: 400;
}
pre code {
  font-family: inherit;
  font-weight: inherit;
}

::-moz-selection {
  background: #E21F2D;
  color: #fff;
}

::selection {
  background: #E21F2D;
  color: #fff;
}

/*================================
  SCSS Information
----------------------------------
  File name: _header.scss
  Summary:   ヘッダー用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	header
-------------------*/
.l-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100000;
}
.l-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 86px;
  background: #fff;
  position: relative;
  z-index: 5;
}
.l-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(50%, 175px);
  margin: 0 16px;
}
.l-header__logo {
  display: inline-block;
}
.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header__nav {
  font-size: clamp(12px, 1.5555555556vw, 14px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 86px;
  height: 100%;
  margin-left: 16px;
  background: #E21F2D;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
}
.l-header__btn > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.l-header__btn > span::before {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 15/12;
  -webkit-mask: url(../img/common/icon_contact.svg) center no-repeat;
          mask: url(../img/common/icon_contact.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
}
.l-header__btn:hover {
  background: #fff;
  color: #E21F2D;
}
.l-header__subNav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #EFF1F2;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: clamp(12px, 1.5555555556vw, 14px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*================================
  SCSS Information
----------------------------------
  File name: _drawer.scss
  Summary:   ドロワーナビ用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	drawer
-------------------*/
.c-drawerBtn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  background: #E21F2D;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000000;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-drawerBtn__border {
  width: 25px;
  height: 2px;
  background: #FFF;
  position: relative;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-drawerBtn__border::before, .c-drawerBtn__border::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #FFF;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  transition-property: margin, transform, -webkit-transform;
}
.c-drawerBtn__border::before {
  margin-top: -8px;
}
.c-drawerBtn__border::after {
  width: 12px;
  margin-top: 15px;
}
.c-drawerBtn.is-open .c-drawerBtn__border {
  background: transparent;
}
.c-drawerBtn.is-open .c-drawerBtn__border::before {
  margin: 0;
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
}
.c-drawerBtn.is-open .c-drawerBtn__border::after {
  width: 25px;
  margin: 0;
  -webkit-transform: rotate(45deg) translate(0px, 0px);
          transform: rotate(45deg) translate(0px, 0px);
}
body.is-loaded .c-drawerBtn {
  position: fixed;
}

.l-drawer {
  display: none;
  width: max(100%, 100vw);
  height: min(var(--js-viewHeight), 100vh);
  height: max(100%, 100dvh);
  background: #E21F2D;
  font-size: inherit;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l-drawer.is-closed {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.l-drawer.is-open {
  opacity: 1;
  pointer-events: inherit;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.l-drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 100px 15px 50px;
  opacity: 0;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.l-drawer.is-open .l-drawer__inner {
  overflow-y: scroll;
  opacity: 1;
}
.l-drawer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.l-drawer__head .c-faqChose {
  margin-top: 1em;
}
.l-drawer__nav {
  margin-top: 3em;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}
.l-drawer__btn {
  width: min(100%, 340px);
  margin: 2em auto 0;
}

/*================================
  SCSS Information
----------------------------------
  File name: _nav.scss
  Summary:   グローバルナビ用ファイル
  Author:    coder-ao
================================*/
.l-nav {
  height: 100%;
}
.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(15px, 2.5vw, 32px);
  height: 100%;
}
.l-nav__listItem {
  height: 100%;
}

/*================================
  SCSS Information
----------------------------------
  File name: _main.scss
  Summary:   メイン用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	main
-------------------*/
.l-main {
  max-width: 100%;
  min-height: var(--js-viewHeight);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.l-main__section {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}
.l-main__section:not(:last-child):not(:has(+ [class*=cta])) {
  padding-bottom: 80px;
}
.l-main__section.--bg-lightgray {
  padding: 80px 0;
  background: #EFF1F2;
}
.l-main__section.--bg-lightgray:has(.p-problem) {
  padding-bottom: 0;
}
.l-main__section.--bg-lightgray + .l-main__section.--bg-lightgray {
  padding-top: 0;
}

.l-inner {
  width: min(100% - 30px, 1200px);
  margin: 0 auto;
}
.l-inner:not(:last-child) {
  margin-bottom: clamp(40px, 8.3333333333vw, 64px);
}
.l-inner.--bg-white {
  padding: 64px clamp(15px, 5vw, 64px);
  border-radius: 64px;
  background: #fff;
}

/*================================
  SCSS Information
----------------------------------
  File name: _footer.scss
  Summary:   フッター用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	footer
-------------------*/
.l-footer {
  text-align: center;
}
.l-footer__subNav {
  padding: 40px 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-footer__subNav .l-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__logo > picture {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__logo > picture:not(:last-child) {
  padding-right: 33px;
  position: relative;
}
.l-footer__logo > picture:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 24px;
  background: #D7D8D9;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer__logo:not(:last-child) {
  margin-bottom: 32px;
}
.l-footer__nav {
  padding: 40px 0 20px;
  background: #484848;
  color: #fff;
}
.l-footer__nav .l-nav {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-footer__nav .l-nav:not(:last-child) {
  margin-bottom: 57px;
}
.l-footer__nav .l-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-copyright {
  font-size: 12px;
}

/*================================
  SCSS Information
----------------------------------
  File name: _versatility.scss
  Summary:   汎用ファイル
  Author:    coder-ao
================================*/
.c-text p:not([class]) + p:not([class]), .c-summary p:not([class]) + p:not([class]) {
  margin-top: 1em;
}
.c-text ul:not(:first-child), .c-summary ul:not(:first-child) {
  margin-top: 1em;
}
.c-text ul:not(:last-child), .c-summary ul:not(:last-child) {
  margin-bottom: 1em;
}
.c-text:not(:last-child), .c-summary:not(:last-child) {
  margin-bottom: clamp(15px, 2.5vw, 32px);
}
.c-text.--center, .c-summary.--center {
  text-align: center;
}

.c-summary:not(:last-child) {
  margin-bottom: clamp(20px, 7.8125vw, 60px);
}

.c-signature {
  text-align: right;
}
.c-signature:not(:first-child) {
  margin-top: 2em;
}

.c-imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px 15px;
}
.c-imgTxt.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-imgTxt.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-imgTxt:not(:first-child) {
  margin-top: 40px;
}
.c-imgTxt:not(:last-child) {
  margin-bottom: 40px;
}
.c-imgTxt__txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, var(--w));
}
.c-imgTxt__img {
  display: block;
  width: min(100%, var(--w));
}
.c-imgTxt__img > img {
  width: 100%;
}
.c-imgTxt__img.--full {
  width: 100%;
}

.c-imgTitleTxt__img {
  display: block;
}
.c-imgTitleTxt__img:not(:last-child) {
  margin-bottom: 21px;
}
.c-imgTitleTxt__title:not(:last-child) {
  margin-bottom: 7px;
}
.c-imgTitleTxt__txt a:not([class]) {
  text-decoration: underline;
}
.c-imgTitleTxt__txt a:not([class]):hover {
  text-decoration: none;
}
.c-imgTitleTxt__txt:not(:last-child) {
  margin-bottom: 20px;
}

.c-img {
  display: block;
  padding: 48px;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.16);
}

.c-figure {
  display: block;
}

.c-note {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  letter-spacing: 0;
}
.c-note::before {
  content: "※";
  display: block;
}

dl:not([class]):not(:first-child) {
  margin-top: 1lh;
}
dl:not([class]):not(:last-child) {
  margin-bottom: 1lh;
}

.c-headingWrap:not(:last-child) {
  margin-bottom: clamp(20px, 5.2083333333vw, 40px);
}
.c-headingWrap__sub {
  display: block;
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7777777778;
}
.c-headingWrap__sub:not(:last-child) {
  margin-bottom: 0.8em;
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625em;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-heading::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  display: block;
  width: 1.375em;
  aspect-ratio: 1/1;
  margin-top: 0.0833333333lh;
  background: center no-repeat;
  background-size: contain;
}
.c-heading[data-icon=problem]::before {
  background-image: url(../img/common/icon_problem.svg);
}
.c-heading[data-icon=about]::before {
  background-image: url(../img/common/icon_about.svg);
}
.c-heading[data-icon=compare]::before {
  background-image: url(../img/common/icon_compare.svg);
}
.c-heading[data-icon=feature]::before {
  background-image: url(../img/common/icon_feature.svg);
}
.c-heading[data-icon=strength]::before {
  background-image: url(../img/common/icon_strength.svg);
}
.c-heading[data-icon=voice]::before {
  background-image: url(../img/common/icon_voice.svg);
}
.c-heading[data-icon=price]::before {
  background-image: url(../img/common/icon_price.svg);
}
.c-heading[data-icon=faq]::before {
  background-image: url(../img/common/icon_faq.svg);
}

.c-headingSub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  font-size: clamp(18px, 3.125vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-headingSub::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  display: block;
  width: 0.5em;
  aspect-ratio: 1/1;
  margin-top: 0.5em;
  border-radius: 50%;
  background: #E21F2D;
}
.c-headingSub:not(:last-child) {
  margin-bottom: 16px;
}

.c-btnWrap .c-btn {
  margin: 0 auto;
}
.c-btnWrap .c-btn:not(:last-child) {
  margin-bottom: 24px;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: min(1.0555555556em, 19px) 0.5em;
  border: 1px solid #E21F2D;
  border-radius: 4em;
  background: #E21F2D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7777777778;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn:hover {
  background: #fff;
  color: #E21F2D;
}

.c-cardList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(366px, 1fr));
  gap: 10px 21px;
}
.c-cardList__item {
  background: linear-gradient(135deg, #949598 0%, #202329 100%);
  overflow: hidden;
  color: #fff;
}
.c-cardList__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 366/213;
  position: relative;
  z-index: 1;
}
.c-cardList__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-cardList__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 15px;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #333;
}
.c-cardList__body {
  padding: 24px 15px 31px;
}
.c-cardList__txt {
  width: min(100%, 310px);
  margin: 0 auto;
}

.c-tableScroll {
  width: 100%;
  overflow: hidden;
}
.c-tableScroll:not(:last-child) {
  margin-bottom: 80px;
}
.c-tableScroll > table {
  width: 880px;
  margin: 0 auto;
}
.c-tableScroll--notScroll:not(:last-child) {
  margin-bottom: 80px;
}
.c-tableScroll--notScroll > table {
  width: min(100%, 880px);
  margin: 0 auto;
}

.wp-block-table table,
table {
  border-collapse: separate;
  border-spacing: 3px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8125;
  text-align: center;
}
.wp-block-table table.--left,
table.--left {
  text-align: left;
}
.wp-block-table table a:not([class]),
table a:not([class]) {
  text-decoration: underline;
}
.wp-block-table table a:not([class]):hover,
table a:not([class]):hover {
  text-decoration: none;
}
.wp-block-table table thead,
table thead {
  border: none;
}
.wp-block-table table th,
table th {
  padding: 11px 16px 6px;
  border: none;
  background: #444444;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
.wp-block-table table td,
table td {
  padding: 15px 16px 11px;
  border: none;
  background: #EFF1F2;
}
.wp-block-table table tr.--bg td,
table tr.--bg td {
  background: rgba(239, 241, 242, 0.5);
}

.p-cta {
  padding: 64px 15px 68px;
  border-radius: 40px;
  background: url(../img/common/cta_bg.png) center no-repeat;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}
.p-cta__label {
  font-size: clamp(20px, 4.1666666667vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
}
.p-cta__label:not(:last-child) {
  margin-bottom: 1.875em;
}
.p-cta__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(512px, 1fr));
  gap: clamp(15px, 3.75vw, 48px);
  width: min(100%, 1072px);
  margin: 0 auto;
}

.c-cta {
  padding: 32px 15px 40px;
  border-radius: 24px;
  background: #fff;
}
.c-cta .c-btn {
  width: min(100%, 360px);
  margin: 0 auto;
}
.c-cta.--dl .c-btn {
  border-color: #333;
  background: #333;
}
.c-cta.--dl .c-btn:hover {
  background: #fff;
  color: #333;
}
.c-cta__label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-cta__label > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-cta__label > span::before {
  content: "";
  display: block;
  width: clamp(20px, 4.1666666667vw, 32px);
  aspect-ratio: 32/26;
  background: url(../img/common/icon_contact2.svg) center no-repeat;
  background-size: contain;
}
.c-cta__label.--dl > span::before {
  background-image: url(../img/common/icon_download.svg);
}
.c-cta__label:not(:last-child) {
  margin-bottom: clamp(15px, 2.5vw, 32px);
}

.c-breadcrumbs {
  padding: 5px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #333;
}
.c-breadcrumbs:not(:last-child) {
  margin-bottom: 40px;
}
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 16px;
}
.c-breadcrumbs__list li:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-breadcrumbs__list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  margin-bottom: 1px;
  background: url(../img/common/arrow_breadcrumbs.svg) center no-repeat;
  background-size: auto 100%;
}
.c-breadcrumbs__list a {
  color: #E21F2D;
}

.c-pager .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Zalando Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.c-pager .nav-links .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 5px;
  background: #fff;
  font-size: inherit;
  color: #333;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.c-pager .nav-links .page-numbers:hover, .c-pager .nav-links .page-numbers.current {
  border-color: #E21F2D;
  background: #E21F2D;
  color: #fff;
}
.c-pager .nav-links .page-numbers.next,
.c-pager .nav-links .page-numbers.prev {
  margin: 0 0 0 15px;
  background: #fff;
  font-size: 0;
  color: transparent;
}
.c-pager .nav-links .page-numbers.next::after,
.c-pager .nav-links .page-numbers.prev::after {
  display: none;
}
.c-pager .nav-links .page-numbers.next::before,
.c-pager .nav-links .page-numbers.prev::before {
  content: "";
  display: block;
  width: 13px;
  height: 12px;
  -webkit-mask: url(../img/common/pager_next.svg) center no-repeat;
          mask: url(../img/common/pager_next.svg) center no-repeat;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  background: #333;
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
  color: inherit;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-pager .nav-links .page-numbers.next:hover,
.c-pager .nav-links .page-numbers.prev:hover {
  border-color: #E21F2D;
  background: #E21F2D !important;
}
.c-pager .nav-links .page-numbers.next:hover::before,
.c-pager .nav-links .page-numbers.prev:hover::before {
  background: #fff;
}
.c-pager .nav-links .page-numbers.prev {
  margin: 0 15px 0 0;
}
.c-pager .nav-links .page-numbers.prev::before {
  -webkit-mask-image: url(../img/common/pager_prev.svg);
          mask-image: url(../img/common/pager_prev.svg);
}

.c-fixedBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 52px;
  position: fixed;
  bottom: 84px;
  right: 0;
  z-index: 10000;
}
.c-fixedBanner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 196px;
  padding: 16px;
  border: 1px solid #333;
  border-radius: 8px 0 0 8px;
  background: #333;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.25;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #fff;
}
.c-fixedBanner__link:hover {
  background: #fff;
  color: #333;
}
.c-fixedBanner__link[href*=contact] {
  border-color: #E21F2D;
  background: #E21F2D;
}
.c-fixedBanner__link[href*=contact]:hover {
  background: #fff;
  color: #E21F2D;
}

.c-pageTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  aspect-ratio: 1/1;
  border: 1px solid #E21F2D;
  border-radius: 8px;
  background: #E21F2D;
  font-size: 0;
  color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}
.c-pageTop::before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/11;
  -webkit-mask: url(../img/common/pagetop.svg) center no-repeat;
          mask: url(../img/common/pagetop.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
}
.c-pageTop:hover {
  background: #fff;
  color: #E21F2D;
}

/*================================
  SCSS Information
----------------------------------
  File name: _list.scss
  Summary:   リスト用ファイル
  Author:    coder-ao
================================*/
/* リスト */
.c-list.--sup {
  counter-reset: number;
  font-size: 0.83em;
}
.c-list > li {
  padding-left: 1em;
  position: relative;
}
.c-list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-list > li a:not([class]) {
  text-decoration: underline;
}
.c-list > li a:not([class]):hover {
  text-decoration: none;
}
.c-list.--sup > li {
  counter-increment: number;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.c-list.--sup > li::before {
  content: "※" counter(number);
  font-size: 10px;
  position: relative;
  top: 0.2em;
}

/*================================
  SCSS Information
----------------------------------
  File name: _accordion.scss
  Summary:   アコーディオン用ファイル
  Author:    coder-ao
================================*/
.c-accordion {
  position: relative;
}
.c-accordion__trigger {
  cursor: pointer;
}
.c-accordion__trigger > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-accordion__target {
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity, height, padding;
  transition-property: opacity, height, padding;
}
.c-accordion__target.is-open {
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: inherit;
  z-index: 99;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity, height, padding;
  transition-property: opacity, height, padding;
}
.c-accordion.--hover .c-accordion__target {
  overflow: visible;
  position: absolute;
  top: 100%;
  left: 0;
}

.c-accordionNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 15px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.c-accordionNav__item {
  color: #333;
}
.c-accordionNav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  color: #333;
  position: relative;
}
.c-accordionNav__link:hover, .c-accordionNav__link.is-current {
  color: #E21F2D;
}

/*================================
  SCSS Information
----------------------------------
  File name: _kv.scss
  Summary:   KV用ファイル
  Author:    coder-ao
================================*/
.p-kv {
  background: -webkit-gradient(linear, left top, left bottom, from(#000B1A), to(#EFF1F2));
  background: linear-gradient(to bottom, #000B1A 0%, #EFF1F2 100%);
}
.p-kv__caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  padding: 32px 15px 22px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5555555556;
  color: #fff;
}
.p-kv__caution::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 24/21;
  margin-top: 4px;
  background: url(../img/common/icon_caution.svg) center no-repeat;
  background-size: contain;
}
.p-kv__container {
  display: grid;
  grid-template-columns: 1fr min(54%, 648px);
  width: min(100% - 15px * 2, 1200px);
  margin: 0 auto;
  border-radius: 40px;
  background: #fff;
  overflow: hidden;
}
.p-kv__contents {
  padding: 39px clamp(15px, 5.3333333333vw, 48px) 48px;
  text-align: center;
}
.p-kv__contents .c-btn {
  width: min(100%, 360px);
  margin: 0 auto;
}
.p-kv__contents .c-btn:not(:last-child) {
  margin-bottom: 2.2222222222em;
}
.p-kv__catch {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.65;
}
.p-kv__catch:not(:last-child) {
  margin-bottom: 14px;
}
.p-kv__catch strong {
  color: #E21F2D;
}
.p-kv__title {
  font-family: "Zalando Sans", sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1111111111;
}
.p-kv__title:not(:last-child) {
  margin-bottom: 20px;
}
.p-kv__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5555555556;
}
.p-kv__price::before {
  content: "";
  display: block;
  width: 1.3333333333em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_check.svg) center no-repeat;
  background-size: contain;
}
.p-kv__price:not(:last-child) {
  margin-bottom: 2.2222222222em;
}
.p-kv__price strong {
  font-family: "Zalando Sans", sans-serif;
  font-size: 1.5555555556em;
}
.p-kv__price small {
  font-size: 0.8888888889em;
}
.p-kv__logo {
  display: block;
  width: min(100%, 242px);
  margin: 0 auto;
}
.p-kv__img {
  display: block;
  height: 100%;
}
.p-kv__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*================================
  SCSS Information
----------------------------------
  File name: _form.scss
  Summary:   フォーム用ファイル
  Author:    coder-ao
================================*/
.c-form__summary strong {
  display: block;
}
.c-form__summary small {
  display: block;
  margin-top: 19px;
  font-size: 14px;
}
.c-form__contents {
  margin-top: 21px;
}
.c-form__item {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 0.5em 32px;
}
.c-form__item:not(:last-child) {
  margin-bottom: 1em;
}
.c-form__label {
  padding-top: 0.8em;
  font-weight: 600;
}
.c-form__privacy {
  margin-top: 36px;
  line-height: 1.828125;
}
.c-form__privacy a:not([class]) {
  text-decoration: underline;
}
.c-form__privacy a:not([class]):hover {
  text-decoration: none;
}
.c-form__check {
  margin-top: 34px;
  text-align: center;
}
.c-form__btn {
  margin-top: 38px;
}

.c-checkbox {
  display: none;
}
.c-checkbox__label {
  padding-left: 26px;
  cursor: pointer;
  position: relative;
}
.c-checkbox__label::before, .c-checkbox__label::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  border: 1px solid #333;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.c-checkbox__label::before {
  content: "✓";
  border: none;
  background: none;
  line-height: 1;
  color: #E21F2D;
  opacity: 0;
  z-index: 2;
}
.c-checkbox:checked ~ .c-checkbox__label::before {
  opacity: 1;
}

.c-form__check .wpcf7-list-item input {
  display: none;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 26px;
  cursor: pointer;
  position: relative;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label::before, .c-form__check .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  border: 1px solid #333;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "✓";
  border: none;
  background: none;
  line-height: 1;
  color: #E21F2D;
  opacity: 0;
  z-index: 2;
}
.c-form__check .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
  opacity: 1;
}

.c-thanks {
  padding: 64px 0 80px;
}
.c-thanks .c-text {
  color: #444444;
}
.c-thanks__title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5357142857;
  text-align: center;
}
.c-thanks__btn {
  margin-top: 77px;
}
.c-thanks__btn .c-btn {
  width: min(100%, 285px);
}

/*================================
  SCSS Information
----------------------------------
  File name: _utility.scss
  Summary:   補助用ファイル
  Author:    coder-ao
================================*/
.u-text > p:not(:last-child) {
  margin-bottom: 1.8em;
}
.u-text.--center {
  text-align: center;
}

.u-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-dl > dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.u-dl.--strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}

.u-sp {
  display: none;
}

.u-dib {
  display: inline-block;
}
.u-notContent {
  color: #333;
}

.u-anchorLink {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}

.u-mb0 {
  margin-bottom: 0;
}

.u-map {
  aspect-ratio: 496/250;
}
.u-map > iframe {
  width: 100%;
  height: 100%;
}

.u-red {
  font-weight: 500;
  color: #E21F2D;
}

.u-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #333;
}
.u-tag.--red {
  border-color: #E21F2D;
  background: #E21F2D;
  color: #fff;
}

.u-none {
  opacity: 0.15;
}

.u-required {
  font-weight: 600;
  color: #E21F2D;
}

/*****************************************
* ページごと
*****************************************/
/*================================
  SCSS Information
----------------------------------
  File name: _top.scss
  Summary:   TOPページ用ファイル
  Author:    coder-ao
================================*/
.p-problem {
  width: min(100%, 1072px);
  margin: 0 auto 5.703125vw;
  position: relative;
  z-index: 1;
}
.p-problem::after {
  content: "";
  width: 100vw;
  aspect-ratio: 1280/240;
  background: url(../img/top/problem_bg-bottom.jpg) bottom center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -5.703125vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.c-problemList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(15px, 2.5vw, 32px);
}
.c-problemList__item {
  padding: 32px clamp(15px, 3.125vw, 40px);
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.p-about {
  width: min(100%, 1072px);
  padding: 30px 0 0;
  margin: 0 auto;
}
.p-about .c-figure {
  padding: 40px 15px;
  border: 1px solid #D7D8D9;
  border-radius: 24px;
  background: #FFF;
}
.p-about .c-figure figcaption {
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.p-about .c-figure figcaption:not(:last-child) {
  margin-bottom: 30px;
}
.p-about .c-figure figcaption small {
  display: block;
  font-size: inherit;
}
.p-about .c-figure figcaption small:not(:last-child) {
  margin-bottom: 0.1em;
}
.p-about .c-figure figcaption h3 {
  font-size: 1.5em;
  font-weight: 700;
}
.p-about .c-figure > picture {
  display: block;
  margin: 0 0 0 25px;
}

.c-featureList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 2.5vw, 32px);
}
.c-featureList__item {
  padding: 24px clamp(15px, 2.5vw, clamp(15px, 2.5vw, 32px));
  border: 1px solid #EFF1F2;
  border-radius: 24px;
  background: #fff;
}
.c-featureList--column .c-featureList__item:not(:last-child) {
  margin-bottom: 16px;
}
.c-featureList__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 16px;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
  position: relative;
}
.c-featureList__num::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E21F2D;
  position: absolute;
  top: 10px;
  left: 0;
}
.c-featureList__num:not(:last-child) {
  margin-bottom: 8px;
}
.c-featureList__label {
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-featureList__label:not(:last-child) {
  margin-bottom: 24px;
}
.c-featureList__img {
  display: block;
  width: min(100%, 160px);
  margin: 0 auto;
}
.c-featureList__img:not(:last-child) {
  margin-bottom: 24px;
}

.p-strength {
  width: min(100%, 1072px);
  margin: 0 auto;
}
.p-strength__contents {
  display: grid;
  grid-template-columns: 1fr min(50%, 504px);
  gap: clamp(15px, 3.75vw, 48px);
}

.c-voiceList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 2.5vw, 32px);
}
.c-voiceList__item {
  padding: 24px clamp(15px, 2.5vw, clamp(15px, 2.5vw, 32px)) clamp(15px, 2.5vw, 32px);
  border: 1px solid #D7D8D9;
  border-radius: 16px;
  overflow: hidden;
}
.c-voiceList__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
}
.c-voiceList__label::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1/1;
  margin-top: 10px;
  border-radius: 50%;
  background: #E21F2D;
}
.c-voiceList__label:not(:last-child) {
  margin-bottom: 8px;
}
.c-voiceList__contents {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 18px;
}

.p-price {
  display: grid;
  grid-template-columns: 1fr min(50%, 520px);
  gap: clamp(15px, 2.5vw, 32px);
}
.p-price__contents .c-btn {
  width: min(100%, 360px);
}
.p-price__img {
  display: block;
  border-radius: 24px;
  overflow: hidden;
}

.c-price:not(:last-child) {
  margin-bottom: 40px;
}
.c-price__catch {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-price__catch:not(:last-child) {
  margin-bottom: 10px;
}
.c-price__item {
  font-size: clamp(14px, 3.125vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}
.c-price__item span + span {
  margin-left: 0.6666666667em;
}
.c-price__item strong {
  margin: 0 11px 0 8px;
  font-size: 2.3333333333em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #E21F2D;
}

.p-faq {
  width: min(100%, 1072px);
  margin: 0 auto;
}

.c-faqList {
  padding: 40px clamp(15px, 3.125vw, 40px);
  border-radius: 24px;
  background: #fff;
}
.c-faqList:not(:last-child) {
  margin-bottom: 64px;
}
.c-faqList__item:not(:last-child) {
  padding-bottom: clamp(15px, 2.5vw, 32px);
  margin-bottom: clamp(15px, 2.5vw, 32px);
  border-bottom: 1px solid #D7D8D9;
}
.c-faqList__label, .c-faqList__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(10px, 2.6041666667vw, 20px);
}
.c-faqList__label::before, .c-faqList__contents::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "Q";
  width: 2.25em;
  aspect-ratio: 1/1;
  padding-bottom: 4px;
  border-radius: 8px;
  background: #333;
  font-size: clamp(12px, 2.0833333333vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  overflow: hidden;
}
.c-faqList__label {
  font-size: clamp(16px, 2.34375vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
}
.c-faqList__label:not(:last-child) {
  margin-bottom: 16px;
}
.c-faqList__contents::before {
  content: "A";
  padding-bottom: 0;
  background: #E21F2D;
}
@media screen and (max-width:1200px){
  .c-tableScroll {
    overflow-x: scroll;
  }
  .c-tableScroll:not(:last-child) {
    margin-bottom: 60px;
  }
  .c-tableScroll--notScroll:not(:last-child) {
    margin-bottom: 60px;
  }
  .p-kv__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width:900px){
  .c-imgTxt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-imgTxt.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-imgTxt__txt {
    width: 100%;
  }
  .c-heading {
    font-size: clamp(20px, 3.5555555556vw, 32px);
  }
  .c-featureList {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-voiceList {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width:768px){
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea,
  select {
    font-size: inherit;
  }
  .l-header__main {
    height: 60px;
  }
  .l-header__right {
    display: none;
  }
  .l-header__subNav {
    display: none;
  }
  .c-drawerBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-drawer {
    display: block;
  }
  .l-header .l-nav {
    display: none;
  }
  .l-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: inherit;
    font-weight: inherit;
  }
  .l-main__section:not(:last-child):not(:has(+ [class*=cta])) {
    padding-bottom: 60px;
  }
  .l-main__section.--bg-lightgray {
    padding: 60px 0;
  }
  .l-main__section.--bg-lightgray:has(.p-problem) {
    padding-bottom: 0;
  }
  .l-main__section.--bg-lightgray + .l-main__section.--bg-lightgray {
    padding-top: 0;
  }
  .l-main__section.--bg-lightgray:last-child {
    padding-bottom: 24px;
  }
  .l-inner.--bg-white {
    padding: 32px clamp(15px, 5vw, 64px);
    border-radius: 32px;
  }
  .c-img {
    padding: 15px;
  }
  .c-btn {
    font-size: clamp(14px, 2.34375vw, 18px);
  }
  .c-cardList__img {
    aspect-ratio: 345/213;
  }
  .c-cardList__label {
    padding: 1px 14px;
    font-size: 18px;
  }
  .c-cardList__body {
    padding: 19px 28px 16px;
  }
  .p-cta {
    padding: 32px 15px 34px;
    border-radius: 32px;
  }
  .p-cta__contents {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-cta {
    padding: 20px 15px;
  }
  .c-fixedBanner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    gap: 0;
    width: 100%;
    bottom: 0;
  }
  .c-fixedBanner__link {
    height: auto;
    border-radius: 0;
    letter-spacing: 0.05em;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  .c-pageTop {
    display: none;
  }
  .p-kv__catch {
    font-size: clamp(16px, 5.1282051282vw, 20px);
  }
  .p-kv__title {
    font-size: clamp(20px, 9vw, 54px);
  }
  .p-kv__price {
    font-size: clamp(14px, 2.34375vw, 18px);
  }
  .c-form__item {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-thanks__title {
    font-size: 20px;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: inline-block;
  }
  .u-map {
    aspect-ratio: 303/152;
  }
  .c-problemList {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-about .c-figure figcaption {
    font-size: clamp(12px, 1.7777777778vw, 16px);
  }
  .p-about .c-figure > picture {
    margin: 0 auto;
  }
  .p-strength__contents {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-price {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-price:not(:last-child) {
    margin-bottom: 20px;
  }
  .c-faqList__label {
    line-height: 1.8;
  }
}
@media screen and (max-width:390px){
  .c-cardList {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*# sourceMappingURL=map/style.css.map */
