@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 {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 375px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.25vw, 16px);
  font-weight: 400;
  line-height: calc(29 / 16);
  letter-spacing: calc(0 * 0.001em);
  text-align: left;
  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%;
  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: #202329;
}
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: #202329;
}
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: #202329;
}
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: #202329;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input.zipCode01::placeholder,
input.zipCode02::placeholder,
textarea::placeholder,
select::placeholder {
  color: #202329;
}
@media screen and (max-width:768px) {
  input[type=text],
  input[type=email],
  input.zipCode01,
  input.zipCode02,
  textarea,
  select {
    font-size: inherit;
  }
}

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

textarea {
  width: 100%;
  height: 210px;
  padding: 5px 8px;
  resize: vertical;
}
textarea.address {
  height: 95px;
}
@media screen and (max-width:768px) {
  textarea {
    height: 187px;
  }
  textarea.address {
    height: 40px;
  }
}

mark {
  display: inline;
  background: none;
  font-style: normal;
  color: #FFF200;
}

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: #1D3C8E;
  color: #fff;
}

::selection {
  background: #1D3C8E;
  color: #fff;
}

/*================================
  SCSS Information
----------------------------------
  File name: _header.scss
  Summary:   ヘッダー用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	header
-------------------*/
/*================================
  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 0 10px 10px;
  background: #1D3C8E;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #fff;
  text-align: center;
  top: 0;
  right: 21px;
  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;
}
@media screen and (max-width:1180px) {
  .c-drawerBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-drawer {
  display: none;
  width: max(100%, 100vw);
  height: min(var(--js-viewHeight), 100vh);
  height: max(100%, 100dvh);
  background: #1D3C8E;
  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;
}
@media screen and (max-width:1180px) {
  .l-drawer {
    display: block;
  }
}
.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 21px 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%;
}
@media screen and (max-width:1180px) {
  .l-header .l-nav {
    display: none;
  }
}
.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;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1428571429;
}
@media screen and (max-width:1180px) {
  .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;
  }
}
.l-nav__listItem {
  height: 100%;
}
.l-nav__listItem:not(:last-child) {
  border-right: 1px solid #fff;
}
.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%;
  padding: 0 17px;
  position: relative;
}
.l-nav__listItem > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 3px;
  background: #fff;
  -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;
}
.l-nav__listItem:last-child > a {
  padding-right: 0;
}
@media screen and (max-width:768px) {
  .l-nav__listItem:not(:last-child) {
    border-right: none;
  }
}

/*================================
  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__section {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}
.l-main__section.--lightgray {
  background: #f9f9f9;
}

/*================================
  SCSS Information
----------------------------------
  File name: _footer.scss
  Summary:   フッター用ファイル
  Author:    coder-ao
================================*/
/*-------------------
	footer
-------------------*/
/*================================
  SCSS Information
----------------------------------
  File name: _versatility.scss
  Summary:   汎用ファイル
  Author:    coder-ao
================================*/
.c-inner {
  width: min(100% - 42px, 1120px);
  margin: 0 auto;
}

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

.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: 21px;
}
.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;
}
@media screen and (max-width:768px) {
  .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 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, var(--w));
}
.c-imgTxt__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: min(100%, var(--w));
}
.c-imgTxt__img.--full {
  width: 100%;
}

.c-outlineBlock .c-inner {
  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: 24px 64px;
}
.c-outlineBlock.--column .c-inner {
  -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;
  text-align: center;
}
@media screen and (max-width:768px) {
  .c-outlineBlock.--column .c-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.c-outlineBlock.--reverse .c-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width:1180px) {
  .c-outlineBlock .c-inner {
    -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-outlineBlock.--reverse .c-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-outlineBlock__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(47.1428571429%, 528px);
  margin-left: -80px;
}
.c-outlineBlock.--reverse .c-outlineBlock__img {
  margin: 0 -80px 0 0;
}
.c-outlineBlock.--column .c-outlineBlock__img {
  width: min(100%, 928px);
  margin: 0 auto;
  border-radius: 12px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (max-width:1180px) {
  .c-outlineBlock__img {
    width: min(100%, 528px);
    margin-left: 0;
  }
  .c-outlineBlock.--reverse .c-outlineBlock__img {
    margin: 0;
  }
}
@media screen and (max-width:768px) {
  .c-outlineBlock.--column .c-outlineBlock__img {
    padding: 10px;
  }
}
.c-outlineBlock__container {
  padding-top: 80px;
}
.c-outlineBlock.--column .c-outlineBlock__container {
  padding-top: 0;
}
@media screen and (max-width:1180px) {
  .c-outlineBlock__container {
    padding-top: 0;
  }
}
.c-outlineBlock__text:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width:768px) {
  .c-outlineBlock__text:not(:first-child) {
    margin-top: 24px;
  }
}

.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(51, 51, 51, 0.7);
}
.c-note::before {
  content: "※";
  display: block;
}

.c-heading {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  color: #1D3C8E;
}
@media screen and (max-width:768px) {
  .c-heading {
    font-size: 24px;
    line-height: 1.75;
  }
}
.c-heading__sub {
  display: block;
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7777777778;
  color: #333;
}
.c-heading__sub mark {
  background: #FFF200;
  color: #333;
  line-height: inherit;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .c-heading__sub {
    margin-bottom: 12px;
    font-size: 18px;
  }
}

.c-headingLine {
  padding-left: 24px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  color: #1D3C8E;
  position: relative;
}
.c-headingLine::before, .c-headingLine::after {
  content: "";
  width: 8px;
  height: 37.5%;
  background: #4EB233;
  position: absolute;
  top: 6px;
  left: 0;
}
.c-headingLine::after {
  background: #1B7FC4;
  top: calc(9px + 37.5%);
}
@media screen and (max-width:768px) {
  .c-headingLine {
    padding-left: 20px;
    font-size: 22px;
    line-height: 1.5909090909;
  }
  .c-headingLine::before, .c-headingLine::after {
    width: 6px;
    height: 44.776119403%;
    top: 0;
  }
  .c-headingLine::after {
    top: calc(5px + 44.776119403%);
  }
}

a.c-btn,
button.c-btn,
input.c-btn,
div.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%, 256px);
  padding: 10px 1em 12px;
  border: 1px solid #4EB233;
  border-radius: 4px;
  background: #4EB233;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
a.c-btn > span,
button.c-btn > span,
input.c-btn > span,
div.c-btn > span {
  position: relative;
  z-index: 1;
}
a.c-btn:hover,
button.c-btn:hover,
input.c-btn:hover,
div.c-btn:hover {
  background: #fff;
  color: #4EB233;
}
a.c-btn.--dl,
button.c-btn.--dl,
input.c-btn.--dl,
div.c-btn.--dl {
  border-color: #1B7FC4;
  background-color: #1B7FC4;
}
a.c-btn.--dl:hover,
button.c-btn.--dl:hover,
input.c-btn.--dl:hover,
div.c-btn.--dl:hover {
  background: #fff;
  color: #1B7FC4;
}
@media screen and (max-width:900px) {
  a.c-btn,
  button.c-btn,
  input.c-btn,
  div.c-btn {
    font-size: 1rem;
  }
}

.c-linkTag {
  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: 2px 8px 4px;
  border: 1px solid #1D3C8E;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6875;
  color: #1D3C8E !important;
}
.c-linkTag:hover {
  background: #1D3C8E;
  color: #fff !important;
}

.c-cta {
  width: min(100%, 928px);
  padding: 80px 21px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:768px) {
  .c-cta {
    padding: 40px 21px;
  }
}
.c-cta__text {
  margin-top: 30px;
}
@media screen and (max-width:768px) {
  .c-cta__text {
    margin-top: 24px;
    text-align: left;
  }
}
.c-cta__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;
  gap: 10px 32px;
  margin-top: 61px;
}
.c-cta__btn .c-btn {
  width: min(100%, 352px);
  padding: 19px 1em 18px;
}
@media screen and (max-width:768px) {
  .c-cta__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
  }
  .c-cta__btn .c-btn {
    width: 100%;
    padding: 7px 1em 10px;
  }
}

.c-fixedBlock {
  width: 200px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.c-fixedBlock.is-fixed {
  opacity: 1;
  pointer-events: initial;
}
@media screen and (max-width:768px) {
  .c-fixedBlock {
    width: 100%;
    height: 95px;
  }
}
.c-fixedBlock__cta .c-btn {
  font-size: 14px;
}
.c-fixedBlock__cta .c-btn > 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: 8px;
}
.c-fixedBlock__cta .c-btn > span::before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  -webkit-mask: url(../../img/common/icon_dl.svg) center no-repeat;
          mask: url(../../img/common/icon_dl.svg) center no-repeat;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  background: #fff;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-fixedBlock__cta .c-btn.--dl {
  border-color: #fff;
}
.c-fixedBlock__cta .c-btn.--dl:hover > span::before {
  background: #1B7FC4;
}
.c-fixedBlock__cta .c-btn.--contact {
  margin-top: 6px;
}
.c-fixedBlock__cta .c-btn.--contact > span {
  gap: 12px;
}
.c-fixedBlock__cta .c-btn.--contact > span::before {
  width: 13px;
  height: 10px;
  -webkit-mask-image: url(../../img/common/icon_contact.svg);
          mask-image: url(../../img/common/icon_contact.svg);
}
.c-fixedBlock__cta .c-btn.--contact:hover > span::before {
  background: #4EB233;
}
@media screen and (max-width:768px) {
  .c-fixedBlock__cta {
    display: grid;
    grid-template-columns: 1fr 27.2vw;
  }
  .c-fixedBlock__cta .c-btn.--contact {
    padding: 10.5px;
    margin: 0;
    border-radius: 0;
    font-size: 12px;
  }
  .c-fixedBlock__cta .c-btn.--contact > span {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .c-fixedBlock__cta .c-btn.--contact > span::before {
    width: 15px;
    height: 12px;
  }
}

.c-fixedCta {
  padding: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#1D3C8E), to(#0F1E47));
  background: linear-gradient(to right, #1D3C8E 0%, #0F1E47 100%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.5833333333;
  color: #fff;
  text-align: center;
}
@media screen and (max-width:768px) {
  .c-fixedCta {
    background: -webkit-gradient(linear, left top, right top, from(rgba(29, 60, 142, 0.9)), to(rgba(15, 30, 71, 0.9)));
    background: linear-gradient(to right, rgba(29, 60, 142, 0.9) 0%, rgba(15, 30, 71, 0.9) 100%);
    line-height: 1.5;
  }
}
.c-fixedCta__label {
  color: inherit;
}
.c-fixedCta__btn {
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .c-fixedCta__btn {
    margin-top: 6px;
  }
  .c-fixedCta__btn .c-btn.--dl {
    width: min(100%, 233px);
    padding: 7px 1em 6px;
    margin: 0 auto;
    font-size: 12px;
  }
}

.c-pageTop {
  display: block;
  width: 50px;
  height: 50px;
  margin: 30px 30px 0 auto;
  border: none;
  background: none;
}
@media screen and (max-width:768px) {
  .c-pageTop {
    display: none;
  }
}

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

.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: #D8D8D8;
}
.c-faqList__q::before, .c-faqList__a::before {
  content: "Q";
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #1D3C8E;
}
.c-faqList__q {
  padding: 28px 48px 7px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width:900px) {
  .c-faqList__q {
    padding: 28px 21px 7px;
  }
}
.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: #202329;
}
@media screen and (max-width:900px) {
  .c-faqList__a {
    padding: 8px 21px 28px;
  }
}

/*================================
  SCSS Information
----------------------------------
  File name: _kv.scss
  Summary:   KV用ファイル
  Author:    coder-ao
================================*/
.p-kv {
  width: 100%;
  height: min(37.5vw, 480px);
  padding: 48px 21px 70px;
  background: url(../../img/top/kv_bg.jpg) top center no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
@media screen and (max-width:1180px) {
  .p-kv {
    height: auto;
  }
}

.c-kv {
  width: min(100%, 79.0625vw);
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width:1180px) {
  .c-kv {
    width: 100%;
  }
}
.c-kv__catch {
  color: inherit;
}
.c-kv__catch--sub {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.c-kv__catch--sub::after {
  content: "";
  width: max(141.7322834646%, 56.25vw);
  height: 100%;
  opacity: 0.45;
  background: -webkit-gradient(linear, left top, right top, from(#339CFF), color-stop(40%, #A6D4FF), to(rgba(180, 237, 166, 0)));
  background: linear-gradient(to right, #339CFF 0%, #A6D4FF 40%, rgba(180, 237, 166, 0) 100%);
  position: absolute;
  top: 0;
  right: max(21px, -6.25vw);
  z-index: -1;
}
.c-kv__catch--main {
  display: block;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5909090909;
}
.c-kv__catch--main em {
  background: linear-gradient(135deg, #4DC6FF 0%, #77E65C 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font-style: normal;
  color: transparent;
}
@media screen and (max-width:768px) {
  .c-kv__catch--sub {
    font-size: 20px;
  }
  .c-kv__catch--main {
    font-size: 34px;
  }
}
.c-kv__txt {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: inherit;
}
.c-kv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
@media screen and (max-width:768px) {
  .c-kv__btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-kv__btn .c-btn {
    width: 100%;
  }
}

/*================================
  SCSS Information
----------------------------------
  File name: _slider.scss
  Summary:   スライダー用ファイル
  Author:    coder-ao
================================*/
.c-sliderWrap {
  width: min(100%, 1182px);
  padding: 0 21px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:576px) {
  .c-sliderWrap {
    padding: 0 21px 61px;
  }
}

.c-slider {
  width: min(100% - 72px - 42px, 978px);
  margin: 0 auto;
  position: initial;
}
@media screen and (max-width:576px) {
  .c-slider {
    width: 100%;
  }
}
.c-slider__btn {
  width: 36px;
  aspect-ratio: 1/1;
}
.c-slider__btn::after {
  display: none;
}
.c-slider__btn.--prev {
  left: 21px;
}
.c-slider__btn.--next {
  right: 21px;
}
@media screen and (max-width:576px) {
  .c-slider__btn {
    top: auto;
    bottom: 0;
  }
}

/*================================
  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;
}

@media screen and (max-width:768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: inline-block;
  }
}
.u-notContent {
  color: #D8D8D8;
}

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

.u-map {
  aspect-ratio: 496/250;
}
.u-map > iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:768px) {
  .u-map {
    aspect-ratio: 303/152;
  }
}

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

/*****************************************
* ページごと
*****************************************/
/*================================
  SCSS Information
----------------------------------
  File name: _top.scss
  Summary:   TOPページ用ファイル
  Author:    coder-ao
================================*/
.p-topFirst {
  padding: 80px 0;
  background: url(../../img/top/security_bg.jpg) bottom center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width:768px) {
  .p-topFirst {
    padding: 40px 0;
  }
}
.p-topFirst__foot::before {
  content: "";
  display: block;
  width: 38px;
  aspect-ratio: 38/44;
  margin: 34px auto 41px;
  background: url(../../img/common/arrow_down.svg) top center no-repeat;
  background-size: contain;
}
@media screen and (max-width:768px) {
  .p-topFirst__foot::before {
    width: 28px;
    margin: 39px auto 16px;
  }
}

.p-topLineup {
  padding: 52px 0 40px;
}
@media screen and (max-width:768px) {
  .p-topLineup {
    padding: 40px 0;
  }
}
.p-topLineup__menu {
  margin-top: 62px;
}
.p-topLineup__menu .c-fixedMenuColumn {
  margin-top: 64px;
}
@media screen and (max-width:768px) {
  .p-topLineup__menu {
    margin-top: 32px;
  }
}

.c-lineupMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px 32px;
}
@media screen and (max-width:1180px) {
  .c-lineupMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-lineupMenu__container {
  padding: 12px 20px 24px;
  border-top: 4px solid #4EB233;
  background: #f9f9f9;
}
.c-lineupMenu__container.--security {
  border-color: #1B7FC4;
}
@media screen and (max-width:768px) {
  .c-lineupMenu__container {
    padding: 20px;
  }
}
.c-lineupMenu__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: #1D3C8E;
  text-align: center;
}
.c-lineupMenu__title::before {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../../img/common/icon_finance.svg) center no-repeat;
  background-size: auto 100%;
}
.c-lineupMenu__title.--security::before {
  background-image: url(../../img/common/icon_guard.svg);
}
@media screen and (max-width:768px) {
  .c-lineupMenu__title {
    font-size: 19px;
  }
  .c-lineupMenu__title::before {
    width: 28px;
  }
}
.c-lineupMenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
@media screen and (max-width:1180px) {
  .c-lineupMenu__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width:768px) {
  .c-lineupMenu__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
}
.c-lineupMenu__listItem {
  padding: 16px 16px 10px;
  outline: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  color: inherit !important;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: outline;
  transition-property: outline;
}
.c-lineupMenu__listItem::after {
  content: "";
  display: block;
  width: 19px;
  height: 11px;
  margin: 13px auto 0;
  background: url(../../img/common/arrow_down-contact.svg) center no-repeat;
  background-size: contain;
}
.c-lineupMenu__list.--security .c-lineupMenu__listItem::after {
  background-image: url(../../img/common/arrow_down-dl.svg);
}
.c-lineupMenu__listItem:hover {
  outline: 2px solid #4EB233;
}
.c-lineupMenu__list.--security .c-lineupMenu__listItem:hover {
  outline-color: #1B7FC4;
}
.c-lineupMenu__listNum {
  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: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #4EB233;
}
.c-lineupMenu__listNum > 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;
  width: 30px;
  height: 20px;
  padding: 2px 0 0;
  border-radius: 4px;
  background: #4EB233;
  font-size: 14px;
  color: #fff;
}
.c-lineupMenu__list.--security .c-lineupMenu__listNum {
  color: #1B7FC4;
}
.c-lineupMenu__list.--security .c-lineupMenu__listNum > span {
  background: #1B7FC4;
}
.c-lineupMenu__img {
  display: block;
  width: min(100%, 120px);
  margin: 3px auto 11px;
}
.c-lineupMenu__label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.c-fixedMenuColumn {
  display: grid;
  grid-template-columns: 256px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 32px;
}
@media screen and (max-width:1180px) {
  .c-fixedMenuColumn {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-fixedMenuColumn__menu {
  padding-top: 32px;
  position: sticky;
  top: var(--js-headerHeight);
}
@media screen and (max-width:1180px) {
  .c-fixedMenuColumn__menu {
    display: none;
  }
}

.c-fixedMenu {
  padding-left: 12px;
  border-left: 4px solid #4EB233;
}
.c-fixedMenu.--security {
  border-color: #1B7FC4;
}
.c-fixedMenu + .c-fixedMenu {
  margin-top: 32px;
}
.c-fixedMenu__label {
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #D8D8D8;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  color: #1D3C8E;
}
.c-fixedMenu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6875;
  color: rgba(51, 51, 51, 0.6) !important;
}
.c-fixedMenu__link + .c-fixedMenu__link {
  margin-top: 12px;
}
.c-fixedMenu__link > 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;
  width: 30px;
  height: 20px;
  padding: 2px 0 0;
  margin-top: 4px;
  border-radius: 4px;
  background: rgba(51, 51, 51, 0.4);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}
.c-fixedMenu__link.is-current {
  color: #333 !important;
}
.c-fixedMenu__link.is-current > span {
  background: #4EB233;
}
.c-fixedMenu.--security .c-fixedMenu__link.is-current > span {
  background: #1B7FC4;
}

.c-serviceBlock {
  border-top: 4px solid #4EB233;
}
.c-serviceBlock + .c-serviceBlock {
  margin-top: 64px;
}
.c-serviceBlock.--security {
  border-color: #1B7FC4;
}
@media screen and (max-width:768px) {
  .c-serviceBlock + .c-serviceBlock {
    margin-top: 40px;
  }
}
.c-serviceBlock__head {
  padding: 32px 40px 40px;
  background: #f9f9f9;
}
@media screen and (max-width:768px) {
  .c-serviceBlock__head {
    padding: 20px;
  }
}
.c-serviceBlock__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  color: #1D3C8E;
}
.c-serviceBlock__heading::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../../img/common/icon_finance.svg) center no-repeat;
  background-size: auto 100%;
}
.c-serviceBlock__heading.--security::before {
  background-image: url(../../img/common/icon_guard.svg);
}
@media screen and (max-width:768px) {
  .c-serviceBlock__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 22px;
  }
}
.c-serviceBlock__summary {
  margin-top: 12px;
}
.c-serviceBlock__container {
  padding: 40px;
  border-radius: 0 0 16px 16px;
  background: #4EB233;
}
.c-serviceBlock.--security .c-serviceBlock__container {
  background: #1B7FC4;
}
@media screen and (max-width:768px) {
  .c-serviceBlock__container {
    padding: 20px;
  }
}

.c-serviceList__item {
  padding: 20px 40px 40px;
  border-radius: 12px;
  background: #fff;
}
.c-serviceList__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-serviceList__item {
    padding: 20px;
  }
  .c-serviceList__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.c-serviceList__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: 0 0 13px;
  border-bottom: 2px solid #D8D8D8;
  position: relative;
}
.c-serviceList__head::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #4EB233;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.c-serviceList.--security .c-serviceList__head::after {
  background-color: #1B7FC4;
}
@media screen and (max-width:768px) {
  .c-serviceList__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 18px;
  }
}
.c-serviceList__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 16px;
}
.c-serviceList__title small {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #4EB233;
}
.c-serviceList__title small 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;
  width: 30px;
  height: 20px;
  padding: 2px 0 0;
  border-radius: 4px;
  background: #4EB233;
  font-size: 14px;
  color: #fff;
}
.c-serviceList.--security .c-serviceList__title small {
  color: #1B7FC4;
}
.c-serviceList.--security .c-serviceList__title small span {
  background: #1B7FC4;
}
.c-serviceList__title strong {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3571428571;
}
@media screen and (max-width:768px) {
  .c-serviceList__title {
    -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;
    width: 100%;
  }
  .c-serviceList__title small {
    margin: 0;
  }
  .c-serviceList__title strong {
    font-size: 20px;
  }
}
.c-serviceList__icon {
  width: min(100%, 120px);
}
.c-serviceList__container {
  margin-top: 22px;
}
.c-serviceList__product {
  display: grid;
  grid-template-columns: 1fr 204px;
  gap: 16px 32px;
}
@media screen and (max-width:768px) {
  .c-serviceList__product {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-serviceList__productName strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6111111111;
  color: #1D3C8E;
}
.c-serviceList__productName h4 {
  margin-top: 9px;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #1D3C8E;
}
.c-serviceList__productName em {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.0714285714;
}
@media screen and (max-width:768px) {
  .c-serviceList__productName strong {
    font-size: 16px;
  }
  .c-serviceList__productName h4 {
    font-size: 22px;
  }
  .c-serviceList__productName em {
    margin-top: 5px;
    line-height: 1.5714285714;
  }
}
@media screen and (max-width:768px) {
  .c-serviceList__productLogo {
    width: min(100%, 224px);
    margin: 0 auto;
  }
}
.c-serviceList__text {
  margin-top: 16px;
}
.c-serviceList__figure {
  display: block;
  margin: 28px auto 0;
}
@media screen and (max-width:768px) {
  .c-serviceList__figure {
    margin: 20px auto 0;
  }
}

.p-topCase {
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
}
.p-topCase::after {
  content: "";
  width: 100%;
  height: calc(100% - 40px);
  background: #f9f9f9;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .p-topCase {
    padding: 40px 0;
  }
  .p-topCase::after {
    height: 100%;
  }
}
.p-topCase__foot {
  margin-top: 64px;
}
@media screen and (max-width:768px) {
  .p-topCase__foot {
    margin-top: 32px;
  }
}

.c-caseList__item {
  border-radius: 12px 12px 0 0;
  background: #fff;
  overflow: hidden;
}
.c-caseList__item + .c-caseList__item {
  margin-top: 40px;
}
.c-caseList__label {
  padding: 6px 24px 8px;
  background: #1D3C8E;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}
.c-caseList__label > strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.c-caseList__label > strong > 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;
  width: 30px;
  height: 20px;
  border-radius: 4px;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1D3C8E;
}
.c-caseList__container {
  padding: 24px 40px 40px;
}
.c-caseList__container .c-result {
  margin-top: 24px;
}
@media screen and (max-width:768px) {
  .c-caseList__container {
    padding: 20px;
  }
}
.c-caseList__summary {
  margin-top: 22px;
}
.c-caseList__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px 24px;
  padding: 10px 24px;
  margin-top: 20px;
  background: #f9f9f9;
}
@media screen and (max-width:768px) {
  .c-caseList__service {
    -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;
    padding: 12px 20px;
  }
}
.c-caseList__serviceLabel {
  font-weight: 500;
}
.c-caseList__serviceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.c-result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 32px;
}
@media screen and (max-width:768px) {
  .c-result {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-result__item {
  padding: 6px;
  border-radius: 12px;
  background: #D8D8D8;
}
.c-result__item.--issue {
  position: relative;
}
.c-result__item.--issue::after {
  content: "";
  width: 35px;
  aspect-ratio: 35/33;
  background: url(../../img/common/arrow_result.svg) center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.c-result__item.--effect {
  background: linear-gradient(135deg, #B4EDA6 0%, #A6D4FF 60%, #339CFF 100%);
}
@media screen and (max-width:768px) {
  .c-result__item.--issue::after {
    width: 30px;
    aspect-ratio: 1/1;
    background-image: url(../../img/common/arrow_down.svg);
    top: calc(100% + 7px);
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.c-result__inner {
  padding: 12px 24px 20px;
  border-radius: 8px;
  background: #fff;
}
.c-result__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0 0 6px;
  border-bottom: 1px solid #D8D8D8;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.c-result__label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../../img/common/icon_task.svg) center no-repeat;
  background-size: auto 100%;
}
.c-result__label.--effect::before {
  background-image: url(../../img/common/icon_check.svg);
}
.c-result__contents {
  margin-top: 10px;
}
.c-result__contents .c-list > li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.6);
  top: 11px;
  left: 5px;
}
.c-result__contents .c-list.--effect > li::before {
  background: #1B7FC4;
}

.p-topReason {
  padding: 80px 0;
  background: url(../../img/top/reason_bg.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (max-width:768px) {
  .p-topReason {
    padding: 40px 0;
  }
}
.p-topReason__head {
  color: #fff;
}
.p-topReason__head .c-heading {
  margin-bottom: 27px;
  color: inherit;
}
.p-topReason__head p {
  color: inherit;
}
@media screen and (max-width:768px) {
  .p-topReason__head .c-heading {
    margin-bottom: 24px;
  }
}
.p-topReason__container {
  margin-top: 62px;
}
.p-topReason__container .c-headingLine {
  color: #fff;
}
.p-topReason__container .c-reasonList {
  margin-top: 23px;
}
@media screen and (max-width:768px) {
  .p-topReason__container {
    margin-top: 32px;
  }
}

.c-reasonList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width:900px) {
  .c-reasonList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-reasonList__item {
  padding: 16px 24px 19px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
}
.c-reasonList__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1D3C8E;
}
.c-reasonList__num > 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;
  width: 30px;
  height: 20px;
  padding: 2px 0 0;
  border-radius: 4px;
  background: #1D3C8E;
  font-size: 14px;
  color: #fff;
}
.c-reasonList__img {
  display: block;
  width: min(100%, 120px);
  margin: 0 auto;
}
.c-reasonList__label {
  margin-top: 17px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5833333333;
  text-align: center;
}
@media screen and (max-width:768px) {
  .c-reasonList__label {
    font-size: 20px;
    line-height: 1.9;
  }
}
.c-reasonList__text {
  margin-top: 12px;
}/*# sourceMappingURL=style.css.map */