@charset "UTF-8";

/* ----------------------------------------------------
	Reset
---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  clear: both;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  color: inherit;
}

pre {
  font-size: inherit;
  font-family: monospace, monospace;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-size: inherit;
  font-family: monospace, monospace;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  vertical-align: middle;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ----------------------------------------------------
	Base Style
---------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
  color: #000;
  font-size: 2.3vw;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  position: relative;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1080px;
  }
}

/* ----------------------------------------------------
	Layout
---------------------------------------------------- */

/* Header */
.l-header {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 2.66667vw;
}

@media screen and (min-width: 768px) {
  .l-header {
    padding-top: 20px;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.l-header__logo img {
  width: 9.6vw;
}

@media screen and (min-width: 768px) {
  .l-header__logo img {
    width: auto;
  }
}

.l-header__ctaWrapper {
  display: flex;
  margin-top: 0.53333vw;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .l-header__ctaWrapper {
    margin-top: 0;
    gap: 20px;
  }
}

.l-rootContainer {
  display: flex;
  position: relative;
  flex-flow: column;
  min-height: 100vh;
  overflow: hidden;
}

.l-page__form .l-rootContainer {
  background-color: #f5f5f5;
}

.l-main {
  flex: 1;
}

/* Footer */
.p-footer {
  background-color: #000;
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
}
.l-footer {
  padding-top: 4.8vw;
  padding-bottom: 18.66667vw;
  background-color: #000;
  text-align: center;
}

.l-footer img {
  text-align: start;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 30px;
    padding-bottom: 102px;
  }
}

.l-page__form .l-footer {
  padding-bottom: 4.8vw;
}

@media screen and (min-width: 768px) {
  .l-page__form .l-footer {
    padding-bottom: 32px;
  }
}

.l-footer__copy {
  color: #fff;
  font-weight: normal;
  font-size: 2.66667vw;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------------
	Component
---------------------------------------------------- */

/* form */
.c-form input[type="text"],
.c-form input[type="email"],
.c-form input[type="tel"],
.c-form input[type="number"] {
  width: 100%;
  padding: 4.8vw 3.73333vw;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #fff;
  font-size: 3.73333vw;
}

@media screen and (min-width: 768px) {
  .c-form input[type="text"],
  .c-form input[type="email"],
  .c-form input[type="tel"],
  .c-form input[type="number"] {
    padding: 16px 19px;
    border-radius: 4px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-form input.small {
  width: 26.66667vw;
  margin-right: 2.4vw;
}

@media screen and (min-width: 768px) {
  .c-form input.small {
    width: 160px;
    margin-right: 9px;
  }
}

.c-form textarea {
  width: 100%;
  height: 32vw;
  padding: 4.8vw 3.73333vw;
  border: 1px solid #aaa;
  border-radius: 4px;
  background: #fff;
  font-size: 3.73333vw;
  line-height: 1.43;
}

@media screen and (min-width: 768px) {
  .c-form textarea {
    height: 160px;
    padding: 16px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.c-form input[type="radio"],
.c-form input[type="checkbox"] {
  display: none;
}

.c-form input::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  color: #aaa;
}

.c-form input::placeholder,
.c-form textarea::placeholder {
  color: #aaa;
}

.c-form input:focus,
.c-form textarea:focus {
  border: solid 1px #bf0000;
  outline: none;
}

.c-form__radioButton {
  margin-top: 2.53333vw;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .c-form__radioButton {
    width: auto;
    margin-top: 10px;
  }
}

.c-form__radioButton:first-of-type {
  margin-top: 0;
}

.c-form__radioButton label {
  display: block;
  position: relative;
  height: 14.66667vw;
  padding: 4.26667vw 1.33333vw 2.66667vw 11.46667vw;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #fff;
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .c-form__radioButton label {
    height: auto;
    padding: 10px 16px 9px 56px;
    border-radius: 4px;
    font-size: 18px;
    font-size: 1.8rem;
    cursor: pointer;
  }
}

@media not all and (min-width: 768px) {
  .c-form__radioButton label.sp-two-line {
    padding-top: 1.6vw;
  }
}

.c-form__radioButton label::after,
.c-form__radioButton label::before {
  display: block;
  position: absolute;
  top: 50%;
  content: "";
}

.c-form__radioButton label::after {
  top: 50%;
  left: 2.93333vw;
  width: 6.4vw;
  height: 6.4vw;
  transform: translate(0, -50%);
  border: 1px solid #aaa;
  border-radius: 50%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .c-form__radioButton label::after {
    left: 21px;
    width: 26px;
    height: 26px;
  }
}

.c-form__radioButton input:checked + label {
  border: 1px solid #bf0000;
}

.c-form__radioButton input:checked + label::before {
  z-index: 1;
  top: 50%;
  left: 4vw;
  width: 4.26667vw;
  height: 4.26667vw;
  transform: translate(0, -50%);
  border-radius: 50%;
  background: #bf0000;
}

@media screen and (min-width: 768px) {
  .c-form__radioButton input:checked + label::before {
    left: 26px;
    width: 16px;
    height: 16px;
  }
}

.c-form__submitButton {
  display: block;
  position: relative;
  width: 100%;
  height: 16vw;
  margin: 0 auto;
  margin-top: 6.66667vw;
  background-color: #bf0000;
  color: #fff;
  font-weight: bold;
  font-size: 3.73333vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-form__submitButton {
    width: 480px;
    height: 72px;
    margin-top: 52px;
    font-size: 20px;
    font-size: 2rem;
    cursor: pointer;
  }
}

.c-form__submitButton::after {
  position: absolute;
  top: 50%;
  right: 5.33333vw;
  width: 0;
  height: 0;
  transform: translateY(-50%) rotate(-90deg);
  border-top: 2.93333vw solid #fff;
  border-right: 1.6vw solid transparent;
  border-left: 1.6vw solid transparent;
  content: "";
}

@media screen and (min-width: 768px) {
  .c-form__submitButton::after {
    right: 30px;
    border-top: 15px solid #fff;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
  }
}

.c-form__requiredTag {
  display: inline-block;
  margin-top: -0.26667vw;
  margin-right: 1.6vw;
  padding: 0.8vw 1.6vw 0.8vw 1.06667vw;
  border-radius: 2px;
  background-color: #bf0000;
  color: #fff;
  font-weight: normal;
  font-size: 2.93333vw;
  line-height: 1;
  text-align: center;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .c-form__requiredTag {
    margin-top: 2px;
    margin-right: 10px;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-form__requiredTag--any {
  background-color: #888;
}

.c-form__contentsWrapper {
  padding: 8.8vw 6.4vw 10.66667vw;
}

@media screen and (min-width: 768px) {
  .c-form__contentsWrapper {
    padding: 58px 80px 60px;
  }
}

@media not all and (min-width: 768px) {
  .l-page__form--send .c-form__contentsWrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-page__form--send .c-form__contentsWrapper {
    padding-top: 50px;
  }
}

.c-form__contents {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .c-form__contents {
    margin-top: 35px;
  }
}

.c-form__contents--first {
  margin-top: 0;
}

.c-form__contentsTitle {
  margin-bottom: 2.4vw;
  font-weight: normal;
  font-size: 4vw;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-form__contentsTitle {
    margin-bottom: 14px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.67;
  }
}

.c-form__contentsTitle--caption {
  display: block;
  position: relative;
  margin-top: 2.13333vw;
  margin-bottom: 4.27vw;
  padding-left: calc(1em + 0.2vw);
  font-size: 2.93333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .c-form__contentsTitle--caption {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: calc(1em + 1px);
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form__contentsTitle--caption::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

@media screen and (min-width: 768px) {
  .c-form__contentsbody {
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-contact__sendHeading {
  text-align: center;
}

.p-contact__sendTitle {
  font-weight: 700;
  font-size: 6.4vw;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .p-contact__sendTitle {
    font-size: 40px;
    font-size: 4rem;
  }
}

.p-contact__sendImage img {
  width: 11.06667vw;
  height: 12.26667vw;
  margin-right: auto;
  margin-bottom: 3.73333vw;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .p-contact__sendImage img {
    width: 83px;
    height: 92px;
    margin-bottom: 20px;
  }
}

.p-contact__send p {
  margin-bottom: 6.4vw;
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-contact__send p {
    margin-bottom: 24px;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
  }
}

.p-contact__send p:last-of-type {
  margin-bottom: 0;
}

.c-form__submitButton--send {
  width: 64vw;
  height: 13.33333vw;
  margin-top: 16vw;
  padding-left: 1.06667vw;
}

@media screen and (min-width: 768px) {
  .c-form__submitButton--send {
    width: 280px;
    height: 56px;
    margin-top: 64px;
    padding-left: 12px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-form__submitButton--send::after {
  right: auto;
  left: 4vw;
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 768px) {
  .c-form__submitButton--send::after {
    left: 16px;
    border-top: 13px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }
}

/* リンクホバー */
.c-link {
  transition: all 0.3s linear;
}

@media (hover: none) {
  .c-link:active {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .c-link:focus {
    opacity: 0.7;
    transition: all 0.3s linear;
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  .c-link:hover {
    opacity: 0.7;
    transition: all 0.3s linear;
  }
}

/* CTAボタン */
.c-ctaButton a {
  font-feature-settings: "palt";
  display: block;
  position: relative;
  width: 100%;
  padding-top: 1.33333vw;
  background-color: #bf0000;
  color: #fff;
  font-weight: normal;
  font-size: 2.93333vw;
  line-height: 1.36;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-ctaButton a {
    padding-top: 11px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
}

.c-ctaButton a::after {
  position: absolute;
  top: 50%;
  right: 1.33333vw;
  width: 0;
  height: 0;
  transform: translateY(-50%) rotate(-90deg);
  border-top: 2.13333vw solid #fff;
  border-right: 1.2vw solid transparent;
  border-left: 1.2vw solid transparent;
  content: "";
}

@media screen and (min-width: 768px) {
  .c-ctaButton a::after {
    right: 8px;
    border-top: 11px solid #fff;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
  }
}

.c-ctaButton--trial span.icon {
  display: inline-block;
  width: 4vw;
  height: 4vw;
  margin-right: 0.8vw;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 20.2 20"><path fill="%23fff" d="M17 0c.6 0 1 .4 1 1v3.8l-2 2V2H2v16h14v-2.8l2-2V19c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1h16zm1.8 6.8l1.4 1.4-7.8 7.8H11v-1.4l7.8-7.8M10 12H5v-2h5v2zm3-4H5V6h8v2zz" /></svg>')
    no-repeat center bottom/contain;
  vertical-align: text-bottom;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--trial span.icon {
    width: 21px;
    height: 20px;
    margin-right: 5px;
  }
}

.c-ctaButton--contact span.icon {
  display: inline-block;
  width: 4vw;
  height: 3.6vw;
  margin-right: 0.8vw;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 20.2 20"><path fill="%23fff" d="M1 0h18c.6 0 1 .4 1 1v16c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1m17 4.2l-7.9 7.1L2 4.2V16h16V4.2zM2.5 2l7.6 6.7L17.5 2h-15z" /></svg>')
    no-repeat center bottom/contain;
  vertical-align: text-bottom;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--contact span.icon {
    width: 20px;
    height: 19px;
    margin-right: 5px;
  }
}

.c-ctaButton__caption {
  display: inline-block;
  position: absolute;
  top: -3.2vw;
  right: 0;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding-top: 0.26667vw;
  padding-right: 2.13333vw;
  padding-bottom: 0.8vw;
  padding-left: 3.46667vw;
  border-radius: 60px;
  background-color: #f59600;
  color: #fff;
  font-weight: 700;
  font-size: 3.2vw;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-ctaButton__caption {
    top: -15px;
    padding-top: 2px;
    padding-right: 7px;
    padding-bottom: 3px;
    padding-left: 13px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-ctaButton__caption span {
  font-weight: bold;
  font-size: 4.8vw;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  .c-ctaButton__caption span {
    margin-right: 2px;
    font-size: 28px;
    font-size: 2.8rem;
    vertical-align: text-bottom;
  }
}

.c-ctaButton--header a {
  width: 29.33333vw;
  height: 10.13333vw;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--header a {
    width: 270px;
    height: 40px;
  }
}

.c-ctaButton--header.c-ctaButton--trial a {
  padding-right: 1.33333vw;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--header.c-ctaButton--trial a {
    padding-right: 0;
  }
}

.c-ctaButton--header.c-ctaButton--contact a {
  padding-right: 0.8vw;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--header.c-ctaButton--contact a {
    padding-right: 8px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.c-ctaButton--header span.icon {
  display: inline-block;
}

.c-ctaButton--floating a {
  width: calc((100vw - 2px) / 2);
  height: 13.33333vw;
  font-size: 3.33333vw;
}

@media not all and (min-width: 768px) {
  .c-ctaButton--floating a {
    padding-top: 4.26667vw;
    padding-right: 1.86667vw;
  }
}

@media screen and (min-width: 768px) {
  .c-ctaButton--floating a {
    width: 400px;
    height: 48px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.c-ctaButton--floating a::after {
  right: 1.86667vw;
  border-top: 2.13333vw solid #fff;
  border-right: 1.33333vw solid transparent;
  border-left: 1.33333vw solid transparent;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--floating a::after {
    right: 20px;
    border-top: 12px solid #fff;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
  }
}

@media not all and (min-width: 768px) {
  .c-ctaButton--ctaBlock {
    margin-top: 5.06667vw;
  }
}

@media not all and (min-width: 768px) {
  .c-ctaButton--ctaBlock:first-of-type {
    margin-top: 0;
  }
}

.c-ctaButton--ctaBlock a {
  position: relative;
  width: 80vw;
  height: 14.66667vw;
  margin-right: auto;
  margin-left: auto;
  padding-top: 4.53333vw;
  padding-left: 21.86667vw;
  background-color: #fff;
  box-shadow: 0 1.33333vw 0 0 rgba(0, 0, 0, 0.2);
  color: #bf0000;
  font-weight: 700;
  font-size: 4.26667vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.05em;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--ctaBlock a {
    width: 480px;
    height: 80px;
    margin: 0;
    padding-top: 26px;
    padding-left: 0;
    box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.2);
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
  }
}

.c-ctaButton--ctaBlock a::after {
  right: 3.46667vw;
  border-top: 3.2vw solid #bf0000;
  border-right: 1.86667vw solid transparent;
  border-left: 1.86667vw solid transparent;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--ctaBlock a::after {
    right: 30px;
    border-top: 15px solid #bf0000;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
  }
}

.c-ctaButton--ctaBlock.c-ctaButton--trial span.icon {
  position: absolute;
  top: 50%;
  left: 14.93333vw;
  width: 5.33333vw;
  height: 5.33333vw;
  transform: translateY(-50%);
  background: url("../images/icon_trial.svg") no-repeat center top/contain;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--ctaBlock.c-ctaButton--trial span.icon {
    position: static;
    width: 29px;
    height: 28px;
    margin-right: 7px;
    transform: translateY(0);
    vertical-align: sub;
  }
}

.c-ctaButton--ctaBlock.c-ctaButton--contact span.icon {
  position: absolute;
  top: 50%;
  left: 14.93333vw;
  width: 5.33333vw;
  height: 4.8vw;
  transform: translateY(-50%);
  background: url("../images/icon_contact.svg") no-repeat center top/contain;
}

@media screen and (min-width: 768px) {
  .c-ctaButton--ctaBlock.c-ctaButton--contact span.icon {
    position: static;
    width: 28px;
    height: 26px;
    margin-right: 8px;
    transform: translateY(0);
    vertical-align: sub;
  }
}

/* CTAエリア */
.c-ctaBlock {
  padding-top: 8.53333vw;
  padding-bottom: 10.66667vw;
  background-color: #bf0000;
}

@media screen and (min-width: 768px) {
  .c-ctaBlock {
    padding-top: 38px;
    padding-bottom: 48px;
  }
}

@media not all and (min-width: 768px) {
  .c-ctaBlock--first {
    padding-top: 10.66667vw;
    padding-bottom: 9.33333vw;
  }
}

.c-cta__textWrapper {
  flex: 1;
  margin-bottom: 6.4vw;
}

@media screen and (min-width: 768px) {
  .c-cta__textWrapper {
    margin-bottom: 0;
  }
}

.c-cta__title {
  margin-right: -4.93vw;
  margin-bottom: 4.26667vw;
  margin-left: -4.93vw;
  color: #fff;
  font-weight: 700;
  font-size: 5.73333vw;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.08em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-cta__title {
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 0;
    font-size: 40px;
    font-size: 4rem;
    line-height: 1;
  }
}

.c-cta__title--large {
  color: #ffdd36;
  font-size: 6.88vw;
}

@media screen and (min-width: 768px) {
  .c-cta__title--large {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.c-cta__text {
  color: #fff;
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-cta__text {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.c-cta__text--large {
  font-size: 5.28vw;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .c-cta__text--large {
    font-size: 35.2px;
    font-size: 3.52rem;
  }
}

.c-ctaBlock .u-underLine--white::after {
  bottom: -1.06667vw;
}

@media screen and (min-width: 768px) {
  .c-ctaBlock .u-underLine--white::after {
    bottom: 0;
  }
}

.c-cta__buttonWrapper {
  margin-top: 11.2vw;
}

@media screen and (min-width: 768px) {
  .c-cta__buttonWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 42px;
  }
}

/* 三角ボックス */
.c-triangleBox {
  z-index: 1;
  position: relative;
  margin-bottom: -6.4vw;
  padding-top: 2.93333vw;
  color: #fff;
  font-weight: 700;
  font-size: 5.06667vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-triangleBox {
    margin-bottom: -90px;
    padding-top: 15px;
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.c-triangleBox::before,
.c-triangleBox::after {
  position: absolute;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 15.46667vw 38.4vw 0 38.4vw;
  border-style: solid;
  content: "";
}

@media screen and (min-width: 768px) {
  .c-triangleBox::before,
  .c-triangleBox::after {
    border-width: 96px 240px 0 240px;
  }
}

.c-triangleBox::before {
  z-index: -1;
  top: 0;
  border-color: #f59600 transparent transparent transparent;
}

.c-triangleBox::after {
  z-index: -2;
  top: 2.66667vw;
  border-color: #db8600 transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .c-triangleBox::after {
    top: 10px;
  }
}

/* コンテンツ枠 */
.c-contentBlock {
  width: 100%;
  padding-right: 4.93vw;
  padding-left: 4.93vw;
}

@media screen and (min-width: 768px) {
  .c-contentBlock {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

/* 大見出し */
.c-topHeading {
  margin-right: -4.93333vw;
  margin-left: -4.93333vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-topHeading {
    margin-right: 0;
    margin-left: 0;
  }
}

.c-topHeading__title {
  font-weight: 700;
  font-size: 4.53333vw;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .c-topHeading__title {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.7;
  }
}

.c-topHeading__title--large {
  font-size: 7.04vw;
}

@media screen and (min-width: 768px) {
  .c-topHeading__title--large {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.c-topHeading__title--middle {
  font-size: 5.06667vw;
}

@media screen and (min-width: 768px) {
  .c-topHeading__title--middle {
    font-size: 40px;
    font-size: 4rem;
  }
}

.c-topHeading__subTitle--balloon {
  display: inline-block;
  position: relative;
  margin-bottom: 5.06667vw;
  padding-top: 0.8vw;
  padding-right: 3.2vw;
  padding-bottom: 1.6vw;
  padding-left: 4.53333vw;
  border-radius: 100px;
  background-color: #bf0000;
  color: #fff;
  font-weight: 700;
  font-size: 5.06667vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.04em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-topHeading__subTitle--balloon {
    margin-bottom: 19px;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 9px;
    padding-left: 30px;
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.c-topHeading__subTitle--balloon::after {
  position: absolute;
  right: 0;
  bottom: -2.4vw;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 2.66667vw 1.86667vw 0 1.86667vw;
  border-style: solid;
  border-color: #bf0000 transparent transparent transparent;
  content: "";
}

@media screen and (min-width: 768px) {
  .c-topHeading__subTitle--balloon::after {
    bottom: -16px;
    border-width: 16px 12px 0 12px;
  }
}

.c-topHeading__subTitle--number {
  margin-left: 0.8vw;
  font-size: 7.6vw;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
  vertical-align: text-bottom;
}

@media screen and (min-width: 768px) {
  .c-topHeading__subTitle--number {
    margin-left: 3px;
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.c-topHeading__title .u-commonText--dot::before {
  top: -1px;
}

.c-topHeading__title .u-underLine--yellow::after {
  bottom: 2px;
}

/* 小見出し */
.c-secondHeading {
  z-index: 1;
  position: relative;
  text-align: center;
}

.c-secondHeading__title {
  display: inline-block;
  padding-right: 2.93333vw;
  padding-left: 2.93333vw;
  background-color: #fff;
  font-weight: 700;
  font-size: 4.26667vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.08em;
}

@media screen and (min-width: 768px) {
  .c-secondHeading__title {
    padding-right: 23px;
    padding-left: 23px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-secondHeading::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.8vw;
  transform: translateY(-50%);
  background-color: #000;
  content: "";
}

@media screen and (min-width: 768px) {
  .c-secondHeading::before {
    height: 4px;
  }
}

.c-secondHeading--bgGray .c-secondHeading__title {
  background-color: #f5f5f5;
}

/* ----------------------------------------------------
	Project
---------------------------------------------------- */

/* メインビジュアル */
.p-mainVisual {
  position: relative;
  height: 115.73333vw;
  background-image: linear-gradient(to top, #f4f4f4, #fff, #f4f4f4);
}

@media screen and (min-width: 768px) {
  .p-mainVisual {
    height: 608px;
  }
}

.p-mainVisual__textWrapper {
  z-index: 1;
  position: absolute;
  top: 18.93333vw;
  right: 0;
  left: 0;
  margin: auto;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__textWrapper {
    top: 135px;
    width: 1000px;
  }
}

.p-mainVisual__subTitle {
  margin-bottom: 10.66667vw;
  margin-bottom: 3.73333vw;
  font-size: 5.6vw;
  letter-spacing: -0.06em;
}

@media not all and (min-width: 768px) {
  .p-mainVisual__subTitle {
    line-height: 1.3;
  }
}

@media screen and (min-width: 768px) {
  .p-mainVisual__subTitle {
    margin-bottom: 32px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mainVisual__subTitle .u-underLine--red::after {
    bottom: -2px;
  }
}

.p-mainVisual__title {
  font-size: 11.73333vw;
  line-height: 1.05;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 0 0.53333vw #fff) drop-shadow(0 0 2.13333vw #fff)
    drop-shadow(0 0 2.13333vw #fff);
}

@media screen and (min-width: 768px) {
  .p-mainVisual__title {
    font-size: 64px;
    font-size: 6.4rem;
    line-height: 1.2;
    filter: none;
  }
}

.p-mainVisual__title--large {
  font-size: 14.08vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__title--large {
    font-size: 76.8px;
    font-size: 7.68rem;
  }
}

.p-mainVisual__title--small {
  font-size: 8vw;
  line-height: 1;
  letter-spacing: -0.1em;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__title--small {
    font-size: 56px;
    font-size: 5.6rem;
    line-height: 1.2;
  }
}

.p-mainVisual__title .u-commonText--dot::before {
  top: -2.13333vw;
  width: 2.13333vw;
  height: 2.13333vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__title .u-commonText--dot::before {
    top: -11px;
    width: 12px;
    height: 12px;
  }
}

.p-mainVisual__title .p-mainVisual__title--large .u-commonText--dot::before {
  top: 0.53333vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__title .p-mainVisual__title--large .u-commonText--dot::before {
    top: 4px;
  }
}

@media not all and (min-width: 768px) {
  .p-mainVisual__title .u-underLine--yellow {
    display: inline-block;
    padding-top: 6.4vw;
  }
}

.p-mainVisual__title .u-underLine--yellow::after {
  bottom: -1.06667vw;
  height: 4.26667vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__title .u-underLine--yellow::after {
    bottom: 4px;
    height: 24px;
  }
}

.p-mainVisual__pointWrapper {
  display: flex;
  justify-content: center;
  margin-top: 5.33333vw;
  gap: 1.6vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__pointWrapper {
    margin-top: 12px;
    gap: 19px;
  }
}

.p-mainVisual__point {
  aspect-ratio: 1 / 1;
  width: 32.93333vw;
  height: 32.93333vw;
  padding-top: 8.26667vw;
  border-radius: 100%;
  background: url("../images/mv_badge.svg") no-repeat center/cover;
  box-shadow: 0 0.8vw 1.06667vw 0 rgba(0, 0, 0, 0.2);
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__point {
    width: 202px;
    height: 202px;
    padding-top: 50px;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  }
}

.p-mainVisual__pointTitle {
  margin-bottom: 1.6vw;
  font-size: 4.53333vw;
  letter-spacing: -0.02em;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
}

@media screen and (min-width: 768px) {
  .p-mainVisual__pointTitle {
    margin-bottom: 10px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.p-mainVisual__point--02 .p-mainVisual__pointTitle {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__point--02 .p-mainVisual__pointTitle {
    margin-bottom: 7px;
    letter-spacing: -0.1em;
  }
}

.p-mainVisual__point--03 .p-mainVisual__pointTitle {
  margin-bottom: 1.33333vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__point--03 .p-mainVisual__pointTitle {
    margin-bottom: 7px;
  }
}

.p-mainVisual__pointText {
  font-size: 3.86667vw;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
}

@media screen and (min-width: 768px) {
  .p-mainVisual__pointText {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-mainVisual__pointText--vertical {
  font-size: 3.2vw;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__pointText--vertical {
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-mainVisual__point--03 .p-mainVisual__pointText--vertical {
  letter-spacing: -0.1em;
}

.p-mainVisual__pointText--number {
  font-weight: bold;
  font-size: 10.4vw;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__pointText--number {
    font-size: 64px;
    font-size: 6.4rem;
  }
}

.p-mainVisual__point--02 .p-mainVisual__pointText--number {
  font-size: 12.93333vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__point--02 .p-mainVisual__pointText--number {
    font-size: 80px;
    font-size: 8rem;
  }
}

.p-mainVisual__point--03 .p-mainVisual__pointText--number {
  margin-right: 0.8vw;
  font-size: 9.06667vw;
  letter-spacing: -0.03em;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__point--03 .p-mainVisual__pointText--number {
    margin-right: 3px;
    font-size: 56px;
    font-size: 5.6rem;
  }
}

.p-mainVisual__pointText--percent {
  margin-left: 0.8vw;
  font-size: 6.4vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__pointText--percent {
    margin-left: 3px;
    font-size: 40px;
    font-size: 4rem;
  }
}

.p-mainVisual__point--02 .p-mainVisual__pointText--percent {
  margin-left: 1.33333vw;
  font-size: 9.06667vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__point--02 .p-mainVisual__pointText--percent {
    margin-left: 5px;
    font-size: 56px;
    font-size: 5.6rem;
  }
}

.p-mainVisual__imageLeft {
  position: absolute;
  bottom: 15.2vw;
  left: 0;
  width: 24.66667vw;
  height: 72vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__imageLeft {
    bottom: 0;
    left: calc(50% - 612px);
    width: 292px;
    height: 488px;
  }
}

.p-mainVisual__imageRight {
  position: absolute;
  right: 0;
  bottom: 13.73333vw;
  width: 26.66667vw;
  height: 74.66667vw;
}

@media screen and (min-width: 768px) {
  .p-mainVisual__imageRight {
    right: calc(50% - 635px);
    bottom: 0;
    width: 335px;
    height: 508px;
  }
}

/* Achieve */
.p-achievelock {
  padding-top: 12.8vw;
  padding-bottom: 7.73333vw;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .p-achievelock {
    padding-top: 46px;
    padding-bottom: 100px;
  }
}

.p-achieveHeading {
  position: relative;
  margin-bottom: 6.66667vw;
}

@media screen and (min-width: 768px) {
  .p-achieveHeading {
    min-height: 120px;
    margin-bottom: 27px;
  }
}

.p-achieveHeading__subTitle {
  position: relative;
  position: absolute;
  top: -8.13333vw;
  left: 0;
  width: 19.46667vw;
  height: 19.46667vw;
  transform: rotate(-14deg);
  border-radius: 100%;
  background-color: #bf0000;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-achieveHeading__subTitle {
    top: 0;
    width: 120px;
    height: 120px;
  }
}

.p-achieveHeading__subTitleText {
  position: absolute;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 3.6vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-achieveHeading__subTitleText {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-achieveHeading__subTitleText span {
  font-size: 6.2vw;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .p-achieveHeading__subTitleText span {
    font-size: 40px;
    font-size: 4rem;
  }
}

.p-achieveHeading__title {
  font-weight: 700;
  font-size: 8vw;
  line-height: 1.42;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-achieveHeading__title {
    padding-top: 30px;
    padding-left: 125px;
    font-size: 56px;
    font-size: 5.6rem;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }
}

.p-achieve__boxWrapper {
  margin-bottom: 6.93333vw;
}

@media screen and (min-width: 768px) {
  .p-achieve__boxWrapper {
    margin-bottom: 59px;
  }
}

.p-achieve__box {
  position: relative;
  margin-top: 5.33333vw;
  padding-top: 5.86667vw;
  padding-right: 5.06667vw;
  padding-bottom: 6.66667vw;
  padding-left: 5.06667vw;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-achieve__box {
    margin-top: 30px;
    padding-top: 30px;
    padding-right: 40px;
    padding-bottom: 37px;
    padding-left: 40px;
  }
}

.p-achieve__box:first-of-type {
  margin-top: 0;
}

.p-achieve__title {
  font-weight: 700;
  font-size: 4.8vw;
  line-height: 1.3;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .p-achieve__title {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
  }
}

.p-achieve__title--number {
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  .p-achieve__title--number {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media not all and (min-width: 768px) {
  .p-achieve__title--large {
    display: inline-block;
    margin-top: -0.8vw;
  }
}

.p-achieve__title--large .p-achieve__title--number {
  font-size: 7.68vw;
}

@media screen and (min-width: 768px) {
  .p-achieve__title--large .p-achieve__title--number {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.p-achieve__flex {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-achieve__flex {
    display: flex;
    margin-top: 30px;
  }
}

.p-achieve__image {
  position: absolute;
  top: 6.66667vw;
  right: 5.06667vw;
  width: 27.06667vw;
}

@media screen and (min-width: 768px) {
  .p-achieve__image {
    position: static;
    width: 183px;
    margin-top: 6px;
    margin-right: 17px;
  }
}

@media screen and (min-width: 768px) {
  .p-achieve__textWrapper {
    flex: 1;
  }
}

.p-achieve__text {
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-achieve__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-achieve__textWrote {
  margin-top: 3.46667vw;
  font-size: 3.73333vw;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .p-achieve__textWrote {
    margin-top: 12px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-achieve__largeText {
  margin-bottom: 5.86667vw;
  font-weight: 700;
  font-size: 5.6vw;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-achieve__largeText {
    margin-bottom: 49px;
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 1;
  }
}

.p-achieve__largeText .u-commonText--dot {
  font-size: 6.72vw;
}

@media screen and (min-width: 768px) {
  .p-achieve__largeText .u-commonText--dot {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

/* Reason */
.p-reasonBlock {
  padding-top: 16vw;
  padding-bottom: 12vw;
}

@media screen and (min-width: 768px) {
  .p-reasonBlock {
    padding-top: 92px;
    padding-bottom: 59px;
  }
}

.p-reasonBlock .c-topHeading {
  margin-bottom: 5.86667vw;
}

@media screen and (min-width: 768px) {
  .p-reasonBlock .c-topHeading {
    margin-bottom: 41px;
  }
}

@media not all and (min-width: 768px) {
  .p-reasonBlock .c-topHeading__title--largeSp {
    display: inline-block;
    margin-top: -3.2vw;
    font-size: 5.86667vw;
    line-height: 1.7;
  }
}

.p-reason__boxWrapper {
  margin-top: 8.93333vw;
  counter-reset: number 0;
}

@media screen and (min-width: 768px) {
  .p-reason__boxWrapper {
    margin-top: 64px;
  }
}

.p-reason__box {
  position: relative;
  margin-top: 10.66667vw;
  padding-top: 8vw;
  padding-right: 4vw;
  padding-bottom: 5.33333vw;
  padding-left: 4vw;
  border: solid 4px #bf0000;
}

@media screen and (min-width: 768px) {
  .p-reason__box {
    margin-top: 55px;
    padding-top: 52px;
    padding-right: 40px;
    padding-bottom: 31px;
    padding-left: 32px;
    border: solid 8px #bf0000;
  }
}

.p-reason__box:first-of-type {
  margin-top: 0;
}

.p-reason__box::before {
  position: absolute;
  top: -5.06667vw;
  right: 0;
  left: 0;
  width: 32vw;
  height: 8.93333vw;
  margin: auto;
  padding-top: 1.33333vw;
  background-color: #bf0000;
  content: "POINT 0" counter(number) "";
  color: #fff;
  font-weight: bold;
  font-size: 6.4vw;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.02em;
  text-align: center;
  counter-increment: number 1;
}

@media screen and (min-width: 768px) {
  .p-reason__box::before {
    top: -32px;
    width: 200px;
    height: 56px;
    padding-top: 8px;
    font-size: 40px;
    font-size: 4rem;
  }
}

.p-reason__box::after {
  position: absolute;
  top: -5.06667vw;
  right: 0;
  left: 0;
  width: 42.66667vw;
  height: 8.93333vw;
  margin: auto;
  background-image: url("../images/ribbon_left.svg"),
    url("../images/ribbon_right.svg");
  background-position: left center, right center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (min-width: 768px) {
  .p-reason__box::after {
    top: -32px;
    width: 260px;
    height: 56px;
    background-size: 40px auto, 40px auto;
  }
}

.p-reason__title {
  font-weight: 700;
  font-size: 5.6vw;
  line-height: 1.36;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-reason__title {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1;
  }
}

.p-reason__flex {
  margin-top: 4.26667vw;
}

@media screen and (min-width: 768px) {
  .p-reason__flex {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
}

.p-reason__image {
  height: 32vw;
  margin-bottom: 4vw;
}

@media screen and (min-width: 768px) {
  .p-reason__image {
    width: 280px;
    height: auto;
    margin-right: 31px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__textWrapper {
    flex: 1;
  }
}

.p-reason__text {
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-reason__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-reason__largeTextWrapper {
  margin-top: 9.33333vw;
  margin-right: -4.93333vw;
  margin-left: -4.93333vw;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-reason__largeTextWrapper {
    margin-top: 63px;
    margin-right: 0;
    margin-left: 0;
  }
}

.p-reason__largeText {
  margin-top: 2.13333vw;
  font-size: 5.6vw;
  line-height: 1.43;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .p-reason__largeText {
    margin-top: 8px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 2;
  }
}

.p-reason__largeText--subTitle {
  font-size: 4.53333vw;
  line-height: 1.29;
  letter-spacing: -0.08em;
}

@media screen and (min-width: 768px) {
  .p-reason__largeText--subTitle {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1;
  }
}

.p-reason__largeText--small {
  display: inline-block;
  margin-top: 4.53333vw;
  font-size: 4.53333vw;
}

@media screen and (min-width: 768px) {
  .p-reason__largeText--small {
    margin-top: 0;
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.p-reason__largeText .u-commonText--dot {
  font-size: 6.08vw;
}

@media screen and (min-width: 768px) {
  .p-reason__largeText .u-commonText--dot {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

/* Mistake */
.p-mistakeBlock {
  padding-top: 13.33333vw;
  padding-bottom: 13.33333vw;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .p-mistakeBlock {
    padding-top: 62px;
    padding-bottom: 77px;
  }
}

@media not all and (min-width: 768px) {
  .p-mistakeBlock .c-topHeading__title {
    font-size: 6.4vw;
    line-height: 1.46;
  }
}

@media not all and (min-width: 768px) {
  .p-mistakeBlock .c-topHeading__title--large {
    display: inline-block;
    margin-top: 1.86667vw;
    font-size: 7.68vw;
  }
}

.p-mistake__listWrapper {
  z-index: 1;
  position: relative;
  width: calc(100% - 10px);
  margin-top: 8.53333vw;
  margin-right: auto;
  margin-bottom: 8.8vw;
  margin-left: auto;
  padding-top: 5.86667vw;
  padding-right: 5.33333vw;
  padding-bottom: 6.13333vw;
  padding-left: 8.93333vw;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-mistake__listWrapper {
    width: 746px;
    margin-top: 60px;
    margin-bottom: 40px;
    padding-top: 27px;
    padding-right: 10px;
    padding-bottom: 34px;
    padding-left: 48px;
  }
}

.p-mistake__listWrapper::before {
  z-index: -2;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 2px,
    #eee 2px,
    #eee 4px
  );
  content: "";
}

@media screen and (min-width: 768px) {
  .p-mistake__listWrapper::before {
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
  }
}

.p-mistake__listWrapper::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
}

.p-mistake__listItem {
  min-height: 7.6vw;
  margin-top: 4vw;
  padding-left: 9.73333vw;
  background: url("../images/icon_check.svg") no-repeat center left/7.6vw auto;
  font-weight: 700;
  font-size: 3.73333vw;
  line-height: 1.43;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.08em;
}

@media screen and (min-width: 768px) {
  .p-mistake__listItem {
    min-height: 36px;
    margin-top: 25px;
    padding-top: 4px;
    padding-left: 50px;
    background-size: 36px auto;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
  }
}

.p-mistake__listItem:first-of-type {
  margin-top: 0;
}

.p-mistake__listItem span {
  color: #2f4282;
  font-size: 4.48vw;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .p-mistake__listItem span {
    font-size: 28.8px;
    font-size: 2.88rem;
  }
}

.p-mistake__largeTextWrapper {
  margin-right: -4.93333vw;
  margin-left: -4.93333vw;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-mistake__largeTextWrapper {
    margin-right: 0;
    margin-left: 0;
  }
}

.p-mistake__largeText {
  font-weight: 700;
  font-size: 4.66667vw;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .p-mistake__largeText {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.p-mistake__largeText .u-underLine--yellow {
  font-size: 5.6vw;
}

@media screen and (min-width: 768px) {
  .p-mistake__largeText .u-underLine--yellow {
    font-size: 42px;
    font-size: 4.2rem;
  }
}

/* Correct */
.p-correctBlock {
  padding-top: 12vw;
  padding-bottom: 13.33333vw;
}

@media screen and (min-width: 768px) {
  .p-correctBlock {
    padding-top: 65px;
    padding-bottom: 80px;
  }
}

@media not all and (min-width: 768px) {
  .p-correctBlock .c-topHeading__title {
    font-size: 6.4vw;
    line-height: 1.46;
  }
}

@media not all and (min-width: 768px) {
  .p-correctBlock .c-topHeading__title--large {
    display: inline-block;
    margin-top: 1.86667vw;
    font-size: 7.68vw;
  }
}

.p-correct__flex {
  margin-top: 7.2vw;
  margin-bottom: 9.86667vw;
}

@media screen and (min-width: 768px) {
  .p-correct__flex {
    display: flex;
    margin-top: 43px;
    margin-bottom: 75px;
  }
}

.p-correct__imageWrapper {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-correct__imageWrapper {
    display: block;
    width: 240px;
    margin-right: 51px;
    padding-top: 6px;
  }
}

.p-correct__image {
  width: 34.66667vw;
  margin-right: 3.73333vw;
}

@media screen and (min-width: 768px) {
  .p-correct__image {
    width: 240px;
    height: 240px;
    margin-right: 0;
  }
}

.p-correct__imageCaption {
  font-feature-settings: "palt";
  font-size: 3.46667vw;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-correct__imageCaption {
    margin-top: 13px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
  }
}

.p-correct__imageCaption span {
  font-size: 4.26667vw;
}

@media screen and (min-width: 768px) {
  .p-correct__imageCaption span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-correct__textWrapper {
  margin-top: 4.53333vw;
}

@media screen and (min-width: 768px) {
  .p-correct__textWrapper {
    flex: 1;
    margin-top: 0;
  }
}

.p-correct__text {
  margin-top: 3.73333vw;
  font-size: 3.73333vw;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-correct__text {
    margin-top: 21px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-correct__text:first-of-type {
  margin-top: 0;
}

.p-correct__plan {
  padding-top: 6.13333vw;
  padding-right: 2.66667vw;
  padding-bottom: 7.46667vw;
  padding-left: 2.66667vw;
  border: solid 4px #bf0000;
  background-color: #fff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-correct__plan {
    padding-top: 43px;
    padding-right: 50px;
    padding-bottom: 42px;
    padding-left: 50px;
    border: solid 8px #bf0000;
  }
}

.p-correct__planTitle {
  font-weight: 700;
  font-size: 5.06667vw;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .p-correct__planTitle {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.p-correct__planTitle--large {
  font-size: 6.08vw;
}

@media screen and (min-width: 768px) {
  .p-correct__planTitle--large {
    font-size: 38.4px;
    font-size: 3.84rem;
  }
}

.p-correct__planSubTitle {
  display: inline-block;
  margin-top: 4.53333vw;
  padding: 2.66667vw 5.33333vw;
  border-radius: 100px;
  background-color: #f59600;
  color: #fff;
  font-weight: 700;
  font-size: 3.73333vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .p-correct__planSubTitle {
    margin-top: 38px;
    padding: 10px 23px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-correct__planFlex {
  z-index: 1;
  position: relative;
  margin-top: 4vw;
}

@media screen and (min-width: 768px) {
  .p-correct__planFlex {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 40px;
  }
}

.p-correct__planFlex::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 21.33333vw;
  width: 3px;
  height: 80%;
  transform: translate(-50%, -50%);
  background-color: #bf0000;
  content: "";
}

@media screen and (min-width: 768px) {
  .p-correct__planFlex::before {
    top: 40%;
    left: 50%;
    width: 560px;
    height: 4px;
  }
}

.p-correct__planBox {
  display: flex;
  align-items: center;
  margin-top: 4vw;
  padding-left: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-correct__planBox {
    display: block;
    margin-top: 0;
    padding-left: 0;
  }
}

.p-correct__planBox:first-of-type {
  margin-top: 0;
}

.p-correct__planImage {
  width: 21.33333vw;
  height: 21.33333vw;
}

@media screen and (min-width: 768px) {
  .p-correct__planImage {
    width: 160px;
    height: 160px;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-correct__planTextWrapper {
  margin-left: 4vw;
}

@media screen and (min-width: 768px) {
  .p-correct__planTextWrapper {
    margin-top: 18px;
    margin-left: 0;
  }
}

.p-correct__planText {
  font-weight: 700;
  font-size: 4.26667vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .p-correct__planText {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* Question */
.p-questionBlock {
  padding-top: 8vw;
  padding-bottom: 7.73333vw;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .p-questionBlock {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.p-question__boxWrapper {
  position: relative;
  min-height: 55.33333vw;
}

@media screen and (min-width: 768px) {
  .p-question__boxWrapper {
    min-height: 325px;
  }
}

.p-question__image {
  position: absolute;
  top: 0;
  left: -4.93333vw;
  width: 44.66667vw;
  height: 55.33333vw;
}

@media screen and (min-width: 768px) {
  .p-question__image {
    left: 33px;
    width: 322px;
    height: 325px;
  }
}

.p-question__textWrapper {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 35.2vw;
  margin-right: -4.93333vw;
  margin-left: -4.93333vw;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 0.26667vw #fff) drop-shadow(0 0 0.26667vw #fff)
    drop-shadow(0 0 0.26667vw #fff) drop-shadow(0 0 1.6vw #fff)
    drop-shadow(0 0 1.6vw #fff);
}

@media screen and (min-width: 768px) {
  .p-question__textWrapper {
    left: 407px;
    margin-right: 0;
    margin-left: 0;
    filter: none;
  }
}

.p-question__text {
  font-weight: 700;
  font-size: 3.73333vw;
  line-height: 1.79;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .p-question__text {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.p-question__text--first .u-underLine--yellow {
  display: inline-block;
  margin-top: -1.6vw;
  font-size: 4.48vw;
  letter-spacing: -0.1em;
}

@media screen and (min-width: 768px) {
  .p-question__text--first .u-underLine--yellow {
    margin-top: 0;
    font-size: 28.8px;
    font-size: 2.88rem;
  }
}

.p-question__text--second {
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .p-question__text--second {
    margin-top: 26px;
    line-height: 1.54;
  }
}

.p-question__text--second .u-commonText--red {
  font-size: 4.48vw;
}

@media screen and (min-width: 768px) {
  .p-question__text--second .u-commonText--red {
    font-size: 28.8px;
    font-size: 2.88rem;
  }
}

.p-question__text--secondLarge {
  display: inline-block;
  margin-top: 1.33333vw;
  font-size: 5.33333vw;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .p-question__text--secondLarge {
    margin-top: 0;
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.p-question__text--secondLarge span {
  color: #2f4282;
  font-size: 6.4vw;
}

@media screen and (min-width: 768px) {
  .p-question__text--secondLarge span {
    font-size: 38.4px;
    font-size: 3.84rem;
  }
}

.p-question__triangle {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-question__triangle {
    margin-top: 30px;
  }
}

.p-question__triangle .c-triangleBox {
  padding-top: 1.86667vw;
}

@media screen and (min-width: 768px) {
  .p-question__triangle .c-triangleBox {
    padding-top: 14px;
    letter-spacing: -0.08em;
  }
}

/* Answer */
.p-answerBlock {
  padding-top: 16vw;
  padding-bottom: 12vw;
}

@media screen and (min-width: 768px) {
  .p-answerBlock {
    padding-top: 87px;
    padding-bottom: 59px;
  }
}

.p-answerBlock .c-topHeading {
  margin-bottom: 7.2vw;
}

@media screen and (min-width: 768px) {
  .p-answerBlock .c-topHeading {
    margin-bottom: 42px;
  }
}

.p-answerBlock .c-topHeading__title--large {
  display: inline-block;
  margin-top: -1.6vw;
}

@media screen and (min-width: 768px) {
  .p-answerBlock .c-topHeading__title--large {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-answerBlock .c-topHeading__title--pcSmall {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-answerBlock .c-topHeading .u-underLine--yellow::after {
    bottom: 10px;
  }
}

.p-answer__boxWrapper {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-answer__boxWrapper {
    margin-top: 30px;
  }
}

.p-answer__boxWrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.66667vw;
}

@media screen and (min-width: 768px) {
  .p-answer__boxWrapper ul {
    gap: 25px;
  }
}

.p-answer__box {
  position: relative;
  width: 28.26667vw;
  height: 28.26667vw;
}

@media screen and (min-width: 768px) {
  .p-answer__box {
    width: calc((100% - (25px * 2)) / 3);
    height: 120px;
  }
}

.p-answer__boxTitle {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 3.73333vw;
  line-height: 1.43;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-answer__boxTitle {
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-answer__boxImage {
  position: absolute;
  top: 0;
  left: 0;
}

.p-answer__largeTextWrapper {
  margin-top: 9.33333vw;
  margin-right: -4.93333vw;
  margin-left: -4.93333vw;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-answer__largeTextWrapper {
    margin-top: 28px;
    margin-right: 0;
    margin-left: 0;
  }
}

.p-answer__largeText {
  margin-top: 2.13333vw;
  font-size: 5.6vw;
  line-height: 1.43;
  letter-spacing: -0.08em;
}

@media screen and (min-width: 768px) {
  .p-answer__largeText {
    margin-top: 8px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 2;
  }
}

.p-answer__largeText--small {
  display: inline-block;
  margin-top: 1.06667vw;
  font-size: 5.06667vw;
}

@media screen and (min-width: 768px) {
  .p-answer__largeText--small {
    margin-top: 0;
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.p-answer__largeText .u-commonText--dot {
  display: inline-block;
  margin-top: 1.6vw;
  font-size: 6.08vw;
}

@media screen and (min-width: 768px) {
  .p-answer__largeText .u-commonText--dot {
    margin-top: 0;
    font-size: 42px;
    font-size: 4.2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-answer__largeText .u-commonText--dot::before {
    top: 2px;
  }
}

/* Increase */
.p-increaseBlock {
  padding-top: 12.8vw;
  padding-bottom: 13.33333vw;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .p-increaseBlock {
    padding-top: 65px;
    padding-bottom: 71px;
  }
}

.p-increaseBlock .c-topHeading {
  margin-bottom: 6.66667vw;
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .c-topHeading {
    margin-bottom: 48px;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .c-topHeading__title {
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .c-topHeading__title--large {
    display: inline-block;
    margin-top: 7px;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .c-topHeading__title--pcSmall {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media not all and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint::before,
  .p-increaseBlock .u-commonText--bgPoint::after {
    bottom: 1.33333vw;
    width: 5.33333vw;
    height: 7.2vw;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint::before,
  .p-increaseBlock .u-commonText--bgPoint::after {
    bottom: 2px;
  }
}

@media not all and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint::before {
    left: -6.4vw;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint::before {
    left: -40px;
  }
}

@media not all and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint::after {
    right: -6.4vw;
  }
}

@media screen and (min-width: 768px) {
  .p-increaseBlock .u-commonText--bgPoint::after {
    right: -40px;
  }
}

.p-increase__boxWrapper {
  margin-top: 5.06667vw;
}

@media screen and (min-width: 768px) {
  .p-increase__boxWrapper {
    display: flex;
    margin-top: 29px;
    gap: 24px;
  }
}

.p-increase__box {
  display: flex;
  margin-top: 4.53333vw;
}

@media screen and (min-width: 768px) {
  .p-increase__box {
    display: block;
    width: calc((100% - (24px * 3)) / 4);
    margin-top: 0;
  }
}

.p-increase__box:first-of-type {
  margin-top: 0;
}

.p-increase__image {
  width: 45.06667vw;
  height: 24vw;
  margin-right: 4.26667vw;
}

@media screen and (min-width: 768px) {
  .p-increase__image {
    width: 100%;
    height: 144px;
    margin-right: 0;
  }
}

.p-increase__textWrapper {
  flex: 1;
  padding-top: 1.6vw;
}

@media screen and (min-width: 768px) {
  .p-increase__textWrapper {
    padding-top: 14px;
    text-align: center;
  }
}

.p-increase__title {
  margin-bottom: 2.66667vw;
  font-weight: 700;
  font-size: 4vw;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-increase__title {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-increase__text {
  font-weight: 700;
  font-size: 3.2vw;
  line-height: 1.15;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

@media screen and (min-width: 768px) {
  .p-increase__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.07;
  }
}

.p-increase__text--number {
  margin-left: -0.8vw;
  color: #bf0000;
  font-weight: bold;
  font-size: 10.66667vw;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .p-increase__text--number {
    margin-left: 0;
    font-size: 56px;
    font-size: 5.6rem;
  }
}

.p-increase__text--unit {
  font-size: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-increase__text--unit {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

/* Contact */
.p-contactBlock {
  padding-top: 19.73333vw;
  padding-bottom: 13.33333vw;
}

@media screen and (min-width: 768px) {
  .p-contactBlock {
    padding-top: 110px;
    padding-bottom: 80px;
  }
}

.l-page__form--send .p-contactBlock {
  padding-top: 21.33333vw;
}

@media screen and (min-width: 768px) {
  .l-page__form--send .p-contactBlock {
    padding-top: 120px;
  }
}

.p-contactBlock .c-topHeading__title {
  line-height: 1.4;
}

@media not all and (min-width: 768px) {
  .p-contactBlock .c-topHeading__title {
    font-size: 6.4vw;
  }
}

.p-contact__underTitle {
  margin-top: 4.26667vw;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contact__underTitle {
    margin-top: 40px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
}

.p-contact__box {
  margin-top: 5.86667vw;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-contact__box {
    margin-top: 50px;
  }
}

.l-page__form--send .p-contact__box {
  margin-top: 0;
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  .p-contactBlock .c-contentBlock {
    width: 800px;
  }
}

/* 追従ボタン */
.p-floatingButton {
  display: flex;
  z-index: 1001;
  position: fixed;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2px;
  opacity: 0;
  transition: all 0.3s linear;
}

@media screen and (min-width: 768px) {
  .p-floatingButton {
    height: 72px;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.p-floatingButton.is-active {
  opacity: 1;
  transition: all 0.3s linear;
}

/* ----------------------------------------------------
	Utility
---------------------------------------------------- */

/* スマホのみ */
@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

/* PCのみ */
@media not all and (min-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

/* 共通テキストの設定 */
.u-commonText--red {
  color: #bf0000;
}

.u-commonText--yellow {
  color: #ffdd36;
}

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

.u-underLine--red,
.u-underLine--white,
.u-underLine--yellow {
  z-index: 1;
  position: relative;
}

.u-underLine--red::after,
.u-underLine--white::after,
.u-underLine--yellow::after {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0.26667vw;
  left: 0;
  width: 100%;
  height: 0.8vw;
  margin: auto;
  content: "";
}

@media screen and (min-width: 768px) {
  .u-underLine--red::after,
  .u-underLine--white::after,
  .u-underLine--yellow::after {
    bottom: 0;
    height: 4px;
  }
}

.u-underLine--red::after {
  background-color: #bf0000;
}

.u-underLine--white::after {
  background-color: #fff;
}

.u-underLine--yellow::after {
  height: 2.13333vw;
  background-color: #ffdd36;
}

@media screen and (min-width: 768px) {
  .u-underLine--yellow::after {
    height: 16px;
  }
}

@media not all and (min-width: 768px) {
  .u-underLine--noneSp::after {
    display: none;
  }
}

.u-commonText--dot {
  position: relative;
}

.u-commonText--dot::before {
  position: absolute;
  top: -0.53333vw;
  left: 50%;
  width: 1.33333vw;
  height: 1.33333vw;
  transform: translate(-50%, 0);
  border-radius: 50%;
  background-color: #bf0000;
  content: "";
}

@media screen and (min-width: 768px) {
  .u-commonText--dot::before {
    top: -7px;
    width: 10px;
    height: 10px;
  }
}

.u-commonText--bgPoint {
  display: inline-block;
  position: relative;
}

.u-commonText--bgPoint::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: -9.06667vw;
  width: 9.6vw;
  height: 13.33333vw;
  transform: scale(-1, 1);
  background: url("../images/heading_point-sp.svg") no-repeat center/cover;
  content: "";
}

@media screen and (min-width: 768px) {
  .u-commonText--bgPoint::before {
    bottom: -5px;
    left: -44px;
    width: 34px;
    height: 40px;
    background: url("../images/heading_point-pc.svg") no-repeat center/cover;
  }
}

.u-commonText--bgPoint::after {
  display: block;
  position: absolute;
  right: -9.06667vw;
  bottom: 0;
  width: 9.6vw;
  height: 13.33333vw;
  background: url("../images/heading_point-sp.svg") no-repeat center/cover;
  content: "";
}

@media screen and (min-width: 768px) {
  .u-commonText--bgPoint::after {
    right: -44px;
    bottom: -5px;
    width: 34px;
    height: 40px;
    background: url("../images/heading_point-pc.svg") no-repeat center/cover;
  }
}

.u-objectFit {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u-objectFit-bottom {
  -o-object-fit: cover;
  -o-object-position: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.u-objectFit-top {
  -o-object-fit: cover;
  -o-object-position: top;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.u-objectFit-left {
  -o-object-fit: cover;
  -o-object-position: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.Under-contact__content__item__checkbox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 35px; }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox {
    flex-direction: column;
    margin-bottom: 0; } }
.Under-contact__content__item__checkbox input:focus,
.Under-contact__content__item__checkbox select:focus,
.Under-contact__content__item__checkbox textarea:focus {
  outline: 0; }
.Under-contact__content__item__checkbox .radio-btn {
  margin-bottom: 25px;
  width: 33%; }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox .radio-btn {
    margin-bottom: 30px;
    width: auto; } }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox .radio-btn:last-of-type {
    margin-bottom: 0; } }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox .radio-btn.last-btn {
    padding-bottom: 0; } }
.Under-contact__content__item__checkbox .radio-btn input {
  display: none; }
.Under-contact__content__item__checkbox .radio-btn label {
  position: relative;
  padding: 0 0 0px 55px;
  font-size: 1.8rem;
  font-weight: 300;
  margin-right: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.4; }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox .radio-btn label {
    font-size: 1.5rem;
    margin-bottom: 0;
    padding: 5px 0 0 40px; } }
.Under-contact__content__item__checkbox .radio-btn label::before,
.Under-contact__content__item__checkbox .radio-btn label::after {
  position: absolute;
  content: ''; }
.Under-contact__content__item__checkbox .radio-btn label::before {
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #D8D8D8;
  border-radius: 3px;
  background-color: #fff; }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox .radio-btn label::before {
    width: 24px;
    height: 24px; } }
.Under-contact__content__item__checkbox .radio-btn .radio::after {
  top: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  background-color: #FF6C52;
  opacity: 0;
  border-radius: 0; }
@media screen and (max-width: 769px) {
  .Under-contact__content__item__checkbox .radio-btn .radio::after {
    top: 6px;
    left: 6px;
    width: 14px;
    height: 14px; } }
.Under-contact__content__item__checkbox .check input:checked + label::after {
  opacity: 1; }

.c-radio:checked + .radio::after {
  opacity: 1;
  transform: scale(1); }

.error-text {
  font-size: 1.6rem;
  color: red;
  line-height: 1.5;
  margin-bottom: 20px;
}

.Under-contact__policy {
  text-align: center;
  font-size: 1.8rem;
  margin: 54px 0;
  display: flex;
  justify-content: center;
  /* reset */ }
@media screen and (max-width: 769px) {
  .Under-contact__policy {
    font-size: 1.5rem;
    text-align: left;
    margin: 30px 0 45px 0;
    justify-content: start; } }
.Under-contact__policy__link {
  font-size: 1.8rem;
  color: #FF6C52; }
@media screen and (max-width: 769px) {
  .Under-contact__policy__link {
    font-size: 1.5rem; } }
.Under-contact__policy__link:hover {
  opacity: 0.7;
  color: #FF6C52; }
.Under-contact__policy__text {
  font-size: 1.8rem;
  display: inline-block; }
@media screen and (max-width: 769px) {
  .Under-contact__policy__text {
    font-size: 1.5rem; } }

.mycheckbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mycheckbox input[type="checkbox"] {
  display: none; }

/* チェックボックスの代わりを成すラベル */
.mycheckbox input[type="checkbox"] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px; }

/* ラベルの左に表示させる正方形のボックス□ */
.mycheckbox input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  margin-top: -21px;
  left: -8px;
  top: 50%;
  border: 1px solid;
  border-radius: 3px;
  border-color: #D8D8D8;
  /* 枠の色変更 お好きな色を */
  background-color: #FFF;
  /* 背景の色変更 お好きな色を */ }
@media screen and (max-width: 769px) {
  .mycheckbox input[type="checkbox"] + label::before {
    width: 24px;
    height: 24px;
    left: 0px;
    margin-top: -13px; } }

/* チェックが入った時のレ点 */
.mycheckbox input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  margin-top: -8px;
  top: 1px;
  left: -2px;
  width: 19px;
  height: 19px;
  background-color: #FF6C52; }
@media screen and (max-width: 769px) {
  .mycheckbox input[type="checkbox"]:checked + label::after {
    top: 0px;
    left: 5px;
    width: 14px;
    height: 14px; } }
