@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  color-scheme: dark light;
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

:where(input, button, textarea, select) {
  color: inherit;
  font: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

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

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  overflow: visible;
  block-size: 0;
  border: none;
  border-block-start: 1px solid;
  color: inherit;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  opacity: 0;
}
.fadeInDown.animated {
  animation: fadeInDown;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.animated {
  animation: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.fadeInUp {
  opacity: 0;
}
.fadeInUp.animated {
  animation: fadeInUp;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.animated {
  animation: fadeInRight;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.delay-1 {
  animation-delay: 0.1s !important;
}
.delay-2 {
  animation-delay: 0.2s !important;
}
.delay-3 {
  animation-delay: 0.3s !important;
}
.delay-4 {
  animation-delay: 0.4s !important;
}
.delay-5 {
  animation-delay: 0.5s !important;
}
.delay-6 {
  animation-delay: 0.6s !important;
}
.delay-7 {
  animation-delay: 0.7s !important;
}
.delay-8 {
  animation-delay: 0.8s !important;
}
.delay-9 {
  animation-delay: 0.9s !important;
}
.delay-10 {
  animation-delay: 1s !important;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #f1f8ff;
  color: #000;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  line-break: strict;
}
@media screen and (min-width: 641px) {
  body {
    min-width: 1280px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

:where(a) {
  color: #007ebf;
}
.green {
  color: #01ad27;
}

.orange {
  color: #ff5005;
}

.wrap {
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .wrap {
    padding: 0 40px;
    max-width: 1280px;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }
}

@media screen and (min-width: 641px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .sp-none {
    display: none;
  }
}
::placeholder {
  color: #999;
}

.input-error-txt {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #d6082e;
  font-size: 1.4rem;
}
.input-error-txt::before {
  content: "";
  display: block;
  margin-top: 0.5em;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon-important.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.input-txt {
  position: relative;
}
.input-txt.error input {
  border-color: #d6082e;
  background-color: rgba(214, 8, 46, 0.05);
}
.input-txt input {
  padding: 0 12px;
  width: 100%;
  height: 48px;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1.6rem;
}
.input-txt input:disabled {
  background-color: #aaa;
  pointer-events: none !important;
}
.input-txt input:disabled + .flatpickr-input {
  background-color: #aaa;
  pointer-events: none !important;
}
.input-txt input[size] {
  max-width: 100%;
  width: auto;
}
.input-radio {
  position: relative;
}
.input-radio + .input-radio {
  margin-top: 12px;
}
.input-radio input {
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  margin: auto;
  width: 16px;
  height: 16px;
  border: 1px solid #b0b0b0;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s;
  pointer-events: none;
}
.input-radio input:checked {
  border-color: #007ebf;
  background-color: #fff;
  box-shadow: inset 0 0 0 4px #007ebf;
}
.input-radio input:disabled {
  background-color: #aaa;
}
.input-radio label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 36px;
  min-height: 48px;
  width: fit-content;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  background-color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  cursor: pointer;
}
:checked + .input-radio label {
  border-color: #007ebf;
}
:disabled + .input-radio label {
  background-color: #aaa;
  color: #fff;
}
.input-checkbox {
  position: relative;
}
.input-checkbox + .input-checkbox {
  margin-top: 12px;
}
.input-checkbox.error input {
  border-color: #d6082e;
  background-color: #d6082e;
}
.input-checkbox input {
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  margin: auto;
  width: 16px;
  height: 16px;
  border: 1px solid #b0b0b0;
  border-radius: 2px;
  background: #fff;
  background-image: url(../img/common/icon-checked.svg);
  background-position: center top 4px;
  background-size: 10px auto;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.2s;
}
.input-checkbox input:checked {
  border-color: #007ebf;
  background-color: #007ebf;
}
.input-checkbox input:disabled {
  background-color: #aaa;
}
.input-checkbox label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px 0 36px;
  min-height: 48px;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  background-color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  cursor: pointer;
}
:checked + .input-checkbox label {
  border-color: #007ebf;
}
:disabled + .input-checkbox label {
  background-color: #aaa;
  color: #fff;
}
.error > .input-checkbox label {
  color: #d6082e;
}
.input-select.error select {
  border-color: #d6082e;
  background-color: rgba(214, 8, 46, 0.05);
}
.input-select select {
  appearance: none;
  position: relative;
  padding: 0 32px 0 12px;
  width: 100%;
  width: 100%;
  height: 48px;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  background-color: #fff;
  background-image: url(../img/common/arrow-select.svg);
  background-position: right 12px center;
  background-size: 10px auto;
  background-repeat: no-repeat;
  font-size: 1.6rem;
}
.input-select select:disabled {
  background-color: #aaa;
}
.input-textarea.error textarea {
  border-color: #d6082e;
  background-color: rgba(214, 8, 46, 0.05);
}
.input-textarea textarea {
  display: block;
  padding: 16px 12px;
  width: 100%;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  resize: vertical;
}
.input-textarea textarea:disabled {
  background-color: #aaa;
}
.input-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-toggle input {
  appearance: none;
  position: relative;
  display: flex;
  margin: 0;
  width: 52px;
  height: 24px;
  border: 1px solid #1a1a1a;
  border-radius: 100px;
  background-color: #fff;
  opacity: 0.2;
  cursor: pointer;
  transition: 0.2s;
}
.input-toggle input::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #1a1a1a;
  transition: 0.2s;
}
.input-toggle input:checked {
  border-color: #007ebf;
  background-color: #007ebf;
  opacity: 1;
}
.input-toggle input:checked::after {
  left: 28px;
  background-color: #fff;
}
.input-toggle label {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.btn-border-red-tiny, .btn-border-red-small, .btn-border-red-normal, .btn-border-secondary-small, .btn-border-secondary-normal, .btn-border-primary-small, .btn-border-primary-normal, .btn-border-dark-tiny, .btn-border-dark-small, .btn-border-dark-normal, .btn-white-small, .btn-white-normal, .btn-dark-tiny, .btn-dark-small, .btn-dark-normal, .btn-secondary-normal, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  background-repeat: no-repeat;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.2s;
}
.btn-border-red-tiny:hover, .btn-border-red-small:hover, .btn-border-red-normal:hover, .btn-border-secondary-small:hover, .btn-border-secondary-normal:hover, .btn-border-primary-small:hover, .btn-border-primary-normal:hover, .btn-border-dark-tiny:hover, .btn-border-dark-small:hover, .btn-border-dark-normal:hover, .btn-white-small:hover, .btn-white-normal:hover, .btn-dark-tiny:hover, .btn-dark-small:hover, .btn-dark-normal:hover, .btn-secondary-normal:hover, .btn-primary:hover {
  opacity: 0.7;
}

@media screen and (min-width: 641px) {
  .btn-border-red-normal, .btn-border-secondary-normal, .btn-border-primary-normal, .btn-border-dark-normal, .btn-white-normal, .btn-dark-normal, .btn-secondary-normal, .btn-primary {
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .btn-border-red-normal, .btn-border-secondary-normal, .btn-border-primary-normal, .btn-border-dark-normal, .btn-white-normal, .btn-dark-normal, .btn-secondary-normal, .btn-primary {
    font-size: 1.8rem;
  }
}
.btn-border-red-normal small, .btn-border-secondary-normal small, .btn-border-primary-normal small, .btn-border-dark-normal small, .btn-white-normal small, .btn-dark-normal small, .btn-secondary-normal small, .btn-primary small {
  font-size: 1.2rem;
}

.btn-border-red-small, .btn-border-secondary-small, .btn-border-primary-small, .btn-border-dark-small, .btn-white-small, .btn-dark-small {
  height: 46px;
}
@media screen and (min-width: 641px) {
  .btn-border-red-small, .btn-border-secondary-small, .btn-border-primary-small, .btn-border-dark-small, .btn-white-small, .btn-dark-small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .btn-border-red-small, .btn-border-secondary-small, .btn-border-primary-small, .btn-border-dark-small, .btn-white-small, .btn-dark-small {
    font-size: 1.4rem;
  }
}

.btn-border-red-tiny, .btn-border-dark-tiny, .btn-dark-tiny {
  height: 38px;
}
@media screen and (min-width: 641px) {
  .btn-border-red-tiny, .btn-border-dark-tiny, .btn-dark-tiny {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .btn-border-red-tiny, .btn-border-dark-tiny, .btn-dark-tiny {
    font-size: 1.6rem;
  }
}

.btn-primary {
  background-color: #f9e000;
  color: #000;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .btn-primary {
    padding: 32px 0;
    width: 372px;
  }
}
@media screen and (max-width: 640px) {
  .btn-primary {
    padding: 24px 0;
    width: 100%;
  }
}
.btn-primary.arrow {
  background-image: url(../img/common/arrow-right-white.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-primary.back-arrow {
  background-image: url(../img/common/arrow-left-white.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-primary:hover {
  text-decoration: none;
}
.btn-secondary-normal {
  background-color: #f90;
  color: #fff;
}
.btn-secondary-normal.arrow {
  background-image: url(../img/common/arrow-right-white.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-secondary-normal.back-arrow {
  background-image: url(../img/common/arrow-left-white.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-secondary-normal:hover {
  text-decoration: none;
}
.btn-dark-normal {
  background-color: #1a1a1a;
  color: #fff;
}
.btn-dark-normal.f16 {
  font-size: 1.6rem;
}
@media screen and (min-width: 641px) {
  .btn-dark-normal.wide {
    max-width: 380px;
  }
}
.btn-dark-normal.arrow {
  background-image: url(../img/common/arrow-right-white.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-dark-normal.back-arrow {
  background-image: url(../img/common/arrow-left-white.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-dark-normal[target=_blank] {
  background-image: url(../img/common/icon-blank-w.svg);
  background-position: right 20px center;
  background-size: 12px auto;
}
.btn-dark-normal:hover {
  text-decoration: none;
}
.btn-dark-small {
  background-color: #1a1a1a;
  color: #fff;
}
.btn-dark-small:disabled {
  background-color: #999;
  pointer-events: none;
}
.btn-dark-small:hover {
  text-decoration: none;
}
.btn-dark-tiny {
  background-color: #1a1a1a;
  color: #fff;
}
.btn-dark-tiny:disabled {
  background-color: #999;
  pointer-events: none;
}
.btn-dark-tiny:hover {
  text-decoration: none;
}
.btn-white-normal {
  background-color: #fff;
  color: #1a1a1a;
}
.btn-white-normal.arrow {
  background-image: url(../img/common/arrow-right-dark.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-white-normal.back-arrow {
  background-image: url(../img/common/arrow-left-dark.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-white-normal:hover {
  text-decoration: none;
}
.btn-white-small {
  background-color: #fff;
  color: #1a1a1a;
}
.btn-white-small:hover {
  text-decoration: none;
}
.btn-border-dark-normal {
  border: 1px solid #1a1a1a;
  background-color: #fff;
  color: #1a1a1a;
}
.btn-border-dark-normal.arrow {
  background-image: url(../img/common/arrow-right-dark.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-dark-normal.back-arrow {
  background-image: url(../img/common/arrow-left-dark.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-border-dark-normal:hover {
  text-decoration: none;
}
.btn-border-dark-small {
  border: 1px solid #1a1a1a;
  background-color: #fff;
  color: #1a1a1a;
}
.btn-border-dark-small.add {
  background-image: url(../img/common/icon-plus-dark.svg);
  background-position: right 16px center;
  background-size: 11px auto;
}
.btn-border-dark-small:hover {
  text-decoration: none;
}
.btn-border-dark-tiny {
  border: 1px solid #1a1a1a;
  background-color: #fff;
  color: #1a1a1a;
}
.btn-border-dark-tiny:hover {
  text-decoration: none;
}
.btn-border-primary-normal {
  border: 1px solid #007ebf;
  background-color: #fff;
  color: #007ebf;
}
.btn-border-primary-normal.arrow {
  background-image: url(../img/common/arrow-right-primary.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-primary-normal.back-arrow {
  background-image: url(../img/common/arrow-left-primary.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-border-primary-normal:hover {
  text-decoration: none;
}
.btn-border-primary-small {
  border: 1px solid #007ebf;
  background-color: #fff;
  color: #007ebf;
}
.btn-border-primary-small.add {
  background-image: url(../img/common/icon-plus-primary.svg);
  background-position: right 16px center;
  background-size: 11px auto;
}
.btn-border-primary-small.arrow {
  background-image: url(../img/common/arrow-right-primary.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-primary-small.back-arrow {
  background-image: url(../img/common/arrow-left-primary.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-border-primary-small:hover {
  text-decoration: none;
}
.btn-border-secondary-normal {
  border: 1px solid #f90;
  background-color: #fff;
  color: #f90;
}
.btn-border-secondary-normal.arrow {
  background-image: url(../img/common/arrow-right-secondary.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-secondary-normal.back-arrow {
  background-image: url(../img/common/arrow-left-secondary.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-border-secondary-normal:hover {
  text-decoration: none;
}
.btn-border-secondary-small {
  border: 1px solid #f90;
  background-color: #fff;
  color: #f90;
}
.btn-border-secondary-small.add {
  background-image: url(../img/common/icon-plus-secondary.svg);
  background-position: right 16px center;
  background-size: 11px auto;
}
.btn-border-secondary-small.arrow {
  background-image: url(../img/common/arrow-right-secondary.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-secondary-small.back-arrow {
  background-image: url(../img/common/arrow-left-secondary.svg);
  background-position: left 16px center;
  background-size: 14px auto;
}
.btn-border-secondary-small:hover {
  text-decoration: none;
}
.btn-border-red-normal {
  border: 1px solid #d6082e;
  background-color: #fff;
  color: #007ebf;
}
.btn-border-red-normal.arrow {
  background-image: url(../img/common/arrow-right-red.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-red-normal:hover {
  text-decoration: none;
}
.btn-border-red-small {
  border: 1px solid #007ebf;
  background-color: #fff;
  color: #007ebf;
}
.btn-border-red-small.arrow {
  background-image: url(../img/common/arrow-right-red.svg);
  background-position: right 16px center;
  background-size: 14px auto;
}
.btn-border-red-small:hover {
  text-decoration: none;
}
.btn-border-red-tiny {
  border: 1px solid #d6082e;
  background-color: #fff;
  color: #d6082e;
}
.btn-border-red-tiny.arrow2 {
  background-image: url(../img/common/arrow2-right-red.svg);
  background-position: right 10px center;
  background-size: 6px auto;
}
.btn-border-red-tiny.moveOut {
  position: relative;
}
.btn-border-red-tiny.moveOut::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: 0;
  left: 8px;
  display: block;
  margin: auto;
  height: 20px;
  aspect-ratio: 1;
  background-image: url(../img/common/icon-move-out.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-border-red-tiny:disabled {
  background-color: #999;
  pointer-events: none;
}
.btn-border-red-tiny:hover {
  text-decoration: none;
}

.mv {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .mv {
    padding: 34px 0 120px;
  }
}
@media screen and (max-width: 640px) {
  .mv {
    padding: 140px 0 305px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  aspect-ratio: 633/602;
  background-image: url(../img/mv.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 641px) {
  .mv::before {
    right: 3%;
    bottom: -32px;
    max-width: 633px;
    width: 52%;
  }
}
@media screen and (max-width: 640px) {
  .mv::before {
    bottom: -20px;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
  }
}
.mv-ttl {
  max-width: 642px;
}
@media screen and (min-width: 641px) {
  .mv-ttl {
    width: 53%;
  }
}
@media screen and (max-width: 640px) {
  .mv-ttl {
    width: 100%;
  }
}
.mv-subttl {
  margin-top: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .mv-subttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .mv-subttl {
    text-align: center;
    font-size: 2rem;
  }
}
.mv-subttl span {
  color: #f90;
}
.mv-teaser {
  margin-top: 20px;
  width: fit-content;
  border-radius: 5px;
  background-color: #007ebf;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .mv-teaser {
    padding: 9px 30px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 640px) {
  .mv-teaser {
    padding: 9px;
    width: 100%;
    text-align: center;
    font-size: 2.4rem;
  }
}
.mv-txt {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 641px) {
  .mv-txt {
    margin-top: 24px;
  }
}
@media screen and (max-width: 640px) {
  .mv-txt {
    margin-top: 24px;
  }
}
.mv-plt {
  margin-top: 32px;
}
.mv-plt-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}
@media screen and (min-width: 641px) {
  .mv-plt-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .mv-plt-link {
    justify-content: center;
    font-size: 1.4rem;
  }
}
.mv-plt-link::after {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background-image: url(../img/arrow_plt.svg);
  background-size: contain;
}

.service {
  position: relative;
  background-color: #007ebf;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .service {
    padding: 144px 0 396px;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .service {
    padding: 97px 0 415px;
  }
}
.service-ttl {
  position: relative;
  display: inline-block;
  width: fit-content;
}
@media screen and (min-width: 641px) {
  .service-ttl {
    font-size: 4.9rem;
  }
}
@media screen and (max-width: 640px) {
  .service-ttl {
    text-align: left;
    font-size: 2rem;
  }
}
.service-ttl {
  margin-inline: auto;
}
.service-ttl span {
  padding-top: 32px;
}
@media screen and (min-width: 641px) {
  .service-ttl span {
    font-size: 8.4rem;
  }
}
@media screen and (max-width: 640px) {
  .service-ttl span {
    font-size: 5.1rem;
  }
}
.service-ttl img {
  display: inline-block;
  vertical-align: sub;
}
@media screen and (min-width: 641px) {
  .service-ttl img {
    padding-left: 12px;
  }
}
@media screen and (max-width: 640px) {
  .service-ttl img {
    margin-top: 12px;
    width: 100%;
  }
}
.service-ttl::before {
  content: "";
  position: absolute;
  aspect-ratio: 140/181;
  background-image: url(../img/img01.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 641px) {
  .service-ttl::before {
    right: calc(100% + 32px);
    width: 140px;
  }
}
@media screen and (max-width: 640px) {
  .service-ttl::before {
    right: 0;
    width: 28%;
  }
}
.service-note {
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .service-note {
    margin-top: 12px;
  }
}
@media screen and (max-width: 640px) {
  .service-note {
    margin-top: 32px;
  }
}
@media screen and (min-width: 641px) {
  .service-btn {
    margin-top: 52px;
  }
}
@media screen and (max-width: 640px) {
  .service-btn {
    margin-top: 32px;
  }
}

.story {
  position: absolute;
  right: 0;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .story {
    bottom: -123px;
    padding: 40px 0 48px;
    width: 1200px;
  }
}
@media screen and (max-width: 640px) {
  .story {
    bottom: -360px;
    padding: 32px 0;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}
.story {
  margin-inline: auto;
}
.story-ttl {
  padding-bottom: 24px;
  border-bottom: 1px solid #007ebf;
}
@media screen and (min-width: 641px) {
  .story-ttl {
    font-size: 3.2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 640px) {
  .story-ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.story-list {
  margin-top: 30px;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .story-list {
    padding-left: 55px;
  }
}
.story-list-q {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
.story-list-q::before {
  content: url(../img/icon_light.svg);
  padding-right: 12px;
  vertical-align: middle;
}
.story-list-a {
  padding-left: 28px;
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .story-list-a {
    line-height: 1.6;
  }
}
.story-list-note {
  font-size: 1.2rem;
}
@media screen and (min-width: 641px) {
  .story-list-note {
    margin-top: 8px;
    padding-left: 28px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  .story-list-note {
    padding: 12px 0 0 28px;
    line-height: 1.4;
  }
}

.subject {
  color: #000;
}
@media screen and (min-width: 641px) {
  .subject {
    padding: 187px 0 96px;
  }
}
@media screen and (max-width: 640px) {
  .subject {
    padding: 384px 0 67px;
  }
}
.subject {
  margin-inline: auto;
}
.subject-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 641px) {
  .subject-list {
    gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  .subject-list {
    flex-direction: column;
    gap: 20px;
  }
}
.subject-list::after {
  content: "";
  width: 155px;
  aspect-ratio: 31/30;
  background-image: url(../img/img02.svg);
}
.subject-list-q {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #ffcd4b;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .subject-list-q {
    width: 96px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .subject-list-q {
    width: 64px;
    font-size: 1.8rem;
  }
}
.subject-list-a {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .subject-list-a {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .subject-list-a {
    text-align: center;
    font-size: 1.8rem;
  }
}
.subject-list-a-note {
  display: block;
  margin-top: 12px;
  padding-left: 12px;
  text-indent: -12px;
  font-weight: normal;
  font-size: 1.2rem;
}

.about {
  position: relative;
  background-color: #fff;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .about {
    padding: 184px 0 32px;
  }
}
@media screen and (max-width: 640px) {
  .about {
    padding: 144px 0 32px;
  }
}
.about-ttl {
  position: relative;
  width: fit-content;
}
@media screen and (min-width: 641px) {
  .about-ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .about-ttl {
    font-size: 2.8rem;
  }
}
.about-ttl {
  margin-inline: auto;
}
.about-ttl::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 24px);
  left: 50%;
  width: 36px;
  aspect-ratio: 140/181;
  background-image: url(../img/icon_light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%);
}
.about-subttl {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .about-subttl {
    margin-top: 40px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .about-subttl {
    margin-top: 32px;
    font-size: 1.8rem;
  }
}
.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 641px) {
  .about-list {
    margin-top: 80px;
    padding: 0 153px;
  }
}
@media screen and (max-width: 640px) {
  .about-list {
    flex-direction: column;
    margin-top: 40px;
  }
}
.about-list-item {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #f1f8ff;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .about-list-item {
    flex-direction: column;
    gap: 46px;
    padding: 48px 0 40px;
    width: calc((100% - 40px) / 3);
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item {
    gap: 24px;
    justify-content: center;
    padding: 30px 0;
    width: 100%;
    text-align: left;
    font-size: 1.8rem;
  }
}
.about-list-item sup {
  position: absolute;
  top: 265px;
  right: 54px;
  font-size: 1rem;
}
.about-list-item::before {
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 641px) {
  .about-list-item::before {
    height: 150px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item::before {
    height: 100px;
  }
}
.about-list-item:first-of-type::before {
  background-image: url(../img/img03.svg);
}
@media screen and (min-width: 641px) {
  .about-list-item:first-of-type::before {
    width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item:first-of-type::before {
    width: 80px;
  }
}
.about-list-item:nth-of-type(2)::before {
  background-image: url(../img/img04.svg);
}
@media screen and (min-width: 641px) {
  .about-list-item:nth-of-type(2)::before {
    width: 146px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item:nth-of-type(2)::before {
    width: 84px;
  }
}
.about-list-item:nth-of-type(3)::before {
  background-image: url(../img/img05.svg);
}
@media screen and (min-width: 641px) {
  .about-list-item:nth-of-type(3)::before {
    width: 175px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item:nth-of-type(3)::before {
    width: 112px;
  }
}
.about-list-item:nth-of-type(4)::before {
  background-image: url(../img/img06.svg);
}
@media screen and (min-width: 641px) {
  .about-list-item:nth-of-type(4)::before {
    width: 113px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item:nth-of-type(4)::before {
    width: 83px;
  }
}
.about-list-item:nth-of-type(5)::before {
  background-image: url(../img/img07.svg);
}
@media screen and (min-width: 641px) {
  .about-list-item:nth-of-type(5)::before {
    width: 145px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item:nth-of-type(5)::before {
    width: 88px;
  }
}
.about-list-item:nth-of-type(6)::before {
  background-image: url(../img/img08.svg);
}
@media screen and (min-width: 641px) {
  .about-list-item:nth-of-type(6)::before {
    width: 160px;
  }
}
@media screen and (max-width: 640px) {
  .about-list-item:nth-of-type(6)::before {
    width: 101px;
  }
}
.about-price {
  margin-top: 64px;
  width: fit-content;
}
.about-price {
  margin-inline: auto;
}
.about-note {
  margin-top: 32px;
  width: fit-content;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
}
.about-note {
  margin-inline: auto;
}
@media screen and (min-width: 641px) {
  .about-note-txt {
    text-indent: -1.4rem;
  }
}
.structure {
  position: relative;
  border-radius: 10px;
  background-color: #f1f8ff;
  color: #000;
}
@media screen and (min-width: 641px) {
  .structure {
    margin-top: 126px;
    padding: 48px 52px;
    width: 1200px;
  }
}
@media screen and (max-width: 640px) {
  .structure {
    margin-top: 96px;
    padding: 32px 20px;
    width: calc(100% - 40px);
  }
}
.structure {
  margin-inline: auto;
}
.structure-ttl {
  position: relative;
}
@media screen and (min-width: 641px) {
  .structure-ttl {
    font-size: 2.4rem;
  }
  .structure-ttl::before {
    left: 0;
  }
  .structure-ttl::after {
    right: 0;
  }
  .structure-ttl::before, .structure-ttl::after {
    top: 50%;
    width: 320px;
  }
}
@media screen and (max-width: 640px) {
  .structure-ttl {
    padding-bottom: 20px;
    font-size: 2rem;
  }
  .structure-ttl::before {
    display: none;
  }
  .structure-ttl::after {
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.structure-ttl::before, .structure-ttl::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #007ebf;
  transform: translateY(-50%);
}
.structure-img {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .structure-img {
    margin-top: 48px;
  }
}
@media screen and (max-width: 640px) {
  .structure-img {
    margin-top: 32px;
  }
}
.structure-note {
  margin-top: 20px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
}

.contact {
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .contact {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 640px) {
  .contact {
    padding-bottom: 32px;
  }
}
.contact-ttl {
  position: relative;
  font-weight: 700;
  font-size: 1.6rem;
}
.contact-txt {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.contact-item-ttl {
  margin-top: 80px;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .contact-item-ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-item-ttl {
    font-size: 2.8rem;
  }
}
.contact-item-ttl span {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-size: 2rem;
}
.contact-body {
  display: flex;
}
@media screen and (min-width: 641px) {
  .contact-body {
    justify-content: center;
    margin-top: 42px;
  }
}
@media screen and (max-width: 640px) {
  .contact-body {
    flex-direction: column;
  }
}
.contact-body-item {
  border-radius: 10px;
}
@media screen and (min-width: 641px) {
  .contact-body-item {
    padding: 24px;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item {
    padding: 32px 0;
  }
}
@media screen and (min-width: 641px) {
  .contact-body-item:first-of-type .contact-body-item-ttl {
    text-align: center;
    font-size: 3.2rem;
  }
  .contact-body-item:first-of-type .contact-body-item-ttl span {
    display: block;
    font-weight: 400;
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item:first-of-type .contact-body-item-ttl {
    text-align: center;
    font-size: 2.8rem;
  }
  .contact-body-item:first-of-type .contact-body-item-ttl span {
    display: block;
    font-weight: 400;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 641px) {
  .contact-body-item:nth-of-type(2) .contact-body-item-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item:nth-of-type(2) .contact-body-item-ttl {
    text-align: center;
    font-size: 1.6rem;
  }
}
.contact-body-item-ttl {
  margin-bottom: 24px;
}
.contact-body-item-already {
  display: flex;
}
@media screen and (min-width: 641px) {
  .contact-body-item-already {
    align-items: center;
    gap: 32px;
    justify-content: left;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item-already {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
}
.contact-body-item-area {
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
}
.contact-body-item-name {
  min-width: 144px;
}
.contact-body-item-line {
  margin: 16px auto;
  width: 100%;
  border: 1px dashed #ddd;
}
.contact-body-item-subttl {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.contact-body-item-subttl .east {
  color: #01ad27;
}
.contact-body-item-subttl .west {
  color: #ff5005;
}
.contact-body-item-company {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.contact-body-item-data {
  flex-shrink: 0;
}
.contact-body-item-data-number {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .contact-body-item-data-number {
    justify-content: center;
  }
}
.contact-body-item-data-number a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 641px) {
  .contact-body-item-data-number a {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item-data-number a {
    font-size: 4rem;
  }
}
.contact-body-item-data-number::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background-image: url(../img/icon_call.svg);
  background-size: contain;
}
.contact-body-item-btn {
  width: fit-content;
}
@media screen and (min-width: 641px) {
  .contact-body-item-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item-btn {
    margin-top: 32px;
  }
}
.contact-body-item-btn {
  margin-inline: auto;
}
.contact-body-item-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  width: 320px;
  border: 1px solid #444;
  border-radius: 900px;
  background-color: #fff;
  background-image: url(../img/arrow_black.svg);
  background-position: center right 14px;
  background-size: 14px;
  background-repeat: no-repeat;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}
.contact-body-item-btn a:hover {
  opacity: 0.7;
}
.contact-body-item-number {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
@media screen and (min-width: 641px) {
  .contact-body-item-number {
    margin-top: 48px;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item-number {
    justify-content: center;
  }
}
.contact-body-item-number a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}
@media screen and (min-width: 641px) {
  .contact-body-item-number a {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item-number a {
    font-size: 4rem;
  }
}
.contact-body-item-number::before {
  content: "";
  width: 28px;
  width: 48px;
  aspect-ratio: 1;
  background-image: url(../img/icon_call.svg);
  background-image: url(../img/icon_free.svg);
  background-size: contain;
}
.contact-body-item-time {
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .contact-body-item-time {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .contact-body-item-time {
    text-align: center;
    font-size: 1.6rem;
  }
}
.contact-body-item-time span {
  display: block;
  font-size: 12px;
}
.contact-body-item-mail {
  position: relative;
  margin: 20px;
  padding: 10px;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  border: 2px solid #000;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .contact-body-item-mail {
    font-size: 1.6rem;
  }
}
.contact-body-item-note {
  margin-top: 20px;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-inline: auto;
}

.rule {
  padding: 120px 0 0;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .rule {
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 640px) {
  .rule {
    padding: 80px 0 0;
  }
}
.rule {
  margin-inline: auto;
}
@media screen and (min-width: 641px) {
  .rule-ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .rule-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 641px) {
  .rule-txt {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .rule-txt {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.rule-list {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 641px) {
  .rule-list {
    gap: 24px;
    justify-content: space-between;
    margin-top: 64px;
  }
}
@media screen and (max-width: 640px) {
  .rule-list {
    flex-direction: column;
    gap: 64px;
    margin-top: 48px;
  }
}
@media screen and (min-width: 641px) {
  .rule-list-line {
    padding-top: 56px;
    width: 2px;
    stroke: #444;
    stroke-width: 1px;
  }
}
@media screen and (max-width: 640px) {
  .rule-list-line {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .rule-list-item {
    width: calc(50% - 60px);
  }
}
@media screen and (max-width: 640px) {
  .rule-list-item {
    width: 100%;
  }
}
.rule-list-item:nth-of-type(1) .rule-list-item-ttl {
  color: #01ad27;
}
.rule-list-item:nth-of-type(3) .rule-list-item-ttl {
  color: #ff5005;
}
.rule-list-item-ttl {
  font-size: 2.8rem;
}
.rule-list-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.rule-list-item-list.disable .rule-list-item-list-item-pdf {
  opacity: 0.3;
  pointer-events: none;
}
.rule-list-item-list-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  border-radius: 4px;
  background-color: #dbecfc;
}
@media screen and (min-width: 641px) {
  .rule-list-item-list-item {
    padding: 32px;
  }
}
@media screen and (max-width: 640px) {
  .rule-list-item-list-item {
    padding: 24px 20px;
  }
}
.rule-list-item-list-item-ttl {
  width: 100%;
  font-size: 2rem;
}
.rule-list-item-list-item-pdf a {
  display: flex;
  align-items: center;
  border: 1px solid #e4e7e8;
  border-radius: 50px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (min-width: 641px) {
  .rule-list-item-list-item-pdf a {
    gap: 10px;
    padding: 12px 32px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .rule-list-item-list-item-pdf a {
    gap: 12px;
    padding: 8px 20px;
    font-size: 1.4rem;
  }
}
.rule-list-item-list-item-pdf a::after {
  content: "";
  aspect-ratio: 7/8;
  background-image: url(../img/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 641px) {
  .rule-list-item-list-item-pdf a::after {
    width: 28px;
  }
}
@media screen and (max-width: 640px) {
  .rule-list-item-list-item-pdf a::after {
    width: 18px;
  }
}
.rule-list-item-list-item-pdf a:hover {
  opacity: 0.7;
}

.app {
  color: #000;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .app {
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 640px) {
  .app {
    padding: 64px 0 0;
  }
}
.app {
  margin-inline: auto;
}
@media screen and (min-width: 641px) {
  .app-ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .app-ttl {
    font-size: 2.8rem;
  }
}
.app-txt {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (min-width: 641px) {
  .app-txt {
    margin-top: 80px;
  }
}
@media screen and (max-width: 640px) {
  .app-txt {
    margin-top: 32px;
    line-height: 1.6;
  }
}
.app-subtxt {
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 641px) {
  .app-subtxt {
    margin-top: 32px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .app-subtxt {
    margin-top: 20px;
    text-align: left;
    font-size: 1.4rem;
  }
}
.app-subtxt span {
  color: #d6082e;
  font-weight: 700;
}
.app-note {
  margin-top: 16px;
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .app-note {
    text-align: left;
    line-height: 1.6;
  }
}
.app-note a {
  color: #000;
}
.app-body {
  margin-top: 32px;
  width: fit-content;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .app-body {
    padding: 40px 48px 48px;
    width: 676px;
  }
}
@media screen and (max-width: 640px) {
  .app-body {
    flex-direction: column;
    padding: 24px 20px;
  }
}
.app-body {
  margin-inline: auto;
}
@media screen and (min-width: 641px) {
  .app-body-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .app-body-ttl {
    font-size: 1.6rem;
  }
}
.app-body-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 641px) {
  .app-body-list {
    gap: 20px 20px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 640px) {
  .app-body-list {
    gap: 8px 8px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 641px) {
  .app-body-list-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 640px) {
  .app-body-list-item {
    width: calc((100% - 8px) / 2);
  }
}
.app-body-list-item a {
  display: block;
  padding: 12px 0;
  width: 100%;
  border: 1px solid #e4e7e8;
  border-radius: 50px;
  background-image: url(../img/arrow.svg);
  background-position: center right 14px;
  background-repeat: no-repeat;
  color: #000;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1;
  transition: 0.3s;
}
.app-body-list-item a:hover {
  background-color: #e4e7e8;
}
.app-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .app-list-item {
    width: 100%;
  }
}
.app-list-item:nth-of-type(3) {
  width: 100%;
}
.app-list-item-btn {
  display: block;
  margin-top: 20px;
  padding: 14px 10px;
  border-radius: 500px;
  text-decoration: none;
  font-size: 1.4rem;
}
.app-list-item-btn::after {
  content: "＋";
  margin-left: 20px;
}
.app-list-item-btn.disable {
  opacity: 0.3;
  pointer-events: none;
}
.app-list-item-btn.eastColor {
  border: 1px solid #01ad27;
  color: #01ad27;
}
.app-list-item-btn.westColor {
  border: 1px solid #ff5005;
  color: #ff5005;
}
.app-list-item-txt {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 1.5em 0;
  padding: 7px 10px;
  width: fit-content;
  border: solid 1px #ddd;
  border-radius: 5px;
  background: #fff;
  color: #555;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .app-list-item-txt {
    padding: 24px 40px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  .app-list-item-txt {
    padding: 10px 14px 28px;
    font-size: 1.4rem;
  }
}
.app-list-item-txt {
  margin-inline: auto;
}
.app-list-item-txt::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  z-index: 1;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #ddd;
}
.app-list-item-txt::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  z-index: 2;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
}
.app-list-item-txt .east {
  display: block;
  color: #01ad27;
  font-size: 2rem;
}
@media screen and (min-width: 641px) {
  .app-list-item-txt .east {
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .app-list-item-txt .east {
    font-size: 1.8rem;
  }
}
.app-list-item-txt .west {
  display: block;
  color: #ff5005;
}
@media screen and (min-width: 641px) {
  .app-list-item-txt .west {
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .app-list-item-txt .west {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 641px) {
  .app-list-item-Eastbtn {
    margin-top: 16px;
  }
}
.app-list-item-Eastbtn a {
  display: block;
  border-radius: 500px;
  background-color: #01ad27;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .app-list-item-Eastbtn a {
    padding: 32px;
    width: 450px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .app-list-item-Eastbtn a {
    padding: 20px;
    width: 88%;
    font-size: 1.6rem;
    margin-inline: auto;
  }
}
.app-list-item-Eastbtn a.disable {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (min-width: 641px) {
  .app-list-item-Westbtn {
    margin-top: 16px;
  }
}
.app-list-item-Westbtn a {
  display: block;
  border-radius: 500px;
  background-color: #ff5005;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .app-list-item-Westbtn a {
    padding: 32px;
    width: 450px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .app-list-item-Westbtn a {
    padding: 20px;
    width: 88%;
    font-size: 1.6rem;
    margin-inline: auto;
  }
}
.app-list-item-Westbtn a.disable {
  opacity: 0.3;
  pointer-events: none;
}
.app-list-item-qbtn a {
  display: block;
  border: 1px solid #444;
  border-radius: 500px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (min-width: 641px) {
  .app-list-item-qbtn a {
    margin-top: 32px;
    padding: 8px 0;
    width: 40%;
  }
}
@media screen and (max-width: 640px) {
  .app-list-item-qbtn a {
    margin-top: 20px;
    padding: 12px 0;
    width: 100%;
    line-height: 1.2;
  }
}
.app-list-item-qbtn a {
  margin-inline: auto;
}
.app-list-item-qbtn a.arrow {
  background-image: url(../img/arrow_black.svg);
  background-position: right 16px center;
  background-size: 14px auto;
  background-repeat: no-repeat;
}
.app-list-item-qbtn a .blue {
  color: #007ebf;
}

.re100 {
  color: #000;
}
@media screen and (min-width: 641px) {
  .re100 {
    padding: 120px 0 96px;
  }
}
@media screen and (max-width: 640px) {
  .re100 {
    position: relative;
    padding: 120px 0 487px;
  }
}
.re100 {
  margin-inline: auto;
}
@media screen and (min-width: 641px) {
  .re100-ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 640px) {
  .re100-ttl {
    font-size: 2.8rem;
  }
}
.re100-txt {
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .re100-txt {
    margin-top: 42px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .re100-txt {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.re100-body {
  display: flex;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .re100-body {
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 48px 240px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .re100-body {
    position: absolute;
    bottom: 0;
    left: 0;
    flex-direction: column;
    padding: 40px 20px;
    width: 100%;
  }
}
.re100-body {
  margin-inline: auto;
}
.re100-body-ttl {
  line-height: 1.6;
}
@media screen and (min-width: 641px) {
  .re100-body-ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 640px) {
  .re100-body-ttl {
    color: #666;
    font-weight: 700;
    font-size: 1.4rem;
  }
}
.re100-body-txt {
  margin-top: 10px;
  color: #666;
  font-size: 1.3rem;
  line-height: 1.4;
}
.re100-body-note {
  margin-top: 13px;
  color: #666;
  font-size: 1rem;
}
@media screen and (min-width: 641px) {
  .re100-body-img {
    width: 354px;
  }
}
@media screen and (max-width: 640px) {
  .re100-body-img {
    width: 100%;
  }
}

.plt {
  background-color: #007ebf;
  color: #000;
}
@media screen and (min-width: 641px) {
  .plt {
    padding: 64px 0;
  }
}
@media screen and (max-width: 640px) {
  .plt {
    padding: 40px 0;
  }
}
.plt {
  margin-inline: auto;
}
.plt-txt {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (min-width: 641px) {
  .plt-txt {
    margin-top: 42px;
  }
}
.plt-body {
  display: flex;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .plt-body {
    gap: 40px;
    padding: 70px 48px 32px;
  }
}
@media screen and (max-width: 640px) {
  .plt-body {
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }
}
.plt-body {
  margin-inline: auto;
}
.plt-body-contents-txt {
  color: #003668;
  font-size: 1.4rem;
  line-height: 1.4;
}
.plt-body-contents-note {
  margin-top: 8px;
  color: #003668;
  font-size: 1.2rem;
}
@media screen and (min-width: 641px) {
  .plt-body-contents-note {
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  .plt-body-contents-note {
    line-height: 1.6;
  }
}
.plt-body-contents-link {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 641px) {
  .plt-body-contents-link {
    justify-content: right;
    text-align: right;
  }
}
@media screen and (max-width: 640px) {
  .plt-body-contents-link {
    justify-content: center;
    margin-top: 20px;
  }
}
.plt-body-contents-link a {
  color: #000;
  font-size: 1.2rem;
  line-height: 2.2;
}
.plt-body-contents-link::after {
  content: url(../img/target.svg);
  aspect-ratio: 1;
}
.plt-body-img {
  flex-shrink: 0;
  width: 240px;
}

.header-wrap {
  max-width: 1920px;
}
@media screen and (min-width: 641px) {
  .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
  }
}
@media screen and (max-width: 640px) {
  .header-wrap {
    display: block;
  }
}
.header-wrap {
  margin-inline: auto;
}
@container (min-width: 301px) {}
@container (max-width: 300px) {}
@media screen and (min-width: 641px) {
  .header-logo {
    width: 50px;
  }
}
@media screen and (max-width: 640px) {
  .header-logo {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 40px;
  }
}
.header.active {
  position: relative;
  z-index: 1000;
  background-color: #007ebf;
}

.footer {
  padding-bottom: 32px;
  background-color: #007ebf;
  text-align: center;
}
.footer-link {
  display: flex;
  gap: 4px;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.footer-copy {
  display: block;
  margin-top: 48px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}
.fixed-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.fixed-btn a {
  display: block;
  padding: 15px;
  width: 100%;
  background-color: #f9e000;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  .gNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
    overflow-y: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #007ebf;
  }
}
.gNav.active {
  display: flex;
}
.gNav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 641px) {
  .gNav-list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 640px) {
  .gNav-list {
    flex-direction: column;
  }
}
.gNav-list-item {
  display: flex;
  align-items: center;
  flex: auto;
  justify-content: center;
  text-align: center;
}
.gNav-list-item:last-child::after {
  background-color: transparent;
}
.gNav-list-item-link {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 8px;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
@media screen and (min-width: 641px) {
  .gNav-list-item-link {
    color: #000;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .gNav-list-item-link {
    color: #fff;
    font-size: 2rem;
  }
}
.gNav-list-item-link:hover {
  color: #f90;
}
.gNav-list-item-btn {
  border-radius: 50px;
  background-color: #f9e000;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (min-width: 641px) {
  .gNav-list-item-btn {
    padding: 12px 32px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .gNav-list-item-btn {
    padding: 24px 64px;
    font-size: 1.8rem;
  }
}
.gNav-list-item-btn:hover {
  background-color: #f90;
}

/* ハンバーガーメニューのスタイル */
.hamburger {
  position: fixed;
  top: 12px;
  right: 0;
  z-index: 1000;
  display: none; /* デスクトップでは非表示 */
  padding: 15px;
  aspect-ratio: 28/25;
  border: none;
  border-radius: 5px;
  background: none;
  cursor: pointer;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  margin: 5px 0;
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s;
}

/* ハンバーガーがアクティブのときのスタイル */
.hamburger.active::before {
  background-color: #fff;
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span {
  background-color: #fff;
  opacity: 0;
}

.hamburger.active::after {
  background-color: #fff;
  transform: translateY(-8px) rotate(-45deg);
}

/* メディアクエリ: モバイルデバイス用 */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */