@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;
  }
}
@-webkit-keyframes mapJa {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
            transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes mapJa {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
            transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(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 {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.1713030747vw, 16px);
  font-weight: 400;
  line-height: calc(29 / 16);
  letter-spacing: calc(0 * 0.001em);
  color: #282828;
  -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%;
  image-rendering: crisp-edges;
}

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=email],
input.zipCode01,
input.zipCode02,
textarea,
select {
  width: 100%;
  height: 40px;
  padding: 5px 8px;
  border: none;
  border-radius: 0;
  background: #EEE;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input.zipCode01::-webkit-input-placeholder, input.zipCode02::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #282828;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input.zipCode01::-moz-placeholder, input.zipCode02::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #282828;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input.zipCode01:-ms-input-placeholder, input.zipCode02:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #282828;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input.zipCode01::-ms-input-placeholder, input.zipCode02::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #282828;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input.zipCode01::placeholder,
input.zipCode02::placeholder,
textarea::placeholder,
select::placeholder {
  color: #282828;
}

select {
  width: min(100%, 370px);
  color: #282828;
  cursor: pointer;
}
select:focus {
  color: inherit;
}

textarea {
  width: 100%;
  height: 210px;
  padding: 5px 8px;
  resize: vertical;
}
textarea.address {
  height: 95px;
}

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

ul {
  list-style-type: none;
}

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: #4B6BD5;
  color: #fff;
}

::selection {
  background: #4B6BD5;
  color: #fff;
}

/*================================
  SCSS Information
----------------------------------
  File name: _header.scss
  Summary:   ヘッダー用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	header
-------------------*/
.l-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.l-header__head {
  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;
  padding: min(1.2445095168vw, 17px) min(1.4641288433vw, 20px) min(1.2445095168vw, 17px) min(2.9282576867vw, 40px);
}
.l-header__headLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(3.4407027818vw, 47px);
}
.l-header__headRight {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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: 10px;
}
.l-header__headRight .c-btn.--mail,
.l-header__headRight .c-btn.--simulation {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, 200px);
  padding: 12px;
  font-size: 14px;
}
.l-header__headRight .c-btn.--simulation {
  width: min(100%, 220px);
}
.l-header__nav {
  height: 48px;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
}

/*================================
  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: 50px;
  height: 50px;
  border: none;
  border-radius: 0;
  background: #4B6BD5;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  top: 0;
  right: 0;
  z-index: 10005;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-drawerBtn__border {
  width: 24px;
  height: 1px;
  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: 1px;
  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: -7px;
}
.c-drawerBtn__border::after {
  margin-top: 14px;
}
.c-drawerBtn.is-open .c-drawerBtn__border {
  background: transparent;
}
.c-drawerBtn.is-open .c-drawerBtn__border::before {
  margin: 0;
  -webkit-transform: rotate(-30deg) translate(0px, 0px);
          transform: rotate(-30deg) translate(0px, 0px);
}
.c-drawerBtn.is-open .c-drawerBtn__border::after {
  margin: 0;
  -webkit-transform: rotate(30deg) translate(0px, 0px);
          transform: rotate(30deg) translate(0px, 0px);
}
body.is-loaded .c-drawerBtn {
  position: fixed;
}

.l-drawer {
  display: none;
  width: 100vw;
  height: min(var(--js-viewHeight), 100vh);
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  font-size: inherit;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -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: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.l-drawer.is-open {
  opacity: 1;
  pointer-events: inherit;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 100px 1rem 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__nav {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}
.l-drawer__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.l-nav__listItem {
  height: 100%;
}
.l-nav__listItem > a {
  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;
  height: 100%;
  position: relative;
}
.l-nav__listItem > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 3px;
  background: #282828;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l-nav__listItem > a:hover, .l-nav__listItem > a.is-current {
  text-decoration: none;
}
.l-nav__listItem > a:hover::after, .l-nav__listItem > a.is-current::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

/*================================
  SCSS Information
----------------------------------
  File name: _main.scss
  Summary:   メイン用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	main
-------------------*/
.l-main {
  max-width: 100%;
  min-height: var(--js-viewHeight);
  position: relative;
  z-index: 1;
}
.l-main__contents {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}
.l-main__contents:has(.l-bg) + .l-main__contents:has(.l-bg):not(.--mt0) {
  margin-top: -60px;
}
.l-main__contents:has(.l-bg.--arrowDown)::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 5em;
  height: 2.5em;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #F4F4F4;
}

.l-bg {
  padding: 5.9375em 0 9.75em;
  border-radius: 4em;
}
.l-bg.--gray {
  background: #F4F4F4;
}
.l-bg.--primary {
  border-radius: 4em 4em 0 0;
  background: #4B6BD5;
}
.l-bg.--black {
  padding: 6em 0 0;
  border-radius: 4em 4em 0 0;
  background: #282828;
  color: #fff;
}

/*================================
  SCSS Information
----------------------------------
  File name: _footer.scss
  Summary:   フッター用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	footer
-------------------*/
.p-contact {
  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: 1rem;
  padding: 0 0 6em;
}
.p-contact .c-headingEnJa:not(:last-child) {
  margin-bottom: 0;
}

.c-contact {
  width: min(100%, 712px);
}
.c-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.c-contact__btn .c-btn {
  width: min(100%, 340px);
  margin: 24px auto 0;
}

.c-copyright {
  padding: 1em 1rem;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

/*================================
  SCSS Information
----------------------------------
  File name: _versatility.scss
  Summary:   汎用ファイル
  Author:    coder-ao
================================*/
.l-inner {
  width: min(100% - 2rem, 1084px);
  margin: 0 auto;
}
.l-inner.--narrow {
  width: min(100% - 2rem, 896px);
}

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

.c-imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.c-imgTxt.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-imgTxt__txt {
  width: 100%;
}
.c-imgTxt__txt > p > span {
  -webkit-box-shadow: 0 -8px rgba(75, 107, 213, 0.35) inset;
          box-shadow: 0 -8px rgba(75, 107, 213, 0.35) inset;
}
.c-imgTxt__txt > p + p {
  margin-top: 2em;
}
.c-imgTxt__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: min(100%, 385px);
}
.c-imgTxt__img.--small {
  width: min(100%, 200px);
}
.c-imgTxt__img.--full {
  width: 100%;
}

.c-img {
  display: block;
  margin: 0 auto;
}
.c-img.--small {
  width: min(100%, 898px);
}

.c-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7857142857;
  color: rgba(40, 40, 40, 0.7);
}
.c-note::before {
  content: "※";
  display: block;
}

.c-headingEnJa {
  font-size: clamp(26px, 2.9282576867vw, 40px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.c-headingEnJa:not(:last-child) {
  margin-bottom: 1.2em;
}
.c-headingEnJa__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 0.5em;
  font-family: "Jost", sans-serif;
  font-size: max(10px, 0.5em);
  font-weight: 500;
  letter-spacing: 0;
}
.c-headingEnJa__en::before {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #4B6BD5;
}
.c-headingEnJa__en.--noto {
  margin-bottom: 0.75em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(10px, 0.4090909091em, 18px);
  font-weight: 600;
  letter-spacing: 0;
}
.c-headingEnJa__ja > span {
  background: #4B6BD5;
  color: #fff;
}

.c-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: min(100%, 340px);
  padding: 1.25em;
  border: 1px solid #282828;
  border-radius: 3em;
  background: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-btn:hover {
  background: #fff;
  color: #282828;
}
.c-btn.--white {
  border-color: #fff;
  background: #fff;
  color: #282828;
}
.c-btn.--white:hover {
  background: #282828;
  color: #fff;
}
.c-btn.--mail > span {
  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;
}
.c-btn.--mail > span::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 16/12;
  -webkit-mask: url(../img/common/icon_mail.svg) center no-repeat;
          mask: url(../img/common/icon_mail.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}
.c-btn.--mail.--white > span::before {
  background-color: #282828;
}
.c-btn.--mail:hover > span::before {
  background-color: #282828;
}
.c-btn.--mail.--white:hover > span::before {
  background-color: #fff;
}
.c-btn.--simulation {
  border-color: #4B6BD5;
  background-color: #4B6BD5;
}
.c-btn.--simulation > span {
  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;
}
.c-btn.--simulation > span::before {
  content: "";
  display: block;
  width: 0.6875em;
  aspect-ratio: 11/16;
  -webkit-mask: url(../img/common/icon_simulation.svg) center no-repeat;
          mask: url(../img/common/icon_simulation.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}
.c-btn.--simulation:hover {
  background-color: #fff;
  color: #4B6BD5;
}
.c-btn.--simulation:hover > span::before {
  background-color: #4B6BD5;
}
.c-btn.--more {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.c-btn.--more::after {
  content: "";
  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: 46px;
  height: 30px;
  border-radius: 18px;
  background: #4B6BD5 url(../img/common/arrow_more.svg) center no-repeat;
  background-size: 18px auto;
  position: absolute;
  top: calc(50% - 15px);
  right: 28px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-btn.--more:hover::after {
  -webkit-transform: translate(5px, 0);
          transform: translate(5px, 0);
}

.c-cardList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2em;
}
.c-cardList__item {
  padding: 1.75em 2em 1.9375em;
  border-radius: 1.5em;
  background: #fff;
  overflow: hidden;
}

.c-tableScroll {
  width: 100%;
  overflow: hidden;
}
.c-tableScroll:not(:last-child) {
  margin-bottom: 3em;
}
.c-tableScroll > table {
  width: 1084px;
}

.c-cta .l-bg {
  padding: 4em 1rem 3em;
}

/*================================
  SCSS Information
----------------------------------
  File name: _kv.scss
  Summary:   KV用ファイル
  Author:    coder-ao
================================*/
.c-kv {
  overflow: hidden;
}
.c-kv__inner {
  min-height: min(35.6515373353vw, 487px);
  padding: min(4.0995607613vw, 56px) 0 min(5.270863836vw, 76px);
  position: relative;
  z-index: 1;
}
.c-kv__body {
  width: min(57.1033210332%, 619px);
  position: relative;
  z-index: 2;
}
.c-kv__body .c-headingEnJa {
  font-size: clamp(26px, 3.2210834553vw, 44px);
  line-height: 1.5909090909;
  letter-spacing: 0;
}
.c-kv__body .c-headingEnJa__ja {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.c-kv__summary {
  margin-top: 0.7em;
  width: min(84.9757673667%, 526px);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
.c-kv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 2.3em;
}
.c-kv__btn .c-btn {
  width: min(100%, 270px);
}
.c-kv__note {
  margin-top: 1.7em;
  font-size: 0.875em;
  font-weight: 400;
  letter-spacing: 0;
}
.c-kv__note .c-note {
  color: inherit;
}
.c-kv__img {
  display: block;
  width: min(52.0295202952%, 564px);
  position: absolute;
  top: min(3.6603221083vw, 50px);
  right: min(-3.513909224vw, -48px);
  z-index: -1;
}

/*================================
  SCSS Information
----------------------------------
  File name: _list.scss
  Summary:   リスト用ファイル
  Author:    coder-ao
================================*/
/* テーブル */
.c-table {
  width: min(100%, 834px);
  margin: 0 auto;
  border: 1px solid #282828;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
.c-table th, .c-table td {
  padding: 3px 29px 4px;
  border-bottom: 1px solid #282828;
}
.c-table th {
  width: 36.9304556355%;
  padding: 3px 18px 4px;
  position: relative;
}
.c-table th::after {
  content: "";
  width: 1px;
  height: 65%;
  background: #282828;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-table th.--indent {
  text-indent: 0.6em;
}

/* リスト */
.c-list.--fit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
}
.c-list.--w554 {
  width: min(100%, 554px);
}
.c-list > li {
  padding-left: 1em;
  position: relative;
}
.c-list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-list.--fit > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-faqList__item {
  border-radius: 48px;
  overflow: hidden;
}
.c-faqList__item:not(:last-child) {
  margin-bottom: 16px;
}
.c-faqList__q, .c-faqList__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  background: #F4F4F4;
}
.c-faqList__q::before, .c-faqList__a::before {
  content: "Q";
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #4B6BD5;
}
.c-faqList__q {
  padding: 28px 48px 7px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6;
}
.c-faqList__a {
  padding: 8px 48px 28px;
}
.c-faqList__a .c-note {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.c-faqList__a::before {
  content: "A";
  color: #282828;
}

/*================================
  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: rgba(75, 107, 213, 0.35);
}

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

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

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

/*================================
  SCSS Information
----------------------------------
  File name: _wpFixedPage.scss
  Summary:   WPブロック用ファイル
  Author:    coder-ao
================================*/
.p-wpFixedPage, .p-wpSinglePage,
.edit-post-visual-editor .editor-styles-wrapper {
  overflow: hidden;
}
.p-wpFixedPage__title, .p-wpSinglePage__title,
.edit-post-visual-editor .editor-styles-wrapper__title {
  text-align: center;
}
.p-wpFixedPage__thumbnail, .p-wpSinglePage__thumbnail,
.edit-post-visual-editor .editor-styles-wrapper__thumbnail {
  display: block;
  width: 100%;
  border: 1px solid #282828;
  overflow: hidden;
}
.p-wpFixedPage__thumbnail img, .p-wpSinglePage__thumbnail img,
.edit-post-visual-editor .editor-styles-wrapper__thumbnail img {
  width: 100%;
}
.p-wpFixedPage__thumbnail:not(:last-child), .p-wpSinglePage__thumbnail:not(:last-child),
.edit-post-visual-editor .editor-styles-wrapper__thumbnail:not(:last-child) {
  margin: 0 auto 2em;
}
.p-wpFixedPage__body, .p-wpSinglePage__body,
.edit-post-visual-editor .editor-styles-wrapper__body {
  width: min(100%, 1016px);
  margin: 0 auto;
}
.p-wpFixedPage__body h2.wp-block-heading, .p-wpSinglePage__body h2.wp-block-heading,
.edit-post-visual-editor .editor-styles-wrapper__body h2.wp-block-heading {
  font-size: 2rem;
  font-weight: 400;
}
.p-wpFixedPage__body h2.wp-block-heading:not(:last-child), .p-wpSinglePage__body h2.wp-block-heading:not(:last-child),
.edit-post-visual-editor .editor-styles-wrapper__body h2.wp-block-heading:not(:last-child) {
  margin-bottom: 1rem;
}
.p-wpFixedPage__body h2.wp-block-heading:not(:first-child), .p-wpSinglePage__body h2.wp-block-heading:not(:first-child),
.edit-post-visual-editor .editor-styles-wrapper__body h2.wp-block-heading:not(:first-child) {
  margin-top: 2rem;
}
.p-wpFixedPage__body h3.wp-block-heading, .p-wpSinglePage__body h3.wp-block-heading,
.edit-post-visual-editor .editor-styles-wrapper__body h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 400;
}
.p-wpFixedPage__body h3.wp-block-heading:not(:last-child), .p-wpSinglePage__body h3.wp-block-heading:not(:last-child),
.edit-post-visual-editor .editor-styles-wrapper__body h3.wp-block-heading:not(:last-child) {
  margin-bottom: 1rem;
}
.p-wpFixedPage__body h3.wp-block-heading:not(:first-child), .p-wpSinglePage__body h3.wp-block-heading:not(:first-child),
.edit-post-visual-editor .editor-styles-wrapper__body h3.wp-block-heading:not(:first-child) {
  margin-top: 2rem;
}
.p-wpFixedPage__body h4.wp-block-heading, .p-wpSinglePage__body h4.wp-block-heading,
.edit-post-visual-editor .editor-styles-wrapper__body h4.wp-block-heading {
  font-size: 1.6rem;
  font-weight: 400;
}
.p-wpFixedPage__body h4.wp-block-heading:not(:last-child), .p-wpSinglePage__body h4.wp-block-heading:not(:last-child),
.edit-post-visual-editor .editor-styles-wrapper__body h4.wp-block-heading:not(:last-child) {
  margin-bottom: 1rem;
}
.p-wpFixedPage__body h4.wp-block-heading:not(:first-child), .p-wpSinglePage__body h4.wp-block-heading:not(:first-child),
.edit-post-visual-editor .editor-styles-wrapper__body h4.wp-block-heading:not(:first-child) {
  margin-top: 2rem;
}
.p-wpFixedPage__body h5.wp-block-heading, .p-wpSinglePage__body h5.wp-block-heading,
.edit-post-visual-editor .editor-styles-wrapper__body h5.wp-block-heading {
  font-size: 1.4rem;
}
.p-wpFixedPage__body h5.wp-block-heading:not(:last-child), .p-wpSinglePage__body h5.wp-block-heading:not(:last-child),
.edit-post-visual-editor .editor-styles-wrapper__body h5.wp-block-heading:not(:last-child) {
  margin-bottom: 1rem;
}
.p-wpFixedPage__body h5.wp-block-heading:not(:first-child), .p-wpSinglePage__body h5.wp-block-heading:not(:first-child),
.edit-post-visual-editor .editor-styles-wrapper__body h5.wp-block-heading:not(:first-child) {
  margin-top: 2rem;
}
.p-wpFixedPage__body h6.wp-block-heading, .p-wpSinglePage__body h6.wp-block-heading,
.edit-post-visual-editor .editor-styles-wrapper__body h6.wp-block-heading {
  font-size: 1.2em;
  font-weight: 400;
}
.p-wpFixedPage__body h6.wp-block-heading:not(:last-child), .p-wpSinglePage__body h6.wp-block-heading:not(:last-child),
.edit-post-visual-editor .editor-styles-wrapper__body h6.wp-block-heading:not(:last-child) {
  margin-bottom: 1rem;
}
.p-wpFixedPage__body h6.wp-block-heading:not(:first-child), .p-wpSinglePage__body h6.wp-block-heading:not(:first-child),
.edit-post-visual-editor .editor-styles-wrapper__body h6.wp-block-heading:not(:first-child) {
  margin-top: 2rem;
}
.p-wpFixedPage__body p:not([class]), .p-wpFixedPage__body ul:not([class]), .p-wpFixedPage__body ol:not([class]), .p-wpSinglePage__body p:not([class]), .p-wpSinglePage__body ul:not([class]), .p-wpSinglePage__body ol:not([class]),
.edit-post-visual-editor .editor-styles-wrapper__body p:not([class]),
.edit-post-visual-editor .editor-styles-wrapper__body ul:not([class]),
.edit-post-visual-editor .editor-styles-wrapper__body ol:not([class]) {
  margin-bottom: 1rem;
}
.p-wpFixedPage__body .cp_embed_wrapper, .p-wpSinglePage__body .cp_embed_wrapper,
.edit-post-visual-editor .editor-styles-wrapper__body .cp_embed_wrapper {
  width: 100%;
  padding-top: 500px;
  position: relative;
  overflow: hidden;
}
.p-wpFixedPage__body .cp_embed_wrapper iframe, .p-wpSinglePage__body .cp_embed_wrapper iframe,
.edit-post-visual-editor .editor-styles-wrapper__body .cp_embed_wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

figure.wp-block-image {
  border: 1px solid #282828;
  overflow: hidden;
}

.wp-block-gallery figure.wp-block-image {
  width: 100%;
}
.wp-block-gallery figure.wp-block-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*================================
  SCSS post
----------------------------------
  File name: _wpPost.scss
  Summary:   WP投稿用ファイル
  Author:    coder-ao
================================*/
.p-post {
  width: min(100%, 1016px);
  margin: 0 auto;
}
.p-post__pager {
  margin-top: 50px;
}

.c-categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.c-categoryList__item > a {
  border-color: #282828;
  background: #fff;
  color: #282828;
}
.c-categoryList__item > a:hover, .c-categoryList__item > a.is-current {
  border-color: #4B6BD5;
  background: #4B6BD5;
  color: #fff;
}

.c-postList__item {
  border-bottom: 1px solid rgba(75, 107, 213, 0.35);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4444444444;
}
.c-postList__link {
  display: block;
  padding: 20px 0 20px;
  position: relative;
}
.c-postList__link:not(.--none) {
  padding-right: 30px;
}
.c-postList__link:not(.--none)::after {
  content: "";
  width: 15px;
  height: 18px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #4B6BD5;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-postList__link:not(.--none):hover {
  color: #4B6BD5;
}
.c-postList__link:not(.--none):hover::after {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}
.c-postList__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.c-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3em auto 0;
  line-height: 1;
  text-align: center;
  position: relative;
}
.c-pager .page-numbers:not(.prev):not(.next) {
  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: 30px;
  height: 30px;
  margin: 0 5px;
  border: 1px solid #282828;
  border-radius: 5px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: border, background, color;
  transition-property: border, background, color;
}
.c-pager .page-numbers:not(.prev):not(.next).current, .c-pager .page-numbers:not(.prev):not(.next):hover {
  border-color: #4B6BD5;
  background: #4B6BD5;
  color: #fff;
}
.c-pager .page-numbers:not(.prev):not(.next).dots {
  width: auto;
  border: none;
  cursor: inherit;
}
.c-pager .page-numbers.prev, .c-pager .page-numbers.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1em;
  margin-right: 2em;
  font-weight: 500;
  color: #4B6BD5;
  text-transform: capitalize;
  position: relative;
}
.c-pager .page-numbers.prev::after, .c-pager .page-numbers.next::after {
  content: "";
  width: 8px;
  height: 10px;
  background: #4B6BD5;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-pager .page-numbers.prev:hover::after, .c-pager .page-numbers.next:hover::after {
  -webkit-transform: translate(-5px, 0);
          transform: translate(-5px, 0);
}
.c-pager .page-numbers.next {
  padding: 0 1em 0 0;
  margin: 0 0 0 2em;
}
.c-pager .page-numbers.next::after {
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  left: auto;
  right: 0;
}
.c-pager .page-numbers.next:hover::after {
  -webkit-transform: translate(5px, 0);
          transform: translate(5px, 0);
}

.p-wpSinglePage {
  width: min(100%, 1016px);
  margin: 0 auto;
  color: #282828;
}
.p-wpSinglePage__head .c-heading:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-wpSinglePage__head .c-headingBorder:not(:last-child) {
  margin-bottom: 1em;
}
.p-wpSinglePage__dataBox {
  margin-bottom: 1em;
}
.p-wpSinglePage__body p:not([class]) {
  margin: 1.5em 0;
}
.p-wpSinglePage__body p:not([class]):first-of-type {
  margin-top: 0;
}
.p-wpSinglePage__body p:not([class]):last-of-type {
  margin-bottom: 0;
}
.p-wpSinglePage__body a:not([class]):hover {
  color: #4B6BD5;
}
.p-wpSinglePage__pager {
  margin-top: 50px;
}

.c-pagerSingle {
  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: 2em;
  margin: 0 auto;
}
.c-pagerSingle__item.--prev, .c-pagerSingle__item.--next {
  width: 20em;
}
.c-pagerSingle__item.--prev:last-child {
  margin-right: auto;
}
.c-pagerSingle__item.--next:first-child {
  margin-left: auto;
}
.c-pagerSingle__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}
.c-pagerSingle__item.--prev .c-pagerSingle__link, .c-pagerSingle__item.--next .c-pagerSingle__link {
  left: 0;
  padding-left: 1em;
  position: relative;
}
.c-pagerSingle__item.--prev .c-pagerSingle__link::before, .c-pagerSingle__item.--next .c-pagerSingle__link::before {
  content: "";
  width: 8px;
  height: 10px;
  background: #4B6BD5;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-pagerSingle__item.--prev .c-pagerSingle__link:hover, .c-pagerSingle__item.--next .c-pagerSingle__link:hover {
  color: #4B6BD5;
}
.c-pagerSingle__item.--prev .c-pagerSingle__link:hover::before, .c-pagerSingle__item.--next .c-pagerSingle__link:hover::before {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.c-pagerSingle__item.--next .c-pagerSingle__link {
  padding: 0 1em 0 0;
  left: auto;
  right: 0;
}
.c-pagerSingle__item.--next .c-pagerSingle__link::before {
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  left: auto;
  right: 0;
}
.c-pagerSingle__item.--next .c-pagerSingle__link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/*****************************************
* ページごと
*****************************************/
/*================================
  SCSS Information
----------------------------------
  File name: _top.scss
  Summary:   TOPページ用ファイル
  Author:    coder-ao
================================*/
.p-problem .c-cardList {
  margin-top: 2.7em;
}

.c-problem__title {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6071428571;
}
.c-problem__title > span {
  -webkit-box-shadow: 0 -0.2857142857em rgba(75, 107, 213, 0.35) inset;
          box-shadow: 0 -0.2857142857em rgba(75, 107, 213, 0.35) inset;
}
.c-problem__summary {
  margin-top: 1.1em;
  line-height: 2;
}
.c-problem__img {
  display: block;
  width: min(100%, 276px);
  margin: 2.5em auto 0;
}

.c-solution {
  padding: 0 1rem;
  margin: 1.5em auto 2.25em;
  font-size: clamp(26px, 2.9282576867vw, 40px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
}
.c-solution > span {
  background: #4B6BD5;
  color: #fff;
}

.c-planList {
  counter-reset: number;
}
.c-planList__item {
  counter-increment: number;
  border-radius: 1.5em;
  background: #F4F4F4;
  overflow: hidden;
}
.c-planList__item:not(:last-child) {
  margin-bottom: 2em;
}
.c-planList__head {
  padding: 30px 1rem 21px;
  background: #fff;
}
.c-planList__headInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.c-planList__headInner::before {
  content: counter(number, decimal-leading-zero);
  -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: 2.8em;
  height: 1.8em;
  margin-top: 17px;
  border-radius: 2em;
  font-family: "Jost", sans-serif;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0;
}
.c-planList__headInner.--basic::before {
  background: #8EE4ED;
}
.c-planList__headInner.--lite::before {
  background: #91C8F2;
}
.c-planList__headInner.--full::before {
  background: #AAAAF2;
}
.c-planList__headInner, .c-planList__contents {
  width: min(100%, 988px);
  margin: 0 auto;
}
.c-planList__plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 32px;
}
.c-planList__planName {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: clamp(26px, 2.9282576867vw, 40px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6;
}
.c-planList__planSummary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}
.c-planList__planSummary > span {
  -webkit-box-shadow: 0 -10px rgba(75, 107, 213, 0.35) inset;
          box-shadow: 0 -10px rgba(75, 107, 213, 0.35) inset;
}
.c-planList__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 7px;
  letter-spacing: 0.03em;
}
.c-planList__label .u-note {
  margin-left: auto;
  text-align: right;
}
.c-planList__container {
  padding: 27px 1rem 37px;
  font-size: 1.125em;
  line-height: 2;
}
.c-planList__contents .c-note {
  margin-top: 1.5em;
}

.p-plan .c-note:not(:first-child) {
  margin-top: 32px;
}
.p-plan .c-btn {
  margin: 64px auto 0;
}

.c-tablePlan {
  border-collapse: separate;
  border-spacing: 4px;
  text-align: center;
}
.c-tablePlan__th {
  padding: 11px 5px 9px;
  border-radius: 16px 16px 0 0;
  font-size: 20px;
  font-weight: 600;
}
.c-tablePlan__th.--basic {
  background: #8EE4ED;
}
.c-tablePlan__th.--lite {
  background: #91C8F2;
}
.c-tablePlan__th.--full {
  background: #AAAAF2;
}
.c-tablePlan__th small {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.c-tablePlan__td {
  padding: 5px 5px 3px;
  font-size: 24px;
  font-weight: 400;
}
.c-tablePlan__td.--small {
  padding: 40px 5px;
  font-size: 16px;
  line-height: 1.625;
}
.c-tablePlan__td:nth-child(2) {
  background: rgba(142, 228, 237, 0.2);
}
.c-tablePlan__td:nth-child(3) {
  background: rgba(145, 200, 242, 0.2);
}
.c-tablePlan__td:nth-child(4) {
  background: rgba(170, 170, 242, 0.2);
}
.c-tablePlan__td--label {
  background: #fff;
  line-height: 1.625;
  font-weight: 500;
}

.p-benefits {
  padding: 96px 0;
}
.p-benefits .c-cardList.--plan .c-cardList__item {
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
  background: #F4F4F4;
}

.c-plan {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 28px;
  height: 100%;
}
.c-plan__title {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  padding: 0 28px;
  margin: 0 auto;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
.c-plan__title.--basic {
  background: #8EE4ED;
}
.c-plan__title.--lite {
  background: #91C8F2;
}
.c-plan__title.--full {
  background: #AAAAF2;
}
.c-plan__catch {
  font-size: clamp(20px, 2.0497803807vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6071428571;
}
.c-plan__catch > span {
  -webkit-box-shadow: 0 -8px rgba(75, 107, 213, 0.35) inset;
          box-shadow: 0 -8px rgba(75, 107, 213, 0.35) inset;
}
.c-plan__img {
  display: block;
  width: min(100%, 276px);
  margin: 0 auto;
}

.p-voice .c-cardList {
  margin-top: 48px;
}
.p-voice .c-btn {
  margin: 46px auto 0;
}

.c-voice__img {
  display: block;
  width: min(100%, 276px);
  aspect-ratio: 276/184;
  margin: 0 auto;
}
.c-voice__label {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  padding: 0 16px;
  margin-top: 28px;
  border-radius: 18px;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.c-voice__label.--basic {
  background: #8EE4ED;
}
.c-voice__label.--lite {
  background: #91C8F2;
}
.c-voice__label.--full {
  background: #AAAAF2;
}
.c-voice__txt {
  margin-top: 16px;
}

.p-faq {
  padding: 96px 0;
}
.p-faq .c-faqList {
  margin-top: 48px;
}
@media screen and (max-width:1100px) {
  input[type=text],
  input[type=email],
  input.zipCode01,
  input.zipCode02,
  textarea,
  select {
    font-size: inherit;
  }
  textarea {
    height: 187px;
  }
  textarea.address {
    height: 40px;
  }
  .l-header {
    height: 50px;
  }
  .l-header__head {
    height: 100%;
    padding-right: calc(50px + 1em);
    border-bottom: 1px solid #ECECEC;
  }
  .l-header__headRight {
    display: none;
  }
  .l-header__nav {
    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;
    gap: 20px;
    font-size: inherit;
    font-weight: inherit;
  }
  .c-tableScroll {
    overflow-x: scroll;
  }
  .c-table {
    font-size: 16px;
    line-height: 1.625;
  }
  .c-table th, .c-table td {
    padding: 3px 5px 4px;
  }
  .c-table th {
    width: 8em;
    padding: 3px 5px 4px;
    font-weight: 500;
  }
  .c-list.--fit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-list.--fit > li:not(:last-child) {
    margin-bottom: 1px;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: inline-block;
  }
  .u-map {
    aspect-ratio: 303/152;
  }
  .p-wpFixedPage__thumbnail:not(:last-child), .p-wpSinglePage__thumbnail:not(:last-child),
  .edit-post-visual-editor .editor-styles-wrapper__thumbnail:not(:last-child) {
    margin: 0 auto 4.5em;
  }
  .p-post {
    width: 100%;
    padding: 0;
  }
  .p-post__pager {
    margin-top: 100px;
  }
  .c-categoryList {
    gap: 15px;
  }
  .c-categoryList__item > a {
    padding: 0.4em 1.35em;
    border-radius: 10px;
  }
  .c-postList__item {
    font-size: 16px;
    line-height: 1.625;
  }
  .c-postList__link {
    padding: 8px 0;
  }
  .c-postList__link:not(.--none)::after {
    width: 9px;
    height: 10px;
    top: 43px;
    right: 10px;
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  .c-postList__link:not(.--none):hover::after {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  .c-postList__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-wpSinglePage {
    width: 100%;
  }
  .c-pagerSingle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-pagerSingle__item.--next {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .c-planList__headInner::before {
    margin-top: 0.3em;
  }
}
@media screen and (max-width:900px) {
  .p-contact {
    -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;
  }
  .p-contact .c-headingEnJa__en {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-contact {
    text-align: center;
  }
  .c-contact__btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .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-kv__btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-faqList__q {
    padding: 28px 1rem 7px;
  }
  .c-faqList__a {
    padding: 8px 1rem 28px;
  }
  .c-plan {
    text-align: center;
  }
  .c-plan__catch {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width:576px) {
  .c-cardList {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-planList__headInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-planList__plan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5em 2em;
  }
}
@media screen and (max-width:768px) {
  .c-kv__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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-kv__body {
    width: 100%;
    text-align: center;
  }
  .c-kv__body .c-headingEnJa__en {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-kv__summary {
    margin: 0.7em auto 0;
  }
  .c-kv__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-kv__note .c-note {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-kv__img {
    width: 80%;
    margin-top: 2em;
    position: relative;
    top: auto;
    right: auto;
  }
}
/*# sourceMappingURL=map/style.css.map */
