*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

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

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

iframe {
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
  max-width: 100%;
}

html {
  font-size: 10px;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}

.container {
  display: block;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
}

.pc-only {
  display: block;
}

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

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.heading {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .heading {
    margin-bottom: 25px;
  }
}

.heading-primary {
  font-size: 80px;
  line-height: 1;
  font-family: "vdl-megamaru", sans-serif;
  padding-bottom: 10px;
  letter-spacing: 0.2em;
  color: #fff;
}

@media (max-width: 767px) {
  .heading-primary {
    font-size: 40px;
  }
}

.heading-primary.--red {
  color: #e0322c;
}

.heading-sec {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  color: #fff;
  padding-bottom: 30px;
  font-weight: 350;
}

@media (max-width: 767px) {
  .heading-sec {
    padding-bottom: 10px;
  }
}

.heading-sec.--red {
  color: #e0322c;
}

.heading-ternary {
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: 350;
  color: #fff;
}

.heading-ternary.--red {
  color: #e0322c;
}

.madam-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #fff;
  font-weight: 350;
  margin-bottom: 67px;
}

@media (max-width: 767px) {
  .madam-desc {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

.madam-desc.--red {
  color: #e0322c;
}

.floating-btn {
  position: fixed;
  bottom: 105px;
  right: 12px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #000;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

@media (max-width: 767px) {
  .floating-btn {
    width: 40px;
    height: 40px;
    bottom: 80px;
  }
}

.floating-btn.is-active {
  opacity: 1;
  pointer-events: auto;
}

.floating-btn:hover {
  transform: translateY(-2px);
}

.floating-btn__arrow {
  content: "";
  display: block;
  background-image: url("../img/icons/floating-btn.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 32px;
  height: 37px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .floating-btn__arrow {
    width: 23px;
    height: 28px;
  }
}

#response {
  padding-top: 10px;
  font-size: 12px;
  text-align: right;
  font-weight: 600;
}

#response.success {
  color: #2e7d32;
}

#response.error {
  color: #c62828;
}

.contact__error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #e60012;
}

.contact__form-input.error,
.contact__form-textarea.error {
  border: 1px solid #e60012;
}

.contact__response {
  display: none;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 4px;
}

.contact__response.success {
  display: block;
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.contact__response.error {
  display: block;
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

.contact__form-label-inner {
  width: 100%;
}

.contact__form-input,
.contact__form-textarea {
  width: 100%;
}

.contact__form-textarea {
  resize: none;
}

.header {
  width: 100%;
  padding: 26px 33px 0;
  background-color: #ffffff;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding-top: 16px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .header__logo {
    padding-top: 10px;
  }
}

.header__logo img {
  display: block;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__logo:hover {
  opacity: 0.7;
}

@media (max-width: 450px) {
  .header__logo:hover {
    opacity: 1;
  }
}

.header__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  position: relative;
  z-index: 1001;
}

.header__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-right: 45px;
}

.header__icons img {
  display: block;
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 450px) {
  .header__icons img {
    width: 30px;
    height: 30px;
  }
}

.header__icons:hover {
  opacity: 0.7;
}

@media (max-width: 450px) {
  .header__icons:hover {
    opacity: 1;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 33px;
  height: 33px;
  background-color: #e0322c;
  cursor: pointer;
  padding: 7px;
  transition: all 0.3s ease;
  position: fixed;
  border: 1px solid transparent;
  right: 33px;
}

@media (max-width: 767px) {
  .header__hamburger {
    right: 20px;
  }
}

@media (max-width: 450px) {
  .header__hamburger {
    gap: 4px;
    width: 28px;
    height: 28px;
  }
}

.header__hamburger:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .header__hamburger:hover {
    opacity: 1;
  }
}

.header__hamburger.header__hamburger--rakusan {
  border: 1px solid #fff;
}

.header__hamburger span {
  display: block;
  width: 19px;
  height: 1.2px;
  background-color: #ffffff;
  transition: 0.3s;
}

@media (max-width: 450px) {
  .header__hamburger span {
    width: 16px;
    height: 1px;
  }
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

@media (max-width: 450px) {
  .header__hamburger.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 450px) {
  .header__hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100vh;
  background: #fff;
  transition: 0.4s;
  z-index: 999;
  padding: 120px 50px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
}

.header__nav.active {
  right: 0;
}

.header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__item {
  margin-bottom: 25px;
}

.header__link {
  text-decoration: none;
  color: #e0322c;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.header__link:hover {
  opacity: 0.7;
}

@media (max-width: 450px) {
  .header__link:hover {
    opacity: 1;
  }
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .header {
    padding: 20px 15px 0;
  }

  .header__logo img {
    max-width: 140px;
  }

  .header__nav {
    width: 60%;
    padding: 100px 20px;
  }

  .header__link {
    font-size: 18px;
  }
}

.hero {
  position: relative;
  width: 100%;
  margin-top: 130px;
}

@media (max-width: 767px) {
  .hero {
    margin-top: 100px;
  }
}

.hero__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__wrapper .hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: fadeInBigScale 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  margin-top: 70px;
}

@media (max-width: 1440px) {
  .hero__wrapper .hero__image {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .hero__wrapper .hero__image {
    margin-top: 22px;
  }
}

@media (max-width: 576px) {
  .hero__wrapper .hero__image {
    margin-top: 9px;
  }
}

@keyframes fadeInBigScale {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.rakusan {
  position: relative;
  width: 100%;
  background-color: #e0322c;
}

.rakusan__wrapper {
  padding: 50px 0 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .rakusan__wrapper {
    padding: 10px 0 2px 0px;
  }
}

.rakusan__top-curve {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 22;
}

@media (max-width: 767px) {
  .rakusan__top-curve {
    top: -28px;
    height: 30px;
  }
}

.rakusan__bottom-curve {
  position: absolute;
  bottom: -40px;
  left: 0px;
  width: 100%;
  height: 40px;
  z-index: 22;
}

@media (max-width: 767px) {
  .rakusan__bottom-curve {
    bottom: -38px;
  }
}

.rakusan__content {
  text-align: center;
  color: #ffffff;
}

.rakusan__logo {
  margin-bottom: 50px;
}

.rakusan__card {
  position: relative;
  background-color: #e45954;
  border-radius: 15px;
  padding: 81px 35px 42px 40px;
  margin: 0 auto 55px auto;
  max-width: 1080px;
}

@media (max-width: 767px) {
  .rakusan__card {
    padding: 20px;
  }
}

.rakusan__card-ribbon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  white-space: nowrap;
  z-index: 10;
}

.rakusan__card-ribbon h4 {
  position: relative;
  display: block;
  background-color: #ffffff;
  color: #e0322c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 7px 25px;
  z-index: 2;
}

@media (max-width: 767px) {
  .rakusan__card-ribbon h4 {
    padding: 7px 10px;
  }
}

.rakusan__card-ribbon h4::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -3px;
  border-style: solid;
  border-width: 8px 0 0 8px;
  border-color: #a81c18 transparent transparent transparent;
  z-index: 1;
}

.rakusan__card-ribbon h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  border-style: solid;
  border-width: 8px 8px 0 0;
  border-color: #a81c18 transparent transparent transparent;
  z-index: 1;
}

.rakusan__card-ribbon::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -20px;
  width: 25px;
  height: 34px;
  background-color: #ffffff;
  clip-path: polygon(100% 0, 0 0, 50% 50%, 0 100%, 100% 100%);
  z-index: 1;
}

.rakusan__card-ribbon::after {
  content: "";
  position: absolute;
  top: 13px;
  right: -20px;
  width: 25px;
  height: 34px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 50%, 100% 100%, 0 100%);
  z-index: 1;
}

.rakusan__card-title {
  font-size: 28px;
  font-weight: 350;
  margin-bottom: 55px;
  letter-spacing: 0.2em;
  font-weight: 350;
}

@media (max-width: 991px) {
  .rakusan__card-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .rakusan__card-title {
    font-size: 18px;
    margin-bottom: 40px;
    margin-top: 20px;
  }
}

.rakusan__card-body {
  display: flex;
  gap: 50px;
  justify-content: center;
  text-align: left;
  padding: 0 5px 0 80px;
}

@media (max-width: 991px) {
  .rakusan__card-body {
    padding: 0 5px 0 20px;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .rakusan__card-body {
    flex-direction: column;
    padding: 0;
    align-items: center;
    gap: 30px;
  }
}

.rakusan__card-img {
  flex-shrink: 0;
  width: 230px;
  overflow: hidden;
  --animate-duration: 0.8s;
  --animate-delay: 0.2s;
}

.rakusan__card-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.rakusan__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rakusan__row__tag {
  display: inline-block;
  background-color: #ffffff;
  color: #b06663;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 350;
  padding: 3px 15px;
  border-radius: 2px;
  margin-bottom: 22px;
  min-width: 290px;
  text-align: left;
}

@media (max-width: 767px) {
  .rakusan__row__tag {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.rakusan__row__text {
  font-size: 18px;
  font-weight: 350;
  line-height: 1.15;
  letter-spacing: 0.15em;
  color: #ffffff;
}

@media (max-width: 991px) {
  .rakusan__row__text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .rakusan__row__text {
    font-size: 14px;
  }
}

.rakusan__videos .videos__title {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 350;
  margin-bottom: 30px;
}

.rakusan__videos .videos__row {
  display: flex;
  justify-content: center;
  gap: 71px;
}

@media (max-width: 767px) {
  .rakusan__videos .videos__row {
    gap: 35px;
  }
}

@media (max-width: 450px) {
  .rakusan__videos .videos__row {
    flex-direction: column;
    align-items: center;
  }
}

.rakusan__videos .video__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rakusan__videos .video__item-frame {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 159px;
  aspect-ratio: 159/260;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame {
    max-width: 270px;
    aspect-ratio: 270/400;
  }
}

.rakusan__videos .video__item-frame video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.rakusan__videos .video__item-frame .video__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.rakusan__videos .video__item-frame .video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame .video__play-btn {
    width: 50px;
    height: 50px;
  }
}

.rakusan__videos .video__item-frame .video__play-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #ffffff;
  transform: translateX(1px);
  transition: transform 0.2s ease;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame .video__play-btn::before {
    border-width: 8px 0 8px 14px;
    transform: translateX(2px);
  }
}

.rakusan__videos .video__item-frame.is-playing .video__poster {
  opacity: 0;
  visibility: hidden;
}

.rakusan__videos .video__item-frame.is-playing .video__play-btn {
  opacity: 0;
  pointer-events: none;
  gap: 3px;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame.is-playing .video__play-btn {
    gap: 4px;
  }
}

.rakusan__videos .video__item-frame.is-playing .video__play-btn::before {
  width: 3px;
  height: 13px;
  border: none;
  background-color: #ffffff;
  margin-left: 0;
  transform: none;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame.is-playing .video__play-btn::before {
    width: 4px;
    height: 16px;
  }
}

.rakusan__videos .video__item-frame.is-playing .video__play-btn::after {
  content: "";
  display: block;
  width: 3px;
  height: 13px;
  background-color: #ffffff;
  margin-left: 0;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame.is-playing .video__play-btn::after {
    width: 4px;
    height: 16px;
  }
}

.rakusan__videos .video__item-frame.is-playing:active .video__play-btn {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (hover: hover) and (min-width: 768px) {
  .rakusan__videos .video__item-frame.is-playing:hover .video__play-btn {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.rakusan__videos .video__item-frame:hover .video__play-btn {
  background-color: rgba(0, 0, 0, 0.85);
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-frame:hover .video__play-btn {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.rakusan__videos .video__item-label {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 350;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .rakusan__videos .video__item-label {
    margin-top: 12px;
  }
}

.rakusan .video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.rakusan .video-modal.is-active {
  display: flex;
}

.rakusan .video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.rakusan .video-modal__content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rakusan .video-modal__content video {
  width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .rakusan .video-modal__content video {
    width: 100%;
    max-height: 60vh;
  }
}

.rakusan .video-modal__close {
  position: absolute;
  top: -50px;
  right: -45px;
  width: 45px;
  height: 45px;
  font-size: 35px;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 767px) {
  .rakusan .video-modal__close {
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}

.rakusan .video-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .rakusan .video-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
  }
}

.achievement {
  position: relative;
  width: 100%;
  background-color: #fdfbf7;
  overflow: hidden;
}

.achievement__wrapper {
  position: relative;
  width: 100%;
  padding: 195px 0;
}

.achievement__wrapper.track {
  padding: 167px 0 202px;
}

@media (max-width: 767px) {
  .achievement__wrapper.track {
    padding: 120px 0;
  }
}

.achievement__wrapper.sales {
  padding: 162px 0 186px;
}

@media (max-width: 767px) {
  .achievement__wrapper.sales {
    padding: 120px 0;
  }
}

@media (max-width: 767px) {
  .achievement__wrapper {
    padding: 120px 0;
  }
}

.achievement__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.achievement__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.achievement__content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.achievement__content.p-21 .achievement__box {
  padding: 21px 20px;
}

@media (max-width: 767px) {
  .achievement__content.p-21 .achievement__box {
    padding: 15px;
  }
}

.achievement__box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 12px 20px;
  min-width: 520px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .achievement__box {
    flex-wrap: wrap;
    min-width: 300px;
    padding: 15px;
    gap: 8px;
  }
}

.achievement__label {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.2em;
  padding-right: 13px;
}

@media (max-width: 767px) {
  .achievement__label {
    font-size: 12px;
    padding-right: 0;
  }
}

.achievement__label.pl {
  padding-left: 25px;
  padding-right: 0;
}

@media (max-width: 767px) {
  .achievement__label.pl {
    padding-left: 0;
    padding-right: 0;
  }
}

.achievement__number {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .achievement__number {
    font-size: 20px;
  }
}

.achievement__unit {
  color: #000000;
  font-weight: 700;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .achievement__unit {
    padding-left: 0;
  }
}

.achievement__date {
  font-size: 14px;
  color: #000000;
  font-weight: 350;
}

.achievement__wrapper {
  position: relative;
  overflow: hidden;
}

.achievement__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.achievement__bg img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  margin: 0;
  padding: 0;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.achievement__wrapper>.container {
  position: relative;
  z-index: 2;
}

.merit {
  position: relative;
  width: 100%;
  background-color: #fbf8ea;
  padding-top: 33px;
  padding-bottom: 95px;
}

@media (max-width: 767px) {
  .merit {
    padding-bottom: 40px;
    padding-top: 50px;
  }
}

.merit__top-curve {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 22;
}

@media (max-width: 767px) {
  .merit__top-curve {
    top: -28px;
    height: 45px;
  }
}

.merit__bottom-curve {
  position: absolute;
  bottom: -47px;
  left: 0px;
  width: 100%;
  height: 48px;
  z-index: 22;
}

@media (max-width: 767px) {
  .merit__bottom-curve {
    bottom: -45px;
  }
}

.merit__wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.merit .heading {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .merit .heading {
    margin-bottom: 20px;
  }
}

.merit .heading-sec {
  padding-bottom: 8px;
}

.merit .madam-desc {
  margin-bottom: 43px;
}

.merit__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.merit__logo-sub {
  font-size: 17px;
  color: #e0322c;
  font-weight: 350;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}

.merit__logo-title {
  font-size: 42px;
  font-weight: 700;
  color: #e0322c;
  font-family: "vdl-megamaru", sans-serif;
  line-height: 1;
  letter-spacing: 2px;
}

.merit__logo-en {
  font-size: 12px;
  color: #e0322c;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.merit__heading {
  font-size: 16px;
  font-weight: 700;
  color: #e0322c;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.merit__main-card {
  position: relative;
  background-color: #ffffff;
  padding: 40px 50px 56px 56px;
  margin: 0 auto 10px;
  max-width: 820px;
}

@media (max-width: 767px) {
  .merit__main-card {
    padding: 40px;
    margin: 0 auto 25px;
    max-width: 100%;
  }
}

.merit__main-card-ribbon {
  position: absolute;
  top: -13px;
  right: 31px;
  width: 37px;
  height: 47px;
  background-color: #e0322c;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
}

@media (max-width: 767px) {
  .merit__main-card-ribbon {
    width: 35px;
    height: 40px;
  }
}

.merit__main-card-inner {
  display: flex;
  align-items: center;
  gap: 44px;
  text-align: left;
}

@media (max-width: 767px) {
  .merit__main-card-inner {
    flex-direction: column;
    text-align: center;
  }
}

.merit__main-card-icon {
  flex-shrink: 0;
}

.merit__main-card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.merit__main-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #e0322c;
  padding-bottom: 16px;
}

@media (max-width: 767px) {
  .merit__main-card-title {
    font-size: 18px;
  }
}

.merit__main-card-desc {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #e0322c;
}

@media (max-width: 767px) {
  .merit__main-card-desc {
    font-size: 14px;
  }
}

.merit__row {
  display: flex;
  gap: 15px 19px;
  max-width: 820px;
  margin: 0 auto;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .merit__row {
    justify-content: center;
    gap: 15px;
  }
}

.merit__card {
  width: calc(25% - 14.25px);
  position: relative;
  background-color: #ffffff;
  padding: 15px 15px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 991px) {
  .merit__card {
    width: calc(33.3333333333% - 12.6666666667px);
  }
}

@media (max-width: 767px) {
  .merit__card {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 576px) {
  .merit__card {
    padding: 20px 10px;
  }
}

.merit__card-num {
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #e0322c;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.merit__card-icon {
  width: 130px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .merit__card-icon {
    width: 100px;
  }
}

.merit__card-icon img {
  -o-object-fit: contain;
  object-fit: contain;
}

.merit__card-text {
  font-size: 14px;
  color: #e0322c;
  line-height: 1.4285714286;
  text-align: left;
  font-weight: 400;
}

@media (max-width: 767px) {
  .merit__card-text {
    text-align: center;
    font-size: 12px;
  }
}

.company {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 65px 0 45px;
}

.company__top-curve {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 22;
}

@media (max-width: 767px) {
  .company__top-curve {
    top: -28px;
    height: 45px;
  }
}

.company__bottom-curve {
  position: absolute;
  bottom: -47px;
  left: 0px;
  width: 100%;
  height: 48px;
  z-index: 22;
}

@media (max-width: 767px) {
  .company__bottom-curve {
    bottom: -45px;
  }
}

.company__wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .company__wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .company__wrapper {
    padding-inline: 15px;
  }
}

.company__wrapper .heading-sec {
  padding-bottom: 0;
}

.company__content {
  text-align: center;
}

.company__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.company__logo img {
  max-width: 220px;
  height: auto;
}

.company__logo-sub {
  font-size: 11px;
  color: #e0322c;
  margin-top: 6px;
  letter-spacing: 1px;
}

.company__heading {
  font-size: 20px;
  font-weight: 350;
  color: #e0322c;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .company__heading {
    font-size: 14px;
  }
}

.company__subtext {
  font-size: 16px;
  color: #e0322c;
  letter-spacing: 0.2em;
  font-weight: 350;
  margin-bottom: 78px;
}

@media (max-width: 767px) {
  .company__subtext {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.company__info {
  text-align: left;
  padding-left: 10px;
}

@media (max-width: 991px) {
  .company__info {
    padding-inline: 15px;
  }
}

@media (max-width: 767px) {
  .company__info {
    display: block;
    padding: 10px 0;
  }
}

.company__row {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .company__row {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .company__row:last-child {
    margin-bottom: 0;
  }
}

.company__row.-mb {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .company__row {
    gap: 5px;
  }

  .company__row.-mb {
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .company__row {
    flex-direction: column;
  }
}

.company__term {
  width: 130px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 350;
  line-height: 2;
  color: #e0322c;
  letter-spacing: 0.2em;
}

@media (max-width: 767px) {
  .company__term {
    width: 100px;
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .company__term {
    width: 100%;
  }
}

.company__desc {
  flex: 1;
  font-size: 16px;
  color: #e0322c;
  font-weight: 350;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (max-width: 767px) {
  .company__desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 450px) {
  .company__desc {
    width: 100%;
  }
}

.company__desc strong {
  font-weight: 500;
}

.company__desc p {
  margin-bottom: 2px;
}

.company__map {
  display: block;
  width: 100%;
  margin-top: 45px;
}

@media (max-width: 767px) {
  .company__map {
    margin-top: 20px;
  }
}

.company__map iframe {
  display: block;
}

.product {
  position: relative;
  padding-top: 98px;
}

@media (max-width: 767px) {
  .product {
    padding-top: 60px;
  }
}

@media (max-width: 450px) {
  .product {
    padding-top: 50px;
  }
}

.product__header {
  color: #e0322c;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 500;
  padding-bottom: 14px;
  text-align: center;
}

.product__header-box {
  text-align: center;
}

.product__wrapper {
  max-width: 929px;
  width: 100%;
  margin-inline: auto;
}

@media (max-width: 991px) {
  .product__wrapper {
    padding-inline: 20px;
  }
}

@media (max-width: 576px) {
  .product__wrapper {
    padding-inline: 15px;
  }
}

.product__row {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 47px;
}

@media (max-width: 991px) {
  .product__row {
    align-items: flex-start;
    justify-content: center;
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .product__row {
    margin-top: 40px;
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .product__row {
    margin-top: 40px;
    gap: 25px;
  }
}

.product__col {
  width: calc(33.3333333333% + 9px);
}

@media (max-width: 767px) {
  .product__col {
    width: calc(50% - 16px);
  }
}

@media (max-width: 450px) {
  .product__col {
    width: 100%;
    text-align: center;
  }
}

.product__col:nth-of-type(2),
.product__col:nth-of-type(3),
.product__col:nth-of-type(5),
.product__col:nth-of-type(6) {
  width: 258px;
}

@media (max-width: 991px) {

  .product__col:nth-of-type(2),
  .product__col:nth-of-type(3),
  .product__col:nth-of-type(5),
  .product__col:nth-of-type(6) {
    width: calc(33.3333333333% + 9px);
  }
}

@media (max-width: 767px) {

  .product__col:nth-of-type(2),
  .product__col:nth-of-type(3),
  .product__col:nth-of-type(5),
  .product__col:nth-of-type(6) {
    width: calc(50% - 16px);
  }
}

@media (max-width: 450px) {

  .product__col:nth-of-type(2),
  .product__col:nth-of-type(3),
  .product__col:nth-of-type(5),
  .product__col:nth-of-type(6) {
    width: 100%;
    text-align: center;
  }
}

.product__col-ttl {
  color: #e0322c;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 800;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .product__col-ttl {
    padding-bottom: 10px;
  }
}

.product__col-txt {
  color: #e0322c;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 400;
}

.product__col-txt span {
  font-weight: 500;
  display: block;
}

.award {
  margin-block: 98px 120px;
}

@media (max-width: 767px) {
  .award {
    margin-block: 70px;
  }
}

@media (max-width: 450px) {
  .award {
    margin-block: 70px 60px;
  }
}

.award__container {
  max-width: 1045px;
  width: 100%;
  margin-inline: auto;
}

@media (max-width: 991px) {
  .award__container {
    padding-inline: 20px;
  }
}

@media (max-width: 576px) {
  .award__container {
    padding-inline: 15px;
  }
}

.award__content {
  margin-top: 83px;
  margin-left: 5.5%;
}

@media (max-width: 767px) {
  .award__content {
    margin-bottom: 40px;
    margin-left: 0;
    margin-top: 40px;
  }
}

.award__wrap {
  padding-bottom: 40px;
}

.award__wrap.pb {
  padding-bottom: 74px;
}

@media (max-width: 767px) {
  .award__wrap.pb {
    padding-bottom: 60px;
  }
}

@media (max-width: 450px) {
  .award__wrap.pb {
    padding-bottom: 28px;
  }
}

.award__title {
  color: #e0322c;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 700;
  padding-bottom: 16px;
  line-height: 1;
}

@media (max-width: 767px) {
  .award__title {
    line-height: 1.4;
  }
}

.award__title.sec {
  padding-bottom: 0px;
  padding-top: 28px;
  line-height: 1.6;
}

@media (max-width: 450px) {
  .award__title {
    font-size: 14px;
  }
}

.award__text {
  color: #e0322c;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 500;
}

@media (max-width: 450px) {
  .award__text {
    font-size: 13px;
  }
}

.contact {
  background-color: #f9f5ea;
  padding-block: 78px 120px;
  position: relative;
}

@media (max-width: 767px) {
  .contact {
    padding-block: 100px 80px;
  }
}

.contact__wrapper {
  max-width: 1022px;
}

.contact__top-curve {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 22;
}

@media (max-width: 767px) {
  .contact__top-curve {
    top: -28px;
    height: 45px;
  }
}

.contact__bottom-curve {
  position: absolute;
  bottom: -15px;
  left: 0px;
  width: 100%;
  height: 40px;
  z-index: 22;
}

@media (max-width: 767px) {
  .contact__bottom-curve {
    bottom: -30px;
  }
}

.contact__heading {
  color: #e0322c;
  text-align: center;
  margin-bottom: 45px;
}

.contact__title {
  font-weight: 350;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 19px;
  letter-spacing: 0.2em;
}

.contact__subtitle {
  font-weight: 350;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
}

.contact__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 38px;
  padding: 0;
  margin: 0 0 53px 0;
  list-style: none;
}

@media (max-width: 991px) {
  .contact__steps {
    max-width: 525px;
    margin: 0 auto;
    justify-content: center;
    gap: 30px;
  }
}

.contact__step {
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  width: calc(16.6666666667% - 31.6666666667px);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 6px;
  padding-block: 30px 25px;
  box-sizing: border-box;
}

.contact__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  left: auto;
  bottom: auto;
  margin-top: 0;
  border-left: 10px solid #e0322c;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%) rotate(0deg);
  display: block;
}

@media (max-width: 991px) {
  .contact__step:not(:last-child)::after {
    right: -20.5px;
  }
}

@media (max-width: 991px) {
  .contact__step {
    width: calc(33.3333333333% - 20px);
    max-width: 180px;
  }

  .contact__step:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .contact__step {
    width: calc(50% - 15px);
  }

  .contact__step:nth-child(even)::after {
    display: none;
  }

  .contact__step:nth-child(3)::after {
    display: block;
  }
}

.contact__step-text {
  text-align: center;
  color: #e0322c;
  font-size: 14px;
  line-height: 1.08;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .contact__step-text {
    line-height: 1.4;
  }
}

.contact__form {
  max-width: 516px;
  width: 100%;
  margin-inline: auto;
}

.contact__form-title {
  text-align: center;
  color: #e0322c;
  font-weight: 350;
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
  padding-left: 109px;
}

@media (max-width: 991px) {
  .contact__form-title {
    padding-left: 40px;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .contact__form-title {
    padding-left: 0;
  }
}

.contact__form-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.contact__form-group:nth-of-type(4) {
  margin-bottom: 0;
  align-items: flex-start;
}

.contact__form-group-inner {
  width: 100%;
}

.contact__form-group-btn {
  padding-left: 108px;
}

@media (max-width: 991px) {
  .contact__form-group-btn {
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .contact__form-group-btn {
    padding-left: 0;
  }
}

.contact__form-input {
  flex: 1;
  min-height: 36px;
  border: unset;
  padding: 10px;
}

.contact__form-input:focus-visible {
  outline: unset;
}

.contact__form-textarea {
  flex: 1;
  min-height: 188px;
  border: unset;
  padding: 15px;
}

.contact__form-textarea:focus-visible {
  outline: unset;
}

.contact__form-label {
  max-width: 60px;
  width: 100%;
  margin-right: 56px;
  color: #e0322c;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: normal;
  font-weight: 350;
}

@media (max-width: 767px) {
  .contact__form-label {
    margin-right: 16px;
    font-size: 14px;
  }
}

.contact__form-button {
  display: block;
  width: 350px;
  height: 44px;
  margin: 68px auto 0;
  border: 1px solid #e0322c;
  border-radius: 20px;
  background: transparent;
  color: #e0322c;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: 350;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .contact__form-button {
    font-size: 14px;
    width: 260px;
    margin: 40px auto 0;
  }
}

.contact__form-button:hover {
  background-color: #e0322c;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 450px) {
  .contact__form-button:hover {
    background: transparent;
    color: #e0322c;
    border: 1px solid #e0322c;
  }
}

.privacy {
  padding: 90px 0 40px;
  background-color: #f1f1f1;
}

@media (max-width: 450px) {
  .privacy {
    padding: 50px 0 40px;
  }
}

.privacy__wrapper {
  max-width: 1122px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (max-width: 576px) {
  .privacy__wrapper {
    padding-inline: 15px;
  }
}

.privacy__text {
  color: #212121;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.25;
  font-weight: 350;
  margin-bottom: 18px;
}

@media (max-width: 450px) {
  .privacy__text {
    line-height: 1.32;
  }
}

.privacy__link {
  color: #212121;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 350;
  display: block;
  padding-bottom: 16px;
  transition: all 0.3s ease;
}

.privacy__link:hover {
  opacity: 0.7;
}

@media (max-width: 450px) {
  .privacy__link:hover {
    opacity: 1;
  }
}

.sharing-upwave .onde,
.sharing-downwave .onde {
  position: relative;
  width: 100%;
  margin-bottom: -7px;
  z-index: -1;
  height: 30px;
}

@media only screen and (min-width: 768px) {

  .sharing-upwave .onde,
  .sharing-downwave .onde {
    height: 72px;
  }
}

@media only screen and (min-width: 1200px) {

  .sharing-upwave .onde,
  .sharing-downwave .onde {
    height: 90px;
  }
}

.sharing-upwave .parallaxonde>use,
.sharing-downwave .parallaxonde>use {
  animation: move-forever 40s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.sharing-upwave .parallaxonde>use:nth-child(1),
.sharing-downwave .parallaxonde>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 15s;
}

.sharing-downwave {
  transform: scaleY(-1);
}

.sharing-downwave .parallaxonde>use:nth-child(1) {
  animation-delay: -5s;
  animation-duration: 15s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.footer {
  background-color: #fff;
}

.footer__wrapper {
  padding-block: 40px 36px;
  position: relative;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.7;
}

@media (max-width: 450px) {
  .footer__logo:hover {
    opacity: 1;
  }
}

.footer__copyright {
  color: #e0322c;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: normal;
  font-weight: 350;
  margin-top: 9px;
  text-align: center;
}

.footer__insta-logo {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 7.4%;
  top: 53%;
  transition: all 0.3s ease;
}

.footer__insta-logo:hover {
  opacity: 0.7;
}

@media (max-width: 450px) {
  .footer__insta-logo:hover {
    opacity: 1;
  }
}

@media (max-width: 450px) {
  .footer__insta-logo {
    width: 30px;
    height: 30px;
  }
}

/* contact */
.contact__form-input,
.contact__form-textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.contact__confirm {
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 45px;
}

.contact__status {
  margin-top: 130px;
  /* height: calc(100vh - 41vh); */
}

.contact__status .contact__form {
  margin-bottom: 80px;
}

.contact__confirm-btns {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.contact__status .contact__title {
  margin-bottom: 30px;
  color: #e0322c;
}

.contact__status .contact__form-input {
  background-color: #dfdfdf;
  /* padding: 0; */
  min-height: 100%;
  line-height: 1.5;
}

.contact__status .contact__form-textarea {
  background-color: #dfdfdf;
  line-height: 1.5;
}

.contact__status .contact__form-button {
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__complete p {
  text-align: center;
}

.contact__complete img {
  display: block;
  margin-inline: auto;
  margin-bottom: 30px;
}

.contact__complete .contact__form-title {
  padding-left: 0;
}

@media (max-width: 767px) {

  .contact__form-input,
  .contact__form-textarea {
    font-size: 14px;
  }

  .contact__status {
    margin-top: 130px;
  }

  .contact__status {
    padding-block: 0;
  }

  .contact__confirm-btns {
    gap: 20px;
  }
}

/*# sourceMappingURL=app.css.map */