@charset "UTF-8";
/* ============================================================
   _default.scss — リセット & CSS変数
   ============================================================ */
:root {
  --color-brand-red: #c80000;
  --color-brand-dark: #232323;
  --color-brand-yellow: #fffcf3;
  --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";
  background-color: var(--color-brand-yellow);
}

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-red {
  background-color: var(--color-brand-red);
}

/* ---- 汎用マージン ---- */
.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-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-fz-22-16 {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-fz-22-16 {
    font-size: 16px;
  }
}

.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--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: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;
}

header {
  display: flex;
  gap: 13px;
  padding: 6px 0px;
  justify-content: center;
  align-items: center;
  background-color: #ffdc00;
  border: 3px solid var(--color-brand-dark);
}
header img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  header {
    gap: 0px;
  }
}

.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 {
  position: relative;
  background-color: var(--color-brand-red);
  height: 940px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv {
    height: auto;
  }
}

.fv-main {
  position: relative;
  padding: 60px 6px 0;
}
@media screen and (max-width: 767px) {
  .fv-main {
    padding: 0 0 60px;
    top: -8px;
  }
}
.fv-main .fv_none {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .fv-main .fv_none {
    margin-top: 20px;
    font-size: 12px;
  }
}

.fv-grid {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr;
  gap: 0px 55px;
  grid-template-columns: 1fr 2fr 1fr;
}
@media screen and (max-width: 960px) {
  .fv-grid {
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .fv-grid {
    display: block;
    grid-template-columns: 1fr;
  }
}
.fv-grid .fv-grid01 {
  grid-area: 1/1/2/2;
  display: grid;
  gap: 20px;
  will-change: transform;
}
.fv-grid .fv-grid01.is-loop-ready {
  animation: fv-loop-y 22s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv-grid .fv-grid01 {
    display: flex;
    padding-top: 10px;
    width: max-content;
  }
  .fv-grid .fv-grid01.is-loop-ready {
    animation: fv-loop-x 18s linear infinite;
  }
  .fv-grid .fv-grid01 li {
    flex: 0 0 33.3333333333vw;
    width: 33.3333333333vw;
  }
}
.fv-grid .fv-grid02 {
  grid-area: 1/2/2/3;
}
.fv-grid .fv-grid03 {
  display: grid;
  gap: 20px;
  grid-area: 1/3/2/4;
  will-change: transform;
}
.fv-grid .fv-grid03.is-loop-ready {
  animation: fv-loop-y-reverse 24s linear infinite;
}
@media screen and (max-width: 767px) {
  .fv-grid .fv-grid03 {
    display: none;
  }
}

@keyframes fv-loop-y {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}
@keyframes fv-loop-y-reverse {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fv-loop-x {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.fv-btn {
  position: absolute;
  width: 990px;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%, 0px);
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .fv-btn {
    width: 690px;
  }
}
@media screen and (max-width: 767px) {
  .fv-btn {
    display: none;
  }
}

.c1 {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .c1 {
    padding-top: 20px;
  }
}
.c1-title {
  position: relative;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c1-title {
    width: 82.4324324324vw;
  }
}
.c1-title-icon {
  position: absolute;
  width: 214px;
  bottom: 110px;
  right: 70px;
}
@media screen and (max-width: 767px) {
  .c1-title-icon {
    width: 27.027027027vw;
    right: -6.7567567568vw;
    bottom: 15.6756756757vw;
  }
}
.c1-title-img {
  position: absolute;
  width: 110px;
  top: -20px;
  left: -140px;
}
@media screen and (max-width: 767px) {
  .c1-title-img {
    width: 60px;
    top: -70px;
    left: -20px;
  }
}
.c1-inner {
  margin-top: 60px;
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .c1-inner {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c1-inner {
    margin-top: 30px;
    display: block;
  }
}
.c1-inner-txt {
  width: 350px;
}
.c1-inner-txt figure {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .c1-inner-txt {
    width: 100%;
  }
}
.c1-inner-table {
  max-width: 670px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 767px) {
  .c1-inner-table {
    margin-top: 40px;
    max-width: inherit;
    margin-left: -30px;
    width: calc(100% + 60px);
  }
}

.c2-inner {
  padding-top: 20px;
  overflow-x: clip;
  overflow-y: visible;
}
.c2-ttl {
  width: 460px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .c2-ttl {
    width: 81.0810810811vw;
    margin: 0 auto 40px;
  }
}
.c2-ttl-wrap {
  position: relative;
}
.c2-ttl-wrap .c2-img01 {
  position: absolute;
  width: 200px;
  right: calc(50% + 260px);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .c2-ttl-wrap .c2-img01 {
    width: 17.2972972973vw;
    right: inherit;
    left: -0.2702702703vw;
    bottom: inherit;
    top: -10px;
  }
}
.c2-ttl-wrap .c2-img02 {
  position: absolute;
  width: 145px;
  left: calc(50% + 280px);
  top: 40px;
}
@media screen and (max-width: 767px) {
  .c2-ttl-wrap .c2-img02 {
    width: 17.027027027vw;
    left: inherit;
    right: 16.2162162162vw;
    top: -21.6216216216vw;
  }
}
.c2-ttl-wrap .c2-img03 {
  position: absolute;
  width: 280px;
  left: calc(50% + 250px);
  bottom: -180px;
}
@media screen and (max-width: 767px) {
  .c2-ttl-wrap .c2-img03 {
    width: 25.1351351351vw;
    left: inherit;
    right: -8.1081081081vw;
    bottom: inherit;
    top: 2.7027027027vw;
  }
}
.c2-txt {
  width: 920px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c2-txt {
    padding-bottom: 0;
    width: 100%;
  }
}
.c2-list {
  font-size: 30px;
  font-family: var(--font-maru);
  font-weight: bold;
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c2-list {
    width: calc(100% + 40px);
    margin-left: -20px;
    flex-direction: column;
    padding-top: 30px;
    font-size: 17px;
    gap: 10px;
  }
}
.c2-list li {
  width: fit-content;
  color: var(--color-brand-dark);
  background-color: #d3d3d3;
  padding: 2px 28px;
  border: 3px solid var(--color-brand-dark);
  box-shadow: 3px 3px 0px 0px var(--color-brand-dark);
  border-radius: 30px;
  letter-spacing: -3px;
}
.c2-list li:nth-child(1), .c2-list li:nth-child(4), .c2-list li:nth-child(5), .c2-list li:nth-child(8) {
  background-color: white;
}
@media screen and (max-width: 767px) {
  .c2-list li {
    font-size: 4.8648648649vw;
    padding: 2px 10px;
    letter-spacing: -2px;
  }
  .c2-list li:nth-child(3n) {
    margin: 0 0 0 auto;
    background-color: white;
  }
  .c2-list li:nth-child(3n+1) {
    margin: 0 auto 0 0;
    background-color: white;
  }
  .c2-list li:nth-child(3n+2) {
    background-color: white;
  }
  .c2-list li:nth-child(2n) {
    background-color: #d3d3d3;
  }
  .c2-list li:nth-child(2n+1) {
    background-color: white;
  }
}

.c2-cta .btn-wrap {
  width: 100%;
}

.c3 {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .c3 {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .c3-inner {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 767px) {
  .c3-inner {
    padding: 40px 30px;
  }
}
.c3-inner__wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c3-inner__wrap {
    padding-bottom: 24.3243243243vw;
  }
}
.c3-inner__wrap-img {
  position: absolute;
  width: 360px;
  top: -50px;
  right: -30px;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .c3-inner__wrap-img {
    width: 35%;
    top: -10px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c3-inner__wrap-img {
    width: 39.4594594595vw;
    top: inherit;
    bottom: -90px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .c3-inner__wrap-img {
    bottom: -40px;
  }
}
.c3-inner-ttl {
  width: 500px;
}
@media screen and (max-width: 1200px) {
  .c3-inner-ttl {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .c3-inner-ttl {
    width: 100%;
  }
}
.c3-inner-txt {
  margin: 50px 0 60px;
}
@media screen and (max-width: 767px) {
  .c3-inner-txt {
    margin: 30px 0 0;
  }
}
.c3-list {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .c3-list {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c3-list {
    flex-direction: column;
  }
}
.c3-list li {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .c3-list li {
    width: 100%;
  }
}
.c3-list__ttl {
  color: var(--color-brand-red);
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 2px dotted var(--color-brand-red);
}
@media screen and (max-width: 767px) {
  .c3-list__ttl {
    padding: 16px 0;
    margin-bottom: 20px;
  }
}

.c4 {
  position: relative;
  z-index: 20;
  padding-top: 90px;
  padding-bottom: 170px;
  overflow-x: clip;
  overflow-y: visible;
}
.c4 > div {
  position: relative;
}
.c4-img {
  position: absolute;
  width: 116px;
  top: -30px;
  right: 80px;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .c4-img {
    top: -150px;
    right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c4-img {
    width: 84px;
  }
}
.c4-ttl {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.c4-txt {
  margin: 50px auto 60px;
}
@media screen and (max-width: 767px) {
  .c4-txt {
    margin: 40px auto 0;
  }
}
.c4-list {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.c4-list.is-loop-ready {
  animation: c4-loop-x 34s linear infinite;
}
.c4-list li {
  flex: 0 0 280px;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .c4-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 0;
    margin-top: 30px;
    width: auto;
    animation: none !important;
    transform: none !important;
  }
  .c4-list li {
    flex: none;
    width: 100%;
  }
  .c4-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);
  }
}
.c5 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c5 {
    padding-top: 40px;
  }
}
.c5-attention {
  position: absolute;
  top: -65px;
  left: 50%;
  width: 440px;
  transform: translate(-50%, 0);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .c5-attention {
    max-width: 320px;
    width: 100%;
  }
}
.c5-inner__wrap {
  margin-top: 60px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c5-inner__wrap {
    margin-top: 0;
  }
}
.c5-inner__wrap-txt {
  width: 400px;
}
.c5-inner__wrap-list {
  width: 380px;
}
.c5-inner__wrap figure {
  width: 330px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 960px) {
  .c5-inner__wrap {
    gap: 30px;
  }
  .c5-inner__wrap-txt {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .c5-inner__wrap {
    display: block;
  }
  .c5-inner__wrap-txt, .c5-inner__wrap-list {
    width: 100%;
  }
  .c5-inner__wrap figure {
    width: 120px;
    margin: 0px -20px 0 auto;
  }
}
.c5-list {
  position: relative;
  counter-reset: cnt;
  --c5-arrow-height: 0px;
  --c5-arrow-opacity: 0;
  --c5-arrow-left: 28px;
  --c5-arrow-top: 21px;
}
.c5-list__scroll-arrow {
  position: absolute;
  top: var(--c5-arrow-top);
  left: var(--c5-arrow-left);
  z-index: 0;
  width: 0;
  height: var(--c5-arrow-height);
  border-left: 3px dotted var(--color-brand-dark);
  opacity: var(--c5-arrow-opacity);
  pointer-events: none;
  transition: height 0.12s linear, opacity 0.2s ease-out;
}
.c5-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;
}
.c5-list li {
  position: relative;
  z-index: 1;
  padding-left: 70px;
  margin-bottom: 40px;
  list-style-type: none;
  counter-increment: cnt;
}
.c5-list li h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
}
.c5-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;
}
.c5 .btn-wrap {
  margin-top: 40px;
}

.c6 {
  padding-top: 60px;
  background-image: linear-gradient(#c80000 50%, #fffcf3 50%);
}
.c6-inner {
  background-color: #ffdc00;
}
.c6-inner-wrap {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
}
.c6-inner figure {
  width: 100%;
}
.c6-ttl {
  position: relative;
}
.c6-ttl-img {
  position: absolute;
  width: 230px;
  top: -50px;
  right: -30px;
}
@media screen and (max-width: 767px) {
  .c6-ttl-img {
    width: 21.6216216216vw;
    top: -8.1081081081vw;
    right: 0px;
  }
}
.c6-txt {
  margin: 30px 0;
}
.c6 .btn-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .c6 .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: white;
  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 */