@charset "UTF-8";
/* リキッドレイアウト対応 */
@media screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}

.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-font-bold {
  font-weight: bold;
}

.u-vertical-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

html {
  font-size: 16px;
  overflow-x: clip;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #0d2936;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.p-faq {
  padding-block: 40px;
  padding-block: 2.5rem;
}

.p-faq__content {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.c-accordion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
}

.c-accordion {
  --_bg: #fff433;
  --_text: #212121;
  --_icon-bg: #212121;
  --_icon-text: #fff;
  --_duration: 0.3s;
  background-color: var(--_bg);
}
.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
    -webkit-transition-property: grid-template-rows;
    transition-property: grid-template-rows;
    transition-property: grid-template-rows, -ms-grid-rows;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}
.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  padding: 16px;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
.c-accordion__summary::-webkit-details-marker {
  display: none;
}
.c-accordion__summary::after {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 14px;
  height: 0.875rem;
  margin-left: auto;
  content: "";
  background-color: var(--_text);
  mask-image: url("../images/faq-icon.svg");
  -webkit-mask-image: url("../images/faq-icon.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  -webkit-transition: rotate var(--_duration) ease;
  transition: rotate var(--_duration) ease;
  rotate: 180deg;
}

.c-accordion[open] .c-accordion__summary::after {
  rotate: 0deg;
}

.c-accordion__q-icon,
.c-accordion__a-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--_icon-text);
  text-transform: uppercase;
  letter-spacing: 0.125em;
  background-color: var(--_icon-bg);
  border-radius: 50%;
}

.c-accordion__q-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--_text);
  letter-spacing: 0.02em;
}

.c-accordion__contents {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 14px;
  gap: 0.875rem;
  padding: 24px 16px 30px;
  padding: 1.5rem 1rem 1.875rem;
  border-top: 1px solid var(--_text);
}

.c-accordion__a-icon {
  -ms-flex-item-align: start;
      align-self: start;
}

.c-accordion__a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: var(--_text);
  letter-spacing: 0.02em;
}
.c-accordion__a-text p + p {
  margin-top: 0;
}

/* ========================================
  Button（画像対応 / shine）
======================================== */
.c-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .7) 50%, transparent 70%);
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  -webkit-animation: shine-slide 3s ease-in-out infinite;
          animation: shine-slide 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.c-btn img {
  display: block;
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

@-webkit-keyframes shine-slide {
  0% {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
  }
  40%, 100% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
}

@keyframes shine-slide {
  0% {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
  }
  40%, 100% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
}
.l-cta {
  width: 100%;
}

.l-cta__inner {
  position: relative;
  width: 100%;
}

.l-cta__image {
  width: 100%;
}
.l-cta__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-cta__btn {
  position: absolute;
  bottom: 10px;
  bottom: 0.625rem;
  left: 50%;
  width: 100%;
  padding-block: 14px 10px;
  padding-block: 0.875rem 0.625rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: grid;
  gap: 10px;
  gap: 0.625rem;
}

.l-cta__btn-link {
  display: block;
  width: 100%;
  height: auto;
}
@media (any-hover: hover) {
  .l-cta__btn-link:hover .l-cta__btn-image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.l-cta__btn-image {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header {
  position: fixed;
  inset: 0;
  z-index: 900;
}

.l-inner {
  width: 100%;
  max-width: 1280px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

.l-inner__section {
  width: 100%;
  max-width: 1180px;
  max-width: 73.75rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner__section {
    padding-inline: 1.25rem;
  }
}

.l-section {
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-inline: 20px;
  }
}

.l-wrapper {
  height: auto;
  background: none;
}
@media only screen and (min-width: 768px) {
  .l-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-image: url("../images/fiexd-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
}

@media only screen and (min-width: 768px) {
  .l-site-layout__catches {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 60%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1500px) {
  .l-site-layout__catches {
    top: 55%;
  }
}

@media only screen and (max-width: 767px) {
  .l-site-layout__catches-inner {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .l-site-layout__catches-inner {
    position: relative;
    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;
    width: 100%;
  }
}

.l-site-layout__content {
  position: relative;
  width: min(100%, 611px);
  width: min(100%, 38.1875rem);
  aspect-ratio: 611/473;
}
.l-site-layout__content img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.l-site-layout__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100%, 611px);
  width: min(100%, 38.1875rem);
  margin-top: -50px;
  margin-top: -3.125rem;
  margin-left: 40px;
  margin-left: 2.5rem;
}
.l-site-layout__contact img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-site-layout__contact-link {
  display: block;
  width: 100%;
}
.l-site-layout__contact-link img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-top {
  width: 100%;
  margin-top: 74px;
  margin-top: 4.625rem;
  overflow-x: hidden;
}
@media only screen and (min-width: 768px) {
  .l-top {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 30%;
    margin-top: 4.875rem;
    margin-right: 10%;
    margin-left: auto;
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .l-top {
    margin-top: 0;
  }
}

.l-section {
  width: 100%;
}

.l-section__inner {
  width: 100%;
  height: 100%;
}

.l-section__image {
  width: 100%;
}
.l-section__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/***************************************
アニメーションコンポーネント
****************************************/
/* -----------------------------------------------------------------
  Swiper カスタマイズ（LP 各セクション）
----------------------------------------------------------------- */
.p-section01__swiper-overlay,
.p-section02__swiper-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.p-section01__swiper-container > .c-swiper-pager.swiper-pagination,
.p-section02__swiper-container > .c-swiper-pager.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px 10px;
  gap: 0.375rem 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-inline: 0;
  position: relative;
  inset-inline: auto;
  -webkit-transform: none;
          transform: none;
}

.c-swiper-pager__bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background-color: #bdbdbd;
}

.c-swiper-pager__bullet--is-active {
  background-color: #212121;
}

.p-section01__swiper-overlay .swiper-slide,
.p-section02__swiper-overlay .swiper-slide {
  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;
}
.p-section01__swiper-overlay .swiper-slide img,
.p-section02__swiper-overlay .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-section10__swiper-wrap01,
.p-section10__swiper-wrap02 {
  overflow: visible;
}

.p-section10__swiper-stage {
  position: relative;
  width: 100%;
}

.p-section10__swiper-wrap01 > .c-swiper-pager.swiper-pagination,
.p-section10__swiper-wrap02 > .c-swiper-pager.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px 10px;
  gap: 0.375rem 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-inline: 0;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
          transform: none;
}

.p-section10__swiper-wrap01 .c-swiper-pager--section10 .c-swiper-pager__bullet,
.p-section10__swiper-wrap02 .c-swiper-pager--section10 .c-swiper-pager__bullet {
  background-color: #e0e0e0;
}

.p-section10__swiper-wrap01 .c-swiper-pager--section10 .c-swiper-pager__bullet--is-active,
.p-section10__swiper-wrap02 .c-swiper-pager--section10 .c-swiper-pager__bullet--is-active {
  background-color: #FFC74F;
}

.p-section10__btn01-swiper,
.p-section10__btn02-swiper {
  width: 100%;
}

.p-section10__btn01-swiper .swiper-slide,
.p-section10__btn02-swiper .swiper-slide {
  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;
}
.p-section10__btn01-swiper .swiper-slide img,
.p-section10__btn02-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper1__swiper-button,
.swiper2__swiper-button {
  position: absolute;
  top: 46%;
  left: 49%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% + 3.625rem);
  max-width: none;
  margin: 0;
  padding-inline: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.swiper1__swiper-button > *,
.swiper2__swiper-button > * {
  pointer-events: auto;
}

.swiper3__swiper-button,
.swiper4__swiper-button {
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 2px;
  padding-inline: 0.125rem;
  pointer-events: none;
}
.swiper3__swiper-button > *,
.swiper4__swiper-button > * {
  pointer-events: auto;
}

.swiper1__swiper-button .swiper1-button-prev,
.swiper1__swiper-button .swiper1-button-next,
.swiper2__swiper-button .swiper2-button-prev,
.swiper2__swiper-button .swiper2-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 61px;
  width: 3.8125rem;
  height: 61px;
  height: 3.8125rem;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
          box-shadow: 0 0 30px rgba(0, 0, 0, .1);
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
}
.swiper1__swiper-button .swiper1-button-prev::after,
.swiper1__swiper-button .swiper1-button-next::after,
.swiper2__swiper-button .swiper2-button-prev::after,
.swiper2__swiper-button .swiper2-button-next::after {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  width: 0.75rem;
  height: 18px;
  height: 1.125rem;
  content: "";
  background: url("../images/swiper-icon1.svg") no-repeat center/contain;
  border: 0;
}

.swiper1__swiper-button .swiper1-button-prev,
.swiper1__swiper-button .swiper1-button-next {
  background: rgba(240, 160, 0, .7);
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .12), 0 0 0 0.0625rem rgba(255, 255, 255, .22) inset;
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .12), 0 0 0 0.0625rem rgba(255, 255, 255, .22) inset;
}

.swiper2__swiper-button .swiper2-button-prev,
.swiper2__swiper-button .swiper2-button-next {
  background-color: rgba(255, 244, 51, .7);
}

.swiper2__swiper-button .swiper2-button-prev::after,
.swiper2__swiper-button .swiper2-button-next::after {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.swiper1__swiper-button .swiper1-button-prev::after {
  -webkit-transform: scaleX(-1) translateX(-8px);
          transform: scaleX(-1) translateX(-8px);
}

.swiper2__swiper-button .swiper2-button-prev::after {
  -webkit-transform: scaleX(-1) translateX(-5px);
          transform: scaleX(-1) translateX(-5px);
}

.swiper1__swiper-button .swiper1-button-next::after,
.swiper2__swiper-button .swiper2-button-next::after {
  -webkit-transform: scaleX(1) translateX(-5px);
          transform: scaleX(1) translateX(-5px);
}

.swiper3__swiper-button .swiper3-button-prev,
.swiper3__swiper-button .swiper3-button-next,
.swiper4__swiper-button .swiper4-button-prev,
.swiper4__swiper-button .swiper4-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  width: 1.25rem;
  height: 34px;
  height: 2.125rem;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.swiper3__swiper-button .swiper3-button-prev::after,
.swiper3__swiper-button .swiper3-button-next::after,
.swiper4__swiper-button .swiper4-button-prev::after,
.swiper4__swiper-button .swiper4-button-next::after {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  height: 34px;
  height: 2.125rem;
  content: "";
  background: url("../images/swier-btn03.svg") no-repeat center/contain;
  border: 0;
}

.swiper3__swiper-button .swiper3-button-prev::after,
.swiper4__swiper-button .swiper4-button-prev::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.swiper3__swiper-button .swiper3-button-prev.swiper-button-disabled,
.swiper3__swiper-button .swiper3-button-next.swiper-button-disabled,
.swiper4__swiper-button .swiper4-button-prev.swiper-button-disabled,
.swiper4__swiper-button .swiper4-button-next.swiper-button-disabled,
.swiper3__swiper-button .swiper3-button-prev.swiper-button-lock,
.swiper3__swiper-button .swiper3-button-next.swiper-button-lock,
.swiper4__swiper-button .swiper4-button-prev.swiper-button-lock,
.swiper4__swiper-button .swiper4-button-next.swiper-button-lock {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/***************************************
申し込みフォーム
****************************************/
.p-contact {
  padding-block: 40px;
  padding-block: 2.5rem;
}

.p-contact__title {
  width: min(85%, 500px);
  width: min(85%, 31.25rem);
  margin-inline: auto;
}
.p-contact__title img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-contact__body {
  width: calc(100% - 1.25rem);
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-inline: auto;
  border-top: 1px solid #9db5b2;
}

/* ========================================
CF7
======================================== */
.p-contact__cf7 {
  width: 100%;
}

.p-contact__cf7 .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.p-contact__cf7 .wpcf7-form > p {
  width: 100%;
  margin: 0;
}

.p-contact__cf7 .wpcf7-form > .p-contact__group,
.p-contact__cf7 .wpcf7-form > .p-contact__privacy {
  margin: 0;
}

.p-contact__group {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  border-bottom: 1px dotted #9db5b2;
}

.p-contact__cf7 .wpcf7-form > .p-contact__group:first-of-type {
  padding-top: 16px;
  padding-top: 1rem;
}

/* ========================================
ラベル
======================================== */
.p-contact__label-row p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.p-contact__label {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 30px;
  line-height: 1.875rem;
  color: #424242;
  letter-spacing: 0.04em;
}

.p-contact__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 15px;
  padding: 0.125rem 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fcfcfc;
  letter-spacing: 0.04em;
  background-color: #c70c0c;
}

/* ========================================
入力系共通
======================================== */
.p-contact__cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-contact__cf7 input.wpcf7-form-control,
.p-contact__cf7 textarea.wpcf7-form-control,
.p-contact__cf7 select.wpcf7-form-control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 95%;
  min-height: 42px;
  min-height: 2.625rem;
  padding: 8px 14px;
  padding: 0.5rem 0.875rem;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  color: #212121;
  letter-spacing: 0.04em;
  background-color: #fafafa;
  border: none;
  border-radius: 0.25rem;
}

.p-contact__cf7 .wpcf7-form-control::-webkit-input-placeholder {
  color: #bdbdbd;
}

.p-contact__cf7 .wpcf7-form-control::-moz-placeholder {
  color: #bdbdbd;
}

.p-contact__cf7 .wpcf7-form-control::-ms-input-placeholder {
  color: #bdbdbd;
}

.p-contact__cf7 .wpcf7-form-control::placeholder {
  color: #bdbdbd;
}

.p-contact__cf7 select.wpcf7-form-control {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}

/* ========================================
2カラム
======================================== */
.p-contact__grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  gap: 0.625rem;
  width: 60%;
}

.p-contact__cell {
  width: 100%;
}

.p-contact__cell .wpcf7-form-control-wrap {
  width: 90%;
}

/* ========================================
ラジオ
======================================== */
.p-contact__radios .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
}

.p-contact__radios .wpcf7-list-item {
  margin: 0;
}

.p-contact__radios label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.p-contact__radios input[type=radio] {
  display: inline-block;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: radio;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  margin: 0;
  accent-color: #666;
  background: none;
  border: none;
  border-radius: 50%;
}

.p-contact__accept input[type=checkbox] {
  display: inline-block;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  margin-top: 2px;
  margin-top: 0.125rem;
  accent-color: #eb7f20;
  background: none;
  border: none;
}

/* ========================================
注釈
======================================== */
.p-contact__note {
  margin: 8px 0 0;
  margin: 0.5rem 0 0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212121;
  letter-spacing: 0.0375em;
}

/* ========================================
プライバシー
======================================== */
.p-contact__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-block: 30px;
  padding-block: 1.875rem;
}

.p-contact__privacy-title {
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 26px;
  line-height: 1.625rem;
  color: #212121;
  text-align: center;
  letter-spacing: 0.04em;
}

.p-contact__privacy-lead {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  margin-inline: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #424242;
  letter-spacing: 0.04em;
}

.p-contact__privacy-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  max-height: 216px;
  max-height: 13.5rem;
  margin-inline: auto;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  overflow-y: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #424242;
  text-align: left;
  letter-spacing: 0.04em;
  background-color: #fafafa;
}

.p-contact__privacy-box p {
  margin: 0 0 10px;
  margin: 0 0 0.625rem;
}

.p-contact__privacy-box p:last-child {
  margin-bottom: 0;
}

.p-contact__privacy-box {
  /* Firefox */
  scrollbar-color: #eb7f20 #f1f1f1;
  scrollbar-width: thin;
  /* Chrome / Safari */
}
.p-contact__privacy-box::-webkit-scrollbar {
  width: 8px;
}
.p-contact__privacy-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.p-contact__privacy-box::-webkit-scrollbar-thumb {
  background-color: #eb7f20;
  border-radius: 10px;
}
.p-contact__privacy-box::-webkit-scrollbar-thumb:hover {
  background-color: #d86f1b;
}

/* ========================================
同意チェック
======================================== */
.p-contact__accept {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
}

.p-contact__accept .wpcf7-form-control-wrap {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}

.p-contact__accept .wpcf7-list-item {
  margin: 0;
}

.p-contact__accept p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: #424242;
  text-align: left;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.p-contact__accept input[type=checkbox] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  margin-top: 2px;
  margin-top: 0.125rem;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: #eb7f20;
  background: none;
  border: none;
  border-radius: 0;
}

/* ========================================
送信ボタン
======================================== */
.p-contact__cf7 .wpcf7-submit.p-contact__submit,
.p-contact__submit {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: min(90%, 266px);
  width: min(90%, 16.625rem);
  margin-inline: auto;
  padding: 14px 48px 14px 16px;
  padding: 0.875rem 3rem 0.875rem 1rem;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  cursor: pointer;
  background-color: #eb7f20;
  background-image: url("../images/contact-icon.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-position: right 1rem center;
  background-size: 1.75rem 0.625rem;
  border: none;
  border-radius: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-contact__cf7 .wpcf7-submit.p-contact__submit:hover,
.p-contact__cf7 .wpcf7-submit.p-contact__submit:focus-visible,
.p-contact__submit:hover,
.p-contact__submit:focus-visible {
  opacity: 0.7;
}

.p-contact__cf7 .wpcf7-spinner {
  margin: 0;
}

.p-contact__cf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #c70c0c;
}

.p-contact__cf7 .wpcf7-response-output {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 16px 0 0;
  margin: 1rem 0 0;
  padding: 12px;
  padding: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  border-width: 1px;
}

.p-contact__cf7 .wpcf7-mail-sent-ok {
  display: none !important;
}

/***************************************
フッター
****************************************/
.p-footer-bg {
  background: #616161;
  padding-block: 30px;
  padding-block: 1.875rem;
  text-align: center;
}

.c-copyright {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/***************************************
フロントページ
****************************************/
.p-mv {
  width: 100%;
}

.p-mv__inner {
  width: 100%;
}

.p-mv__image {
  width: 100%;
}

.p-mv__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section01 {
  padding-block: 30px;
  padding-block: 1.875rem;
  overflow: hidden;
}

.p-section01__inner {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-section01__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: grid;
  gap: 50px;
  gap: 3.125rem;
}

.p-section01__swiper-wrap {
  margin-top: 50px;
  margin-top: 3.125rem;
  position: relative;
  overflow: visible;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-section01__swiper-title img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section01__label {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  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;
  gap: 2px;
  gap: 0.125rem;
  background-color: #F0A000;
  padding: 10px;
  padding: 0.625rem;
  border-radius: 6.25rem;
  white-space: nowrap;
}

.p-section01__label-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.p-section01__label-time {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #FFF433;
  line-height: 1.6;
}

.p-section01__detail {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.6;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-section01__swiper-container {
  margin-top: 12px;
  margin-top: 0.75rem;
  width: calc(100% - 1.25rem);
  overflow: visible;
}

.p-section01__swiper-image,
.p-section02__swiper-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-section02__inner {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-section02__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.p-section02__swiper-wrap {
  position: relative;
  overflow: visible;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-section02__swiper-bg {
  width: 100%;
}
.p-section02__swiper-bg img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section02__swiper-container {
  position: absolute;
  top: 15%;
  right: 0;
  left: auto;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 1.25rem);
  overflow: visible;
}

.p-section02__cta {
  width: 90%;
  position: absolute;
  bottom: 25px;
  bottom: 1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.p-section02__cta-link {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-section02__cta-link:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-section02__cta-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-section03__image,
.p-section04__image,
.p-section05__image {
  width: 100%;
  height: auto;
}
.p-section03__image img,
.p-section04__image img,
.p-section05__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section06__inner {
  position: relative;
}

.p-section06__image {
  width: 100%;
  height: auto;
}
.p-section06__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section06__btn01 {
  position: absolute;
  bottom: 19.7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: min(80%, 500px);
  width: min(80%, 31.25rem);
}

.p-section06__btn02 {
  position: absolute;
  bottom: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: min(80%, 500px);
  width: min(80%, 31.25rem);
}

.p-section06__btn-link {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-section06__btn-link:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-section06__btn-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-section07__inner,
.p-section08__inner,
.p-section09__inner {
  width: 100%;
  height: auto;
}
.p-section07__inner img,
.p-section08__inner img,
.p-section09__inner img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section10__inner {
  position: relative;
}

.p-section10__image {
  width: 100%;
  height: auto;
}
.p-section10__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section10__swiper-wrap01 {
  position: absolute;
  top: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(80%, 500px);
  width: min(80%, 31.25rem);
  z-index: 1;
}

.p-section10__swiper-wrap02 {
  position: absolute;
  bottom: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(80%, 500px);
  width: min(80%, 31.25rem);
  z-index: 1;
}

/***************************************
ヘッダー
****************************************/
.p-header {
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 4.625rem;
  }
}

.p-header__inner {
  width: 100%;
  max-width: 153px;
  max-width: 9.5625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-left: 40px;
  margin-left: 2.5rem;
}

.p-header__logo {
  width: 100%;
  max-width: 153px;
  max-width: 9.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 9.5625rem;
  }
}

/***************************************
サンクス
****************************************/
.p-thanks {
  padding-top: 16px;
  padding-top: 1rem;
}

.p-thanks__title {
  width: min(55%, 300px);
  width: min(55%, 18.75rem);
  margin-inline: auto;
}

.p-thanks__title-logo {
  display: block;
}
.p-thanks__title-logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover) {
  .p-thanks__title-logo:hover {
    opacity: 0.7;
  }
}

.p-thanks__inner {
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}

.p-thanks__btn {
  display: block;
  position: absolute;
  bottom: 8px;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(85%, 500px);
  width: min(85%, 31.25rem);
}
.p-thanks__btn img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-thanks__btn:hover .p-thanks__btn-image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
/*# sourceMappingURL=style.css.map */
