@charset "UTF-8";
/* ============================================================
   _default.scss — リセット & CSS変数
   ============================================================ */
:root {
  --color-brand-red: #c80000;
  --color-brand-dark: #232323;
  --color-brand-yellow: #ffdc00;
  --color-brand-blue: #1498b6;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;
  --font-maru: 'Zen Maru Gothic', serif;
  --max-width: 1400px;
  --m-width: 1150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -1px;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

img, a, ul, li, iframe, fieldset {
  border: none;
  outline: none;
}

a, img {
  display: block;
  width: 100%;
}
a.inline, img.inline {
  display: inline;
  width: auto;
}

img {
  line-height: 0;
}

a {
  color: var(--color-brand-dark);
  text-decoration: none;
  transition: 0.2s ease-out;
}

h1, h2, h3, h4, ol, ul, li, dl, dt, dd, p, figure, form, iframe, fieldset, legend {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.65;
}

em {
  font-style: normal;
}

article, aside, footer, header, main, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

input, textarea, select {
  font-size: 16px;
  padding: 3px;
  border: 2px solid var(--color-brand-dark);
}

select {
  padding: 2.5px 3px;
}

label {
  display: flex;
}
label input {
  display: block;
}

input:focus {
  outline: none;
}
input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]:focus, input[type=button]:focus {
  outline-offset: -2px;
}
input[type=radio], input[type=checkbox] {
  display: inline-block;
  height: 2em;
  font-size: 16px;
  margin: 0 5px 0 0;
  cursor: pointer;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  margin-left: 5px;
  opacity: 0.5;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: var(--color-brand-dark);
  font-size: 16px;
}

/* ============================================================
_common.scss — 共通パーツ
============================================================ */
/* ---- 表示切り替え ---- */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
.tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .tb {
    display: block;
  }
}

/* ---- レイアウト ---- */
.l-inner {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.m-inner {
  max-width: var(--m-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.s-inner {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.box-side {
  padding-inline: 30px;
}

.bg-blue {
  background-color: var(--color-brand-blue);
}

.bg-stripe {
  background-image: repeating-linear-gradient(315deg, #f8d447, #f8d447 5px, #f9dd4a 5px, #f9dd4a 10px);
}

/* ---- 汎用マージン ---- */
.c-mt-s {
  margin-top: 30px !important;
}
@media screen and (max-width: 640px) {
  .c-mt-s {
    margin-top: 20px !important;
  }
}

.c-mb-m {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .c-mb-m {
    margin-bottom: 40px !important;
  }
}

.c-mt-m {
  margin-top: 60px !important;
}
@media screen and (max-width: 640px) {
  .c-mt-m {
    margin-top: 40px !important;
  }
}

.c-mt-l {
  margin-top: 100px !important;
}
@media screen and (max-width: 640px) {
  .c-mt-l {
    margin-top: 80px !important;
  }
}

.c-mt-1em {
  margin-top: 1em !important;
}

.m-auto {
  margin-inline: auto !important;
}

/* ---- 汎用パディング ---- */
.rl-p30 {
  padding: 0 30px;
}

.c-pt40-20 {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .c-pt40-20 {
    padding-top: 20px;
  }
}

.c-pt120-60 {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .c-pt120-60 {
    padding-top: 60px;
  }
}

.c-pt120-80 {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .c-pt120-80 {
    padding-top: 80px;
  }
}

/* ---- 汎用テキスト ---- */
.ib {
  display: inline-block !important;
}

.c-text-j {
  text-align: justify !important;
}

.c-text-r {
  text-align: right !important;
}

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

.c-fw-b {
  font-weight: bold !important;
}

.c-color-main {
  color: var(--color-brand-red) !important;
}

.c-color-white {
  color: white !important;
}

.c-ls-s {
  letter-spacing: -0.05em;
}

.c-fz-22 {
  font-size: 22px;
}

.c-fz-20 {
  font-size: 20px;
}

.c-fz-14 {
  font-size: 14px;
}

.c-fz-20-16 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-fz-20-16 {
    font-size: 16px;
  }
}

.c-fz-20-18 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-fz-20-18 {
    font-size: 18px;
  }
}

.c-color-yellow {
  color: #ffdc00;
}

.c-color-blue {
  color: var(--color-brand-blue);
}

.c-fz-22-16 {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-fz-22-16 {
    font-size: 16px;
  }
}

.c-fz-24-18 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-fz-24-18 {
    font-size: 18px;
  }
}

.c-fz-24-20 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-fz-24-20 {
    font-size: 20px;
  }
}

.lb {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.lb--l {
  text-align: left;
}
.lb--c {
  text-align: center;
}
.lb--c-l {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lb--c-l {
    text-align: left;
  }
}
.lb--r-l {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .lb--r-l {
    text-align: left;
  }
}
.lb--l-c {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lb--l-c {
    text-align: center;
  }
}
.lb--indent {
  text-indent: -1rem;
  padding-left: 1rem;
}

/* ---- フェードイン ---- */
.c-feed {
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.c-feed.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.c-opacity {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.c-opacity.animated {
  opacity: 1;
}

/* ---- バウンスイン ---- */
.c-bound {
  transform: translate3d(0, 60px, 0) scale(0.96);
  opacity: 0;
}
.c-bound.animated {
  animation: c-bound-in 0.3s cubic-bezier(0.22, 1.35, 0.36, 1) both;
}

@keyframes c-bound-in {
  0% {
    transform: translate3d(0, 60px, 0) scale(0.96);
    opacity: 0;
  }
  55% {
    transform: translate3d(0, -12px, 0) scale(1.03);
    opacity: 1;
  }
  75% {
    transform: translate3d(0, 6px, 0) scale(0.99);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-bound {
    transform: none;
    opacity: 1;
  }
  .c-bound.animated {
    animation: none;
  }
}
.btn-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .btn-wrap {
    flex-direction: column;
  }
}
.btn-wrap a {
  position: relative;
}
.btn-wrap a:before {
  content: "";
  position: absolute;
  top: 16px;
  right: 20px;
  width: 18px;
  height: 18px;
  display: block;
  background-image: url("../img/arrow.svg");
  transition: 0.2s all;
}
.btn-wrap a:hover {
  transform: scale(1.05);
}
.btn-wrap a:hover:before {
  top: 12px;
  right: 16px;
}

.big-btn a:before {
  top: 30px;
  right: 36px;
  width: 24px;
  height: 24px;
}
.big-btn a:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .big-btn a:hover {
    transform: none;
  }
}
.big-btn a:hover:before {
  top: 24px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .big-btn a:before {
    top: 16px;
    right: 20px;
    width: 18px;
    height: 18px;
  }
  .big-btn a:hover:before {
    top: 12px;
    right: 16px;
  }
}

.border-inner {
  border: 3px solid var(--color-brand-dark);
  box-shadow: 3px 3px 0px 0px var(--color-brand-dark);
  border-radius: 24px;
  background-color: white;
  padding: 120px 100px;
}
@media screen and (max-width: 767px) {
  .border-inner {
    padding: 40px 30px;
  }
}

.fukidashi {
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  transform: rotate(6deg);
  position: absolute;
  top: 40px;
  width: 100%;
  left: calc(50% - 250px);
}
.fukidashi img {
  width: 23px;
}
.fukidashi-wrap {
  color: white;
  font-size: 28px;
  font-weight: bold;
  font-family: var(--font-maru);
  line-height: 1.3;
}
.fukidashi-wrap span {
  font-size: 36px;
}
@media screen and (max-width: 1200px) {
  .fukidashi {
    top: 0px;
    left: calc(50% - 120px);
  }
  .fukidashi-wrap {
    font-size: 24px;
  }
  .fukidashi-wrap span {
    font-size: 30px;
  }
}
@media screen and (max-width: 960px) {
  .fukidashi {
    left: calc(50% - 110px);
  }
  .fukidashi-wrap {
    font-size: 24px;
  }
  .fukidashi-wrap span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .fukidashi {
    top: 5.4054054054vw;
    left: 13.5135135135vw;
  }
  .fukidashi-wrap {
    font-size: 4.8648648649vw;
  }
  .fukidashi-wrap span {
    font-size: 5.9459459459vw;
  }
}

.contact .fukidashi {
  top: 120px;
  left: 70px;
}
@media screen and (max-width: 767px) {
  .contact .fukidashi {
    top: 80px;
    left: 10.8108108108vw;
  }
}

.inline {
  display: inline;
}

.follow {
  position: fixed;
  display: flex;
  width: fit-content;
  gap: 6px;
  top: 26px;
  right: 30px;
  z-index: 100;
}
.follow a {
  width: auto;
}
.follow a:hover {
  animation: boundAnimation 0.5s cubic-bezier(0.25, 1.5, 0.5, 1) infinite;
}
.follow img {
  width: 63px;
}
@media screen and (max-width: 767px) {
  .follow {
    top: inherit;
    bottom: 10px;
    right: 10px;
  }
}

@keyframes boundAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 上に15px跳ねる */
  }
}
.fv {
  padding: 20px 20px 0;
  position: relative;
  isolation: isolate;
}
.fv:before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: -20px;
  height: 100px;
  width: 100%;
  background: linear-gradient(360deg, white, transparent);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv {
    height: auto;
    overflow-x: clip;
    overflow-y: visible;
  }
}
.fv__inner {
  position: relative;
  padding-bottom: 110px;
  height: calc(100% + 100px);
}
.fv__inner:before {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  background-image: url(../img/fv_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 140px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 140px), transparent 100%);
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-bottom: 50px;
  }
  .fv__inner:before {
    display: none;
  }
  .fv__inner_sp {
    position: relative;
  }
  .fv__inner_sp:before {
    position: absolute;
    content: "";
    display: block;
    inset: 0;
    background-image: url(../img/fv_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 80px), transparent 100%);
    z-index: 0;
    pointer-events: none;
  }
}
.fv__inner_sp > * {
  position: relative;
  z-index: 2;
}
.fv__ttl {
  position: relative;
  z-index: 2;
  width: 730px;
  background-color: white;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  padding: 60px 20px;
}
.fv__ttl-sub {
  width: 480px;
  margin: 0 auto 40px;
}
.fv__ttl-main {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    width: inherit;
    padding: 2.7027027027vw;
    border-radius: 0;
  }
  .fv__ttl-sub {
    width: 100%;
    margin: 0 auto 5.4054054054vw;
  }
  .fv__ttl-main {
    width: 100%;
  }
}
.fv__img {
  max-width: 618px;
  width: 100%;
  margin: -50px auto;
}
@media screen and (max-width: 1200px) {
  .fv__img {
    max-width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    margin: -5.4054054054vw auto 0;
    width: 80vw;
  }
}
.fv__icon {
  position: absolute;
  width: 240px;
  right: 40px;
  top: 530px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .fv__icon {
    top: 450px;
  }
}
@media screen and (max-width: 960px) {
  .fv__icon {
    width: 200px;
    top: 490px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .fv__icon {
    position: inherit;
    max-width: 400px;
    width: 65.9459459459vw;
    margin: 0 auto;
    top: inherit;
    right: inherit;
  }
}
.fv__txt {
  position: relative;
  z-index: 2;
  max-width: 1090px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .fv__txt {
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-top: -1px;
    padding: 30px 0 48.6486486486vw;
  }
}
.fv__txt-img {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__txt-img {
    max-width: 450px;
    width: 81.0810810811vw;
  }
}
.fv__txt-img02 {
  position: absolute;
  width: 180px;
  top: 30px;
  left: 60px;
}
@media screen and (max-width: 767px) {
  .fv__txt-img02 {
    top: inherit;
    width: 32.4324324324vw;
    bottom: -13.5135135135vw;
    left: inherit;
    right: calc(50% + 6px);
  }
}
.fv__txt-mado {
  position: absolute;
  width: 206px;
  top: 30px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .fv__txt-mado {
    width: 37.8378378378vw;
    right: inherit;
    top: inherit;
    bottom: 10px;
    left: calc(50% + 10px);
  }
}

.fv-btn {
  position: relative;
  width: 990px;
  margin: 0 auto 40px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .fv-btn {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .fv-btn {
    display: none;
  }
}

.c1 {
  padding-bottom: 120px;
  overflow-x: clip;
  overflow-y: visible;
}
@media screen and (max-width: 767px) {
  .c1 {
    padding-bottom: 50px;
  }
}
.c1__title {
  position: relative;
  max-width: 560px;
  width: 100%;
  padding: 20px 30px 0;
  margin: 0 auto 50px;
}
.c1__inner {
  position: relative;
}
.c1__inner-txt {
  max-width: 850px;
  width: 80%;
}
@media screen and (max-width: 960px) {
  .c1__inner-txt {
    width: 74%;
  }
}
@media screen and (max-width: 767px) {
  .c1__inner-txt {
    width: 100%;
  }
}
.c1__inner-img {
  position: absolute;
  max-width: 300px;
  bottom: 40px;
  right: -80px;
}
@media screen and (max-width: 960px) {
  .c1__inner-img {
    max-width: 200px;
    bottom: 40px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c1__inner-img {
    right: 0;
    width: 29.7297297297vw;
    bottom: 17.5675675676vw;
  }
}
.c1__fukidashi {
  max-width: 330px;
  width: 100%;
  margin: 30px auto 10px;
  position: relative;
  z-index: 10;
}
.c1__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .c1__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c1__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
    margin-top: -30px;
  }
}
.c1__list li {
  padding: 10px;
  border: 2px solid var(--color-brand-dark);
  box-shadow: 3px 3px 0px 0px var(--color-brand-dark);
  border-radius: 6px;
  background-color: white;
  padding: 10px;
}
.c1__list li h3 {
  height: 140px;
  padding: 0 10px;
  display: flex;
}
.c1__list li h3 img {
  max-width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c1__list li h3 {
    height: auto;
    padding: 30px 15px;
  }
}
.c1__list li p {
  padding: 0 15px 30px;
}

.c2__inner {
  position: relative;
}
.c2__inner-ttl {
  position: relative;
  z-index: 10;
  max-width: 736px;
  width: 100%;
  padding-top: 55px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c2__inner-ttl {
    padding-top: 23.2432432432vw;
  }
}
.c2__inner-fukidashi {
  position: absolute;
  width: 166px;
  top: -30px;
  right: calc(50% + 370px);
}
@media screen and (max-width: 1200px) {
  .c2__inner-fukidashi {
    top: -110px;
    right: calc(50% + 30px);
  }
}
@media screen and (max-width: 767px) {
  .c2__inner-fukidashi {
    width: 100px;
    top: -30px;
    right: 55%;
  }
}
.c2__inner-img {
  position: absolute;
  width: 186px;
  right: 0;
  top: -30px;
}
@media screen and (max-width: 1200px) {
  .c2__inner-img {
    top: -120px;
    right: inherit;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .c2__inner-img {
    width: 108px;
    top: -40px;
  }
}
.c2 p {
  padding: 30px 0;
}
@media screen and (max-width: 1200px) {
  .c2 p {
    padding: 50px 0 30px;
  }
}

.c2-cta {
  padding-bottom: 30px;
}
.c2-cta .btn-wrap {
  width: 100%;
}

.c3 {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background-image: repeating-linear-gradient(315deg, #f8d447, #f8d447 5px, #f9dd4a 5px, #f9dd4a 10px);
  background-size: 100% 50%;
  background-repeat: no-repeat;
  background-position: top;
}
.c3:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50.01%;
  transform: translateY(-100%);
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/100;
  background-image: url(../img/triangle_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
}
.c3 > * {
  position: relative;
  z-index: 1;
}
.c3__table {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .c3__table {
    width: calc(100% + 460px);
    margin-left: -212px;
  }
}
.c3__table-ttl {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .c3__table-ttl {
    max-width: inherit;
    padding-top: 12.1621621622vw;
  }
}
.c3 .border-inner {
  padding-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .c3 .border-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c3 .border-inner {
    padding: 20px 30px 10.8108108108vw;
  }
}

.c4 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.c4__ttl {
  max-width: 460px;
  width: 100%;
  margin: 0 auto 40px;
}
.c4__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .c4__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c4__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c4__list-col {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 2px solid var(--color-brand-dark);
  box-shadow: 3px 3px 0px 0px var(--color-brand-dark);
  border-radius: 18px;
  background-color: white;
  padding: 10px;
}
.c4__list-wrap {
  position: relative;
  padding: 60px 50px 40px;
}
@media screen and (max-width: 960px) {
  .c4__list-wrap {
    padding: 40px 20px;
  }
}
.c4__list .check {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: 30px 40px;
  min-height: 250px;
  border-radius: 0 0 12px 12px;
  background-color: #ffdc00;
}
@media screen and (max-width: 960px) {
  .c4__list .check {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .c4__list .check {
    min-height: auto;
  }
}
.c4__list .num {
  position: absolute;
  width: 50px;
  top: 30px;
  left: 25px;
}
@media screen and (max-width: 960px) {
  .c4__list .num {
    top: 10px;
    left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .c4__list .num {
    width: 40px;
    top: 16px;
  }
}
.c4__list .mado {
  height: 230px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .c4__list .mado {
    height: auto;
    margin: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .c4__list .mado-min {
    padding: 0 20px;
  }
}
.c4__list-full {
  display: grid;
  align-items: center;
  grid-column: 1/-1;
  flex-direction: inherit;
  grid-template-columns: 330px 1fr 320px;
}
@media screen and (max-width: 960px) {
  .c4__list-full {
    display: flex;
    flex-direction: column;
    grid-column: inherit;
    grid-template-columns: 1fr;
  }
}
.c4__list-full .c4__list-wrap {
  padding: 0 40px;
}
@media screen and (max-width: 960px) {
  .c4__list-full .c4__list-wrap {
    order: 1;
    padding: 40px 20px 0;
  }
}
.c4__list-full .mado-wrap {
  padding: 40px 0 40px 50px;
}
.c4__list-full .mado-wrap .mado {
  align-items: flex-start;
}
.c4__list-full .mado-wrap p {
  margin-top: -1px;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .c4__list-full .mado-wrap {
    order: 2;
    padding: 0 20px 50px;
  }
}
.c4__list-full h3 {
  margin-bottom: 20px;
}
.c4__list-full .check {
  display: flex;
  height: 100%;
  align-items: center;
  margin-top: 0;
  padding: 0 40px;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 960px) {
  .c4__list-full .check {
    order: 3;
    padding: 30px 20px;
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
  .c4__list-full .check figure {
    width: 100%;
  }
}

.c5 {
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .c5 {
    padding-bottom: 40px;
  }
}
.c5__ttl {
  position: relative;
  max-width: 690px;
  width: 100%;
  padding: 50px 30px 0;
  margin: 0 auto;
}
.c5__ttl-img {
  position: absolute;
  width: 210px;
  right: -190px;
  bottom: 0;
}
.c5__list {
  display: grid;
  padding: 60px 0;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}
@media screen and (max-width: 960px) {
  .c5__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c5__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
    transform: none !important;
    padding: 0 0 40px;
  }
}
.c5__list li {
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  border: 2px solid var(--color-brand-dark);
  box-shadow: 3px 3px 0px 0px var(--color-brand-dark);
  border-radius: 6px;
  background-color: white;
}
.c5__list li figure {
  width: 100%;
  margin-bottom: 30px;
}
.c5__slider {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c5__slider {
    overflow: visible;
    padding: 0 30px;
  }
  .c5__slider .swiper-slide {
    width: auto !important;
  }
}
.c5__end {
  max-width: 730px;
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
}

.c6 {
  overflow-x: clip;
  overflow-y: visible;
  background-image: repeating-linear-gradient(315deg, #ae2317, #ae2317 5px, #b72619 5px, #b72619 10px);
}
.c6__inner {
  padding: 120px 0 60px;
}
@media screen and (max-width: 767px) {
  .c6__inner {
    padding: 60px 0;
  }
}
.c6__ttl {
  position: relative;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 30px;
  margin-bottom: 60px;
}
.c6__ttl-fukidashi {
  position: absolute;
  width: 140px;
  top: -80px;
}
@media screen and (max-width: 767px) {
  .c6__ttl-fukidashi {
    max-width: 140px;
    width: 24.3243243243vw;
    left: 5px;
  }
}
.c6__cta {
  position: relative;
  margin-top: 60px;
}
.c6__cta .c6__table {
  position: relative;
  z-index: 1;
  max-width: 940px;
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c6__cta .c6__table {
    max-width: inherit;
    width: 264.8648648649vw;
    left: 50%;
    transform: translate(-50%, 0px);
  }
}
.c6__cta .btn-wrap {
  position: absolute;
  left: 50%;
  bottom: 60px;
  z-index: 2;
  width: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c6__cta .btn-wrap {
    bottom: 50px;
  }
}

.c7 {
  position: relative;
  z-index: 20;
  padding-top: 90px;
  padding-bottom: 80px;
  overflow-x: clip;
  overflow-y: visible;
}
@media screen and (max-width: 767px) {
  .c7 {
    padding-top: 150px;
    padding-bottom: 30px;
  }
}
.c7 > div {
  position: relative;
}
.c7-img {
  position: absolute;
  width: 116px;
  top: -110px;
  right: 80px;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .c7-img {
    top: -150px;
    right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c7-img {
    width: 100px;
    right: 50%;
    top: -200px;
    transform: translate(50%, 0);
  }
}
.c7-ttl {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.c7-txt {
  margin: 50px auto 60px;
  letter-spacing: -1.9px;
}
@media screen and (max-width: 767px) {
  .c7-txt {
    margin: 40px auto 0;
  }
}
.c7-list {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.c7-list.is-loop-ready {
  animation: c4-loop-x 34s linear infinite;
}
.c7-list li {
  flex: 0 0 280px;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .c7-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    row-gap: 6px;
    column-gap: 0;
    margin-top: 30px;
    width: auto;
    animation: none !important;
    transform: none !important;
  }
  .c7-list li {
    flex: none;
    width: 100%;
  }
  .c7-list li:nth-child(odd) {
    position: relative;
    top: 50px;
  }
}

@keyframes c4-loop-x {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.c8 {
  padding: 50px 30px 30px;
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  background-image: linear-gradient(to bottom, #1498b6 0%, #1498b6 95%, #ffffff 95%, #ffffff 100%);
}
@media screen and (max-width: 767px) {
  .c8 {
    padding-bottom: 80px;
    background-image: linear-gradient(to bottom, #1498b6 0%, #1498b6 98%, #ffffff 98%, #ffffff 100%);
  }
}
.c8:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 95%;
  transform: translateY(-100%);
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/100;
  background-image: url(../img/triangle_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c8:before {
    top: 98%;
  }
}
.c8 > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .c8 .border-inner {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 767px) {
  .c8 .border-inner {
    padding: 50px 30px 30px;
  }
}
.c8__ttl {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .c8__ttl {
    padding-bottom: 40px;
  }
}
.c8__img {
  padding: 60px 0 40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .c8__img {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 30px 0;
    will-change: transform;
  }
  .c8__img.is-loop-ready {
    animation: c4-loop-x 20s linear infinite;
  }
  .c8__img img {
    flex: 0 0 720px;
    width: 720px;
    max-width: none;
  }
}
.c8 .btn-wrap {
  padding: 60px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c8 .btn-wrap {
    padding: 20px 0 0;
  }
}
.c8 .btn-wrap a {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 767px) {
  .c8 .btn-wrap a {
    width: 100%;
  }
}

.c9 {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c9 {
    padding-top: 40px;
  }
}
.c9-attention {
  position: absolute;
  top: -65px;
  left: 50%;
  width: 440px;
  transform: translate(-50%, 0);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .c9-attention {
    max-width: 320px;
    width: 100%;
  }
}
.c9-inner__wrap {
  margin-top: 30px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c9-inner__wrap {
    margin-top: 0;
  }
}
.c9-inner__wrap-txt {
  width: 400px;
}
.c9-inner__wrap-list {
  width: 380px;
}
.c9-inner__wrap figure {
  width: 330px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 960px) {
  .c9-inner__wrap {
    gap: 30px;
  }
  .c9-inner__wrap-txt {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .c9-inner__wrap {
    display: block;
  }
  .c9-inner__wrap-txt, .c9-inner__wrap-list {
    width: 100%;
  }
  .c9-inner__wrap figure {
    width: 120px;
    margin: 0px -20px 0 auto;
  }
}
.c9-list {
  position: relative;
  counter-reset: cnt;
  --c9-arrow-height: 0px;
  --c9-arrow-opacity: 0;
  --c9-arrow-left: 28px;
  --c9-arrow-top: 21px;
}
.c9-list__scroll-arrow {
  position: absolute;
  top: var(--c9-arrow-top);
  left: var(--c9-arrow-left);
  z-index: 0;
  width: 0;
  height: var(--c9-arrow-height);
  border-left: 3px dotted var(--color-brand-dark);
  opacity: var(--c9-arrow-opacity);
  pointer-events: none;
  transition: height 0.12s linear, opacity 0.2s ease-out;
}
.c9-list__scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -8px;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--color-brand-dark);
  border-bottom: 3px solid var(--color-brand-dark);
  transform: rotate(45deg);
  transform-origin: center;
}
.c9-list li {
  position: relative;
  z-index: 1;
  padding-left: 70px;
  margin-bottom: 40px;
  list-style-type: none;
  counter-increment: cnt;
}
.c9-list li h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
}
.c9-list li:before {
  position: absolute;
  content: "0" counter(cnt);
  font-family: var(--font-maru);
  font-size: 30px;
  font-weight: bold;
  border: 2px solid black;
  width: 56px;
  height: 56px;
  left: 0;
  top: -7px;
  padding: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  box-shadow: 3px 3px 0 black;
  background-color: white;
  z-index: 2;
}
.c9 .btn-wrap {
  margin-top: 40px;
}

.c10 {
  padding-top: 60px;
}
.c10-inner {
  background-color: #ffdc00;
}
.c10-inner-wrap {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
}
.c10-inner figure {
  width: 100%;
}
.c10-ttl {
  position: relative;
}
.c10-ttl-img {
  position: absolute;
  width: 230px;
  top: -50px;
  right: -30px;
}
@media screen and (max-width: 767px) {
  .c10-ttl-img {
    width: 21.6216216216vw;
    top: -8.1081081081vw;
    right: 0px;
  }
}
.c10-txt {
  margin: 30px 0;
}
.c10 .btn-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .c10 .btn-wrap {
    margin-top: 30px;
  }
}

.faq {
  margin: 130px auto 80px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin: 40px auto 50px;
  }
}
.faq-img {
  width: 136px;
  margin: 0 auto;
}
.faq-title {
  font-family: var(--font-maru);
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .faq-title {
    margin-top: 10px;
  }
}
.faq article {
  padding: 30px 60px;
  border-bottom: 2px dotted;
}
@media screen and (max-width: 767px) {
  .faq article {
    padding: 30px 0;
  }
}
.faq article p {
  display: none;
  margin-top: 40px;
  padding: 50px 40px;
  background-color: #e7f5f8;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .faq article p {
    padding: 30px;
  }
}
.faq article.open p {
  display: block;
}
.faq article.open .faq-toggle {
  background-color: #919191;
}
.faq article.open .faq-toggle:after {
  rotate: 0deg;
}
.faq article:first-child {
  border-top: 2px dotted;
}
.faq h3 {
  position: relative;
  cursor: pointer;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .faq h3 {
    padding-right: 60px;
  }
}
.faq-toggle {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  inset: 50% 0 auto auto;
  translate: 0 -50%;
  transition: 0.2s ease-out;
  background-color: var(--color-brand-dark);
}
@media screen and (max-width: 767px) {
  .faq-toggle {
    width: 40px;
  }
}
.faq-toggle:before, .faq-toggle:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  transition: 0.2s ease-out;
}
.faq-toggle:after {
  rotate: 90deg;
}

.contact {
  overflow: hidden;
}
.contact .contact-ttl {
  position: relative;
  z-index: 10;
}
.contact .contact-ttl__wrap {
  position: relative;
  max-width: 830px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
}
@media screen and (max-width: 767px) {
  .contact .contact-ttl__wrap {
    width: inherit;
    width: 203.5135135135vw;
  }
}
.contact .contact-ttl__img01 {
  position: absolute;
  width: 98px;
  top: 110px;
  left: calc(50% + 330px);
}
.contact .contact-ttl__img02 {
  position: absolute;
  width: 73px;
  top: 47%;
  left: calc(50% + 440px);
}
.contact .contact-ttl__img03 {
  position: absolute;
  bottom: 0;
  right: calc(50% + 280px);
  width: 194px;
}
@media screen and (max-width: 767px) {
  .contact .contact-ttl__img03 {
    width: 132px;
    right: inherit;
    left: 20px;
    bottom: -100px;
  }
}
.contact .contact-ttl__img04 {
  position: absolute;
  top: 370px;
  right: calc(50% + 350px);
  width: 175px;
}
.contact .contact-ttl__img05 {
  position: absolute;
  bottom: 0;
  left: calc(50% + 220px);
  width: 210px;
}
@media screen and (max-width: 767px) {
  .contact .contact-ttl__img05 {
    width: 134px;
    left: inherit;
    right: -20px;
    bottom: -130px;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact-ttl__img01, .contact .contact-ttl__img02, .contact .contact-ttl__img04 {
    display: none;
  }
}
.contact-inner {
  position: relative;
  z-index: 0;
  margin-top: -250px;
  padding-top: 330px;
}
@media screen and (max-width: 960px) {
  .contact-inner {
    padding: 330px 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner {
    margin-top: 50px;
    padding-top: 60px;
  }
}

.contact__form {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 0;
  }
}
.contact__form-detail {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact__form-detail {
    display: block;
    margin-bottom: 25px;
  }
}
.contact__form-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  width: 260px;
  font-size: 20px;
}
.contact__form-title:before {
  content: "任意";
  color: #656565;
}
.contact__form-title.required::before {
  content: "必須";
  color: var(--color-brand-red);
}
.contact input,
.contact select,
.contact textarea {
  color: var(--color-brand-dark);
  height: 60px;
  border: 3px solid var(--color-brand-dark);
  padding: 5px 10px;
  appearance: none;
  width: 100%;
}
.contact textarea {
  height: 120px;
}
.contact input[type=tel],
.contact input[name=postal-code],
.contact input#postal-code {
  width: 220px;
}
.contact__submit {
  display: grid;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 420px;
  height: 90px;
  background-color: var(--color-brand-red);
  border: 3px solid var(--color-brand-dark);
  font-size: 26px;
  font-weight: bold;
  align-items: center;
  box-shadow: 6px 6px 0px 0px var(--color-brand-dark);
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__submit {
    height: 60px;
  }
}
.contact__submit:before {
  content: "";
  position: absolute;
  top: 16px;
  right: 20px;
  width: 18px;
  height: 18px;
  display: block;
  background-image: url("../img/arrow.svg");
  transition: 0.2s all;
}

.contact__form-detail {
  align-items: baseline;
}
.contact__form-detail p {
  display: flex;
  width: 100%;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .contact__form-detail p {
    display: block;
  }
}
.contact__form-detail p > span {
  width: 100%;
}
.contact__form-detail.textarea p {
  display: block;
}
.contact__form-detail.textarea p textarea {
  margin: 10px 0 0;
}

.contact__form-cf7 .wpcf7-not-valid-tip {
  width: 100%;
  margin: 10px 0 0;
}

.footer {
  position: relative;
  overflow: hidden;
  margin: 80px auto 30px;
}
.footer__ttl {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
}
.footer .btn-wrap {
  margin: 30px auto 70px;
}
@media screen and (max-width: 767px) {
  .footer .btn-wrap {
    margin: 30px auto;
  }
}
.footer-img01 {
  position: absolute;
  width: 184px;
  top: -10px;
  right: calc(50% + 400px);
}
.footer-img02 {
  position: absolute;
  width: 200px;
  left: calc(50% + 430px);
  top: 35px;
}
.footer-img03 {
  width: 250px;
  margin: 0 auto 30px;
}

footer {
  height: 60px;
  color: white;
  display: flex;
  justify-content: center;
  background-color: var(--color-brand-red);
}
footer p {
  height: 100%;
  align-items: center;
  display: flex;
}

.cf-turnstile {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .cf-turnstile {
    display: flex;
    justify-content: center;
    transform: scale(0.7);
  }
}/*# sourceMappingURL=style.css.map */