:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-weight-base: 500;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #e03535;
  --color-warning: #f00;
  --color-text: #000;
  --input-border-color: #f4f4f4;
  --input-border-width: 0.1rem;
  --input-font-size: 2.8rem;
  --input-font-weight: 400;
  --input-background: #f4f4f4;
  --input-height: 9rem;
  --input-padding-y: 1rem;
  --input-padding-x: 2.6rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 1.3333333333vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: var(--color-text);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

b,
strong {
  font-weight: 700;
}

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

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

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

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: auto;
  max-width: 124rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}

.inner {
  padding-inline: 2rem;
}

.wrapper {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-5 {
  margin: 0.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 0.5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 0.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 0.5rem !important;
}

.m-10 {
  margin: 1rem !important;
}

.mt-10,
.my-10 {
  margin-top: 1rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 1rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 1rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 1rem !important;
}

.m-20 {
  margin: 2rem !important;
}

.mt-20,
.my-20 {
  margin-top: 2rem !important;
}

.mr-20,
.mx-20 {
  margin-right: 2rem !important;
}

.mb-20,
.my-20 {
  margin-bottom: 2rem !important;
}

.ml-20,
.mx-20 {
  margin-left: 2rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-5 {
  padding: 0.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 0.5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 0.5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 0.5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 0.5rem !important;
}

.p-10 {
  padding: 1rem !important;
}

.pt-10,
.py-10 {
  padding-top: 1rem !important;
}

.pr-10,
.px-10 {
  padding-right: 1rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 1rem !important;
}

.pl-10,
.px-10 {
  padding-left: 1rem !important;
}

.p-20 {
  padding: 2rem !important;
}

.pt-20,
.py-20 {
  padding-top: 2rem !important;
}

.pr-20,
.px-20 {
  padding-right: 2rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 2rem !important;
}

.pl-20,
.px-20 {
  padding-left: 2rem !important;
}

.m-n5 {
  margin: -0.5rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -0.5rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -0.5rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -0.5rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -0.5rem !important;
}

.m-n10 {
  margin: -1rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -1rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -1rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -1rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -1rem !important;
}

.m-n20 {
  margin: -2rem !important;
}

.mt-n20,
.my-n20 {
  margin-top: -2rem !important;
}

.mr-n20,
.mx-n20 {
  margin-right: -2rem !important;
}

.mb-n20,
.my-n20 {
  margin-bottom: -2rem !important;
}

.ml-n20,
.mx-n20 {
  margin-left: -2rem !important;
}

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

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-5 {
    margin: 0.5rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 0.5rem !important;
  }
  .m-sm-10 {
    margin: 1rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 1rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 1rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 1rem !important;
  }
  .m-sm-20 {
    margin: 2rem !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 2rem !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 2rem !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 2rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-5 {
    padding: 0.5rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 0.5rem !important;
  }
  .p-sm-10 {
    padding: 1rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 1rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 1rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 1rem !important;
  }
  .p-sm-20 {
    padding: 2rem !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 2rem !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 2rem !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 2rem !important;
  }
  .m-sm-n5 {
    margin: -0.5rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n10 {
    margin: -1rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -1rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -1rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -1rem !important;
  }
  .m-sm-n20 {
    margin: -2rem !important;
  }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -2rem !important;
  }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -2rem !important;
  }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -2rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-5 {
    margin: 0.5rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 0.5rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 0.5rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 0.5rem !important;
  }
  .m-md-10 {
    margin: 1rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 1rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 1rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 1rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 1rem !important;
  }
  .m-md-20 {
    margin: 2rem !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 2rem !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 2rem !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 2rem !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 2rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-5 {
    padding: 0.5rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 0.5rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 0.5rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 0.5rem !important;
  }
  .p-md-10 {
    padding: 1rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 1rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 1rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 1rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 1rem !important;
  }
  .p-md-20 {
    padding: 2rem !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 2rem !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 2rem !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 2rem !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 2rem !important;
  }
  .m-md-n5 {
    margin: -0.5rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -0.5rem !important;
  }
  .m-md-n10 {
    margin: -1rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -1rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -1rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -1rem !important;
  }
  .m-md-n20 {
    margin: -2rem !important;
  }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -2rem !important;
  }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -2rem !important;
  }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -2rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-5 {
    margin: 0.5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 0.5rem !important;
  }
  .m-lg-10 {
    margin: 1rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 1rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 1rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 1rem !important;
  }
  .m-lg-20 {
    margin: 2rem !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 2rem !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 2rem !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 2rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-5 {
    padding: 0.5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 0.5rem !important;
  }
  .p-lg-10 {
    padding: 1rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 1rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 1rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 1rem !important;
  }
  .p-lg-20 {
    padding: 2rem !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 2rem !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 2rem !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 2rem !important;
  }
  .m-lg-n5 {
    margin: -0.5rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n10 {
    margin: -1rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -1rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -1rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -1rem !important;
  }
  .m-lg-n20 {
    margin: -2rem !important;
  }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -2rem !important;
  }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -2rem !important;
  }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -2rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-5 {
    margin: 0.5rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xl-10 {
    margin: 1rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 1rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 1rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 1rem !important;
  }
  .m-xl-20 {
    margin: 2rem !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 2rem !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 2rem !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 2rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-5 {
    padding: 0.5rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xl-10 {
    padding: 1rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 1rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 1rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 1rem !important;
  }
  .p-xl-20 {
    padding: 2rem !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 2rem !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 2rem !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 2rem !important;
  }
  .m-xl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n10 {
    margin: -1rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -1rem !important;
  }
  .m-xl-n20 {
    margin: -2rem !important;
  }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -2rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary, .btn-mail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 8.8rem;
  background-color: #00b211;
  padding: 0.8rem 3rem 0.8rem 5rem;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4), inset -1px -1px 1px rgba(0, 0, 0, 0.2), inset 0 0 1px #fff, 3px 0 5px rgba(255, 255, 255, 0.3);
}
.btn-primary::after, .btn-mail::after {
  position: absolute;
  left: 1.6rem;
  top: 1.6rem;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #FFF;
  -webkit-mask: url("../images/icon_phone.png") no-repeat center;
  mask: url("../images/icon_phone.png") no-repeat center;
  -webkit-mask-size: 3.6rem auto;
  mask-size: 3.6rem auto;
  content: "";
}
.btn-primary .tel, .btn-mail .tel {
  font-size: 2.1rem;
  font-weight: 500;
}
.btn-primary .ttl, .btn-mail .ttl {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: bold;
  word-break: keep-all;
}

.btn-mail {
  background-color: #f42e17;
}
.btn-mail::after {
  width: 4rem;
  height: 3.1rem;
  background-color: #FFF;
  -webkit-mask: url("../images/icon_mail.png") no-repeat center;
  mask: url("../images/icon_mail.png") no-repeat center;
  -webkit-mask-size: 4rem auto;
  mask-size: 4rem auto;
}
.btn-mail .sub {
  position: relative;
  display: inline-block;
  padding-inline: 1rem;
  font-size: 1.8rem;
}
.btn-mail .sub::after, .btn-mail .sub::before {
  position: absolute;
  bottom: 0;
  height: 2.4rem;
  width: 1px;
  background-color: #FFF;
  content: "";
}
.btn-mail .sub::before {
  left: 0;
  rotate: -30deg;
}
.btn-mail .sub::after {
  right: 0;
  rotate: 30deg;
}

.btn-submit {
  display: inline-block;
  position: relative;
  border-radius: 6rem;
  background-color: #f42e17;
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  max-width: 51.6rem;
  padding: 3rem 1rem;
  width: 100%;
}
.btn-submit::after {
  content: "";
  background-color: #FFF;
  -webkit-mask: url("../images/icon_arrow_02.png") no-repeat center/contain;
  mask: url("../images/icon_arrow_02.png") no-repeat center/contain;
  aspect-ratio: 13/26;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
}

.btn-second {
  background-color: #f42e17;
  border-radius: 6rem;
  color: #FFF;
  display: inline-block;
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  max-width: 51.6rem;
  width: 100%;
  padding: 3rem 1rem;
}
.btn-second::after {
  position: absolute;
  right: 4rem;
  top: 50%;
  width: 2.9rem;
  height: 1.7rem;
  background-color: #FFF;
  -webkit-mask: url("../images/icon_arrow_01.png") no-repeat center;
  mask: url("../images/icon_arrow_01.png") no-repeat center;
  -webkit-mask-size: 2.9rem auto;
  mask-size: 2.9rem auto;
  transform: translateY(-50%);
  content: "";
}

.p-footer {
  padding: 9rem 0 13rem;
  text-align: center;
}
.p-footer__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-bottom: 2rem;
}
.p-footer__contact {
  --lh: 1;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  line-height: 1;
  margin-inline: 5.5rem;
  padding-block: 3.3rem 2.7rem;
}
.p-footer__contact-txt {
  font-size: 2.2rem;
  font-weight: 500;
}
.p-footer__contact-txt.style-1 {
  font-size: 1.9rem;
}
.p-footer__contact-tel {
  margin-block: 1.4rem 1rem;
}
.p-footer__contact-tel a {
  display: inline-flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 6.8rem;
  margin-left: -3.2rem;
}
.p-footer__contact-tel a::before {
  content: "";
  aspect-ratio: 1;
  background-color: #00b211;
  -webkit-mask: url("../images/icon_phone.png") no-repeat center/contain;
  mask: url("../images/icon_phone.png") no-repeat center/contain;
  width: 5.7rem;
}
.p-footer__txt {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 1.9rem;
}
.p-footer .copyright {
  background-color: #333;
  color: #fff;
  font-size: 2.1rem;
  margin-top: 8rem;
  padding: 3.4rem 1.5rem 2.4rem;
  text-align: center;
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: 0.5rem;
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: var(--input-padding-y) var(--input-padding-x);
  width: 100%;
  height: var(--input-height);
  outline: none;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.form-control::placeholder {
  color: #aaa;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  opacity: 0.5;
  pointer-events: none;
}
.form-control.form-control--small {
  max-width: 50rem;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.form-control {
  height: 50rem;
}

.form-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}
.form-checkbox input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.form-checkbox input:checked ~ .form-checkbox__checkmark::after {
  opacity: 1;
}
.form-checkbox__checkmark {
  border: 2px solid #d9d9d9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
}
.form-checkbox__checkmark::after {
  content: "";
  border-left: 2px solid #e03521;
  border-bottom: 2px solid #e03521;
  height: 0.5rem;
  width: 1.4rem;
  opacity: 0;
  transform: translateY(-0.4rem) rotate(-45deg);
}
.form-checkbox__label {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

.table {
  width: 100%;
}

.hline01 {
  width: 100%;
  background-color: #000;
  font-size: 2.8rem;
  padding: 0.2rem 0.5rem;
  text-align: center;
  color: #FFF;
  border-radius: 0.5rem;
  font-weight: 700;
}

.hline02 {
  color: #e03521;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 5.2rem;
  text-align: center;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.wrraper {
  position: relative;
}

.cl-primary {
  color: #e03521;
}

.p-keyv {
  background: url("../images/mv_bg.png") no-repeat center top/cover;
  display: flex;
  justify-content: center;
  margin-bottom: 8.1rem;
  width: 100%;
}
.p-keyv__inner {
  max-width: 75rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .p-keyv__inner {
    container-type: size;
    height: calc(100svh - 13rem);
  }
}
.p-keyv__image {
  height: 100%;
  margin-inline: -2.5rem -1.9rem;
  padding-block: 9.4rem 1.3rem;
}
.p-keyv__image img {
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  height: 100%;
  margin-inline: auto;
}
.p-keyv__txt {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.p-logo {
  display: inline-block;
  position: absolute;
  left: 4rem;
  top: 3rem;
}
@media (min-width: 768px) {
  .p-logo {
    top: 3.0927835052cqh;
  }
}
.p-logo img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  mix-blend-mode: darken;
  width: 29.5rem;
}
@media (min-width: 768px) {
  .p-logo img {
    height: 4.7422680412cqh;
    width: auto;
  }
}

.p-contact {
  background-color: #fff000;
  position: fixed;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  height: 13rem;
  margin-inline: auto;
  z-index: 20;
  transform: translateX(-50%);
}
.p-contact__inner {
  display: flex;
  -moz-column-gap: 0.8rem;
  column-gap: 0.8rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
.p-contact .btn-primary,
.p-contact .btn-mail {
  box-shadow: -0.15rem 0.26rem 0.5rem rgba(37, 4, 0, 0.3);
  width: calc(50% - 0.4rem);
}

.p-carcon__hline01 {
  margin-bottom: 4rem;
  max-width: 696px;
  width: 100%;
  margin-inline: auto;
}
.p-carcon__hline01 img {
  display: block;
  width: 100%;
}
.p-carcon__image {
  display: block;
  margin-inline: auto;
  margin-bottom: 12rem;
}
.p-carcon__image img {
  display: block;
}

.p-minicar {
  position: relative;
  margin-bottom: 11rem;
  padding-block: 0 8rem;
  background: #F5F7F9 url("../images/bg_highlight.png") repeat 0 0;
  background-size: 20px auto;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}
.p-minicar__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
  margin-top: 0;
  margin-bottom: 4rem;
}
.p-minicar__hline01 {
  position: relative;
  top: -2.8rem;
  margin-inline: auto;
  margin-bottom: 0.4rem;
  height: 6rem;
}
.p-minicar__hline01 img {
  display: block;
  margin-inline: auto;
  height: 100%;
}
.p-minicar__hline02 {
  height: 6.6rem;
  margin-bottom: 2rem;
}
.p-minicar__hline02 img {
  display: block;
  margin-inline: auto;
  height: 100%;
}

.l-product {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.4rem;
  column-gap: 2.4rem;
  row-gap: 5.6rem;
}
.l-product > li {
  width: calc(50% - 1.2rem);
  background-color: #FFF;
  border-radius: 1.9rem;
  overflow: hidden;
}
.l-product__head {
  display: flex;
  align-items: flex-start;
  padding-top: 2.4rem;
  padding-inline: 2rem;
}
.l-product__rank {
  width: 8.1rem;
  height: 9.5rem;
}
.l-product__rank img {
  display: block;
}
.l-product__head-box {
  display: flex;
  flex-direction: column;
  padding-top: 0.8rem;
  padding-left: 1.2rem;
}
.l-product__head-sub {
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
  line-height: 1;
}
.l-product__head-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.l-product__content {
  padding-top: 12px;
}
.l-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29.3rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  aspect-ratio: 293/179;
}
.l-product__image img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.l-product__box {
  display: flex;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.l-product__price {
  font-size: 5rem;
  font-weight: 900;
  color: #f42e17;
  line-height: 1;
}
.l-product__time {
  position: relative;
  top: 0.4rem;
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
}
.l-product__link {
  display: block;
}
.l-product__bonus {
  padding-bottom: 1.8rem;
  font-size: 1.8rem;
  text-align: center;
}
.l-product__contact {
  padding: 0.8rem 0.8rem;
  color: #FFF;
  background-color: #f42e17;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.p-leasing {
  padding: 5rem 0 9rem;
}
.p-leasing.p-leasing--notext {
  padding-top: 8.1rem;
}
.p-leasing__inner {
  padding-inline: 4.8rem;
}
.p-leasing__head {
  margin-bottom: 9.4rem;
}
.p-leasing__txt-1 {
  margin-bottom: 0.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.04em;
}
.p-leasing__txt-2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.c-leasing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 4.5rem 4rem;
  border: 2px solid #000;
  border-radius: 1rem;
  text-align: center;
}
.c-leasing__ttl-1 {
  margin-bottom: 0.5rem;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}
.c-leasing__ttl-2 {
  margin-bottom: 3.2rem;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}
.c-leasing__ttl-3 {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2.4rem;
  padding-inline: 5rem;
  border-bottom: 1px solid #000;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3846153846;
}
.c-leasing__ttl-3::after, .c-leasing__ttl-3::before {
  position: absolute;
  bottom: 0.8rem;
  height: 9rem;
  width: 1px;
  background-color: #000;
  content: "";
}
.c-leasing__ttl-3::before {
  left: 1.4rem;
  rotate: -30deg;
}
.c-leasing__ttl-3::after {
  right: 1.6rem;
  rotate: 30deg;
}
.c-leasing__txt {
  position: relative;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
}
.c-leasing__txt.style-2 {
  margin-bottom: 2.8rem;
  margin-top: 0.6rem;
  font-size: 1.9rem;
}
.c-leasing__tel {
  position: relative;
  padding-left: 5rem;
  font-size: 6.8rem;
  font-weight: 500;
  line-height: 1;
}
.c-leasing__tel::after {
  position: absolute;
  left: -1.6rem;
  top: 1.1rem;
  width: 5.1rem;
  height: 5.1rem;
  background-color: #00b211;
  -webkit-mask: url("../images/icon_phone.png") no-repeat center;
  mask: url("../images/icon_phone.png") no-repeat center;
  -webkit-mask-size: 5.1rem auto;
  mask-size: 5.1rem auto;
  content: "";
}

.p-reason {
  background: url("../images/bg_reason.png") repeat left top/75rem auto;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .p-reason__inner {
    padding-inline: 1.9rem;
  }
}
.p-reason__hline {
  width: 100%;
  margin-bottom: 6rem;
  padding-block: 1.5rem 3.5rem;
  background-color: #f42e17;
}
.p-reason__hline img {
  display: block;
}
.p-reason__hline-inner {
  position: relative;
}
.p-reason__hline-inner::after {
  position: absolute;
  left: 50%;
  bottom: -6.5rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 3.2rem solid transparent;
  border-right: 3.2rem solid transparent;
  border-top: 3.2rem solid #f42e17;
  content: "";
}
.p-reason__block {
  margin-bottom: 8.7rem;
}
.p-reason__opt {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 3.6rem;
  border-radius: 2rem;
  box-shadow: 0.8rem 0 0.8rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .p-reason__opt {
    max-width: 71.2rem;
  }
}
.p-reason__contact {
  position: relative;
  max-width: 70.3rem;
  width: 100%;
  margin-inline: auto 0;
}
.p-reason__contact-phone {
  display: block;
  position: absolute;
  right: 12.7rem;
  bottom: 8.5rem;
  width: 37rem;
  height: 5rem;
  opacity: 0;
}
.p-reason__contact-mail {
  display: block;
  position: absolute;
  right: 12.7rem;
  bottom: 2.5rem;
  width: 37rem;
  height: 5rem;
  opacity: 0;
}

.p-satis {
  position: relative;
  background: #fff100 url("../images/bg_highlight_02.png") repeat 0 0;
  background-size: 20px auto;
  padding-bottom: 10.4rem;
}
.p-satis::after {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff100 30%, rgba(255, 241, 0, 0));
  content: "";
}
.p-satis__hline {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 11rem;
  margin-bottom: 4.5rem;
}
.p-satis__hline::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 11rem;
  background-color: #f42e17;
  content: "";
}
.p-satis__hline-inner img {
  display: block;
  position: relative;
  z-index: 1;
  top: -3.5rem;
  transform: translateX(-15px);
  max-width: 58.7rem;
  width: 100%;
  margin-inline: auto;
}
.p-satis__head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
  font-weight: 700;
}
.p-satis__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  padding-inline: 6rem;
  font-size: 4.32rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-satis__title::after, .p-satis__title::before {
  position: absolute;
  bottom: -0.6rem;
  height: 8rem;
  width: 0.2rem;
  background-color: #000;
  content: "";
}
.p-satis__title::before {
  left: 1.4rem;
  rotate: -30deg;
}
.p-satis__title::after {
  right: 1.6rem;
  rotate: 30deg;
}
.p-satis__title span {
  margin-bottom: 1rem;
  font-size: 2.52rem;
  letter-spacing: 0;
}
.p-satis__tag {
  max-width: 36.2rem;
  width: 100%;
  padding-block: 1rem;
  border-radius: 2.15rem;
  background-color: #fffa9e;
  font-size: 2.16rem;
  text-align: center;
}
.p-satis__list {
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  width: 100%;
  padding-inline: 3.9rem 4.1rem;
  margin-inline: auto;
}

.c-satis {
  position: relative;
  width: calc(100% - 1rem);
}
.c-satis::after {
  position: absolute;
  z-index: 1;
  left: 0.3rem;
  right: -0.9rem;
  top: 0.9rem;
  bottom: -1.3rem;
  border-radius: 1.5rem;
  background-color: #DDD;
  content: "";
}
.c-satis__wrap {
  position: relative;
  z-index: 2;
  padding: 3.4rem 2.5rem 2.4rem;
  border-radius: 1.5rem;
  background-color: #FFF;
}
.c-satis__ttl {
  line-height: 1.5;
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #a0a0a0;
}
.c-satis__block {
  padding-block: 1.3rem 0;
}
.c-satis__head {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}
.c-satis__head-box {
  display: flex;
  align-items: baseline;
}
.c-satis__head-star {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 0.4rem;
  column-gap: 0.4rem;
}
.c-satis__head-star img {
  display: block;
  width: 2.7rem;
  height: 2.6rem;
}
.c-satis__head-num {
  margin-left: 1rem;
  font-size: 2.88rem;
  font-weight: 700;
  line-height: 1;
  color: #ff8e28;
}
.c-satis__head-point {
  font-size: 1.68rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
.c-satis__head-time {
  position: relative;
  top: -0.4rem;
  margin-left: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #a0a0a0;
  line-height: 1;
}
.c-satis__image {
  width: 38rem;
  height: 24rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  padding: 1.6rem;
  border: 1px solid #a0a0a0;
  border-radius: 0.5rem;
  aspect-ratio: 38/24;
  overflow: hidden;
}
.c-satis__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-satis__txt {
  display: -webkit-box;
  height: 14rem;
  margin-bottom: 2.3rem;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5909090909;
  color: #333;
}
.c-satis__note {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.4761904762;
  color: #333;
}

.p-convin {
  padding-block: 4.5rem 4rem;
  background: url("../images/bg_convin.jpg") no-repeat center;
  background-size: cover;
}
.p-convin__inner {
  margin: 0 auto;
  max-width: 75rem;
  width: 100%;
}
.p-convin__top {
  display: flex;
  -moz-column-gap: 2.6rem;
  column-gap: 2.6rem;
}
.p-convin__top figure {
  display: block;
  width: calc(50% - 1.3rem);
  aspect-ratio: 36/26;
  overflow: hidden;
}
.p-convin__top img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-convin__top-left {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.p-convin__top-right {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.p-convin__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 4.4rem 4.5rem;
}
.p-convin__bot {
  display: flex;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}
.p-convin__bot figure {
  display: block;
  width: calc(50% - 2rem);
  aspect-ratio: 354/260;
  overflow: hidden;
}
.p-convin__bot img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-convin__bot-left {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.p-convin__bot-right {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.p-convin__txt {
  color: #FFF;
  margin-bottom: 5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  line-height: 2;
  text-align: center;
}
.p-convin__txt .large {
  font-size: 4.2rem;
  line-height: 1.4285714286;
}
.p-convin__txt-2 {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
  color: #FFF;
  font-weight: 500;
}
.p-convin__txt-2.style-1 {
  margin-top: 1.2rem;
  margin-bottom: 2.6rem;
  font-size: 1.9rem;
}
.p-convin__tel {
  font-size: 7.2rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  line-height: 1;
}
.p-convin .btn-second {
  text-align: center;
  background-color: #fff000;
  color: #e03521;
}
.p-convin .btn-second::after {
  background-color: #e03521;
}

.p-flow {
  padding-block: 10rem 7.1rem;
}
.p-flow__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
  color: #e03521;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 4.5rem;
  text-align: center;
}
.p-flow__sub::before, .p-flow__sub::after {
  content: "";
  background-color: #e03521;
  height: 3.5rem;
  width: 0.3rem;
}
.p-flow__sub::before {
  transform: rotate(-30deg);
}
.p-flow__sub::after {
  transform: rotate(30deg);
}
.p-flow__list {
  padding-inline: 5.5rem;
}
.p-flow__list .step-card {
  background-color: #f6f6f6;
  border-radius: 0.8rem;
  min-height: 58.2rem;
  margin-bottom: 4.2rem;
  padding: 6rem 4.6rem 8.6rem;
}
.p-flow__list .step-card:last-child {
  margin-bottom: 0;
}
.p-flow__list .step-card__label {
  margin-bottom: 4rem;
  text-align: center;
}
.p-flow__list .step-card__label span {
  background-color: #e03521;
  border-radius: 6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.3rem;
  font-weight: bold;
  height: 6.3rem;
  width: 26.3rem;
}
.p-flow__list .step-card__ttl {
  color: #e03521;
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 7rem;
  text-align: center;
}
.p-flow__list .step-card__txt {
  --lh: 1.54;
  font-size: 3rem;
  font-weight: 500;
  line-height: var(--lh);
  text-align: justify;
}
.p-flow__list .step-card__txt .nowrap {
  white-space: nowrap;
}

.p-faq {
  background-color: #f5f7f9;
  padding-block: 9.2rem 14rem;
}
.p-faq .qa-list {
  margin-top: 9.5rem;
}
.p-faq .qa-list li {
  background-color: #fff;
  border-radius: 1rem;
  cursor: pointer;
  margin-bottom: 2.3rem;
  padding: 3.3rem 3.5rem 3.3rem 5rem;
}
.p-faq .qa-list li:last-child {
  margin-bottom: 0;
}
.p-faq .qa-list .q {
  color: #e03521;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  position: relative;
  padding-right: 4rem;
}
.p-faq .qa-list .q.is-active .icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq .qa-list .q .icon {
  position: absolute;
  top: 1.3rem;
  right: 0;
  height: 2rem;
  width: 2rem;
}
.p-faq .qa-list .q .icon::after, .p-faq .qa-list .q .icon::before {
  content: "";
  background-color: #e03521;
  height: 0.3rem;
  width: 2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.p-faq .qa-list .q .icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq .qa-list .a {
  display: none;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-top: 2.9rem;
}

.p-shop {
  color: #fff;
  padding-block: 5.7rem 11.9rem;
  position: relative;
  z-index: 1;
}
.p-shop::before {
  content: "";
  background-color: #e03521;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 51.6rem;
  z-index: -1;
}
.p-shop .inner {
  padding-inline: 7.1rem;
}
.p-shop__ttl {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-bottom: 4.3rem;
}
.p-shop__txt {
  --lh: 1.667;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: var(--lh);
  margin-bottom: 4rem;
}
.p-shop__img {
  margin-inline: -1rem;
}
.p-shop__img img {
  border-radius: 1rem;
  width: 100%;
}
.p-shop__map {
  height: 58rem;
  margin: 5.5rem -5.5rem 0;
}
.p-shop__map iframe {
  height: 100%;
  width: 100%;
}

.p-form {
  background-color: #f5f7f9;
  padding-block: 11.1rem 10.2rem;
}
.p-form .form-box {
  background-color: #fff;
  border-radius: 1rem;
  padding: 4rem 3rem 8.6rem;
}
.p-form .form-box dl {
  margin-bottom: 5.7rem;
}
.p-form .form-box dt {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  color: #e03521;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.p-form .form-box dd {
  border-bottom: 1px solid #aaa;
  margin: 0 0 4rem;
  padding-bottom: 4rem;
}
.p-form .form-box dd:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-form .form-box dd p {
  margin-top: 1.8rem;
}
.p-form .form-box dd p:first-child {
  margin-top: 0;
}
.p-form .form-label {
  background-color: #fc7c6d;
  border-radius: 2.1rem;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0.9rem 1.5rem;
}
.p-form .form-policy {
  text-align: center;
}
.p-form .form-policy a {
  color: #e03521;
  text-decoration: underline;
  text-underline-offset: 1rem;
}
.p-form .form-policy a:hover {
  text-decoration: none;
}
.p-form .form-policy .error-txt {
  display: block;
  color: #e03521;
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: 3.8rem;
  margin-left: 1rem;
}
.p-form .form-footer {
  display: flex;
  justify-content: center;
  margin-top: 7.7rem;
}
.p-form .__error-msg {
  display: block;
  color: #e03521;
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: 1.5rem;
}
.p-form .send-bar {
  margin-top: 5rem;
}
.p-form .send-bar.hidden {
  display: none;
}