@charset "UTF-8";
:root {
  --duration03: 0.3s;
  --headerHeight: 50px;
  --pcWidth: 50rem;
  --black01: #333333;
  --red01: #b61b30;
  --red02: #6b0a1a;
  --green01: #16b776;
  --roboto: "Roboto", sans-serif;
}

/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black01);
  line-break: strict;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
body.is-menuOpen {
  position: fixed;
  left: 0;
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
}

/*img {
	image-rendering: -webkit-optimize-contrast;
}*/
label {
  cursor: pointer;
}

picture {
  display: block;
}

input, select, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  border-radius: 0;
  border: none;
}
input:focus:not(:focus-visible), select:focus:not(:focus-visible), button:focus:not(:focus-visible), textarea:focus:not(:focus-visible) {
  outline: 0;
}

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

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

/* link
--------------------------------------------------*/
a {
  color: inherit;
}
a:link, a:active, a:visited, a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 767.1px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}

@media screen and (min-width: 999.1px) {
  .l-header {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .l-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--headerHeight);
  }
}

.l-header__logo {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 126px;
}
.l-header__logo a {
  display: block;
  aspect-ratio: 170/48;
}

.l-headerButton {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 60px;
  width: 138px;
  aspect-ratio: 276/65;
}
.l-headerButton a {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--green01);
  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;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 4px 0 #0f8750;
          box-shadow: 0 4px 0 #0f8750;
}
.l-headerButton a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.l-headerButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 12px;
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid white;
  border-right: 1px solid white;
  rotate: 45deg;
  margin-top: 1px;
}
.l-headerButton a > * {
  position: relative;
}

.l-headerButton__text {
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.075em;
  padding-right: 4px;
}

.l-toggleButton {
  position: fixed;
  top: 0;
  right: calc(50% - 25rem);
  width: var(--headerHeight);
  aspect-ratio: 1/1;
  z-index: 11;
  background: var(--red01);
  overflow: hidden;
  -webkit-transition: background-color var(--duration03) ease-out;
  transition: background-color var(--duration03) ease-out;
}
@media screen and (min-width: 999.1px) {
  .l-toggleButton {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-toggleButton {
    right: 0;
  }
}
.l-toggleButton span {
  position: absolute;
  left: 13px;
  width: 24px;
  height: 2px;
  z-index: 1;
  background: white;
  -webkit-transition: all var(--duration03) ease-out;
  transition: all var(--duration03) ease-out;
  border-radius: 1px;
}
.l-toggleButton span:nth-child(1) {
  top: 16px;
}
.l-toggleButton span:nth-child(2) {
  top: 24px;
}
.l-toggleButton span:nth-child(3) {
  top: 32px;
}
@media (any-hover: hover) {
  .l-toggleButton {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  .l-toggleButton:hover {
    opacity: 0.6;
  }
}
body.is-menuOpen .l-toggleButton {
  background: var(--black01);
}
body.is-menuOpen .l-toggleButton span:nth-child(1) {
  top: 24px;
  rotate: 45deg;
}
body.is-menuOpen .l-toggleButton span:nth-child(2) {
  opacity: 0;
}
body.is-menuOpen .l-toggleButton span:nth-child(3) {
  top: 24px;
  rotate: -45deg;
}

.l-spNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  padding-block: var(--headerHeight) calc(100vh - 100dvh + 20px);
  background: var(--black01);
  -webkit-transition: opacity 0.4s, visibility 0s;
  transition: opacity 0.4s, visibility 0s;
}
@media screen and (min-width: 999.1px) {
  .l-spNav {
    display: none;
  }
}
body.is-menuOpen .l-spNav {
  opacity: 1;
  visibility: visible;
}

.l-spNav__logo {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 126px;
}
.l-spNav__logo a {
  display: block;
  aspect-ratio: 170/48;
}

.l-spNav__inner {
  width: min(330px, 100% - 45px);
  padding-top: 45px;
  margin-inline: auto;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.l-spNavMenu {
  display: grid;
  grid-template-columns: 100%;
  gap: 29px;
}

.l-spNavMenu__item {
  text-align: center;
}
.l-spNavMenu__item a {
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.l-spNavButton {
  margin-top: 43px;
}
.l-spNavButton a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/92;
  border-radius: 3px;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 0 #0f8750;
          box-shadow: 0 4px 0 #0f8750;
}
.l-spNavButton a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.l-spNavButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 12px;
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid white;
  border-right: 1px solid white;
  rotate: 45deg;
}
.l-spNavButton a > * {
  position: relative;
}

.l-spNavButton__text {
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.075em;
}

.l-spNavTel {
  margin-top: 15px;
}
.l-spNavTel a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/88;
  border-radius: 5px;
  overflow: hidden;
  background: white;
  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;
}
.l-spNavTel a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 12px;
  width: 6px;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--black01);
  border-right: 1px solid var(--black01);
  rotate: 45deg;
}
.l-spNavTel a > * {
  position: relative;
}

.l-spNavTel__num {
  position: relative;
  font-family: var(--numGothic01);
  font-weight: 700;
  font-size: 24px;
  padding-left: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.l-spNavTel__num::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 16px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_tel01.svg) no-repeat center center/contain;
}

.l-spNavTel__text {
  font-weight: 700;
  font-size: 8px;
  line-height: 1;
  margin-top: 1px;
}

/* ---------------------------------------------
PC表示
--------------------------------------------- */
.l-pcContents {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background: url(../img/common/bg_pc_contents01.svg) no-repeat top center/cover;
}

@media screen and (max-width: 999px) {
  .l-pcMv {
    display: none;
  }
}
@media screen and (min-width: 999.1px) {
  .l-pcMv {
    width: calc((100% - var(--pcWidth)) / 2);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: min(0.7320644217vw, 1rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-pcMv__inner {
  width: 100%;
}

.l-pcMv__logo {
  position: absolute;
  top: min(1.4641288433vw, 2rem);
  left: min(2.196193265vw, 3rem);
  width: min(12.4450951684vw, 17rem);
}
.l-pcMv__logo a {
  display: block;
  aspect-ratio: 170/48;
}

.l-pcMv__text {
  width: min(100% - 2rem, 40.2rem);
  margin-inline: auto;
}
@media (min-width: 999.1px) and (max-height: 620px) {
  .l-pcMv__text {
    display: none;
  }
}

.l-pcMvButton {
  margin-top: min(2.196193265vw, 3rem);
}
.l-pcMvButton a {
  position: relative;
  width: min(100% - 3rem, 35rem);
  margin-inline: auto;
  aspect-ratio: 350/50;
  border-radius: 5px;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 min(0.5124450952vw, 0.7rem) 0 #0f8750;
          box-shadow: 0 min(0.5124450952vw, 0.7rem) 0 #0f8750;
}
.l-pcMvButton a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.l-pcMvButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: min(0.878477306vw, 1.2rem);
  width: min(0.5124450952vw, 0.7rem);
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}
.l-pcMvButton a > * {
  position: relative;
}

.l-pcMvButton__text {
  color: white;
  font-weight: 700;
  text-align: center;
  font-size: min(1.4641288433vw, 2rem);
  letter-spacing: 0.075em;
}

.l-pcMvTel {
  margin-top: min(1.756954612vw, 2.4rem);
  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;
}

.l-pcMvTel__num {
  position: relative;
  font-family: var(--roboto);
  font-weight: 800;
  font-size: min(2.5622254758vw, 3.5rem);
  padding-left: min(2.4158125915vw, 3.3rem);
  letter-spacing: 0.02em;
  line-height: 1;
}
.l-pcMvTel__num::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: min(1.8301610542vw, 2.5rem);
  aspect-ratio: 1/1;
  background: url(../img/common/ico_tel01.svg) no-repeat center center/contain;
}

.l-pcMvTel__text {
  font-weight: 700;
  font-size: min(0.9516837482vw, 1.3rem);
  line-height: 1;
  margin-top: min(0.3660322108vw, 0.5rem);
}

@media screen and (max-width: 999px) {
  .l-pcNav {
    display: none;
  }
}
@media screen and (min-width: 999.1px) {
  .l-pcNav {
    width: calc((100% - var(--pcWidth)) / 2);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: min(4.0263543192vw, 5.5rem);
  }
}
@media (min-width: 999.1px) and (max-height: 620px) {
  .l-pcNav {
    display: none;
  }
}

.l-pcNav__inner {
  background: white;
  border-radius: 20px;
  width: min(23.0600292826vw, 31.5rem);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: min(2.7086383602vw, 3.7rem);
}

.l-pcNav__title {
  color: var(--red01);
  font-weight: 700;
  font-size: min(1.756954612vw, 2.4rem);
  letter-spacing: 0.095em;
  text-align: center;
  border-bottom: 1px solid var(--red01);
  padding-bottom: min(1.9765739385vw, 2.7rem);
  line-height: 1;
}

.l-pcNavMenu {
  display: grid;
  grid-template-columns: 100%;
  gap: min(2.196193265vw, 3rem);
  margin-top: min(2.5622254758vw, 3.5rem);
}

.l-pcNavMenu__item {
  text-align: center;
}
.l-pcNavMenu__item a {
  position: relative;
  font-size: min(1.2445095168vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 0 min(1.317715959vw, 1.8rem) min(0.2196193265vw, 0.3rem) 0;
}
.l-pcNavMenu__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: min(0.5124450952vw, 0.7rem);
  aspect-ratio: 1/1;
  border-top: 1px solid var(--red01);
  border-right: 1px solid var(--red01);
  rotate: 45deg;
}

/* ---------------------------------------------
l-allWrap
--------------------------------------------- */
.l-allWrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 767.1px) {
  .l-allWrap {
    max-width: var(--pcWidth);
  }
}

.l-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

/* ---------------------------------------------
l-fixed
--------------------------------------------- */
@media screen and (min-width: 999.1px) {
  .l-fixed {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .l-fixed {
    position: fixed;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    z-index: 9;
    width: 50rem;
    display: grid;
    grid-template-columns: 100%;
    gap: 1.4rem 0;
    padding: 1.4666666667rem 3rem;
    background: var(--black01);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
  }
  .l-fixed.is-show {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .l-fixed {
    width: 100%;
    left: 0;
    translate: 0 0;
    gap: 2.8vw 0;
    padding: 2.9333333333vw 6vw;
  }
}

.l-fixedButton a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/60;
  border-radius: 0.3333333333rem;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0.4666666667rem 0 #0f8750;
          box-shadow: 0 0.4666666667rem 0 #0f8750;
}
@media screen and (max-width: 767px) {
  .l-fixedButton a {
    border-radius: 0.6666666667vw;
    -webkit-box-shadow: 0 0.9333333333vw 0 #0f8750;
            box-shadow: 0 0.9333333333vw 0 #0f8750;
  }
}
.l-fixedButton a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.l-fixedButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .l-fixedButton a::after {
    right: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedButton a::after {
    right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedButton a::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedButton a::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedButton a::after {
    border-width: 1px;
  }
}
.l-fixedButton a > * {
  position: relative;
}

.l-fixedButton__text {
  color: white;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .l-fixedButton__text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedButton__text {
    font-size: 2rem;
  }
}

.l-fixedTel a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/50;
  border-radius: 0.4666666667rem;
  overflow: hidden;
  background: white;
  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;
}
@media screen and (max-width: 767px) {
  .l-fixedTel a {
    border-radius: 0.9333333333vw;
  }
}

.l-fixedTel__num {
  position: relative;
  font-family: var(--numGothic01);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-fixedTel__num {
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__num {
    font-size: 2.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedTel__num {
    padding-left: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__num {
    padding-left: 2.1333333333rem;
  }
}
.l-fixedTel__num::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_tel01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-fixedTel__num::before {
    width: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__num::before {
    width: 1.6rem;
  }
}

.l-fixedTel__text {
  position: relative;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-fixedTel__text {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__text {
    font-size: 1.0666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedTel__text {
    padding-left: 2.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__text {
    padding-left: 1.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedTel__text {
    margin-left: 2.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__text {
    margin-left: 1.1333333333rem;
  }
}
.l-fixedTel__text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 2px;
  background: var(--black01);
}
@media screen and (max-width: 767px) {
  .l-fixedTel__text::before {
    height: 4.4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-fixedTel__text::before {
    height: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedTel__text::before {
    width: 1px;
  }
}

.l-footer {
  background: var(--black01);
  padding-block: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 4vw;
  }
}

@media screen and (max-width: 999px) {
  body:has(.l-fixed) .l-footer {
    padding-bottom: 12.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  body:has(.l-fixed) .l-footer {
    padding-block: 4vw 25.3333333333vw;
  }
}

.l-footerMenu {
  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: 1.8666666667rem 0;
}
@media screen and (max-width: 767px) {
  .l-footerMenu {
    gap: 3.7333333333vw 0;
  }
}

.l-footerMenu__item {
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footerMenu__item {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-footerMenu__item {
    padding-inline: 2.6666666667rem;
  }
}
.l-footerMenu__item:nth-child(2), .l-footerMenu__item:nth-child(3) {
  position: relative;
}
.l-footerMenu__item:nth-child(2)::before, .l-footerMenu__item:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1px;
  border-left: 1px solid #ededed;
}
@media screen and (max-width: 767px) {
  .l-footerMenu__item:nth-child(2)::before, .l-footerMenu__item:nth-child(3)::before {
    height: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-footerMenu__item:nth-child(2)::before, .l-footerMenu__item:nth-child(3)::before {
    height: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footerMenu__item:nth-child(2)::before, .l-footerMenu__item:nth-child(3)::before {
    translate: 0 -40%;
  }
}
.l-footerMenu__item:nth-child(4) {
  width: 100%;
}
.l-footerMenu__item a {
  color: white;
}
@media screen and (max-width: 767px) {
  .l-footerMenu__item a {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-footerMenu__item a {
    font-size: 1.6666666667rem;
  }
}

.l-footer__copy {
  color: #b3b3b3;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-footer__copy {
    font-size: 1.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .l-footer__copy {
    margin-top: 1.3333333333rem;
  }
}

/* ---------------------------------------------
title
--------------------------------------------- */
.c-titleBgRed01 {
  background: var(--red01);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3333333333;
  text-align: center;
  color: white;
}
@media screen and (max-width: 767px) {
  .c-titleBgRed01 {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-titleBgRed01 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-titleBgRed01 {
    min-height: 20vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-titleBgRed01 {
    min-height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .c-titleBgRed01 {
    padding-block: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-titleBgRed01 {
    padding-block: 2rem;
  }
}

/* ---------------------------------------------
c-cta01
--------------------------------------------- */
.c-cta01Box01 {
  background: var(--red01);
  padding-block: 4.8rem 2.5333333333rem;
}
@media screen and (max-width: 767px) {
  .c-cta01Box01 {
    padding-block: 9.6vw 5.0666666667vw;
  }
}

.c-cta01Box01__inner {
  position: relative;
  background: white;
  -webkit-box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.15);
  margin-inline: auto;
  padding-block: 3.8666666667rem 2.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__inner {
    width: 90.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01__inner {
    width: 45.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__inner {
    -webkit-box-shadow: 0.4vw 0.4vw 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0.4vw 0.4vw 0 rgba(0, 0, 0, 0.15);
    padding-block: 7.7333333333vw 4.4vw;
  }
}

.c-cta01Box01Heading {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  aspect-ratio: 572/60;
  -webkit-box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.15);
  background: var(--black01);
  border-radius: 100vmax;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .c-cta01Box01Heading {
    width: 76.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01Heading {
    width: 38.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01Heading {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01Heading {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01Heading {
    padding-top: 0.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01Heading {
    padding-top: 0.2666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01Heading {
    -webkit-box-shadow: 0.4vw 0.4vw 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0.4vw 0.4vw 0 rgba(0, 0, 0, 0.15);
  }
}

@media screen and (max-width: 767px) {
  .c-cta01Box01Heading__strong {
    font-size: 4.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01Heading__strong {
    font-size: 2.2666666667rem;
  }
}

.c-cta01Box01__text01 {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__text01 {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01__text01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__text01:nth-child(3) {
    margin-top: 1.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01__text01:nth-child(3) {
    margin-top: 0.5333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__text01:nth-child(4) {
    margin-top: 2.4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01__text01:nth-child(4) {
    margin-top: 1.2rem;
  }
}

.c-cta01Box01Strong {
  color: var(--red01);
  border-bottom: 5px solid #ffd900;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .c-cta01Box01Strong {
    border-width: 3px;
  }
}

.c-cta01Box01Strong__text01 {
  font-size: 140%;
}

.c-cta01Box01__text02 {
  position: absolute;
  top: 0;
  right: 0;
  translate: 13% -18%;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  -webkit-box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__text02 {
    width: 19.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box01__text02 {
    width: 9.5333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box01__text02 {
    -webkit-box-shadow: 0.4vw 0.4vw 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0.4vw 0.4vw 0 rgba(0, 0, 0, 0.15);
  }
}

.c-cta01Box02 {
  background: var(--black01);
}
@media screen and (max-width: 767px) {
  .c-cta01Box02 {
    padding: 6.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02 {
    padding: 3.3333333333rem;
  }
}

.c-cta01Box02Button a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/92;
  border-radius: 0.3333333333rem;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0.4666666667rem 0 #0f8750;
          box-shadow: 0 0.4666666667rem 0 #0f8750;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Button a {
    border-radius: 0.6666666667vw;
    -webkit-box-shadow: 0 0.9333333333vw 0 #0f8750;
            box-shadow: 0 0.9333333333vw 0 #0f8750;
  }
}
.c-cta01Box02Button a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.c-cta01Box02Button a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Button a::after {
    right: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Button a::after {
    right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Button a::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Button a::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Button a::after {
    border-width: 1px;
  }
}
.c-cta01Box02Button a > * {
  position: relative;
}

.c-cta01Box02Button__text {
  color: white;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Button__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Button__text {
    font-size: 2.1333333333rem;
  }
}

@media screen and (max-width: 767px) {
  .c-cta01Box02Tel {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel {
    margin-top: 2rem;
  }
}
.c-cta01Box02Tel a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/88;
  border-radius: 0.4666666667rem;
  overflow: hidden;
  background: white;
  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;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel a {
    border-radius: 0.9333333333vw;
  }
}
.c-cta01Box02Tel a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid var(--black01);
  border-right: 2px solid var(--black01);
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel a::after {
    right: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel a::after {
    right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel a::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel a::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel a::after {
    border-width: 1px;
  }
}
.c-cta01Box02Tel a > * {
  position: relative;
}

.c-cta01Box02Tel__num {
  position: relative;
  font-family: var(--numGothic01);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel__num {
    font-size: 6.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel__num {
    font-size: 3.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel__num {
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel__num {
    padding-left: 2.6666666667rem;
  }
}
.c-cta01Box02Tel__num::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_tel01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel__num::before {
    width: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel__num::before {
    width: 2.1333333333rem;
  }
}

.c-cta01Box02Tel__text {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel__text {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel__text {
    font-size: 1.0666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cta01Box02Tel__text {
    margin-top: 0.1333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .c-cta01Box02Tel__text {
    margin-top: 0.0666666667rem;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .u-minsp {
    display: none;
  }
}
@media screen and (min-width: 767.1px) {
  .u-sp {
    display: none;
  }
}
/* --------------------------------------------------
  u-preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  u-over
-------------------------------------------------- */
@media (any-hover: hover) {
  .u-over {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  .u-over:hover {
    opacity: 0.6;
  }
}

/* --------------------------------------------------
  other
-------------------------------------------------- */
.u-bold {
  font-weight: 700;
}

.u-textRed01 {
  color: var(--red01);
}

/* ---------------------------------------------
p-topMv
--------------------------------------------- */
.p-topMv {
  background-color: white;
  background-image: radial-gradient(circle, #eee 1px, transparent 1px);
  background-position: 0 0;
  background-size: 0.9333333333rem 0.9333333333rem;
  height: 76.6666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topMv {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMv {
    padding-inline: 2.6666666667rem;
  }
}
@media screen and (max-width: 999px) {
  .p-topMv {
    padding-top: var(--headerHeight);
    height: 82rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMv {
    background-size: 1.8666666667vw 1.8666666667vw;
    height: 166.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .p-topMv__title {
    padding-top: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMv__title {
    padding-top: 2rem;
  }
}

.p-topMvCol3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-topMvCol3 {
    gap: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvCol3 {
    gap: 1.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMvCol3 {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvCol3 {
    margin-top: 5.3333333333rem;
  }
}

.p-topMvCol3__item {
  position: relative;
  border-radius: 0.6666666667rem;
  background: white;
  -webkit-box-shadow: 0 0 0.3333333333rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.3333333333rem rgba(0, 0, 0, 0.1);
  padding-block: 8.3333333333rem 1.6666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topMvCol3__item {
    padding-top: 16.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvCol3__item {
    padding-top: 8.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMvCol3__item {
    border-radius: 1.3333333333vw;
    -webkit-box-shadow: 0 0 0.6666666667vw rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0.6666666667vw rgba(0, 0, 0, 0.1);
    padding-block: 15.3333333333vw 3.3333333333vw;
  }
}

.p-topMvCol3__image {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -34%;
}
@media screen and (max-width: 767px) {
  .p-topMvCol3__image {
    width: 20.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvCol3__image {
    width: 10.2666666667rem;
  }
}

.p-topMvCol3__text {
  font-weight: 700;
  line-height: 1.2941176471;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topMvCol3__text {
    font-size: 4.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvCol3__text {
    font-size: 2.2666666667rem;
  }
}

.p-topMv__text {
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topMv__text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMv__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMv__text {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMv__text {
    margin-top: 2rem;
  }
}

.p-topMvButton {
  margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topMvButton {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvButton {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMvButton {
    margin: 4vw auto 0;
  }
}
.p-topMvButton a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 650/92;
  border-radius: 0.3333333333rem;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0.4666666667rem 0 #0f8750;
          box-shadow: 0 0.4666666667rem 0 #0f8750;
}
@media screen and (max-width: 767px) {
  .p-topMvButton a {
    border-radius: 0.6666666667vw;
    -webkit-box-shadow: 0 0.9333333333vw 0 #0f8750;
            box-shadow: 0 0.9333333333vw 0 #0f8750;
  }
}
.p-topMvButton a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.p-topMvButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-topMvButton a::after {
    right: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvButton a::after {
    right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMvButton a::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvButton a::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topMvButton a::after {
    border-width: 1px;
  }
}
.p-topMvButton a > * {
  position: relative;
}

.p-topMvButton__text {
  color: white;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-topMvButton__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topMvButton__text {
    font-size: 2.1333333333rem;
  }
}

/* ---------------------------------------------
p-topSec01
--------------------------------------------- */
.p-topSec01 {
  background: var(--red01);
  padding: 3.3333333333rem 3.3333333333rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-topSec01 {
    padding: 6.6666666667vw 6.6666666667vw 6vw;
  }
}

.p-topSec01__title {
  color: white;
  font-weight: 700;
  text-align: center;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
@media screen and (max-width: 767px) {
  .p-topSec01__title {
    font-size: 8.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01__title {
    font-size: 4.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec01__title {
    padding-block: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01__title {
    padding-block: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec01__title {
    border-width: 1px;
  }
}

.p-topSec01Box {
  position: relative;
  margin: 7.2rem auto 0;
  background: white;
  aspect-ratio: 656/660;
}
@media screen and (max-width: 767px) {
  .p-topSec01Box {
    width: 87.4666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01Box {
    width: 43.7333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec01Box {
    margin: 13.7333333333vw auto 0;
  }
}

.p-topSec01Box__text01 {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -36%;
}
@media screen and (max-width: 767px) {
  .p-topSec01Box__text01 {
    width: 66.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01Box__text01 {
    width: 33.3333333333rem;
  }
}

.p-topSec01Box__text02 {
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-topSec01Box__text02 {
    top: 18.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01Box__text02 {
    top: 9.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec01Box__text02 {
    width: 93.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01Box__text02 {
    width: 46.6666666667rem;
  }
}

.p-topSec01Box__text03 {
  position: absolute;
  left: 0;
  width: 100%;
  font-weight: 700;
  line-height: 1.4285714286;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec01Box__text03 {
    top: 69.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01Box__text03 {
    top: 34.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec01Box__text03 {
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec01Box__text03 {
    font-size: 2.3333333333rem;
  }
}

/* ---------------------------------------------
p-topSec02
--------------------------------------------- */
.p-topSec02__title {
  background: var(--red02);
  font-weight: 700;
  line-height: 1.3333333333;
  color: white;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec02__title {
    padding-block: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec02__title {
    padding-block: 2.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec02__title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec02__title {
    font-size: 4rem;
  }
}

.p-topSec02Box01 {
  background: url(../img/top/bg_sec02_box01_01.jpg) no-repeat center top/cover;
  padding: 5.1333333333rem 2.4rem 4.6666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topSec02Box01 {
    padding: 10.2666666667vw 4.8vw 9.3333333333vw;
  }
}

.p-topSec02Box01__inner {
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 100%;
}
@media screen and (max-width: 767px) {
  .p-topSec02Box01__inner {
    border-radius: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec02Box01__inner {
    border-radius: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec02Box01__inner {
    padding-block: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec02Box01__inner {
    padding-block: 2.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec02Box01__inner {
    gap: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec02Box01__inner {
    gap: 1rem;
  }
}

.p-topSec02Box01__text {
  font-weight: 700;
  line-height: 1.8125;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec02Box01__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec02Box01__text {
    font-size: 2.1333333333rem;
  }
}

.p-topSec02Box01__strong {
  color: var(--red01);
  font-size: 120%;
  line-height: 1.4871794872;
}

.p-topSec02Box02 {
  background: #ededed;
  padding: 2.5333333333rem 2.3333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topSec02Box02 {
    padding: 5.0666666667vw 4.6666666667vw;
  }
}
.p-topSec02Box02 iframe {
  aspect-ratio: 9/16;
  width: 100%;
  height: auto;
}
.p-topSec02Box02 .youtube-wrapper {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
}
.p-topSec02Box02 .youtube-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.p-topSec02Box02 .youtube-wrapper .play {
  font-size: 0;
  width: 7.3333333333rem;
  aspect-ratio: 1/1;
  background: url(../img/top/ico_youtube.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .p-topSec02Box02 .youtube-wrapper:hover::before,
  .p-topSec02Box02 .youtube-wrapper:hover .play {
    opacity: 0.7;
  }
}
.p-topSec02Box02 .youtube-wrapper iframe {
  /*  display: none; */
  position: relative;
  width: 100% !important;
  height: 100% !important;
  outline: 1px solid #bcbcbc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec02Box02 .youtube-wrapper .play {
    width: 14.6666666667vw;
  }
}

/* ---------------------------------------------
p-topSec03
--------------------------------------------- */
.p-topSec03 {
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #f4f4f4 1px, transparent 1px), linear-gradient(#f4f4f4 1px, transparent 1px);
  background-position: 0.6666666667rem 0.6666666667rem;
  background-size: 1.2rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-topSec03 {
    padding-bottom: 8.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03 {
    padding-bottom: 4.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03 {
    background-position: 1.3333333333vw 1.3333333333vw;
    background-size: 2.4vw 2.4vw;
  }
}

.p-topSec03__text {
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec03__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03__text {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03__text {
    margin-top: 5.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03__text {
    margin-top: 2.5333333333rem;
  }
}

.p-topSec03List {
  margin: 3.1333333333rem auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-topSec03List {
    width: 92vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List {
    width: 46rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03List {
    margin: 6.2666666667vw auto 0;
    gap: 4vw;
  }
}

.p-topSec03List__item {
  position: relative;
  -webkit-box-shadow: 0 0 0.3333333333rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.3333333333rem rgba(0, 0, 0, 0.1);
  background: white;
}
@media screen and (max-width: 767px) {
  .p-topSec03List__item {
    border-radius: 5.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List__item {
    border-radius: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03List__item {
    -webkit-box-shadow: 0 0 0.6666666667vw rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0.6666666667vw rgba(0, 0, 0, 0.1);
  }
}

.p-topSec03List__heading {
  background: #244360;
  display: grid;
  grid-template-columns: 1fr 6.3333333333rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.0666666667rem 2.6666666667rem;
  border-radius: 2.6rem 2.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topSec03List__heading {
    grid-template-columns: 1fr 12.6666666667vw;
    padding: 2.1333333333vw 5.3333333333vw;
    border-radius: 5.2vw 5.2vw 0 0;
  }
}

.p-topSec03List__title {
  color: white;
}
@media screen and (max-width: 767px) {
  .p-topSec03List__title {
    font-size: 5.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List__title {
    font-size: 2.5333333333rem;
  }
}

.p-topSec03List__business {
  background: white;
  border-radius: 100vmax;
  font-family: var(--roboto);
  font-weight: 900;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  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;
  aspect-ratio: 94/37;
}
@media screen and (max-width: 767px) {
  .p-topSec03List__business {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List__business {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03List__business {
    width: 12.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List__business {
    width: 6.2666666667rem;
  }
}
.p-topSec03List__business.m-tob {
  color: #3651c0;
}
.p-topSec03List__business.m-toc {
  color: #f15a24;
}

.p-topSec03List__body {
  padding: 2.2rem 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-topSec03List__body {
    padding: 4.4vw 5.6vw;
  }
}

.p-topSec03List__text {
  font-weight: 700;
  line-height: 1.2962962963;
}
@media screen and (max-width: 767px) {
  .p-topSec03List__text {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03List__text {
    padding-inline: 0.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03List__text {
    padding-inline: 0.3333333333rem;
  }
}

.p-topSec03ListBox {
  position: relative;
  display: grid;
  grid-template-columns: 12.6666666667rem 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title text02" "text01 text02";
  gap: 0 2.5333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox {
    padding-right: 14.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox {
    padding-right: 7.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox {
    grid-template-columns: 25.3333333333vw 1fr;
    gap: 0 5.0666666667vw;
  }
}
.p-topSec03ListBox::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  border-top: 6px solid #ffd900;
  border-right: 6px solid #ffd900;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox::before {
    top: 10.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox::before {
    top: 5.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox::before {
    left: 22.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox::before {
    left: 11.4666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox::before {
    width: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox::before {
    width: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox::before {
    border-width: 4px;
  }
}

.p-topSec03ListBox__title {
  grid-area: title;
  background: #244360;
  aspect-ratio: 182/40;
  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;
  border-radius: 100vmax;
  color: white;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__title {
    width: 24.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__title {
    width: 12.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__title {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__title {
    font-size: 1.4666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__title {
    margin-top: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__title {
    margin-top: 1.6rem;
  }
}

.p-topSec03ListBox__text01 {
  grid-area: text01;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__text01 {
    font-size: 4.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__text01 {
    font-size: 2.4666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__text01 {
    padding-right: 1.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__text01 {
    padding-right: 0.5333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__text01 {
    gap: 0.4vw;
  }
}

.p-topSec03ListBox__num01 {
  font-family: var(--roboto);
  font-weight: 900;
  translate: 0 0.1em;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__num01 {
    font-size: 7.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__num01 {
    font-size: 3.8rem;
  }
}

.p-topSec03ListBox__text02 {
  grid-area: text02;
  color: var(--red01);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__text02 {
    font-size: 9.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__text02 {
    font-size: 4.6666666667rem;
  }
}

.p-topSec03ListBox__num02 {
  font-family: var(--roboto);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__num02 {
    font-size: 18.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__num02 {
    font-size: 9.3333333333rem;
  }
}

.p-topSec03ListBox__num03 {
  font-family: var(--roboto);
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__num03 {
    font-size: 13.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__num03 {
    font-size: 6.5333333333rem;
  }
}

.p-topSec03ListBox__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 11% 10%;
}
@media screen and (max-width: 767px) {
  .p-topSec03ListBox__badge {
    width: 25.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec03ListBox__badge {
    width: 12.8rem;
  }
}

/* ---------------------------------------------
p-topSec04
--------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-topSec04 .c-titleBgRed01 {
    font-size: 6.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04 .c-titleBgRed01 {
    font-size: 3.3333333333rem;
  }
}

.p-topSec04__text {
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec04__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04__text {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec04__text {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04__text {
    margin-top: 3rem;
  }
}

.p-topSec04SlideLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-topSec04SlideLogo {
    margin-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04SlideLogo {
    margin-top: 1.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec04SlideLogo {
    gap: 0 4vw;
  }
}

.p-topSec04SlideLogo__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-animation: result-slider 50s linear infinite;
          animation: result-slider 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-topSec04SlideLogo__item.m-slide01 {
    width: 323.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04SlideLogo__item.m-slide01 {
    width: 161.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec04SlideLogo__item.m-slide02 {
    width: 297.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04SlideLogo__item.m-slide02 {
    width: 148.5333333333rem;
  }
}

.p-topSec04Slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 0 2rem;
  padding-block: 1.3333333333rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-topSec04Slide {
    margin-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04Slide {
    margin-top: 1.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec04Slide {
    gap: 0 4vw;
    padding-block: 1.3333333333rem 3rem;
  }
}

.p-topSec04Slide__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
  -webkit-animation: result-slider 50s linear infinite;
          animation: result-slider 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-topSec04Slide__item {
    gap: 0 4vw;
  }
}
.p-topSec04Slide__item img {
  -webkit-box-shadow: 1rem 1rem 0.6666666667rem rgba(0, 0, 0, 0.1);
          box-shadow: 1rem 1rem 0.6666666667rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-topSec04Slide__item img {
    width: 45.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec04Slide__item img {
    width: 22.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec04Slide__item img {
    -webkit-box-shadow: 2vw 2vw 1.3333333333vw rgba(0, 0, 0, 0.1);
            box-shadow: 2vw 2vw 1.3333333333vw rgba(0, 0, 0, 0.1);
  }
}

@-webkit-keyframes result-slider {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}

@keyframes result-slider {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}
/* ---------------------------------------------
p-topSec05
--------------------------------------------- */
.p-topSec05 {
  background: var(--red01);
}

.p-topSec05Heading {
  position: relative;
  background: var(--red02);
  padding-block: 3.5333333333rem 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading {
    padding-block: 7.0666666667vw 3.6vw;
  }
}
.p-topSec05Heading::before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50% 0;
  aspect-ratio: 61/26;
  background: var(--red02);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading::before {
    width: 8.1333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading::before {
    width: 4.0666666667rem;
  }
}

.p-topSec05Heading__text {
  color: var(--red02);
  font-weight: 700;
  background: white;
  margin-inline: auto;
  text-align: center;
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading__text {
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__text {
    font-size: 2.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading__text {
    width: 78.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__text {
    width: 39.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading__text {
    padding-block: 0.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__text {
    padding-block: 0.1333333333rem;
  }
}

.p-topSec05Heading__title {
  color: white;
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading__title {
    font-size: 12vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05Heading__title {
    margin-top: 0.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__title {
    margin-top: 0.3333333333rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topSec05Heading__strong01 {
    font-size: 20vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__strong01 {
    font-size: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topSec05Heading__strong02 {
    font-size: 12.8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Heading__strong02 {
    font-size: 6.4rem;
  }
}

.p-topSec05Box.m-box01 {
  padding-block: 5.3333333333rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box01 {
    padding-block: 10.6666666667vw 8vw;
  }
}
.p-topSec05Box.m-box02 {
  padding-top: 4.6rem;
  background: #9b0e26;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box02 {
    padding-top: 9.2vw;
  }
}
.p-topSec05Box.m-box03 {
  padding-block: 4.2666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box03 {
    padding-block: 8.5333333333vw;
  }
}

.p-topSec05BoxHeading__text {
  color: var(--red02);
  font-weight: 700;
  line-height: 1;
  background: white;
  margin-inline: auto;
  text-align: center;
  border-radius: 100vmax;
  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: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxHeading__text {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxHeading__text {
    font-size: 1.8666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxHeading__text {
    width: 24vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxHeading__text {
    width: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxHeading__text {
    padding-block: 0.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxHeading__text {
    padding-block: 0.3333333333rem;
  }
}

.p-topSec05BoxHeading__num {
  font-family: var(--roboto);
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxHeading__num {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxHeading__num {
    font-size: 2.6666666667rem;
  }
}

.p-topSec05BoxHeading__title {
  color: white;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxHeading__title {
    font-size: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxHeading__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxHeading__title {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxHeading__title {
    margin-top: 1.6666666667rem;
  }
}

.p-topSec05BoxBody {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody {
    gap: 4vw 0;
  }
}

.p-topSec05BoxBody__item {
  background: white;
  border-radius: 0 2rem 2rem 0;
  display: grid;
  grid-template-columns: 23.6666666667rem 1fr;
  gap: 0 1.6666666667rem;
  grid-template-areas: "heading list" "image list";
  padding: 1.8666666667rem 1rem 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__item {
    width: 96vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody__item {
    width: 48rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__item {
    border-radius: 0 4vw 4vw 0;
    grid-template-columns: 47.3333333333vw 1fr;
    gap: 0 3.3333333333vw;
    padding: 3.7333333333vw 2vw 0 0;
  }
}

.p-topSec05BoxBody__heading {
  grid-area: heading;
  border-bottom: 1px solid #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.45em;
  line-height: 1;
  padding: 0 0 0.6666666667rem 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__heading {
    padding: 0 0 1.3333333333vw 2.6666666667vw;
  }
}

.p-topSec05BoxBody__en {
  font-family: var(--roboto);
  font-weight: 700;
  color: var(--red01);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__en {
    font-size: 4.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody__en {
    font-size: 2.2666666667rem;
  }
}

.p-topSec05BoxBody__title {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__title {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody__title {
    font-size: 1.6rem;
  }
}

.p-topSec05BoxBody__image {
  grid-area: image;
  margin: 0.6666666667rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__image {
    width: 41.7333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody__image {
    width: 20.8666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__image {
    margin: 1.3333333333vw auto 0;
  }
}

.p-topSec05BoxBody__list {
  grid-area: list;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.0666666667rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__list {
    padding-bottom: 3.7333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody__list {
    padding-bottom: 1.8666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__list {
    gap: 2.1333333333vw 0;
  }
}
.p-topSec05BoxBody__list li {
  list-style: none;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1.3333333333rem 1fr;
  gap: 0 0.8666666667rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__list li {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxBody__list li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxBody__list li {
    grid-template-columns: 2.6666666667vw 1fr;
    gap: 0 1.7333333333vw;
  }
}
.p-topSec05BoxBody__list li::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background: url(../img/top/ico_check01.svg) no-repeat center center/contain;
}

.p-topSec05BoxLeads {
  display: grid;
  grid-template-columns: 100%;
}
.p-topSec05Box.m-box01 .p-topSec05BoxLeads {
  position: relative;
  margin: 2.3333333333rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box01 .p-topSec05BoxLeads {
    width: 82vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box01 .p-topSec05BoxLeads {
    width: 41rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box01 .p-topSec05BoxLeads {
    margin: 4.6666666667vw auto 0;
  }
}
.p-topSec05Box.m-box01 .p-topSec05BoxLeads::before, .p-topSec05Box.m-box01 .p-topSec05BoxLeads::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  translate: 0 -10%;
  background: white;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box01 .p-topSec05BoxLeads::before, .p-topSec05Box.m-box01 .p-topSec05BoxLeads::after {
    height: 8.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box01 .p-topSec05BoxLeads::before, .p-topSec05Box.m-box01 .p-topSec05BoxLeads::after {
    height: 4.3333333333rem;
  }
}
.p-topSec05Box.m-box01 .p-topSec05BoxLeads::before {
  left: 0;
  rotate: -22deg;
}
.p-topSec05Box.m-box01 .p-topSec05BoxLeads::after {
  right: 0;
  rotate: 22deg;
}

.p-topSec05Box.m-box02 .p-topSec05BoxLeads {
  position: relative;
  margin: 2.3333333333rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box02 .p-topSec05BoxLeads {
    width: 86vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box02 .p-topSec05BoxLeads {
    width: 43rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box02 .p-topSec05BoxLeads {
    margin: 4.6666666667vw auto 0;
  }
}
.p-topSec05Box.m-box02 .p-topSec05BoxLeads::before, .p-topSec05Box.m-box02 .p-topSec05BoxLeads::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  translate: 0 -10%;
  background: white;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box02 .p-topSec05BoxLeads::before, .p-topSec05Box.m-box02 .p-topSec05BoxLeads::after {
    height: 8.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box02 .p-topSec05BoxLeads::before, .p-topSec05Box.m-box02 .p-topSec05BoxLeads::after {
    height: 4.3333333333rem;
  }
}
.p-topSec05Box.m-box02 .p-topSec05BoxLeads::before {
  left: 0;
  rotate: -22deg;
}
.p-topSec05Box.m-box02 .p-topSec05BoxLeads::after {
  right: 0;
  rotate: 22deg;
}

@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box03 .p-topSec05BoxLeads {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box03 .p-topSec05BoxLeads {
    margin-top: 3rem;
  }
}
.p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1) {
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1) {
    width: 86vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1) {
    width: 43rem;
  }
}
.p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::before, .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  translate: 0 -10%;
  background: white;
}
@media screen and (max-width: 767px) {
  .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::before, .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::after {
    height: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::before, .p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::after {
    height: 2.3333333333rem;
  }
}
.p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::before {
  left: 0;
  rotate: -22deg;
}
.p-topSec05Box.m-box03 .p-topSec05BoxLeads .p-topSec05BoxLeads__item:nth-child(1)::after {
  right: 0;
  rotate: 22deg;
}

.p-topSec05BoxLeads__item {
  color: white;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxLeads__item {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxLeads__item {
    font-size: 2rem;
  }
}

.p-topSec05BoxLeads__strong {
  font-size: 125%;
  color: #ffd900;
}

.p-topSec05BoxDesign {
  margin: 2.3333333333rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxDesign {
    width: 89.8666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec05BoxDesign {
    width: 44.9333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxDesign {
    margin: 4.6666666667vw auto 0;
    gap: 2.6666666667vw;
  }
}

.p-topSec05BoxDesign__item {
  aspect-ratio: 420/694;
  -webkit-box-shadow: 1rem 1rem 0.6666666667rem rgba(0, 0, 0, 0.1);
          box-shadow: 1rem 1rem 0.6666666667rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-topSec05BoxDesign__item {
    -webkit-box-shadow: 2vw 2vw 1.3333333333vw rgba(0, 0, 0, 0.1);
            box-shadow: 2vw 2vw 1.3333333333vw rgba(0, 0, 0, 0.1);
  }
}
.p-topSec05BoxDesign__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------------------------
p-topSec06
--------------------------------------------- */
.p-topSec06 {
  background: url(../img/top/bg_sec06_01.jpg) no-repeat center center/cover;
  padding-block: 4.1333333333rem 3.6666666667rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topSec06 {
    padding-block: 8.2666666667vw 7.3333333333vw;
  }
}

.p-topSec06Text01 {
  position: relative;
  margin-inline: auto;
  background: rgba(51, 51, 51, 0.8);
  color: white;
  font-weight: 700;
  line-height: 1.7741935484;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text01 {
    width: 90.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text01 {
    width: 45.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text01 {
    padding-block: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text01 {
    padding-block: 1.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text01 {
    font-size: 4.1333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text01 {
    font-size: 2.0666666667rem;
  }
}
.p-topSec06Text01::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  aspect-ratio: 34/20;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: rgba(51, 51, 51, 0.8);
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text01::before {
    width: 4.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text01::before {
    width: 2.2666666667rem;
  }
}

.p-topSec06Text02 {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text02 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text02 {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text02 {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text02 {
    margin-top: 3rem;
  }
}

.p-topSec06Text03 {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 0.4em;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text03 {
    font-size: 6.4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text03 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text03 {
    margin-top: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text03 {
    margin-top: 2.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text03 + .p-topSec06Text03 {
    margin-top: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text03 + .p-topSec06Text03 {
    margin-top: 1rem;
  }
}

.p-topSec06Text03__strong {
  background: var(--red01);
  color: white;
  padding: 0.1em 0.3em 0.2em;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text03__strong {
    font-size: 8.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text03__strong {
    font-size: 4.1333333333rem;
  }
}

.p-topSec06Text04 {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text04 {
    font-size: 5.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text04 {
    font-size: 2.5333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text04 {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text04 {
    margin-top: 2.6666666667rem;
  }
}

.p-topSec06Text04__strong {
  border-bottom: 1px solid var(--black01);
}
@media screen and (max-width: 767px) {
  .p-topSec06Text04__strong {
    font-size: 6.4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text04__strong {
    font-size: 3.2rem;
  }
}

.p-topSec06Text05 {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec06Text05 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text05 {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec06Text05 {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec06Text05 {
    margin-top: 3rem;
  }
}

/* ---------------------------------------------
p-topSec07
--------------------------------------------- */
.p-topSec07 {
  background: url(../img/top/bg_sec07_01.jpg) no-repeat center top/cover;
  padding-block: 3.8666666667rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec07 {
    padding-block: 7.7333333333vw 8vw;
  }
}

.p-topSec07Heading {
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-topSec07Heading__text {
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07Heading__text {
    font-size: 2.3333333333rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topSec07Heading__title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07Heading__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec07Heading__title {
    margin-top: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07Heading__title {
    margin-top: 1rem;
  }
}

.p-topSec07List {
  margin: 3.8666666667rem auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.3333333333rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec07List {
    width: 88vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07List {
    width: 44rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec07List {
    margin: 7.7333333333vw auto 0;
    gap: 2.6666666667vw 0;
  }
}

.p-topSec07List__item {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 3.3333333333rem 8.6666666667rem 2rem 1fr;
  grid-template-areas: "title title title title" ". image . text";
  gap: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec07List__item {
    padding-bottom: 3.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07List__item {
    padding-bottom: 1.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec07List__item {
    border-radius: 4vw;
    grid-template-columns: 6.6666666667vw 17.3333333333vw 4vw 1fr;
    gap: 2.4vw 0;
  }
}

.p-topSec07List__title {
  grid-area: title;
  background: var(--red01);
  color: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-topSec07List__title {
    height: 11.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07List__title {
    height: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec07List__title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07List__title {
    font-size: 2.4rem;
  }
}

.p-topSec07List__image {
  grid-area: image;
}

.p-topSec07List__text {
  grid-area: text;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topSec07List__text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec07List__text {
    font-size: 2rem;
  }
}

/* ---------------------------------------------
p-topSec08
--------------------------------------------- */
.p-topSec08 {
  background-color: white;
  background-image: radial-gradient(circle, #eee 1px, transparent 1px);
  background-position: 0 0;
  background-size: 0.9333333333rem 0.9333333333rem;
  padding-block: 3.0666666667rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec08 {
    background-size: 1.8666666667vw 1.8666666667vw;
    padding-block: 6.1333333333vw 8vw;
  }
}

.p-topSec08__title {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec08__title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec08__title {
    font-size: 4rem;
  }
}

.p-topSec08List {
  margin: 3.3333333333rem auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.3333333333rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec08List {
    width: 90.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec08List {
    width: 45.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec08List {
    margin: 6.6666666667vw auto 0;
    gap: 2.6666666667vw 0;
  }
}

.p-topSec08List__item {
  background: white;
  border-radius: 1.3333333333rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0.6666666667rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.6666666667rem rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 32rem 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "heading image" "text image";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topSec08List__item {
    padding-right: 1.7333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec08List__item {
    padding-right: 0.8666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec08List__item {
    border-radius: 2.6666666667vw;
    -webkit-box-shadow: 0 0 1.3333333333vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1.3333333333vw rgba(0, 0, 0, 0.2);
    grid-template-columns: 64vw 1fr;
    gap: 0 2.6666666667vw;
  }
}

.p-topSec08List__heading {
  grid-area: heading;
  border-bottom: 1px solid var(--red01);
  padding: 0.8666666667rem 0 0.5333333333rem 2.6666666667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 1.6666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topSec08List__heading {
    padding: 1.7333333333vw 0 1.0666666667vw 5.3333333333vw;
    gap: 0 3.3333333333vw;
  }
}

.p-topSec08List__num {
  font-family: var(--roboto);
  font-weight: 900;
  color: #e8798c;
}
@media screen and (max-width: 767px) {
  .p-topSec08List__num {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec08List__num {
    font-size: 2.6666666667rem;
  }
}

.p-topSec08List__title {
  font-weight: 700;
  color: var(--red01);
}
@media screen and (max-width: 767px) {
  .p-topSec08List__title {
    font-size: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec08List__title {
    font-size: 3rem;
  }
}

.p-topSec08List__text {
  grid-area: text;
  font-weight: 700;
  line-height: 1.4814814815;
  padding: 1rem 0 1.6666666667rem 2.6666666667rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-topSec08List__text {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec08List__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec08List__text {
    padding: 2vw 0 3.3333333333vw 5.3333333333vw;
  }
}

.p-topSec08List__image {
  grid-area: image;
}

/* ---------------------------------------------
p-topSec09
--------------------------------------------- */
.p-topSec09 {
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-topSec09 {
    padding-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09 {
    padding-bottom: 3.3333333333rem;
  }
}

.p-topSec09Box01 {
  margin-inline: auto;
  border-radius: 2rem;
  background: white;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01 {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01 {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01 {
    border-radius: 4vw;
  }
}
.p-topSec09Box01.m-lp {
  --topSec09Box01__title: #2ca2e8;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01.m-lp {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01.m-lp {
    margin-top: 2.6666666667rem;
  }
}
.p-topSec09Box01.m-lpo {
  --topSec09Box01__title: #3dc6c8;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01.m-lpo {
    margin-top: 3.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01.m-lpo {
    margin-top: 1.5333333333rem;
  }
}

.p-topSec09Box01__title {
  color: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background: var(--topSec09Box01__title);
  border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__title {
    height: 10.8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01__title {
    height: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__title {
    font-size: 5.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01__title {
    font-size: 2.5333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__title {
    border-radius: 4vw 4vw 0 0;
  }
}

.p-topSec09Box01__body {
  display: grid;
  grid-template-columns: 13.2rem 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "image price" "list list";
  padding: 2.3333333333rem 1.8666666667rem 3rem 3rem;
  gap: 1.7333333333rem 1.8666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__body {
    grid-template-columns: 26.4vw 1fr;
    padding: 4.6666666667vw 3.7333333333vw 6vw 6vw;
    gap: 3.4666666667vw 3.7333333333vw;
  }
}

.p-topSec09Box01__image {
  grid-area: image;
}

.p-topSec09Box01__price {
  grid-area: price;
  align-self: center;
}

.p-topSec09Box01__list {
  grid-area: list;
  display: grid;
  grid-template-columns: 100%;
  gap: 0.3333333333rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__list {
    padding-left: 1.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01__list {
    padding-left: 0.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__list {
    gap: 0.6666666667vw 0;
  }
}
.p-topSec09Box01__list li {
  list-style: none;
  padding-left: 0.8em;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__list li {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01__list li {
    font-size: 2.1333333333rem;
  }
}
.p-topSec09Box01__list li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.p-topSec09Box01__circle {
  position: absolute;
  right: 0;
  translate: 17% 0;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__circle {
    top: 34vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01__circle {
    top: 17rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box01__circle {
    width: 24.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box01__circle {
    width: 12.4666666667rem;
  }
}

.p-topSec09Box02 {
  background: white;
  margin: 2.8rem auto 0;
  border-radius: 2rem;
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02 {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box02 {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02 {
    margin: 5.6vw auto 0;
    border-radius: 4vw;
    padding: 4.8vw;
  }
}

.p-topSec09Box02__title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--red01);
  text-align: center;
  gap: 0 0.7em;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box02__title {
    font-size: 2.6666666667rem;
  }
}
.p-topSec09Box02__title::before, .p-topSec09Box02__title::after {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--red01);
}

.p-topSec09Box02__list {
  display: grid;
  grid-template-columns: 57% 43%;
  gap: 1.6666666667rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__list {
    margin-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box02__list {
    margin-top: 1.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__list {
    gap: 3.3333333333vw 0;
  }
}
.p-topSec09Box02__list li {
  list-style: none;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1.3333333333rem 1fr;
  gap: 0 0.7333333333rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__list li {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box02__list li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__list li {
    grid-template-columns: 2.6666666667vw 1fr;
    gap: 0 1.4666666667vw;
  }
}
.p-topSec09Box02__list li::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background: url(../img/top/ico_check01.svg) no-repeat center center/contain;
}

.p-topSec09Box02__text {
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__text {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box02__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box02__text {
    margin-top: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box02__text {
    margin-top: 1rem;
  }
}

.p-topSec09Box03 {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box03 {
    margin-top: 3.7333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box03 {
    margin-top: 1.8666666667rem;
  }
}

.p-topSec09Box03__text01 {
  line-height: 1.5625;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box03__text01 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box03__text01 {
    font-size: 2.1333333333rem;
  }
}

.p-topSec09Box03__text02 {
  position: relative;
  margin: 2.3333333333rem auto 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box03__text02 {
    width: 80vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box03__text02 {
    width: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box03__text02 {
    font-size: 4.4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box03__text02 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box03__text02 {
    margin: 4.6666666667vw auto 0;
  }
}
.p-topSec09Box03__text02::before, .p-topSec09Box03__text02::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -35%;
  width: 2px;
  background: var(--black01);
}
@media screen and (max-width: 767px) {
  .p-topSec09Box03__text02::before, .p-topSec09Box03__text02::after {
    height: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box03__text02::before, .p-topSec09Box03__text02::after {
    height: 3rem;
  }
}
.p-topSec09Box03__text02::before {
  left: 0;
  rotate: -30deg;
}
.p-topSec09Box03__text02::after {
  right: 0;
  rotate: 30deg;
}

.p-topSec09Box03__text02Strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffd900), color-stop(97%, #ffd900), color-stop(97%, transparent));
  background: linear-gradient(transparent 60%, #ffd900 60%, #ffd900 97%, transparent 97%);
}

.p-topSec09Box04 {
  margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04 {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04 {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04 {
    margin: 4vw auto 0;
    border-width: 1px;
  }
}

.p-topSec09Box04__title {
  background: #666666;
  color: white;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__title {
    height: 10.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04__title {
    height: 5.4666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04__title {
    font-size: 2.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__title {
    border-radius: 4vw 4vw 0 0;
  }
}

.p-topSec09Box04__body {
  border-right: 2px solid #aaaaaa;
  border-bottom: 2px solid #aaaaaa;
  border-left: 2px solid #aaaaaa;
  border-radius: 0 0 2rem 2rem;
  background: white;
  padding-block: 0.6666666667rem 2.3333333333rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2.6666666667rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__body {
    border-width: 1px;
    border-radius: 0 0 4vw 4vw;
    padding-block: 1.3333333333vw 4.6666666667vw;
    gap: 0 5.3333333333vw;
  }
}

.p-topSec09Box04__text01 {
  grid-area: text01;
  color: var(--red01);
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__text01 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04__text01 {
    font-size: 2.6666666667rem;
  }
}

.p-topSec09Box04__text02 {
  grid-area: text02;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffd900), color-stop(97%, #ffd900), color-stop(97%, transparent));
  background: linear-gradient(transparent 60%, #ffd900 60%, #ffd900 97%, transparent 97%);
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__text02 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04__text02 {
    font-size: 2.6666666667rem;
  }
}
.p-topSec09Box04__text02 .u-textRed01 {
  font-size: 130%;
}

.p-topSec09Box04__text03 {
  grid-area: text03;
  line-height: 1.4814814815;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__text03 {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04__text03 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box04__text03 {
    margin-top: 3.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box04__text03 {
    margin-top: 1.5333333333rem;
  }
}

.p-topSec09Box05 {
  font-weight: 700;
  line-height: 1.46875;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec09Box05 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box05 {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec09Box05 {
    margin-top: 3.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec09Box05 {
    margin-top: 1.5333333333rem;
  }
}

/* ---------------------------------------------
p-topSec10
--------------------------------------------- */
.p-topSec10 {
  background: #9b0e26;
  padding-block: 3.3333333333rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec10 {
    padding-block: 6.6666666667vw 8vw;
  }
}

.p-topSec10__title {
  font-weight: 700;
  color: white;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec10__title {
    font-size: 6.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec10__title {
    font-size: 3.3333333333rem;
  }
}

.p-topSec10Flow {
  margin: 3.0666666667rem auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.3333333333rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec10Flow {
    width: 88vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec10Flow {
    width: 44rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec10Flow {
    margin: 6.1333333333vw auto 0;
    gap: 4vw 0;
  }
}

.p-topSec10Flow__item {
  border-radius: 2rem;
  background: white;
  padding: 1.6rem 1.8666666667rem 1.8666666667rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.6666666667rem 1.5333333333rem;
  grid-template-areas: "title title" "image text";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topSec10Flow__item {
    border-radius: 4vw;
    padding: 3.2vw 3.7333333333vw 3.7333333333vw;
    grid-template-columns: 20vw 1fr;
    gap: 1.3333333333vw 3.0666666667vw;
  }
}
.p-topSec10Flow__item:not(:last-child) {
  position: relative;
}
.p-topSec10Flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% -25%;
  z-index: 1;
  aspect-ratio: 1/1;
  background: url(../img/top/arw_bottom01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-topSec10Flow__item:not(:last-child)::before {
    width: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec10Flow__item:not(:last-child)::before {
    width: 4rem;
  }
}

.p-topSec10Flow__title {
  grid-area: title;
  color: var(--red01);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec10Flow__title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec10Flow__title {
    font-size: 2.4rem;
  }
}

.p-topSec10Flow__text {
  font-weight: 700;
  line-height: 1.3703703704;
}
@media screen and (max-width: 767px) {
  .p-topSec10Flow__text {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec10Flow__text {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------
p-topSec11
--------------------------------------------- */
.p-topSec11 {
  background: #f4f4f4;
  padding-block: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec11 {
    padding-block: 6vw 8vw;
  }
}

.p-topSec11__title {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec11__title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11__title {
    font-size: 4rem;
  }
}

.p-topSec11List {
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.3333333333rem 0;
}
@media screen and (max-width: 767px) {
  .p-topSec11List {
    width: 88vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List {
    width: 44rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec11List {
    margin: 6vw auto 0;
    gap: 2.6666666667vw 0;
  }
}

.p-topSec11List__item {
  border-radius: 2rem;
  background: white;
  padding: 1.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-topSec11List__item {
    border-radius: 4vw;
    padding: 2.4vw 4vw;
  }
}

.p-topSec11List__textQ {
  position: relative;
  font-weight: 700;
  padding: 0 0 0.5333333333rem 4.6666666667rem;
  border-bottom: 1px solid #ededed;
  line-height: 1.4814814815;
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textQ {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textQ {
    font-size: 1.8666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textQ {
    padding: 0 0 1.0666666667vw 9.3333333333vw;
  }
}
.p-topSec11List__textQ::before {
  position: absolute;
  top: 0;
  content: "Q.";
  font-family: var(--roboto);
  color: var(--red01);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textQ::before {
    left: 1.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textQ::before {
    left: 0.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textQ::before {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textQ::before {
    font-size: 2.6666666667rem;
  }
}

.p-topSec11List__textA {
  position: relative;
  font-weight: 700;
  padding: 0 0 0.5333333333rem 4.6666666667rem;
  line-height: 1.4814814815;
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textA {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textA {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textA {
    margin-top: 1.0666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textA {
    margin-top: 0.5333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textA {
    padding: 0 0 1.0666666667vw 9.3333333333vw;
  }
}
.p-topSec11List__textA::before {
  position: absolute;
  top: 0;
  content: "A.";
  font-family: var(--roboto);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textA::before {
    left: 1.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textA::before {
    left: 0.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec11List__textA::before {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec11List__textA::before {
    font-size: 2.6666666667rem;
  }
}

/* ---------------------------------------------
p-topSec12
--------------------------------------------- */
.p-topSec12 {
  padding-block: 3.6666666667rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-topSec12 {
    padding-block: 7.3333333333vw 8vw;
  }
}

.p-topSec12__title {
  font-weight: 700;
  color: var(--red01);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec12__title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__title {
    font-size: 4rem;
  }
}

.p-topSec12__titleBg {
  background: #ffd900;
  padding: 0.02em 0.4em 0.03em;
}

.p-topSec12__text01 {
  font-weight: 700;
  text-align: center;
  position: relative;
  margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topSec12__text01 {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text01 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12__text01 {
    width: 32vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text01 {
    width: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12__text01 {
    margin: 4vw auto 0;
  }
}
.p-topSec12__text01::before, .p-topSec12__text01::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2px;
  background: var(--black01);
}
@media screen and (max-width: 767px) {
  .p-topSec12__text01::before, .p-topSec12__text01::after {
    height: 4.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text01::before, .p-topSec12__text01::after {
    height: 2.4666666667rem;
  }
}
.p-topSec12__text01::before {
  left: 0;
  rotate: -30deg;
}
.p-topSec12__text01::after {
  right: 0;
  rotate: 30deg;
}

.p-topSec12__text02 {
  color: var(--red01);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec12__text02 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text02 {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12__text02 {
    margin-top: 0.5333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text02 {
    margin-top: 0.2666666667rem;
  }
}

.p-topSec12Box {
  position: relative;
  padding: 0 2.3333333333rem 3.8666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topSec12Box {
    margin-top: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12Box {
    padding: 0 4.6666666667vw 7.7333333333vw;
  }
}

.p-topSec12Box__list {
  background: #f4f4f4;
  border-radius: 0.6666666667rem;
  padding: 1.7333333333rem 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list {
    border-radius: 1.3333333333vw;
    padding: 3.4666666667vw 5.3333333333vw;
  }
}
.p-topSec12Box__list li {
  position: relative;
  list-style: none;
  font-weight: 700;
  line-height: 1.4814814815;
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list li {
    padding-block: 2.8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__list li {
    padding-block: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list li {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__list li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list li {
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__list li {
    padding-left: 2.6666666667rem;
  }
}
.p-topSec12Box__list li::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  background: url(../img/top/ico_check01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list li::before {
    top: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__list li::before {
    top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list li::before {
    left: 0.1333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__list li::before {
    left: 0.0666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__list li::before {
    width: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__list li::before {
    width: 1.6rem;
  }
}
.p-topSec12Box__list li:not(:last-child) {
  border-bottom: 1px solid #d3d3d3;
}

.p-topSec12Box__image {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-topSec12Box__image {
    width: 36.9333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12Box__image {
    width: 18.4666666667rem;
  }
}

.p-topSec12__text03 {
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec12__text03 {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text03 {
    font-size: 2.1333333333rem;
  }
}

.p-topSec12__text04 {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topSec12__text04 {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text04 {
    font-size: 2.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topSec12__text04 {
    margin-top: 1.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topSec12__text04 {
    margin-top: 0.6666666667rem;
  }
}

/* ---------------------------------------------
p-topContact
--------------------------------------------- */
.p-topContact {
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .p-topContact {
    padding-bottom: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContact {
    padding-bottom: 4rem;
  }
}

.p-topContact__text {
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topContact__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContact__text {
    font-size: 2.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContact__text {
    margin-top: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContact__text {
    margin-top: 2.1333333333rem;
  }
}

.p-topContactForm {
  margin: 1.6666666667rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-topContactForm {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm {
    margin: 3.3333333333vw auto 0;
  }
}
.p-topContactForm dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topContactForm dt {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm dt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm dt {
    padding-left: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm dt {
    padding-left: 2rem;
  }
}
.p-topContactForm dt::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  height: 4px;
  background: var(--red01);
}
@media screen and (max-width: 767px) {
  .p-topContactForm dt::before {
    width: 2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm dt::before {
    width: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm dt::before {
    height: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm dd {
    margin-top: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm dd {
    margin-top: 0.8rem;
  }
}
.p-topContactForm dd input, .p-topContactForm dd textarea {
  width: 100%;
  font-size: 16px;
  padding: 0.5em;
}
.p-topContactForm dd input {
  height: 50px;
}
@media screen and (max-width: 767px) {
  .p-topContactForm dd input {
    height: 30px;
  }
}
.p-topContactForm dd textarea {
  height: 130px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-topContactForm dd textarea {
    height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm dd + dt {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm dd + dt {
    margin-top: 1.6666666667rem;
  }
}
.p-topContactForm .error {
  color: var(--red01);
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-topContactForm .error {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm .error {
    font-size: 1.6rem;
  }
}

.p-topContactForm__icon {
  font-size: 70%;
  padding-left: 0.4em;
}

.p-topContactForm__buttons {
  margin: 2.1333333333rem auto 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topContactForm__buttons {
    width: 61.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__buttons {
    width: 30.6666666667rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__buttons {
    margin: 4.2666666667vw auto 0;
    gap: 2.6666666667vw;
  }
}
.p-topContactForm__buttons:has(.p-topContactForm__back) {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .p-topContactForm__buttons:has(.p-topContactForm__back) {
    margin-top: 6.6666666667vw;
  }
}

.p-topContactForm__submit {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 460/82;
  border-radius: 0.3333333333rem;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0.4666666667rem 0 #0f8750;
          box-shadow: 0 0.4666666667rem 0 #0f8750;
}
@media (any-hover: hover) {
  .p-topContactForm__submit {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  .p-topContactForm__submit:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__submit {
    border-radius: 0.6666666667vw;
    -webkit-box-shadow: 0 0.9333333333vw 0 #0f8750;
            box-shadow: 0 0.9333333333vw 0 #0f8750;
  }
}
.p-topContactForm__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.p-topContactForm__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-topContactForm__submit::after {
    right: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__submit::after {
    right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__submit::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__submit::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__submit::after {
    border-width: 1px;
  }
}
.p-topContactForm__submit input {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
  color: white;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-topContactForm__submit input {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__submit input {
    font-size: 2rem;
  }
}

.p-topContactForm__back {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 460/82;
  border-radius: 0.3333333333rem;
  overflow: hidden;
  background: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0.4666666667rem 0 #444;
          box-shadow: 0 0.4666666667rem 0 #444;
}
@media (any-hover: hover) {
  .p-topContactForm__back {
    -webkit-transition: opacity var(--duration03);
    transition: opacity var(--duration03);
  }
  .p-topContactForm__back:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__back {
    border-radius: 0.6666666667vw;
    -webkit-box-shadow: 0 0.9333333333vw 0 #666;
            box-shadow: 0 0.9333333333vw 0 #666;
  }
}
.p-topContactForm__back::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 225deg;
}
@media screen and (max-width: 767px) {
  .p-topContactForm__back::after {
    left: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__back::after {
    left: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__back::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__back::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topContactForm__back::after {
    border-width: 1px;
  }
}
.p-topContactForm__back input {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
  color: white;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-topContactForm__back input {
    font-size: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-topContactForm__back input {
    font-size: 2rem;
  }
}

/* ---------------------------------------------
p-confirmSec
--------------------------------------------- */
@media screen and (max-width: 999px) {
  .p-confirmSec {
    padding-top: var(--headerHeight);
  }
}

.p-confirmSecBody {
  padding-block: 1.6666666667rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-confirmSecBody {
    padding-block: 3.3333333333vw 8vw;
  }
}
.p-confirmSecBody .p-topContactForm dd {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-confirmSecBody .p-topContactForm dd {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-confirmSecBody .p-topContactForm dd {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------
p-thanksSec
--------------------------------------------- */
.p-thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-thanksSec {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 999px) {
  .p-thanksSec {
    padding-top: var(--headerHeight);
  }
}

.p-thanksSecBody {
  margin-inline: auto;
  padding-block: 4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (max-width: 767px) {
  .p-thanksSecBody {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-thanksSecBody {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-thanksSecBody {
    padding-block: 8vw;
  }
}

.p-thanksBody__text {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanksBody__text {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-thanksBody__text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .p-thanksBodyButton {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-thanksBodyButton {
    margin-top: 3rem;
  }
}
.p-thanksBodyButton a {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 660/92;
  border-radius: 0.3333333333rem;
  overflow: hidden;
  background: var(--green01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0.4666666667rem 0 #0f8750;
          box-shadow: 0 0.4666666667rem 0 #0f8750;
}
@media screen and (max-width: 767px) {
  .p-thanksBodyButton a {
    border-radius: 0.6666666667vw;
    -webkit-box-shadow: 0 0.9333333333vw 0 #0f8750;
            box-shadow: 0 0.9333333333vw 0 #0f8750;
  }
}
.p-thanksBodyButton a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 3px);
  height: calc(100% - 2px);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: linear-gradient(348deg, rgb(76, 217, 147) 43%, rgb(224, 255, 204) 100%);
  opacity: 0.6;
}
.p-thanksBodyButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1/1;
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-thanksBodyButton a::after {
    right: 3.2vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-thanksBodyButton a::after {
    right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-thanksBodyButton a::after {
    width: 1.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-thanksBodyButton a::after {
    width: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-thanksBodyButton a::after {
    border-width: 1px;
  }
}
.p-thanksBodyButton a > * {
  position: relative;
}

.p-thanksBodyButton__text {
  color: white;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .p-thanksBodyButton__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-thanksBodyButton__text {
    font-size: 2.1333333333rem;
  }
}

/* ---------------------------------------------
p-privacySec
--------------------------------------------- */
@media screen and (max-width: 999px) {
  .p-privacySec {
    padding-top: var(--headerHeight);
  }
}

.p-privacySecHeading {
  background: var(--red01);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3333333333;
  text-align: center;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-privacySecHeading {
    min-height: 20vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecHeading {
    min-height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacySecHeading {
    padding-block: 4vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecHeading {
    padding-block: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-privacySecHeading__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecHeading__title {
    font-size: 2.6666666667rem;
  }
}

@media screen and (max-width: 767px) {
  .p-privacySecHeading__text {
    font-size: 8vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecHeading__text {
    font-size: 4rem;
  }
}

.p-privacySecBody {
  margin-inline: auto;
  padding-block: 3.3333333333rem 4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-privacySecBody {
    width: 86.6666666667vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecBody {
    width: 43.3333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacySecBody {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecBody {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacySecBody {
    padding-block: 6.6666666667vw 8vw;
  }
}

@media screen and (max-width: 767px) {
  .p-privacySecBody__list {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 767.1px) {
  .p-privacySecBody__list {
    margin-top: 2.6666666667rem;
  }
}
.p-privacySecBody__list dt {
  font-weight: 700;
}
.p-privacySecBody__list dd {
  margin-top: 0.4em;
}
.p-privacySecBody__list dd + dt {
  margin-top: 2em;
}