@charset "UTF-8";
:root {
  --screen-xs: 480px;
  --screen-sm: 640px;
  --screen-md: 768px;
  --screen-lg: 960px;
  --screen-xl: 1280px;
  --blue: #4188FF;
  --blue-dark: #2089d2;
  --line: #07b53b;
  --line-dark: #069431;
  --yellow: #eebc0b;
  --yellow-dark: #f5a407;
  --orange: #FF8A1C;
  --orange-dark: #c2541a;
  --white: #fff;
  --black: #000;
  --text-black: #222;
  --text-gray: #555;
  --text-white: #f2f2f2;
  --font-sans: -apple-sysytem, BlinkMacSystemFont, "ヒラギノ角ゴ ProN", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --font-noto: "Noto Sans JP", var(--font-sans);
  --spacing-default: 24px;
  --spacing-sm: min(1.25vw + 4px, 16px);
  --spacing-md: min(1.25vw + 12px, 24px);
  --spacing-lg: min(2.5vw + 16px, 40px);
  --content-x-spacing: min(2.56vw + 14.4px, 40px);
  --rounded-sm: var(--spacing-sm);
  --rounded-md: var(--spacing-md);
  --rounded-lg: var(--spacing-lg);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  --box-shadow-card: 0 16px 40px rgba(25, 44, 63, 0.08);
  --max-width-lower: 920px;
  --space-40: 40px;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --z-sticky-header: 50;
  --z-header-submenu: 150;
  --z-sticky-bottom: 50;
  --z-sticky-bottom-active: 100;
  --z-hamburger-menu-bg: 90;
  --z-hamburger-menu: 95;
}

/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0; /* Reset `padding` and `margin` of all elements */
}

/* # =================================================================
	 # General elements
	 # ================================================================= */
hr {
  color: inherit; /* Correct border color in Firefox. */
  height: 0; /* Add the correct box sizing in Firefox */
  overflow: visible; /* Show the overflow in Edge and IE */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

/* # =================================================================
	 # Forms
	 # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  color: inherit;
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
	 # Specify media element style
	 # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
	 # Accessibility
	 # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/**
* Available vars:
* @var --viewport-from: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --viewport-to: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --font-size-from: <number> - Number in pixels without the unit. Required if `--font-size` and `--min-font-size` is not exist.
* @var --font-size-to: <number> - Number in pixels without the unit. Required if `--font-size` and `--max-font-size` is not exist.
* @var --max-font-size: <number> - Number in pixels without the unit. Optional.
* @var --min-font-size: <number> - Number in pixels without the unit. Optional.
* @var --viewport-unit-converter: 1vw | 1vh | 1vmin | 1vmax - Optional. Default: 1vw.
* @var --font-size: <length> | <percentage> | <absolute-size> | <relative-size> | Global values - Optional.
*/
* {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) /
    (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (
      var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)
    ) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(
    var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px
  );
  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));
  font-size: var(--clamp, var(--max));
}

@font-face {
  font-family: "YasashisaGothicBold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/YasashisaGothicBold.ttf) format("truetype");
}
html {
  --header-height: 72px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--spacing-lg));
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (hover: none) and (pointer: coarse) {
  html {
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }
}

body {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--text-black);
  font-family: "YasashisaGothicBold", sans-serif;
  font-weight: bold;
  font-size: min(0.625vw + 12px, 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

iframe {
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

table {
  border-spacing: 0;
  width: 100%;
}

input,
textarea {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5em 1em;
}

input:not([type=button]):not([type=reset]):not([type=submit]):not([type=radio]),
textarea {
  width: 100%;
}

input[type=button], input[type=reset], input[type=submit] {
  background: var(--blue);
  border: 0;
  border-radius: 16px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25em 2.5em;
  -webkit-transition: background 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
  transition: background 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
@media (hover: hover) {
  input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover {
    background: var(--blue-dark);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.block {
  display: block;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: var(--content-x-spacing);
  padding-right: var(--content-x-spacing);
}

.line-btn {
  color: #fff;
  padding: 0 20px;
  border-radius: 77px;
  border: 1px solid #fff;
  background: rgba(45, 56, 91, 0.8);
  display: inline-block;
  height: 70px;
  line-height: 70px;
  width: 345px;
  max-width: 100%;
  text-align: center;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 22;
  --max-font-size: 28;
}
@media (max-width: 767px) {
  .line-btn {
    font-size: 22px;
    width: 275px;
  }
}

.btn2 {
  border: 1px solid rgba(45, 56, 91, 0.8);
  background: #fff;
  color: rgb(45, 56, 91);
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 18;
  --max-font-size: 20;
}
.btn2::after {
  background: rgba(45, 56, 91, 0.8) !important;
}
@media (max-width: 767px) {
  .btn2 {
    font-size: 20px;
    width: 275px;
  }
}

.c-title {
  color: #2d385b;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 30;
  --max-font-size: 40;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-title::after, .c-title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 66px;
  height: 6px;
  background: url(../img/line-arrow.svg) no-repeat center/contain;
}
.c-title::before {
  left: -10px;
  -webkit-transform: translateX(-100%) translateY(-50%);
          transform: translateX(-100%) translateY(-50%);
}
.c-title::after {
  right: -10px;
  -webkit-transform: translateX(100%) translateY(-50%) rotate(180deg);
          transform: translateX(100%) translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .c-title {
    font-size: 25px;
  }
}

.c-title-2 {
  color: #dfdee3;
  font-size: 45px;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 35;
  --max-font-size: 45;
  text-align: center;
  position: relative;
  z-index: 2;
}
.c-title-2 span {
  display: block;
  color: #dfdee3;
  font-size: 25px;
  position: relative;
}
.c-title-2 span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 750px;
  max-width: 100%;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .c-title-2 {
    font-size: 27px;
  }
  .c-title-2 span {
    font-size: 20px;
  }
}

.wrapper {
  overflow: hidden;
}

.returntop {
  display: none;
  position: fixed;
  bottom: 84px;
  right: 0;
  z-index: 90;
}

.returntop a {
  display: block;
  color: #fff;
  font-size: min(23px, 6.13vw);
  text-indent: -999em;
  text-decoration: none;
  position: relative;
  width: 50px;
  height: 50px;
  background: #1e2a52;
}

.returntop a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/return-top.svg) no-repeat center/contain;
  background-size: 38px 30px;
}

@media screen and (min-width: 960px) {
  .returntop {
    bottom: 0;
    right: 0;
  }
  .returntop a {
    width: 94px;
    height: 94px;
  }
}
@media screen and (max-height: 800px) {
  .returntop {
    bottom: 84px;
  }
  .returntop a {
    width: 50px;
    height: 50px;
  }
}
.text-center {
  text-align: center;
}

.mt-50 {
  margin-top: 50px !important;
}

.editor-content h2 {
  --viewport-from: 320;
  --viewport-to: 960;
  --min-font-size: 18;
  --max-font-size: 22;
  color: #2d385b;
  font-weight: 700;
  line-height: min(2.5vw + 24px, 48px);
  line-height: 1.2;
}
.editor-content p,
.editor-content h2 {
  margin-bottom: var(--spacing-default);
  margin-top: var(--spacing-default);
}
.editor-content p:first-child,
.editor-content h2:first-child {
  margin-top: 0;
}
.editor-content h2 {
  margin-top: 1.3em;
}
.editor-content ul,
.editor-content ol {
  margin-bottom: var(--spacing-default);
  margin-top: var(--spacing-default);
  padding-left: 1.5em;
}
.editor-content ul li::marker,
.editor-content ol li::marker {
  color: #2d385b;
  font-weight: 700;
}
.editor-content ul {
  list-style: disc;
}
.editor-content ol {
  list-style: decimal;
}
.editor-content table th,
.editor-content table td {
  vertical-align: baseline;
}

.p-main {
  background-color: #fff;
}

.a-line {
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.a-line::after {
  position: absolute;
  bottom: 0.3em;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #2d385b;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.a-line:hover::after {
  bottom: 0;
  opacity: 1;
}

.slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.slide::after {
  background: #12a321;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.slide:hover {
  color: #fff;
}

.slide:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.notfound-section {
  padding: 100px 0;
  min-height: 63vh;
}
@media (max-width: 767px) {
  .notfound-section {
    min-height: 66vh;
  }
}
.notfound-section .notfound-title {
  font-size: clamp(30px, 2vw, 40px);
  padding: 25px 50px;
  letter-spacing: 0.25em;
  color: #333;
  text-align: center;
}
.notfound-section .nofound-contents {
  text-align: center;
}
@media (max-width: 767px) {
  .notfound-section .notfound-title {
    padding: 25px 10px 0;
    margin-bottom: 10px;
  }
}

.only-xs {
  display: none;
}
@media (max-width: 479px) {
  .only-xs {
    display: block;
  }
}

@media (max-width: 479px) {
  .hide-xs {
    display: none;
  }
}

.fix-contact {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fix-contact .item .item-ttl {
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 0 5px;
}
.fix-contact .item .item-text {
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 0 5px;
}
.fix-contact a {
  display: block;
  padding: 25px 10px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  width: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.fix-contact a:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  opacity: 0.7;
}
.fix-contact .ct-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffe816;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.fix-contact .ct-tel .item-text {
  border-right: 1px solid #000;
}
.fix-contact .ct-line {
  background: #000;
  color: #fff;
  -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;
  -webkit-transition: opacity 0.5s, background-color 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, background-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s, -webkit-transform 0.5s;
}
.fix-contact .ct-line .item-img {
  margin-bottom: 15px;
}
.fix-contact .ct-line:hover {
  background-color: #12a321;
}
@media screen and (max-height: 800px) {
  .fix-contact {
    bottom: 0;
    top: initial;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    right: 0;
  }
  .fix-contact a {
    width: auto;
    padding: 15px 10px;
    letter-spacing: 0;
    height: 100%;
  }
  .fix-contact a:hover {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .fix-contact .item {
    width: 50%;
  }
  .fix-contact .item + .item {
    margin-top: 0;
  }
  .fix-contact .item .item-ttl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .fix-contact .item .item-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .fix-contact .ct-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fix-contact .ct-tel .item-ttl {
    text-align: center;
  }
  .fix-contact .ct-tel .item-text {
    border-right: 0;
    font-size: 16px;
    text-align: center;
    margin-top: 7px;
  }
  .fix-contact .ct-line {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fix-contact .ct-line .item-img {
    margin-bottom: 0;
  }
}
@media (max-width: 959px) {
  .fix-contact {
    bottom: 0;
    top: initial;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    right: 0;
  }
  .fix-contact a {
    width: auto;
    padding: 15px 5px;
    letter-spacing: 0;
    height: 100%;
  }
  .fix-contact a:hover {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .fix-contact .item {
    width: 50%;
  }
  .fix-contact .item + .item {
    margin-top: 0;
  }
  .fix-contact .item .item-ttl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .fix-contact .item .item-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .fix-contact .ct-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fix-contact .ct-tel .item-ttl {
    text-align: center;
  }
  .fix-contact .ct-tel .item-text {
    border-right: 0;
    font-size: 16px;
    text-align: center;
    margin-top: 7px;
  }
  .fix-contact .ct-line {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fix-contact .ct-line .item-img {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .fix-contact {
    display: none;
  }
}

.heading {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  background: #2d385b;
}
.heading .text {
  border-radius: 38px;
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
  margin: 70px 0;
  --viewport-from: 320;
  --viewport-to: 960;
  --min-font-size: 22;
  --max-font-size: 30;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .heading .text {
    margin: 50px 0;
    margin-top: 140px;
  }
}

.noscroll {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hide-sp {
    display: none !important;
  }
}

.c-loading {
  background-color: #fff;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: visible;
  width: 100%;
  z-index: 9000;
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.9s 0.6s, visibility 0.9s 0.6s;
  transition: opacity 0.9s 0.6s, visibility 0.9s 0.6s;
}
.c-loading .inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-loading .loader {
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  border-radius: 50%;
  -webkit-animation: spin 1.2s infinite linear forwards;
          animation: spin 1.2s infinite linear forwards;
}
.c-loading .cv-spinner {
  margin-top: 50px;
  width: 50px;
  height: 50px;
  border: 4px rgba(32, 34, 101, 0.25) solid;
  border-top: 4px #1e2a52 solid;
  border-radius: 50%;
  -webkit-animation: spCircRot 0.6s infinite linear;
          animation: spCircRot 0.6s infinite linear;
}

/* .is-opening .c-loading {
  display: block;
  opacity: 1;
  transition: opacity 0.9s 1.5s, visibility 0.9s 1.5s;
}

.is-opening.is-ready .c-loading {
  opacity: 0;
  visibility: hidden;
} */
.is-loaded .c-loading {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes spin {
  0% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transform: rotate(0) scale(0.5);
            transform: rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 21px 21px, -21px -21px, 21px -21px, -21px 21px;
            box-shadow: 21px 21px, -21px -21px, 21px -21px, -21px 21px;
    -webkit-transform: rotate(180deg) scale(1);
            transform: rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transform: rotate(360deg) scale(0.5);
            transform: rotate(360deg) scale(0.5);
  }
}

@keyframes spin {
  0% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transform: rotate(0) scale(0.5);
            transform: rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 21px 21px, -21px -21px, 21px -21px, -21px 21px;
            box-shadow: 21px 21px, -21px -21px, 21px -21px, -21px 21px;
    -webkit-transform: rotate(180deg) scale(1);
            transform: rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transform: rotate(360deg) scale(0.5);
            transform: rotate(360deg) scale(0.5);
  }
}
@-webkit-keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
}
.l-header .header-logo__link {
  width: 200px;
  height: 200px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
          box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
@media (max-width: 959px) {
  .l-header .header-logo__link {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767px) {
  .l-header .header-logo__link {
    width: 120px;
    height: 120px;
    padding: 10px;
  }
}

.l-footer {
  padding: 80px 0;
  position: relative;
}
.l-footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(45, 56, 91, 0.8);
}
.l-footer::before {
  content: "";
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/bg-02.jpg) no-repeat center/cover;
  z-index: -3;
}
.l-footer.is-active::before {
  z-index: -2;
}
.l-footer__inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.l-footer .footer-logo {
  text-align: center;
}
.l-footer .footer-menu {
  margin-top: 67px;
}
.l-footer .footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer .footer-menu ul li {
  margin: 0 15px;
}
.l-footer .footer-menu ul li a {
  color: #fff;
}
.l-footer .footer-menu .a-line::after {
  background-color: #fff;
}
.l-footer .footer-tel {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  color: #fff;
  font-size: 25px;
}
.l-footer .footer-info {
  margin-top: 67px;
  color: #fff;
  text-align: center;
}
.l-footer .copyright {
  text-align: center;
  color: #fff;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 40px 0;
    padding-bottom: 137px;
  }
  .l-footer .footer-menu {
    margin-top: 27px;
  }
  .l-footer .footer-menu ul {
    display: block;
  }
  .l-footer .footer-menu ul li {
    margin: 15px auto;
    text-align: center;
  }
  .l-footer .footer-menu ul li a {
    color: #fff;
  }
  .l-footer .footer-tel {
    font-size: 16px;
  }
  .l-footer .footer-info {
    margin-top: 37px;
  }
  .l-footer .copyright {
    margin-top: 40px;
  }
}

.privacy-policy-content {
  padding: 100px 0;
  background-color: #fff;
}
.privacy-policy-content table td:first-child {
  width: 135px;
}

.main-kv {
  background: url(../img/main-kv.jpg) no-repeat center/cover;
  padding: 180px 0;
  text-align: center;
  position: relative;
  font-weight: bold;
}
.main-kv::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(40, 49, 83, 0.5);
}
.main-kv__inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.main-kv .text1 {
  display: block;
  color: #fff;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 30;
  --max-font-size: 35;
  background: rgba(0, 0, 0, 0.75);
  padding: 12px 0;
  padding-bottom: 10px;
}
.main-kv .text-line {
  color: #20ae59;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 30;
  --max-font-size: 35;
}
.main-kv .text2 {
  display: block;
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  margin-top: 30px;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 40;
  --max-font-size: 58;
}
.main-kv .text-big {
  color: #ffe816;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 60;
  --max-font-size: 75;
}
.main-kv .text3 {
  display: block;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 30px;
  padding: 12px 12px;
  padding-bottom: 10px;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 25;
  --max-font-size: 35;
}
.main-kv .text3 span {
  color: #ffe816;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 25;
  --max-font-size: 40;
}
.main-kv .btn-line2 {
  text-align: center;
  margin-top: 45px;
}
.main-kv .btn-line2 .btn {
  color: #fff;
  font-size: 40px;
  border-radius: 77px;
  background: #12a321;
  border: 1px solid #12a321;
  display: inline-block;
  padding: 12px 20px;
  padding-top: 16px;
  width: 445px;
  max-width: 100%;
}
.main-kv .btn-line2 .btn.slide::after {
  background: #fff;
}
.main-kv .btn-line2 .btn.slide:hover {
  color: #12a321;
}
@media (max-width: 959px) {
  .main-kv {
    padding-top: 170px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .main-kv {
    padding: 50px 15px;
    padding-top: 145px;
  }
  .main-kv .text1 {
    font-size: 20px;
    padding: 10px 0;
    padding-bottom: 12px;
  }
  .main-kv .text-line {
    font-size: 22px;
  }
  .main-kv .text-big {
    font-size: 35px;
  }
  .main-kv .text2 {
    font-size: 35px;
    margin-top: 20px;
  }
  .main-kv .text3 {
    margin-top: 20px;
    padding: 10px 12px;
    padding-bottom: 12px;
  }
  .main-kv .text3 span {
    font-size: 25px;
  }
  .main-kv .btn-line2 {
    margin-top: 35px;
  }
  .main-kv .btn-line2 .btn {
    font-size: 22px;
    padding: 11px 20px;
    padding-top: 14px;
    width: 275px;
  }
}

.sec03 {
  padding: 90px 0;
  padding-bottom: 210px;
  position: relative;
}
.sec03::before {
  content: "";
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  z-index: -2;
}
.sec03::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 120px;
  right: 0;
  background: rgba(45, 56, 91, 0.65);
}
.sec03 .content-text {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
.sec03 .content-text .text1 {
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.sec03 .content-text .text2 {
  color: #000;
  text-align: center;
  font-size: 16px;
  border-radius: 11px;
  background: #ffe816;
  margin-top: 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .sec03 {
    padding: 50px 0;
  }
  .sec03 .content-text {
    margin-top: 45px;
  }
  .sec03 .content-text .text1 {
    font-size: 14px;
  }
  .sec03 .content-text .text2 {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.c-content {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-content {
    margin-top: 45px;
  }
}

.c-section {
  padding: 70px 0;
  background-color: #fff;
}

.sec-faq .item {
  border-bottom: 1px solid #494949;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.sec-faq .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.sec-faq .item-question, .sec-faq .item-answer {
  position: relative;
  padding-left: 30px;
}
.sec-faq .item-question::before, .sec-faq .item-answer::before {
  position: absolute;
  left: 0;
  top: -2px;
  width: 25px;
  height: 25px;
  padding-top: 4px;
  color: #f0efeb;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #494949;
}
.sec-faq .item-question {
  font-size: 16px;
}
.sec-faq .item-question::before {
  content: "Q";
}
.sec-faq .item-answer {
  font-size: 14px;
  margin-top: 20px;
}
.sec-faq .item-answer::before {
  content: "A";
}
.sec-faq .item-answer ul {
  margin-top: 1em;
}
.sec-faq .item-answer ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.sec-line {
  padding-top: 270px;
  padding-bottom: 70px;
  background: #2d385b;
  position: relative;
}
.sec-line .line-flex {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sec-line .line-flex .item {
  aspect-ratio: 1.27;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sec-line .line-flex .item .item-num {
  color: #2d385b;
  text-align: center;
  font-size: 16px;
  width: 33px;
  height: 33px;
  padding-top: 3px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  background-color: #fff;
}
.sec-line .line-flex .item p {
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.sec-line .line-flex .item-1 {
  background-image: url(../img/line-1.jpg);
}
.sec-line .line-flex .item-2 {
  background-image: url(../img/line-2.jpg);
}
.sec-line .text1 {
  margin-top: 40px;
  color: #000;
  font-size: 16px;
  border-radius: 12px;
  background: #ffe816;
  padding: 10px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-line .line-btn-wrap {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 959px) {
  .sec-line {
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .sec-line {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .sec-line .line-flex {
    margin-top: 35px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sec-line .line-flex .item .item-num {
    color: #2d385b;
    text-align: center;
    font-size: 16px;
    width: 33px;
    height: 33px;
  }
  .sec-line .line-flex .item p {
    font-size: 14px;
  }
  .sec-line .text1 {
    margin-top: 25px;
    font-size: 14px;
  }
  .sec-line .line-btn-wrap {
    margin-top: 25px;
  }
}

.t-text {
  color: #fff;
  font-weight: 300;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -60px;
  width: 1920px;
  text-align: center;
  pointer-events: none;
  opacity: 0.15;
  font-family: var(--font-noto);
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 120;
  --max-font-size: 250;
}
@media (max-width: 959px) {
  .t-text {
    top: -20px;
  }
}
@media (max-width: 767px) {
  .t-text {
    font-size: 49px;
    top: 20px;
  }
}

.tk-welcome {
  padding: 50px 0;
  background-color: #fff;
}
.tk-welcome_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tk-welcome_content .line-btn-wrap {
  margin-top: 25px;
  text-align: center;
}
.tk-welcome_content p {
  color: #494949;
  font-size: 20px;
  text-align: center;
}
.tk-welcome_content p span {
  color: #ffe816;
}
@media (max-width: 767px) {
  .tk-welcome_content {
    grid-template-columns: 1fr;
  }
  .tk-welcome_content p {
    font-size: 16px;
  }
}

.sec-top-recommended {
  position: relative;
  background: url(../img/bg-03.jpg) no-repeat center/cover;
  padding-top: 270px;
  padding-bottom: 70px;
  background: #2d385b;
}
.sec-top-recommended::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(45, 56, 91, 0.85);
}
.sec-top-recommended .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
}
.sec-top-recommended .item {
  border-radius: 0px 0px 52px 52px;
  background: #fff;
  padding: 25px 20px;
  position: relative;
}
.sec-top-recommended .item .item-num {
  border-radius: 0px 0px 12px 0px;
  background: #ffe816;
  color: #000;
  font-size: 18px;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.sec-top-recommended .item .img {
  width: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}
.sec-top-recommended .item .text {
  color: #494949;
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
}
@media (max-width: 959px) {
  .sec-top-recommended {
    padding-top: 160px;
  }
  .sec-top-recommended .list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .sec-top-recommended {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .sec-top-recommended .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .sec-top-recommended .item {
    border-radius: 0px 0px 32px 32px;
    padding: 25px 10px;
  }
  .sec-top-recommended .item .item-num {
    font-size: 16px;
    width: 38px;
    height: 38px;
  }
  .sec-top-recommended .item .img {
    width: 120px;
    width: 120px;
  }
  .sec-top-recommended .item .text {
    font-size: 14px;
  }
}

.sec {
  padding: 100px 0;
  background-color: #fff;
}

.sec-step-item {
  margin-bottom: 120px;
}
.sec-step-item:last-child {
  margin-bottom: 0;
}
.sec-step .c-sub-title {
  color: #494949;
  font-size: 30px;
  text-align: center;
}
.sec-step .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 50px;
  margin-top: 50px;
}
.sec-step .list .item {
  display: grid;
  gap: 25px;
}
.sec-step .list .item-title {
  line-height: 1;
  border-bottom: 1px solid #2d385b;
}
.sec-step .list .item-title span {
  border-radius: 0px 16px 0px 0px;
  background: #2d385b;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 12px 20px;
  padding-bottom: 10px;
}
.sec-step .list .item-text {
  margin-top: 25px;
  text-align: center;
}
.sec-step .list .item-image {
  width: 197px;
  height: 197px;
  padding: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(45, 56, 91, 0.65);
  margin-left: auto;
  margin-right: auto;
}
.sec-step .list .item-image img {
  max-height: 123px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.sec-step .list3 {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(45, 56, 91, 0.1);
  gap: 50px;
  padding: 30px 20px;
}
.sec-step .list3 .item {
  position: relative;
}
.sec-step .list3 .item-num {
  font-size: 40px;
  width: 66px;
  height: 66px;
  padding-top: 7px;
  background-color: #ffe100;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.sec-step .list3 .item-title {
  color: #494949;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  position: relative;
  padding-left: 80px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.sec-step .list3 .item-text {
  color: #494949;
  font-size: 14px;
}
@media (max-width: 767px) {
  .sec-step .c-sub-title {
    font-size: 20px;
  }
  .sec-step .list {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sec-step .list .item-title span {
    border-radius: 0px 16px 0px 0px;
    font-size: 16px;
    padding: 12px 20px;
    padding-bottom: 10px;
  }
  .sec-step .list .item-text {
    margin-top: 20px;
  }
  .sec-step .list .item-image {
    width: 147px;
    height: 147px;
  }
  .sec-step .list .item-image img {
    max-height: 97px;
  }
  .sec-step .list3 {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 15px;
  }
  .sec-step .list3 .item-num {
    font-size: 26px;
    width: 56px;
    height: 56px;
    padding-top: 7px;
  }
  .sec-step .list3 .item-title {
    font-size: 16px;
    padding-bottom: 19px;
    padding-left: 70px;
    padding-top: 21px;
  }
  .sec-step .list3 .item-text {
    font-size: 14px;
  }
}

.sec-step-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
.sec-step-flex .itemf {
  width: 50%;
}
.sec-step-flex .list2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  border-bottom: 1px solid #afafaf;
  gap: 20px;
}
.sec-step-flex .list2 .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.sec-step-flex .list2 .item-num {
  color: #afafaf;
  font-size: 45px;
  width: 80px;
  text-align: center;
}
.sec-step-flex .list2 .item-img {
  width: 110px;
}
.sec-step-flex .list2 .item-text {
  color: #494949;
  font-size: 16px;
}
.sec-step-flex .itemf-box {
  position: relative;
}
.sec-step-flex .itemf-box .img img {
  width: 100%;
  display: block;
}
.sec-step-flex .itemf-box .text {
  padding: 30px 30px;
  background-color: #2d385b;
}
.sec-step-flex .itemf-box .text .text-ttl {
  color: #fff;
  font-size: 35px;
  text-align: center;
}
.sec-step-flex .itemf-box .text .text-txt {
  color: #000;
  text-align: center;
  font-size: 16px;
  border-radius: 18px;
  background: #ffe816;
  padding: 15px 20px;
  margin-top: 15px;
}
.sec-step-flex .p-rate {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 105px;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-size: 20px;
  z-index: 2;
  background: #000;
  line-height: 1.5;
}
.sec-step-flex .p-rate span {
  display: block;
  color: #ffe816;
  font-size: 35px;
  line-height: 1;
}
.sec-step-flex.flex-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 959px) {
  .sec-step-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;
  }
  .sec-step-flex .itemf {
    width: 70%;
  }
  .sec-step-flex .itemf-box {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .sec-step-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec-step-flex .itemf {
    width: 100%;
  }
  .sec-step-flex .itemf + .itemf {
    margin-top: 25px;
  }
  .sec-step-flex .list2 .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .sec-step-flex .list2 .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .sec-step-flex .list2 .item-num {
    font-size: 30px;
    width: 40px;
  }
  .sec-step-flex .list2 .item-img {
    width: 90px;
  }
  .sec-step-flex .list2 .item-text {
    font-size: 14px;
  }
  .sec-step-flex .itemf-box .text {
    padding: 20px 15px;
  }
  .sec-step-flex .itemf-box .text .text-ttl {
    font-size: 25px;
  }
  .sec-step-flex .itemf-box .text .text-txt {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }
}

.bg1 {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  z-index: -2;
}

.bg2 {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/bg-02.jpg) no-repeat center/cover;
  z-index: -1;
}

.p-line {
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  background-color: #fff;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}
.p-line.js-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-line .line-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-line .line-content .item {
  width: 50%;
  padding: 30px 20px;
}
.p-line .line-content .item .item-ttl {
  color: #0d8a25;
  --viewport-from: 750;
  --viewport-to: 1800;
  --min-font-size: 16;
  --max-font-size: 22;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 25px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-line .line-content .item .item-ttl2 {
  color: #fff;
  font-weight: 900;
  background: #005125;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  padding: 8px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #005125;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
  --viewport-from: 750;
  --viewport-to: 1600;
  --min-font-size: 22;
  --max-font-size: 30;
  font-weight: 700;
  line-height: 1.5;
}
.p-line .line-content .item .item-text {
  color: #232323;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 25px;
}
.p-line .line-content .item .item-text2 {
  color: #fff;
}
.p-line .line-content .item .img {
  text-align: center;
  margin-top: 20px;
}
.p-line .line-content .item .img-b {
  border-radius: 5px;
  border: 3px solid #232624;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}
.p-line .line-content .item .img-b img {
  width: 200px;
}
.p-line .line-content .item-2 {
  background: url(../img/img-box-line.svg) no-repeat center/cover;
}
.p-line .line-content .item .line-link {
  margin-top: 20px;
  text-align: center;
}
.p-line .line-content .item .line-link + .line-link {
  margin-top: 0;
}
.p-line .line-content .item .line-link a {
  color: #0eb12c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-line .line-content .item .line-link a::after {
  background: #0eb12c;
}
.p-line .line-content .item .close-box {
  margin-top: 25px;
  text-align: center;
}
@media (max-width: 959px) {
  .p-line .line-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-line .line-content .item {
    width: 100%;
  }
  .p-line .line-content .item .item-ttl,
  .p-line .line-content .item .item-ttl2 {
    font-size: 22px;
    margin-bottom: 35px;
  }
  .p-line .line-content .item .item-text {
    font-size: 14px;
    margin-top: 25px;
  }
  .p-line .line-content .item .img-b {
    padding: 15px;
  }
  .p-line .line-content .item .img-b img {
    width: 200px;
  }
  .p-line .line-content .item .line-link a {
    font-size: 16px;
  }
  .p-line .line-content .item-1 {
    padding-top: 40px;
  }
}
@media (max-width: 959px) {
  .p-line .line-content {
    padding-bottom: 50px;
  }
}

.modal-page-overlay {
  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;
}
@media (max-width: 959px) {
  .modal-page-overlay {
    display: block;
  }
}
.modal-page-overlay .modal-overlay {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1260px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 18px;
  width: 83.3333333333%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 959px) {
  .modal-page-overlay .modal-overlay {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.modal-page-overlay .modal-content-container {
  background: rgb(255, 255, 255);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-padding-start: 66px;
          padding-inline-start: 66px;
  -webkit-padding-end: 66px;
          padding-inline-end: 66px;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-top: -60px;
  border-radius: 16px;
}
@media (max-width: 959px) {
  .modal-page-overlay .modal-content-container {
    width: 100%;
    padding-inline: 6.25%;
    padding-bottom: 0;
  }
}
.modal-page-overlay .modal-close-button {
  cursor: pointer;
  position: var(--modal-close-button-position);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  height: 36px;
  width: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  margin-top: 16px;
  top: 16px;
  -webkit-margin-end: 16px;
          margin-inline-end: 16px;
}
.modal-page-overlay .modal-close-button .modal-close-icon {
  background: #e8e8ed;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.56);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  width: 36px;
  outline: none;
  -webkit-transition: color 100ms linear, background 100ms linear;
  transition: color 100ms linear, background 100ms linear;
  position: relative;
}
.modal-page-overlay .modal-close-button .modal-close-icon svg {
  fill: currentColor;
  position: absolute;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 20px;
  width: 20px;
}
.modal-page-overlay .modal-close-button:hover .modal-close-icon {
  background: #ececf0;
  color: rgba(0, 0, 0, 0.72);
}

.modal {
  --modal-close-button-position: sticky;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  --modal-scrim-background: rgba(0, 0, 0, 0.48);
  --modal-overlay-background: rgb(255, 255, 255);
  background: var(--modal-scrim-background, var(--modal-overlay-background));
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.modal-open {
  z-index: 11000;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#scroll-down {
  display: block;
  position: relative;
  padding-top: 51px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 70vh;
  display: none;
  z-index: 3;
}
@media (max-width: 959px) {
  #scroll-down {
    display: block;
  }
}

.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 22px;
}

.arrow-down:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #000;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

#scroll-down::before {
  -webkit-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 60px;
  background: #000;
  content: "";
}

@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
}

@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
}
.blur-up {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.blur-up.lazyloaded {
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #333;
  text-align: center;
  color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
  height: 2px;
}

.fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s opacity, 1s -webkit-transform;
  transition: 1s opacity, 1s -webkit-transform;
  transition: 1s opacity, 1s transform;
  transition: 1s opacity, 1s transform, 1s -webkit-transform;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.fadeIn.fadeIn-01 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.fadeIn.fadeIn-02 {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.fadeIn.fadeIn-03 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.fadeIn.fadeIn-04 {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.fadeIn.fadeIn-05 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.fadeIn.fadeIn-06 {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}

.is-view {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}