@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", serif;
  color: #222;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

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

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

main {
  overflow: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.about {
  background: #FEF2F1;
  padding-block: 40px;
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding-block: 6.25rem;
  }
}

.about__head {
  display: block;
}
@media screen and (min-width: 768px) {
  .about__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.about__main-title img {
  width: 212px;
  width: 13.25rem;
  margin: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .about__main-title img {
    width: 36.25rem;
    margin: 0;
    margin: initial;
  }
}

.about__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.about__text span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

.about__img {
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  margin-left: 21%;
}
.about__img img {
  width: 160px;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .about__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    margin-top: initial;
    margin-left: 9.375rem;
  }
  .about__img img {
    width: 28.9375rem;
    max-width: 100%;
  }
}

.about__container {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about__container {
    margin-top: 3.75rem;
  }
}

.about__wrap {
  display: block;
}
@media screen and (min-width: 768px) {
  .about__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1.875rem;
  }
}

.about__item {
  background: #fff;
  padding: 32px 15px 40px;
  padding: 2rem 0.9375rem 2.5rem;
  border-radius: 0.9375rem;
}
.about__item:nth-of-type(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 30px 15px 40px;
  padding: 1.875rem 0.9375rem 2.5rem;
}
.about__item:nth-of-type(3) {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 30px 15px 40px;
  padding: 1.875rem 0.9375rem 2.5rem;
}
.about__item:nth-of-type(4) {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 30px 15px 40px;
  padding: 1.875rem 0.9375rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .about__item {
    padding: 1.875rem;
  }
  .about__item:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/3;
    padding: 1.875rem 1.875rem 1.9375rem;
  }
  .about__item:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-top: 0;
    margin-top: initial;
    padding: 1.6875rem 1.875rem 2.3125rem;
  }
  .about__item:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 0;
    margin-top: initial;
    padding: 1.875rem 1.875rem 2.0625rem;
  }
  .about__item:nth-of-type(4) {
    grid-column: 1/3;
    grid-row: 3/4;
    margin-top: 0;
    margin-top: initial;
    padding: 1.875rem;
  }
}

.about__ceo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .about__ceo-content {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.about__ceo-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__ceo-img {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.about__ceo-img img {
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 227px;
  width: 14.1875rem;
  height: 268px;
  height: 16.75rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .about__ceo-img img {
    margin: 0;
    margin: initial;
  }
}

.about__ceo-body {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .about__ceo-body {
    width: 17.375rem;
    max-width: 100%;
    margin-left: 1.25rem;
  }
}

.about__ceo-company {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
}
.about__ceo-company span {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .about__ceo-company span {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .about__ceo-company {
    font-size: 1.125rem;
  }
}

.about__ceo-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-top: 10px;
  margin-top: 0.625rem;
  line-height: 1.6;
}
.about__ceo-name .about__ceo-jp {
  font-size: 30px;
  font-size: 1.875rem;
}
.about__ceo-name .about__ceo-en {
  color: #E60012;
  display: block;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .about__ceo-name .about__ceo-en {
    font-size: 1.125rem;
  }
}

.about__ceo-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .about__ceo-text {
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
}

.about__ceo-text2 {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.about__ceo-points {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.about__ceo-point {
  background: #EAF7E2;
  border-radius: 0.3125rem;
  padding-block: 15px;
  padding-block: 0.9375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .about__ceo-point {
    font-size: 1.5rem;
    padding-block: 0.75rem 0.8125rem;
    padding-left: 2.5rem;
    line-height: 1.45833333;
  }
}
.about__ceo-point span {
  color: #338702;
}
.about__ceo-point:not(:first-of-type) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.achievement-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.about__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding-left: 45px;
  padding-left: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 1.875rem;
    padding-left: 3.75rem;
  }
}
.about__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: inline-block;
  background: url(../images/webp/accent.webp) no-repeat center center/cover;
  width: 35px;
  width: 2.1875rem;
  height: 32px;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .about__title::before {
    width: 3.0625rem;
    height: 2.6875rem;
  }
}

.about__company-items {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .about__company-items {
    font-size: 1.125rem;
  }
}

.about__company-item {
  border: 4px solid #FEF2F1;
  border: 0.25rem solid #FEF2F1;
  padding-block: 15px;
  padding-block: 0.9375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 16px;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .about__company-item {
    padding-block: 1.0625rem;
    padding-left: 2.5rem;
  }
}
.about__company-item:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.about__area-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .about__area-content {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.about__area-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__area-img {
    margin-top: 0;
    margin-top: initial;
  }
}
.about__area-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  width: 200px;
  width: 12.5rem;
  height: 180px;
  height: 11.25rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .about__area-img img {
    margin: 0;
    margin: initial;
  }
}

.about__area-body {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .about__area-body {
    margin-left: 1.25rem;
    width: 17.375rem;
  }
}

.about__area-text {
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.about__area-text span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .about__area-text {
    font-size: 1.125rem;
    margin-top: 1.5625rem;
  }
}

.about__area-msg {
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: #FEF2F1;
  border-radius: 0.3125rem;
  padding: 15px;
  padding: 0.9375rem;
  text-align: start;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__area-msg {
    font-size: 1.125rem;
    padding-block: 1.0625rem;
    text-align: center;
    margin-top: 1.5625rem;
  }
}
.about__area-msg span {
  color: #E60012;
}

.about__record-items {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__record-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5625rem;
  }
}

.about__record-item {
  display: block;
  padding: 30px 15px;
  padding: 1.875rem 0.9375rem;
  background: #FEF2F1;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .about__record-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.875rem;
  }
}

.about__record-item + .about__record-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__record-item + .about__record-item {
    margin-left: 1.875rem;
    margin-top: 0;
    margin-top: initial;
  }
}

.about__record-img img {
  width: 145px;
  width: 9.0625rem;
  height: 205px;
  height: 12.8125rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .about__record-img img {
    margin: 0;
    margin: initial;
  }
}
.about__record-img a {
  position: relative;
  width: 145px;
  width: 9.0625rem;
  height: 205px;
  height: 12.8125rem;
  display: block;
  margin: auto;
}
.about__record-img a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url(../images/webp/btn-zoom.webp) no-repeat center center/cover;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .about__record-img a {
    margin: 0;
    margin: initial;
  }
}

.about__record-text {
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__record-text {
    font-size: 1.125rem;
    margin-left: 1.4375rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    margin-top: initial;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.about__record-text span {
  color: #E60012;
}

.campaign {
  padding-block: 102px 40px;
  padding-block: 6.375rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .campaign {
    padding-block: 9.375rem 6.25rem;
  }
}

.campaign-bottom {
  padding-block: 102px 55px;
  padding-block: 6.375rem 3.4375rem;
}
@media screen and (min-width: 768px) {
  .campaign-bottom {
    padding-block: 9.1875rem 7.125rem;
  }
}

.campaign__title {
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  font-size: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .campaign__title {
    font-size: 2.5rem;
  }
}
.campaign__title span {
  font-size: 36px;
  font-size: 2.25rem;
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .campaign__title span {
    font-size: 3.125rem;
  }
}
.campaign__title::after {
  content: "";
  position: absolute;
  top: -7%;
  left: 50%;
  translate: -50% -50%;
  background: url(../images/webp/campaign-title-bg_sp.webp) no-repeat center center/cover;
  width: 142px;
  width: 8.875rem;
  height: 125px;
  height: 7.8125rem;
  display: inline-block;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .campaign__title::after {
    top: 50%;
    background: url(../images/webp/campaign-title-bg.webp) no-repeat center center/cover;
    width: 11.125rem;
    height: 10.125rem;
  }
}

.campaign__container {
  background: #368903;
  border-radius: 0.9375rem;
  padding: 25px 15px 30px 15px;
  padding: 1.5625rem 0.9375rem 1.875rem 0.9375rem;
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .campaign__container {
    padding: 1.875rem;
  }
}

.campaign__items {
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .campaign__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
}
.campaign__items::before {
  position: absolute;
  top: -14%;
  right: -9%;
  content: "";
  background: url(../images/webp/campaign-persona_sp.webp) no-repeat center center/cover;
  width: 328px;
  width: 20.5rem;
  height: 274px;
  height: 17.125rem;
  display: inline-block;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .campaign__items::before {
    top: -76%;
    right: -2%;
    background: url(../images/webp/campaign-persona.webp) no-repeat center center/cover;
    width: 18.875rem;
    height: 28.5625rem;
  }
}

.campaign__item {
  background: #fff;
  border-radius: 0.625rem;
  position: relative;
}
.campaign__item::before {
  position: absolute;
  top: -17%;
  left: -8%;
  content: "";
  background: url(../images/webp/campaign-number1.webp) no-repeat center center/cover;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  display: inline-block;
}
.campaign__item:nth-child(2) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .campaign__item:nth-child(2) {
    margin-top: 0;
    margin-top: initial;
  }
}
.campaign__item:nth-child(2)::before {
  background: url(../images/webp/campaign-number2.webp) no-repeat center center/cover;
}
.campaign__item:nth-child(3) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .campaign__item:nth-child(3) {
    margin-top: 0;
    margin-top: initial;
  }
}
.campaign__item:nth-child(3)::before {
  background: url(../images/webp/campaign-number3.webp) no-repeat center center/cover;
}

.campaign__item-head {
  padding-block: 40px 30px;
  padding-block: 2.5rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .campaign__item-head {
    padding-block: 2.5rem 1.25rem;
  }
}

.campaign__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #368903;
  text-align: center;
  letter-spacing: 0.01em;
}
.campaign__item-title span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .campaign__item-title {
    font-size: 1.875rem;
  }
}

.campaign__item-body {
  padding: 20px 15px 40px;
  padding: 1.25rem 0.9375rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .campaign__item-body {
    padding: 1.25rem 1.25rem 2.5rem;
  }
}

.campaign__item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.campaign__item-text span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .campaign__item-text {
    font-size: 1.125rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.campaign__note {
  background: #fff;
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: 0.625rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .campaign__note {
    font-size: 1.125rem;
    text-align: center;
    padding-block: 1.875rem;
    margin-top: 1.875rem;
  }
}

.contact {
  padding-block: 40px;
  padding-block: 2.5rem;
  background: url(../images/webp/contact-bg.webp) no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 6.25rem;
  }
}

.contact__border {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: block;
  left: 0;
  top: 0;
}

.contact__title img {
  width: 212px;
  width: 13.25rem;
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contact__title img {
    width: 36rem;
    margin: 0;
    margin: initial;
  }
}

.contact__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100%;
  max-width: 100%;
  font-weight: 800;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
    width: 37.5rem;
  }
}
.contact__text span {
  color: #E60012;
}

.contact__phone {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__phone {
    margin-top: 3.75rem;
  }
}
.contact__phone img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__phone img {
    width: 37.5rem;
  }
}

.contact__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  gap: 4.375rem;
}
@media screen and (min-width: 768px) {
  .contact__col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: min(60px, 4.5454545455vw);
  }
}

.contact__col-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__col-item.--right {
    margin-top: 2.5rem;
  }
}

.slider-form__card {
  position: relative;
  display: none;
}

.slider-form__card.--show {
  display: block;
}

.slider-form__card-in {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 54px 15px 30px;
  padding: 3.375rem 0.9375rem 1.875rem;
  -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .15);
          box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .slider-form__card-in {
    padding: min(70px, 5.303030303vw) min(44px, 3.666666vw) min(40px, 3.0303030303vw);
  }
}

.slider-form__card-ttl {
  position: absolute;
  top: -6vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 275px;
  width: 17.1875rem;
}
@media screen and (min-width: 768px) {
  .slider-form__card-ttl {
    width: 27.1875rem;
    top: -5%;
  }
}
.slider-form__card-ttl img {
  width: 275px;
  width: 17.1875rem;
}
@media screen and (min-width: 768px) {
  .slider-form__card-ttl img {
    min-width: min(27.1875rem, 36.25vw);
  }
}

.slider-form__card-ttl.--pic {
  padding-bottom: 0;
}

.slider-form__card-legend {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .slider-form__card-legend {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
  }
}

.slider-form__card-fields {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .slider-form__card-fields {
    margin-top: 2.25rem;
  }
}

.slider-form .input-text-list {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.slider-form__card-appendix {
  position: relative;
  text-align: center;
  background-color: #F7F15A;
  color: #333;
  border-radius: 6.25rem;
  padding: 12px 25px 12px 57px;
  padding: 0.75rem 1.5625rem 0.75rem 3.5625rem;
  margin-top: 5.33333vw;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .slider-form__card-appendix {
    padding: min(20px, 1.5151515152vw);
    margin-top: min(20px, 1.5151515152vw);
    font-size: 1.25rem;
  }
}

.slider-form__card-appendix.--red {
  color: #EE0026;
}

.slider-form__card-appendix::after {
  position: absolute;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/webp/contact_form_msg_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 7.46666vw;
  height: 7.46666vw;
  left: 7%;
}
@media screen and (min-width: 768px) {
  .slider-form__card-appendix::after {
    width: min(28px, 2.1212121212vw);
    height: min(28px, 2.1212121212vw);
    left: min(40px, 2.651515vw);
  }
}

.slider-form__card-btn {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .slider-form__card-btn {
    margin-top: 1.25rem;
  }
}

.slider-form__card-btn .btn {
  font-size: 5.86666vw;
}
@media screen and (min-width: 768px) {
  .slider-form__card-btn .btn {
    font-size: 2.0625rem;
  }
}

.slider-form .checkbox .wpcf7-form-control-wrap {
  display: none;
}

.slider-form .checkbox .wpcf7-form-control-wrap + label {
  position: relative;
  display: block;
  line-height: 1;
  font-weight: 800;
  background-color: #FEF2F1;
  border-radius: 0.625rem;
  font-size: 5.33333vw;
  padding: 5.33333vw 5.33333vw 5.33333vw 18.66666vw;
  font-weight: 700;
  -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .15);
          box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, .15);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .slider-form .checkbox .wpcf7-form-control-wrap + label {
    padding: min(20px, 1.6vw) 20px min(20px, 1.6vw) min(100px, 8vw);
    font-size: 1.75rem;
  }
}

.slider-form .checkbox .wpcf7-form-control-wrap + label::before {
  position: absolute;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/webp/contact_form_check_off.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  left: 5.33333vw;
  width: 9.33333vw;
  height: 9.33333vw;
}
@media screen and (min-width: 768px) {
  .slider-form .checkbox .wpcf7-form-control-wrap + label::before {
    left: min(30px, 2.4vw);
    width: min(42px, 3.36vw);
    height: min(42px, 3.36vw);
  }
}

.slider-form .checkbox .wpcf7-form-control-wrap + label.--checked::before {
  background-image: url(../images/webp/contact_form_check_on.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.slider-form .checkbox + .checkbox {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .slider-form .checkbox + .checkbox {
    margin-top: 0.9375rem;
  }
}

.slider-form .input-text label {
  display: block;
  font-size: 4.26666vw;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .slider-form .input-text label {
    font-size: 1rem;
  }
}

.slider-form .input-text label .--required {
  background-color: #E60012;
  color: #fff;
  padding: 2px 7px;
  padding: 0.125rem 0.4375rem;
  border-radius: 0.1875rem;
  margin-left: 0.5em;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .slider-form .input-text label .--required {
    font-size: 0.75rem;
  }
}

.slider-form .input-text label + .wpcf7-form-control-wrap input,
.slider-form .input-text label + .wpcf7-form-control-wrap textarea {
  line-height: 1;
  font-weight: 800;
  border: solid 1px #111;
  border-radius: 0.625rem;
  width: 100%;
  font-size: 4.8vw;
  -webkit-box-shadow: 0px 0px 100px 100px #fff inset;
          box-shadow: 0px 0px 100px 100px #fff inset;
}
@media screen and (min-width: 768px) {
  .slider-form .input-text label + .wpcf7-form-control-wrap input,
  .slider-form .input-text label + .wpcf7-form-control-wrap textarea {
    font-size: 1.25rem;
  }
}

.slider-form .input-text label + .wpcf7-form-control-wrap input::-webkit-input-placeholder,
.slider-form .input-text label + .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.slider-form .input-text label + .wpcf7-form-control-wrap input::-moz-placeholder,
.slider-form .input-text label + .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.slider-form .input-text label + .wpcf7-form-control-wrap input::-ms-input-placeholder,
.slider-form .input-text label + .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.slider-form .input-text label + .wpcf7-form-control-wrap input::placeholder,
.slider-form .input-text label + .wpcf7-form-control-wrap textarea::placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.slider-form .input-text label + .wpcf7-form-control-wrap input {
  border-radius: 1.875rem;
  padding: 0.4em 1em 0.5em;
}

.slider-form .input-text label + .wpcf7-form-control-wrap textarea {
  line-height: 1.6;
  padding: 0.5em 1em 0.6em;
}

.slider-form .input-text + .input-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.slider-form .wpcf7-spinner {
  display: none;
}

.btn.--main,
.btn.--default {
  background: #4AAD52;
  color: #fff;
  border-bottom: solid 5px #3D8D44;
}

.btn.--primary {
  background: #E60012;
  color: #fff;
  border-bottom: solid 5px #BF0A18;
}

.btn.--disabled {
  background: #707070;
  border-bottom: solid 5px #555;
  color: #fff;
  cursor: default;
}

.btn.--block {
  display: block;
  width: 100%;
}

.btn {
  position: relative;
  font-weight: 800;
  border-radius: 0.625rem;
  line-height: 1;
  display: inline-block;
  text-align: center;
  padding: 0.9em 0.5em 0.8em;
  font-size: 33px;
  font-size: 2.0625rem;
}

.btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(20px, 1.1363636364vw);
}

.btn-row > * {
  width: 50%;
}

.input:-internal-autofill-selected {
  background-color: #fff !important;
}

.cta {
  position: relative;
  background: #E60012;
  padding-block: 90px 40px;
  padding-block: 5.625rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-block: 7.625rem 6.25rem;
  }
}

.cta__label {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
}
.cta__label img {
  width: 305px;
  width: 19.0625rem;
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .cta__label img {
    width: 27.5rem;
  }
}

.cta__msg {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .cta__msg {
    font-size: 1.875rem;
  }
}
.cta__msg span {
  color: #F7F159;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .cta__msg span {
    font-size: 2.5rem;
  }
}
.cta__msg p {
  display: inline-block;
  position: relative;
}
.cta__msg p::before, .cta__msg p::after {
  background: #FFFFFF;
  content: "";
  width: 130px;
  width: 8.125rem;
  height: 4px;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cta__msg p::before, .cta__msg p::after {
    width: 3.125rem;
  }
}
.cta__msg p::before {
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
  left: -32%;
}
@media screen and (min-width: 768px) {
  .cta__msg p::before {
    -webkit-transform: rotate(75deg);
            transform: rotate(75deg);
    left: -10%;
  }
}
.cta__msg p::after {
  -webkit-transform: rotate(-80deg);
          transform: rotate(-80deg);
  right: -32%;
}
@media screen and (min-width: 768px) {
  .cta__msg p::after {
    -webkit-transform: rotate(-75deg);
            transform: rotate(-75deg);
    right: -10%;
  }
}

.cta-banner-msg span {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .cta-banner-msg span {
    font-size: 2.5rem;
  }
}
.cta-banner-msg p::before {
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
  left: -27%;
}
@media screen and (min-width: 768px) {
  .cta-banner-msg p::before {
    -webkit-transform: rotate(75deg);
            transform: rotate(75deg);
    left: -10%;
  }
}
.cta-banner-msg p::after {
  -webkit-transform: rotate(-80deg);
          transform: rotate(-80deg);
  right: -27%;
}
@media screen and (min-width: 768px) {
  .cta-banner-msg p::after {
    -webkit-transform: rotate(-75deg);
            transform: rotate(-75deg);
    right: -10%;
  }
}

.cta__container {
  background: #FEF2F1;
  border-radius: 0.9375rem;
  padding: 40px 15px;
  padding: 2.5rem 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta__container {
    padding: 3.75rem 3.75rem 3.75rem 24.375rem;
    margin-top: 1.875rem;
  }
}

.cta__img {
  position: absolute;
  right: -1%;
  bottom: 30%;
  width: 200px;
  width: 12.5rem;
  height: 235px;
  height: 14.6875rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .cta__img {
    width: 20rem;
    height: 21.25rem;
    bottom: 0;
    right: auto;
    right: initial;
    left: 3%;
  }
}
.cta__img img {
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .cta__img img {
    width: 20rem;
  }
}

.top-cta__img {
  bottom: 26%;
}
@media screen and (min-width: 768px) {
  .top-cta__img {
    width: 20rem;
    height: 21.25rem;
    bottom: 0;
    right: auto;
    right: initial;
    left: 3%;
  }
}

.cta__title {
  display: block;
}
@media screen and (min-width: 768px) {
  .cta__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta__title img {
  width: 208px;
  width: 13rem;
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .cta__title img {
    margin: 0;
    margin: initial;
  }
}

.cta__title-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cta__title-text {
    margin-left: 0.9375rem;
    font-size: 1.875rem;
    text-align: left;
    text-align: initial;
    white-space: nowrap;
    margin-top: 0;
    margin-top: initial;
  }
}
.cta__title-text span {
  font-size: 30px;
  font-size: 1.875rem;
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .cta__title-text span {
    font-size: 2.5rem;
  }
}

.cta__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 30px;
  margin-top: 1.875rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    width: 46.875rem;
    max-width: 100%;
  }
}

.cta__points {
  display: block;
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .cta__points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.875rem;
  }
}

.cta__point {
  color: #E60012;
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  background: #fff;
  padding-block: 15px;
  padding-block: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 43px;
  padding-left: 2.6875rem;
  text-align: center;
  border-radius: 0.625rem;
  width: 195px;
  width: 12.1875rem;
  max-width: 100%;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .cta__point {
    width: 22.8125rem;
    padding-block: 1.25rem;
    padding-left: 3.75rem;
    padding-right: 1.25rem;
    font-size: 1.875rem;
    white-space: nowrap;
  }
}
.cta__point::before {
  background: url(../images/webp/check.webp) no-repeat center center/contain;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 8%;
}
@media screen and (min-width: 768px) {
  .cta__point::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.cta__point span {
  color: #348701;
}

.cta__point + .cta__point {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .cta__point + .cta__point {
    margin-top: 0;
    margin-top: initial;
    margin-left: 1.25rem;
  }
}

.cta__btn-list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .cta__btn-list {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    margin-top: 1.25rem;
  }
}

.cta__btn-list2 {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  z-index: 2;
}

.cta__btn {
  display: inline-block;
  width: 250px;
  width: 15.625rem;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .cta__btn + .cta__btn {
    margin-left: 1.25rem;
  }
}

.btn__phone {
  width: 274px;
  width: 17.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .btn__phone {
    margin-top: 0;
    margin-top: initial;
  }
}

.btn__mail {
  width: 305px;
  width: 19.0625rem;
}
@media screen and (min-width: 768px) {
  .btn__mail {
    width: 20rem;
  }
}

.cta__banner {
  display: block;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 1200px;
  width: 75rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .cta__banner {
    margin-top: 1.875rem;
  }
}

.faq {
  padding-block: 74px 40px;
  padding-block: 4.625rem 2.5rem;
  background: #FEF2F1;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-block: 8.3125rem 6.25rem;
  }
}

.faq__container {
  background: #368903;
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
  border-radius: 0.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq__container {
    padding: 1.875rem;
    margin-top: 6.875rem;
  }
}

.faq__list-item {
  width: 1140px;
  width: 71.25rem;
  max-width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 0.9375rem;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq__list-item {
    padding-inline: 1.875rem;
  }
}
.faq__list-item:nth-child(5) .faq__ques::before, .faq__list-item:nth-child(9) .faq__ques::before {
  top: 35%;
}
@media screen and (min-width: 768px) {
  .faq__list-item:nth-child(5) .faq__ques::before, .faq__list-item:nth-child(9) .faq__ques::before {
    top: 50%;
  }
}

.faq__list-item + .faq__list-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__list-item + .faq__list-item {
    margin-top: 1.875rem;
  }
}

.faq__ques {
  position: relative;
  padding-block: 30px;
  padding-block: 1.875rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .faq__ques {
    padding-block: 3.125rem;
    padding-left: 6.875rem;
  }
}
.faq__ques::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  translate: 0 -50%;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background: url(../images/webp/q-icon.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .faq__ques::before {
    top: 50%;
    width: 5.25rem;
    height: 5.25rem;
  }
}
.faq__ques .faq__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #348701;
}
@media screen and (min-width: 768px) {
  .faq__ques .faq__text {
    font-size: 1.875rem;
  }
}

.js-default::after {
  position: absolute;
  content: "";
  background: url(../images/webp/faq-plus.webp) no-repeat center center/cover;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: inline-block;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .js-default::after {
    width: 2.5rem;
    height: 2.5rem;
    right: 1.875rem;
  }
}

.js-open {
  -webkit-transition: 5s;
  transition: 5s;
}
.js-open::after {
  position: absolute;
  content: "";
  background: url(../images/webp/faq-minus.webp) no-repeat center center/cover;
  width: 20px;
  width: 1.25rem;
  height: 5px;
  height: 0.3125rem;
  display: inline-block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  top: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .js-open::after {
    width: 2.5rem;
    height: 0.625rem;
    top: 50%;
    right: 1.875rem;
  }
}

.faq__ans {
  display: none;
  border-top: 4px solid #EAF7E2;
  border-top: 0.25rem solid #EAF7E2;
  padding-block: 30px;
  padding-block: 1.875rem;
}
.faq__ans .faq__text {
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 16px;
  font-size: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .faq__ans .faq__text {
    font-size: 1.125rem;
    margin-left: 1.875rem;
  }
}

.faq__ans-iconWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq__ans-icon {
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq__ans-icon {
    width: 5.25rem;
  }
}
.faq__ans-icon img {
  width: 40px;
  width: 2.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .faq__ans-icon img {
    width: 5.25rem;
  }
}

.bottom-fixed-area {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, .6);
}
@media screen and (min-width: 768px) {
  .bottom-fixed-area {
    padding-block: 0.625rem;
  }
}

.bottom-fixed-area__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bottom-fixed-area__inner {
    gap: 1.25rem;
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer {
  background: #E60012;
  padding-block: 60px 120px;
  padding-block: 3.75rem 7.5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 2.5rem 8.75rem;
  }
}

.footer__copyright {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: normal;
    line-height: initial;
  }
}

.footer-page {
  background: #E60012;
  padding-block: 67px;
  padding-block: 4.1875rem;
}

.fv-point {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fv-point {
    margin-top: -6%;
  }
}
@media screen and (min-width: 768px) {
  .fv-point .fv-point__inner {
    padding-left: 2.5rem;
  }
}

.fv-point__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fv-point__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
}

.fv-point__item {
  border: 4px solid #E60012;
  border-radius: 0.9375rem;
  position: relative;
}
.fv-point__item:nth-child(1)::before {
  position: absolute;
  left: -14px;
  left: -0.875rem;
  top: -35px;
  top: -2.1875rem;
  content: "";
  background: url(../images/webp/fv-point_num_pc_1.webp) no-repeat center center/contain;
  width: 87px;
  width: 5.4375rem;
  height: 85px;
  height: 5.3125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv-point__item:nth-child(1)::before {
    left: -2.5rem;
    top: -3.125rem;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.fv-point__item:nth-child(2)::before {
  position: absolute;
  left: -14px;
  left: -0.875rem;
  top: -35px;
  top: -2.1875rem;
  content: "";
  background: url(../images/webp/fv-point_num_pc_2.webp) no-repeat center center/contain;
  width: 87px;
  width: 5.4375rem;
  height: 85px;
  height: 5.3125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv-point__item:nth-child(2)::before {
    left: -2.5rem;
    top: -3.125rem;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.fv-point__item:nth-child(3)::before {
  position: absolute;
  left: -14px;
  left: -0.875rem;
  top: -35px;
  top: -2.1875rem;
  content: "";
  background: url(../images/webp/fv-point_num_pc_3.webp) no-repeat center center/contain;
  width: 87px;
  width: 5.4375rem;
  height: 85px;
  height: 5.3125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv-point__item:nth-child(3)::before {
    left: -2.5rem;
    top: -3.125rem;
    width: 6.25rem;
    height: 6.25rem;
  }
}

.fv-point__title {
  background: #E60013;
  color: #fff;
  padding-block: 13px;
  padding-block: 0.8125rem;
  padding-left: 90px;
  padding-left: 5.625rem;
  font-weight: 800;
  font-size: 26px;
  font-size: 1.625rem;
  border-top-left-radius: 10px;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 10px;
  border-top-right-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv-point__title {
    font-size: 1.875rem;
    text-align: center;
    padding-block: 0.8125rem;
    padding-left: 0;
    padding-left: initial;
  }
}
.fv-point__title span {
  color: #F7F15A;
}

.fv-point__img img {
  width: 380px;
  width: 23.75rem;
}

.fv-point__body {
  padding: 15px 16px 23px;
  padding: 0.9375rem 1rem 1.4375rem;
}
@media screen and (min-width: 768px) {
  .fv-point__body {
    padding: 0.9375rem 1rem 1.25rem;
  }
}

.fv-point__text {
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .fv-point__text {
    font-size: 1.125rem;
  }
}
.fv-point__text span {
  color: #E60012;
}

@media screen and (min-width: 768px) and (max-width: 1235px) {
  .fv-point__text {
    font-size: 1.0625rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.fv {
  position: relative;
  overflow: hidden;
}

.fv__bg {
  width: 100%;
  display: block;
}
.fv__people {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
}

.fv-cp {
  position: absolute;
  top: 48%;
  left: 3%;
}
@media screen and (min-width: 768px) {
  .fv-cp {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 30vw;
    right: -7.5%;
    left: auto;
    left: initial;
  }
}
.fv-cp img {
  width: 202px;
  width: 12.625rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .fv-cp img {
    width: 15.625rem;
  }
}

@media screen and (min-width: 1250px) {
  .fv-cp {
    right: calc(50% - 45rem);
    top: 67%;
    left: auto;
    left: initial;
  }
}
.header {
  display: none;
}
@media screen and (min-width: 768px) {
  .header {
    display: block;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
  padding: 0.5rem 0;
  height: 100px;
  height: 6.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 208px;
  width: 13rem;
}

.header__label {
  margin-left: 20px;
  margin-left: 1.25rem;
}
.header__label img {
  width: 200px;
  width: 12.5rem;
}

.header__btn-plan {
  margin-left: 15px;
  margin-left: 0.9375rem;
}
.header__btn-plan img {
  width: 65px;
  width: 4.0625rem;
}

@media screen and (min-width: 768px) {
  .header__btn-phone {
    margin: 0 0.9375rem;
  }
  .header__btn-phone img {
    width: 17.125rem;
  }
}

@media screen and (min-width: 768px) {
  .header__btn-contact img {
    width: 13.4375rem;
  }
}

.sub-header {
  background: #E60012;
  padding-block: 10px;
  padding-block: 0.625rem;
}

.sub-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sub-header__msg {
  display: block;
}
.sub-header__msg img {
  width: 669px;
  width: 41.8125rem;
  max-width: 100%;
}

.sub-header__area img {
  width: 140px;
  width: 8.75rem;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .header-sp {
    display: none;
  }
}
.header-sp .header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 10px;
  padding-block: 0.625rem;
}
.header-sp .header__logo img {
  width: 102px;
  width: 6.375rem;
}
.header-sp .header__label {
  margin-left: 6px;
  margin-left: 0.375rem;
}
.header-sp .header__label img {
  width: 131px;
  width: 8.1875rem;
}
.header-sp .header__btn-plan {
  margin-left: auto;
}
.header-sp .header__btn-plan img {
  width: 46px;
  width: 2.875rem;
}
.header-sp .header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-sp .header__btn-phone {
  width: 100%;
}
.header-sp .header__btn-contact {
  width: 100%;
  border-left: 1px solid #fff;
}

.sub-header-sp {
  background: #E60012;
  padding-block: 10px;
  padding-block: 0.625rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .sub-header-sp {
    display: none;
  }
}
.sub-header-sp .sub-header__msg {
  width: 100%;
}
.sub-header-sp .sub-header__msgWrap {
  margin-top: 5px;
  margin-top: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sub-header-sp .sub-header__area img {
  width: 87px;
  width: 5.4375rem;
}
.sub-header-sp .sub-header__msg-bottom img {
  width: 212px;
  width: 13.25rem;
}

.inner {
  width: 100%;
  padding-right: 5.33333333vw;
  padding-left: 5.33333333vw;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.plan {
  padding-block: 75px 40px;
  padding-block: 4.6875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .plan {
    padding-block: 4.8125rem 4.75rem;
  }
}

.plan__text {
  font-size: 4.26666vw;
  text-align: center;
  margin-top: 10.66666vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan__text {
    font-size: 1.125rem;
    margin-top: 3.125rem;
  }
}

.plan__list {
  margin-top: 150px;
  margin-top: 9.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    margin-top: 4.5rem;
  }
}
.plan__list::before {
  position: absolute;
  top: -5%;
  right: 2%;
  content: "";
  display: inline-block;
  width: 318px;
  width: 19.875rem;
  height: 260px;
  height: 16.25rem;
  background: url(../images/webp/plan-person_sp.webp) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .plan__list::before {
    top: -26%;
    width: 19.1875rem;
    height: 23.125rem;
    background: url(../images/webp/plan-person.webp) no-repeat center center/cover;
  }
}

.plan-item {
  border-radius: 0.9375rem;
  border: 4px solid #E60012;
  border: 0.25rem solid #E60012;
  background: #fff;
}

.plan-item + .plan-item {
  margin-top: 5.33333vw;
}
@media screen and (min-width: 768px) {
  .plan-item + .plan-item {
    margin-top: 0;
    margin-top: initial;
  }
}

.plan-item__title {
  -webkit-box-shadow: inset 0px 0px 50px 0px rgb(230, 0, 18);
          box-shadow: inset 0px 0px 50px 0px rgb(230, 0, 18);
}
@media screen and (min-width: 768px) {
  .plan-item__title {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.plan-item__title img {
  width: 255px;
  width: 15.9375rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-item__title img {
    width: 32.1875rem;
  }
}
.plan-item__title.--plan-bottom {
  background: #E60012;
  padding-block: 10px 12px;
  padding-block: 0.625rem 0.75rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  border-top-left-radius: 10px;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 10px;
  border-top-right-radius: 0.625rem;
  -webkit-box-shadow: inset 0px 0px 50px 0px rgb(230, 0, 18);
          box-shadow: inset 0px 0px 50px 0px rgb(230, 0, 18);
}
.plan-item__title.--plan-bottom img {
  width: 255px;
  width: 15.9375rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-item__title.--plan-bottom img {
    width: 19.5rem;
  }
}

.plan-item__title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .plan-item__title-pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .plan-item__title-pc img {
    width: 32.1875rem;
  }
}

.plan-item__title-sp {
  -webkit-box-shadow: inset 0px 0px 50px 0px rgb(230, 0, 18);
          box-shadow: inset 0px 0px 50px 0px rgb(230, 0, 18);
}
@media screen and (min-width: 768px) {
  .plan-item__title-sp {
    display: none;
  }
}
.plan-item__title-sp img {
  width: 255px;
  width: 15.9375rem;
  max-width: 100%;
  margin: auto;
}

.plan-item__pic {
  position: relative;
}

.plan-top-item-box__radio-list {
  padding: 30px;
  padding: 1.875rem;
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.plan-item-box__radio-list {
  padding: 15px;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .plan-item-box__radio-list {
    padding: 1.25rem;
  }
}

.plan-item-box__radio {
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-color: #EEEEEE;
  border-radius: 0.625rem;
}
.plan-item-box__radio:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.plan-item-box__radio::before {
  position: absolute;
  top: 14%;
  left: -5%;
  content: "";
  display: block;
  background: url(../images/webp/plan-label_gaiheki_1_pc.webp) no-repeat center center/contain;
  width: 100%;
  height: 34px;
  height: 2.125rem;
}
.plan-item-box__radio:nth-child(2)::before {
  background: url(../images/webp/plan-label_gaiheki_2_pc.webp) no-repeat center center/contain;
}
.plan-item-box__radio:nth-child(3)::before {
  background: url(../images/webp/plan-label_gaiheki_3_pc.webp) no-repeat center center/contain;
}
.plan-item-box__radio:hover {
  opacity: 0.7;
  cursor: pointer;
}
.plan-item-box__radio.--yane::before {
  position: absolute;
  top: 14%;
  left: -5%;
  content: "";
  display: inline-block;
  background: url(../images/webp/plan-label_yane_1_pc.webp) no-repeat center center/contain;
  width: 100%;
  height: 34px;
  height: 2.125rem;
}
.plan-item-box__radio.--yane:nth-child(2)::before {
  background: url(../images/webp/plan-label_yane_2_pc.webp) no-repeat center center/contain;
}
.plan-item-box__radio.--yane:nth-child(3)::before {
  background: url(../images/webp/plan-label_yane_3_pc.webp) no-repeat center center/contain;
}
.plan-item-box__radio.--yanekoji::before {
  position: absolute;
  top: 14%;
  left: -5%;
  content: "";
  display: inline-block;
  background: url(../images/webp/plan-label_yanekoji_1_pc.webp) no-repeat center center/contain;
  width: 100%;
  height: 34px;
  height: 2.125rem;
}
.plan-item-box__radio.--yanekoji:nth-child(2)::before {
  background: url(../images/webp/plan-label_yanekoji_2_pc.webp) no-repeat center center/contain;
}
.plan-item-box__radio.--yanekoji:nth-child(3)::before {
  background: url(../images/webp/plan-label_yanekoji_3_pc.webp) no-repeat center center/contain;
}
.plan-item-box__radio.--bottom-label::before {
  top: 10%;
  left: -5%;
}
@media screen and (min-width: 768px) {
  .plan-item-box__radio.--bottom-label::before {
    left: -6.5%;
  }
}

.plan-top-radio::before {
  width: 100%;
  left: -5%;
  background: url(../images/webp/plan-label_gaiheki_1_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio:nth-child(2)::before {
  background: url(../images/webp/plan-label_gaiheki_2_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio:nth-child(3)::before {
  background: url(../images/webp/plan-label_gaiheki_3_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio.--yane::before {
  width: 100%;
  left: -5%;
  background: url(../images/webp/plan-label_yane_1_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio.--yane:nth-child(2)::before {
  background: url(../images/webp/plan-label_yane_2_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio.--yane:nth-child(3)::before {
  background: url(../images/webp/plan-label_yane_3_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio.--yanekoji::before {
  width: 100%;
  left: -5%;
  background: url(../images/webp/plan-label_yanekoji_1_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio.--yanekoji:nth-child(2)::before {
  background: url(../images/webp/plan-label_yanekoji_2_pc.webp) no-repeat center left;
  background-size: 50% auto;
}
.plan-top-radio.--yanekoji:nth-child(3)::before {
  background: url(../images/webp/plan-label_yanekoji_3_pc.webp) no-repeat center left;
  background-size: 50% auto;
}

.plan-item-radio.--selected .__radio::before {
  position: absolute;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  border-radius: 3.125rem;
  background-color: #E60012;
}
@media screen and (min-width: 768px) {
  .plan-item-radio.--selected .__radio::before {
    width: min(16px, 1.28vw);
    height: min(16px, 1.28vw);
  }
}

.__radio {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #fff;
  right: 2.5vw;
}
@media screen and (min-width: 768px) {
  .__radio {
    width: min(20px, 1.6vw);
    height: min(20px, 1.6vw);
    right: min(16px, 1.2vw);
  }
}

.plan-top {
  padding-block: 75px 60px;
  padding-block: 4.6875rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .plan-top {
    padding-block: 6.25rem;
  }
}

.plan-top__items {
  margin-top: 10.66666vw;
  position: relative;
}
.plan-top__items::before {
  position: absolute;
  top: -10%;
  right: 0;
  content: "";
  display: inline-block;
  width: 318px;
  width: 19.875rem;
  height: 260px;
  height: 16.25rem;
  background: url(../images/webp/plan-person_sp.webp) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .plan-top__items::before {
    width: 19.0625rem;
    height: 25rem;
    top: -14%;
    background: url(../images/webp/plan-person.webp) no-repeat center center/cover;
  }
}
@media screen and (min-width: 768px) {
  .plan-top__items {
    margin-top: 3.75rem;
  }
}

.plan-top__item {
  display: block;
  background: #FFF0F1;
  border-radius: 0.9375rem;
  border: #E60012 solid 4px;
  border: #E60012 solid 0.25rem;
}
@media screen and (min-width: 768px) {
  .plan-top__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.875rem;
    padding-left: 0;
  }
}

.plan-top__item + .plan-top__item {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .plan-top__item + .plan-top__item {
    margin-top: 2.5rem;
  }
}

.plan-top__item-left {
  background: #E60012;
}
@media screen and (min-width: 768px) {
  .plan-top__item-left {
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
  }
}

@media screen and (min-width: 768px) {
  .plan-top__item-right {
    margin-left: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .plan-top__item-right .plan-item-box__radio:first-of-type {
    margin-top: 0;
  }
}

.plan-item__pic picture {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.plan-item__pic picture.__hide {
  opacity: 0;
}

.plan-item__pic picture.__selected {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.plan-item-box__radio.--selected {
  background-color: #FEF2F1;
}

.price {
  background: #FEF2F0;
  padding-block: 75px 0px;
  padding-block: 4.6875rem 0rem;
}
@media screen and (min-width: 768px) {
  .price {
    padding-block: 7.0625rem 3.75rem;
  }
}

.price__items {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .price__items {
    margin-top: 4.0625rem;
  }
}

.price__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price__item:nth-child(odd) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .price__item:nth-child(odd) {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .price__item:nth-child(odd) .price__body {
    margin-left: 2.5rem;
  }
}
.price__item:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .price__item:nth-child(even) {
    margin-top: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .price__item:nth-child(even) .price__body {
    margin-right: 2.5rem;
    margin-left: 0;
    margin-left: initial;
  }
}
.price__item:nth-child(1) {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .price__item {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
}

.price__img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .price__img {
    margin-top: 0;
    margin-top: initial;
  }
}
.price__img img {
  width: 290px;
  width: 18.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .price__img img {
    width: 23.75rem;
  }
}

.price__body {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .price__body {
    margin-left: 2.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.price__head {
  background: #fff;
  border-radius: 0.625rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.price__head span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .price__head {
    font-size: 1.875rem;
    padding: 0.8125rem 1.875rem;
    text-align: start;
  }
}

.price__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .price__text {
    letter-spacing: 0.01em;
  }
}
.price__text span {
  color: #E60012;
}

.reason {
  padding-block: 75px 40px;
  padding-block: 4.6875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .reason {
    padding-block: 7.0625rem 6.25rem;
  }
}

.reason__items {
  background: #368903;
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
  border-radius: 0.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .reason__items {
    margin-top: 6.875rem;
    padding: 1.875rem;
  }
}

.reason__item {
  display: block;
  background: #fff;
  padding: 30px 15px 40px;
  padding: 1.875rem 0.9375rem 2.5rem;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .reason__item {
    padding: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reason__item::before {
  content: "";
  position: absolute;
  top: 3%;
  left: -5%;
  display: inline-block;
  background: url(../images/webp/reason-tag1.webp) no-repeat center center/cover;
  width: 172px;
  width: 10.75rem;
  height: 45px;
  height: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .reason__item::before {
    top: 7%;
    left: -3%;
    height: 3.75rem;
  }
}
.reason__item:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason__item:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}
.reason__item:nth-child(2)::before {
  background: url(../images/webp/reason-tag2.webp) no-repeat center center/cover;
}
.reason__item:nth-child(3)::before {
  background: url(../images/webp/reason-tag3.webp) no-repeat center center/cover;
}
.reason__item:nth-child(4)::before {
  background: url(../images/webp/reason-tag4.webp) no-repeat center center/cover;
}
.reason__item:nth-child(5)::before {
  background: url(../images/webp/reason-tag5.webp) no-repeat center center/cover;
}

.reason__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reason__img {
    width: 16.8125rem;
  }
}
.reason__img img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .reason__img img {
    width: 16.8125rem;
  }
}

.reason__body {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .reason__body {
    margin-left: 1.875rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.reason__head {
  font-size: 24px;
  font-size: 1.5rem;
  color: #368903;
  letter-spacing: 0.01em;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}
.reason__head span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .reason__head {
    font-size: 1.875rem;
    margin-top: 0;
    margin-top: initial;
    text-align: start;
  }
}

.reason__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .reason__text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.reason__point-content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .reason__point-content {
    margin-top: 5rem;
  }
}

.reason__point-title {
  font-weight: 800;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .reason__point-title {
    font-size: 1.875rem;
  }
}
.reason__point-title span {
  color: #E60012;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .reason__point-title span {
    font-size: 2.5rem;
  }
}

.reason__point-box {
  background: #368903;
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
  border-radius: 0.9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason__point-box {
    padding: 1.875rem;
    margin-top: 1.875rem;
  }
}

.reason__points {
  display: block;
}
@media screen and (min-width: 768px) {
  .reason__points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}

.reason__point {
  letter-spacing: 0.01em;
  font-weight: 800;
  font-size: 16px;
  font-size: 1rem;
  color: #348701;
  background: #fff;
  border-radius: 0.625rem;
  padding-block: 10px;
  padding-block: 0.625rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 46px;
  padding-left: 2.875rem;
  position: relative;
}
.reason__point::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 5%;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: inline-block;
  background: url(../images/webp/check.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .reason__point::before {
    width: 1.875rem;
    height: 1.875rem;
    left: 6%;
  }
}
.reason__point span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .reason__point {
    font-size: 1.875rem;
    padding-block: 1.125rem;
    padding-right: 1.25rem;
    padding-left: 4.875rem;
  }
}
.reason__point:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .reason__point:not(:first-child) {
    margin-top: 0;
    margin-top: initial;
  }
}

.section__titleWrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.section__titleWrap::after {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  translate: -50% -50%;
  background: url(../images/webp/section-title-bg_sp.webp) no-repeat center center/cover;
  width: 142px;
  width: 8.875rem;
  height: 125px;
  height: 7.8125rem;
  display: inline-block;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section__titleWrap::after {
    top: 50%;
    width: 13.125rem;
    height: 11.625rem;
    background: url(../images/webp/section-title-bg.webp) no-repeat center center/cover;
  }
}
.section__titleWrap.--whiteWrap::after {
  background: url(../images/webp/section-title-white-bg_sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .section__titleWrap.--whiteWrap::after {
    background: url(../images/webp/section-title-white-bg.webp) no-repeat center center/cover;
  }
}

.section__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 800;
  margin-top: 10px;
  margin-top: 0.625rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 3.125rem;
  }
}
.section__title span {
  color: #E60012;
  display: inline-block;
}

.section__subTitle {
  display: inline-block;
  background: #E60012;
  border-radius: 6.25rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  padding-block: 4px;
  padding-block: 0.25rem;
  letter-spacing: 0.01em;
  width: 210px;
  width: 13.125rem;
  max-width: 100%;
  margin: auto;
}
.section__subTitle span {
  color: #F7F15A;
}
@media screen and (min-width: 768px) {
  .section__subTitle {
    width: 18.75rem;
    font-size: 1.125rem;
    padding-block: 0.375rem 0.5rem;
  }
}

.section-arrow {
  position: relative;
}
.section-arrow.--white {
  background: #FEF2F1;
}

.section-arrow__bg img {
  height: 398px;
  height: 24.875rem;
}
@media screen and (min-width: 768px) {
  .section-arrow__bg img {
    height: 25.25rem;
  }
}

.arrow {
  position: absolute;
  top: 10%;
  left: 50%;
  translate: -50%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .arrow {
    top: 17%;
  }
}

.arrow__text {
  position: absolute;
  left: 50%;
  translate: -50%;
  margin-top: 33px;
  margin-top: 2.0625rem;
  width: 149px;
  width: 9.3125rem;
}
@media screen and (min-width: 768px) {
  .arrow__text {
    margin-top: 4.375rem;
    width: 14.6875rem;
  }
}
.arrow__text img {
  width: 149px;
  width: 9.3125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .arrow__text img {
    width: 14.6875rem;
  }
}

.arrow__text2 {
  width: 197px;
  width: 12.3125rem;
}
@media screen and (min-width: 768px) {
  .arrow__text2 {
    width: 24.1875rem;
  }
}
.arrow__text2 img {
  width: 197px;
  width: 12.3125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .arrow__text2 img {
    width: 24.1875rem;
  }
}

.arrow__text3 {
  width: 148px;
  width: 9.25rem;
}
@media screen and (min-width: 768px) {
  .arrow__text3 {
    width: 14.5625rem;
  }
}
.arrow__text3 img {
  width: 148px;
  width: 9.25rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .arrow__text3 img {
    width: 14.5625rem;
  }
}

.arrow__text4 {
  width: 226px;
  width: 14.125rem;
}
@media screen and (min-width: 768px) {
  .arrow__text4 {
    width: 21.6875rem;
  }
}
.arrow__text4 img {
  width: 226px;
  width: 14.125rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .arrow__text4 img {
    width: 21.6875rem;
  }
}

.arrow__head {
  font-weight: 800;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .arrow__head {
    font-size: 2.5rem;
  }
}
.arrow__head .arrow-bg {
  color: #F7F15A;
  background: #368903;
  padding: 2px 16px;
  padding: 0.125rem 1rem;
  display: inline-block;
  border: 4px solid #368903;
  border: 0.25rem solid #368903;
  border-radius: 0.625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .arrow__head .arrow-bg {
    padding: 0.0625rem 1.875rem;
    margin-right: 0.9375rem;
  }
}
.arrow__head .arrow-no-bg {
  color: #E60012;
  background: #fff;
  padding: 2px 16px;
  padding: 0.125rem 1rem;
  display: inline-block;
  border: 4px solid #E60012;
  border: 0.25rem solid #E60012;
  border-radius: 0.625rem;
  margin-block: 15px 10px;
  margin-block: 0.9375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .arrow__head .arrow-no-bg {
    padding: 0.0625rem 1.875rem;
    margin-block: initial;
    margin-inline: 0.9375rem;
  }
}

.arrow__note {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .arrow__note {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}
.arrow__note span {
  color: #E60012;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: inline-block;
    color: #222 !important;
    font-size: 2.5rem !important;
  }
}

.swiper-loop > .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.swiper-loop {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .swiper-loop {
    padding-bottom: 6.25rem;
  }
}

.thanks {
  padding-block: 75px 262px;
  padding-block: 4.6875rem 16.375rem;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .thanks {
    padding-block: 5.9375rem 6.25rem;
    max-width: 75rem;
    width: 100%;
    margin: auto;
  }
}
.thanks::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  translate: -50%;
  background: url(../images/webp/thanks-person_pc.webp) no-repeat center center/cover;
  width: 221px;
  width: 13.8125rem;
  height: 232px;
  height: 14.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .thanks::after {
    translate: initial;
    bottom: 0%;
    left: auto;
    left: initial;
    right: -5%;
    width: 20rem;
    height: 21.25rem;
  }
}

.thanks__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-align: start;
  margin-top: 40px;
  margin-top: 2.5rem;
  letter-spacing: 0.01em;
}
.thanks__text span {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .thanks__text {
    margin-top: 3.125rem;
    text-align: center;
  }
}

.voice {
  padding-block: 74px 40px;
  padding-block: 4.625rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-block: 8.3125rem 6.25rem;
  }
}

.voice__box {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .voice__box {
    margin-top: 6.875rem;
  }
}

.voice__item {
  background: #FEF2F1;
  padding: 15px 15px 20px;
  padding: 0.9375rem 0.9375rem 1.25rem;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .voice__item {
    padding: 1.875rem 1.875rem 2.5rem;
  }
}
.voice__item:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice__item:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

.voice__img img {
  width: 1140px;
  width: 71.25rem;
  max-width: 100%;
}
.voice__img a {
  position: relative;
  display: inline-block;
}
.voice__img a::after {
  content: "";
  background: url(../images/webp/btn-zoom.webp) no-repeat center center/cover;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .voice__img a::after {
    top: auto;
    top: initial;
    left: auto;
    left: initial;
    translate: initial;
    bottom: 5%;
    right: 2%;
  }
}

.voice__body {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .voice__body {
    padding-inline: 4.375rem;
    margin-top: 1.875rem;
  }
}

.voice__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .voice__text {
    font-size: 1.125rem;
  }
}

.voice__name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 800;
  margin-top: 15px;
  margin-top: 0.9375rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .voice__name {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.voice__name::before {
  content: "";
  width: 200px;
  width: 12.5rem;
  height: 3px;
  height: 0.1875rem;
  background: #333;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .voice__name::before {
    margin-right: 1.25rem;
  }
}
.voice__name.--noName {
  display: none;
}
@media screen and (min-width: 768px) {
  .voice__name.--noName {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .voice__name2 {
    margin-top: 4.375rem;
  }
}

.voice-slide__item {
  padding: 15px;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .voice-slide__item {
    padding: 1.875rem;
  }
}

.swiper-voice__container {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .swiper-voice__container {
    margin-top: 1.875rem;
  }
}

.swiper-voice__container .swiper-button-next {
  top: 65%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5%;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .swiper-voice__container .swiper-button-next:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .swiper-voice__container .swiper-button-next {
    top: 55%;
    right: -4%;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.swiper-voice__container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  margin: auto;
  background-image: url(../images/webp/work_slider_next_arrow.webp);
}
@media screen and (min-width: 768px) {
  .swiper-voice__container .swiper-button-next::after {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.swiper-voice__container .swiper-button-prev {
  top: 65%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -5%;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .swiper-voice__container .swiper-button-prev:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .swiper-voice__container .swiper-button-prev {
    top: 55%;
    left: -4%;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.swiper-voice__container .swiper-button-prev::after {
  background-repeat: no-repeat;
  background-size: contain;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  margin: auto;
  background-image: url(../images/webp/work_slider_prev_arrow.webp);
}
@media screen and (min-width: 768px) {
  .swiper-voice__container .swiper-button-prev::after {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.lb-prev,
.lb-next,
.lb-data .lb-number {
  display: none !important;
}

.work {
  padding-block: 74px 40px;
  padding-block: 4.625rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .work {
    padding-block: 7.0625rem 6.25rem;
  }
}

.work__box {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .work__box {
    margin-top: 9.375rem;
  }
}

.work__items {
  display: block;
}
@media screen and (min-width: 768px) {
  .work__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.work__item {
  background: #E60012;
  font-weight: 800;
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  border-radius: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .work__item {
    padding-top: 3.75rem;
    width: calc(50% - 0.9375rem);
  }
}

.work-slide__item {
  background: #E60012;
  font-weight: 800;
  position: relative;
  border-radius: 0.9375rem;
  padding-block: 40px;
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .work-slide__item {
    padding-block: 3.75rem 1.875rem;
  }
}

.work__item + .work__item {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .work__item + .work__item {
    margin-left: 1.875rem;
    margin-top: 0;
    margin-top: initial;
  }
}

.work__title {
  color: #E60012;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 800;
  background: #fff;
  padding-block: 8px;
  padding-block: 0.5rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  border: 4px solid #E60012;
  border: 0.25rem solid #E60012;
  border-radius: 6.25rem;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 0;
  margin-top: -30px;
  margin-top: -1.875rem;
  width: 270px;
  width: 16.875rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .work__title {
    font-size: 1.875rem;
    padding-left: 1.875rem;
    width: 25.8125rem;
    height: min(80px, 6.6666666vw);
    padding-block: 0.625rem;
    margin-top: -2.5rem;
  }
}
.work__title span {
  font-size: 12px;
  font-size: 0.75rem;
  background: #FEF2F1;
  padding: 7.5px 15px;
  padding: 0.46875rem 0.9375rem;
  display: inline-block;
  border-radius: 0.625rem;
  margin-right: 15px;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .work__title span {
    font-size: 1.25rem;
    padding: 0.625rem 1.125rem;
    margin-right: 1.25rem;
  }
}

.work__img img {
  width: 585px;
  width: 36.5625rem;
}

.work__body {
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .work__body {
    padding: 1.875rem;
  }
}

.work__body-head {
  color: #F7F15A;
  padding-block: 10px;
  padding-block: 0.625rem;
  background: #D10010;
  border-radius: 6.25rem;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .work__body-head {
    font-size: 1.25rem;
    padding-block: 0.3125rem;
    padding-inline: 1.875rem 0.625rem;
    text-align: start;
    white-space: nowrap;
  }
}

.work__body-kind {
  color: #fff;
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .work__body-kind {
    margin-top: 0.9375rem;
  }
}

.work__body-textarea {
  margin-top: 15px;
  margin-top: 0.9375rem;
  background: #fff;
  padding: 20px 15px 15px;
  padding: 1.25rem 0.9375rem 0.9375rem;
  border-radius: 0.625rem;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .work__body-textarea {
    font-size: 1.125rem;
    padding: 1.875rem;
    margin-top: 1.25rem;
  }
}

.work__body-top-text span {
  background: #FEF2F1;
  border-radius: 0.3125rem;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .work__body-top-text span {
    font-size: 1.125rem;
  }
}

.work__body-bottom-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .work__body-bottom-text {
    margin-top: 1.25rem;
  }
}
.work__body-bottom-text span {
  background: #FEF2F1;
  border-radius: 0.3125rem;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  display: inline-block;
}

.work-slide {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .work-slide {
    margin-top: 3.125rem;
  }
}

.swiper-work__container {
  position: relative;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .swiper-work__container {
    margin-top: 3.75rem;
  }
}

.swiper-work__container .swiper-button-next {
  top: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5%;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .swiper-work__container .swiper-button-next:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .swiper-work__container .swiper-button-next {
    top: 65%;
    right: -4%;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.swiper-work__container .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  background-image: url(../images/webp/work_slider_next_arrow.webp);
}
@media screen and (min-width: 768px) {
  .swiper-work__container .swiper-button-next::after {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.swiper-work__container .swiper-button-prev {
  top: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -5%;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .swiper-work__container .swiper-button-prev:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .swiper-work__container .swiper-button-prev {
    top: 65%;
    left: -4%;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.swiper-work__container .swiper-button-prev::after {
  background-repeat: no-repeat;
  background-size: contain;
  width: 54px;
  width: 3.375rem;
  height: 54px;
  height: 3.375rem;
  background-image: url(../images/webp/work_slider_prev_arrow.webp);
}
@media screen and (min-width: 768px) {
  .swiper-work__container .swiper-button-prev::after {
    width: 6.25rem;
    height: 6.25rem;
  }
}
/*# sourceMappingURL=styles.css.map */
