@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sp {
  display: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #FFFFFF;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #FFF;
  position: relative;
}

.section {
  padding: 8rem 0;
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .section-title {
    font-size: 2.4rem !important;
    margin-bottom: 3rem;
  }
  .section {
    padding: 6rem 0;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo img {
  height: 40px;
  width: auto;
  -webkit-filter: none;
          filter: none;
}
.header__nav {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1000;
}
.header__nav.is-active {
  right: 0;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 3rem;
  padding: 0 2rem;
}
.header__nav ul li a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
}
.header__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C0C0C0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__nav ul li a:hover::after {
  width: 100%;
}

.hamburger {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .header__nav {
    width: 80%;
    right: -80%;
  }
  body.is-menu-open {
    overflow: hidden;
  }
}
.footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 6rem 0 3rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.footer__logo {
  margin-bottom: 3rem;
}
.footer__logo img {
  height: 4rem;
  width: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__info {
  margin-bottom: 3rem;
}
.footer__info p {
  margin: 0.5rem 0;
  font-size: 1.4rem;
  opacity: 0.9;
}
.footer__copyright {
  font-size: 1.2rem;
  opacity: 0.7;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 192, 192, 0.2);
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}
.page-title {
  background: url("../images/mv-bg.jpg") center/cover;
  padding: 160px 0 8rem;
  text-align: center;
  position: relative;
}
.page-title__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.page-title__text {
  font-size: 4.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.page-title__sub {
  font-size: 2.4rem;
  color: #C0C0C0;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page-title {
    padding: 13rem 0 6rem;
  }
  .page-title__text {
    font-size: 3.2rem;
  }
  .page-title__sub {
    font-size: 1.8rem;
  }
}

.contact-form {
  padding: 8rem 0 12rem;
  background-color: #FFFFFF;
}
.contact-form__inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__content {
  background-color: #FFFFFF;
  border-radius: 2rem;
  padding: 4rem;
  -webkit-box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
          box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
}
.contact-form__intro {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-form__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.contact-form__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
}
.contact-form__form {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 2rem 0 8rem;
  }
  .contact-form__content {
    padding: 3rem 1rem;
  }
  .contact-form__title {
    font-size: 2.2rem;
  }
  .contact-form__description {
    font-size: 1.4rem;
  }
}

.form-group {
  margin-bottom: 3rem;
}
.form-group--checkbox {
  margin-bottom: 4rem;
}

.form-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.form-label .required {
  color: #dc1e1e;
  margin-left: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 2px solid rgba(192, 192, 192, 0.3);
  border-radius: 1rem;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "Noto Sans JP", sans-serif;
  background-color: #FFFFFF;
  color: #1A1A1A;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C0C0C0;
  -webkit-box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
          box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc1e1e;
  -webkit-box-shadow: 0 0 0 3px rgba(220, 30, 30, 0.1);
          box-shadow: 0 0 0 3px rgba(220, 30, 30, 0.1);
}

.error-message {
  color: #dc1e1e;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  min-height: 2rem;
  display: block;
}
.error-message:empty {
  display: none;
}
.error-message:not(:empty) {
  display: block;
}

.form-textarea {
  resize: vertical;
  min-height: 12rem;
}

.form-select {
  cursor: pointer;
}
.form-select option {
  padding: 1rem;
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1A1A1A;
}

.form-checkbox {
  margin-right: 1rem;
  margin-top: 0.3rem;
  width: 1.8rem;
  height: 1.8rem;
  accent-color: #C0C0C0;
}

.checkbox-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.checkbox-text .privacy-link {
  color: #C0C0C0;
  text-decoration: underline;
}
.checkbox-text .privacy-link:hover {
  text-decoration: none;
}

.form-submit {
  text-align: center;
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-submit.confirm-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn_back,
.btn_submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.btn_back input,
.btn_submit input {
  background: linear-gradient(135deg, #C0C0C0 0%, #a7a7a7 100%);
  color: #1A1A1A;
  border: none;
  padding: 2rem 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
          box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
  text-decoration: none;
  font-family: "Noto Serif JP", "Noto Sans JP", sans-serif;
}
.btn_back input:hover,
.btn_submit input:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
          box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}
.btn_back input:active,
.btn_submit input:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn_back input {
  background: linear-gradient(135deg, #999 0%, #777 100%);
  -webkit-box-shadow: 0 4px 15px rgba(153, 153, 153, 0.2);
          box-shadow: 0 4px 15px rgba(153, 153, 153, 0.2);
}
.btn_back input:hover {
  background: linear-gradient(135deg, #888 0%, #666 100%);
  -webkit-box-shadow: 0 6px 20px rgba(136, 136, 136, 0.3);
          box-shadow: 0 6px 20px rgba(136, 136, 136, 0.3);
}

@media screen and (max-width: 768px) {
  .form-submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .btn_back,
  .btn_submit {
    width: 100%;
  }
  .btn_back input,
  .btn_submit input {
    padding: 1.8rem 3rem;
    font-size: 1.6rem;
    width: 100%;
  }
}
.submit-button {
  background: linear-gradient(135deg, #C0C0C0 0%, #a7a7a7 100%);
  color: #1A1A1A;
  border: none;
  padding: 2rem 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
          box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
  text-decoration: none;
}
.submit-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
          box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}
.submit-button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.submit-button--back {
  background: linear-gradient(135deg, #666 0%, #444 100%);
  -webkit-box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
          box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}
.submit-button--back:hover {
  -webkit-box-shadow: 0 6px 20px rgba(102, 102, 102, 0.4);
          box-shadow: 0 6px 20px rgba(102, 102, 102, 0.4);
}
.submit-button i {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .submit-button {
    padding: 1.8rem 3rem;
    font-size: 1.6rem;
  }
}

.confirm-content {
  margin: 4rem 0;
}

.confirm-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}
.confirm-item:last-child {
  border-bottom: none;
}

.confirm-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 1rem;
}

.confirm-value {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1A1A1A;
}
.confirm-value.confirm-message {
  white-space: pre-line;
  background-color: rgba(192, 192, 192, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #C0C0C0;
}

.confirm-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}
.confirm-wrapper:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.confirm_label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #C0C0C0;
  padding-top: 0.5rem;
}

.confirm_value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1A1A1A;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .confirm-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .confirm_label {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding-top: 0;
  }
  .confirm_value {
    width: 100%;
  }
}
.complete-message {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem;
  background-color: rgba(192, 192, 192, 0.05);
  border-radius: 2rem;
  border: 2px solid rgba(192, 192, 192, 0.2);
}
.complete-message.error {
  background-color: rgba(220, 30, 30, 0.05);
  border-color: rgba(220, 30, 30, 0.2);
}

.complete-icon {
  font-size: 4rem;
  color: #C0C0C0;
  margin-bottom: 2rem;
}
.complete-message.error .complete-icon {
  color: #dc1e1e;
}

.complete-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
}

.contact-info {
  margin-top: 8rem;
  padding: 4rem;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  border-radius: 2rem;
  color: #FFFFFF;
}
.contact-info__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #C0C0C0;
}
.contact-info__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.contact-info__icon {
  width: 6rem;
  height: 6rem;
  background-color: #C0C0C0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1A1A1A;
  font-size: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-info__content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #C0C0C0;
}
.contact-info__phone, .contact-info__email {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.contact-info__time {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .contact-info {
    margin-top: 6rem;
    padding: 3rem 2rem;
  }
  .contact-info__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .contact-info__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .contact-info__icon {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    margin: 0 auto;
  }
  .contact-info__content {
    margin: 0 auto;
  }
  .contact-info__content h4 {
    font-size: 1.6rem;
    text-align: center;
  }
  .contact-info__phone, .contact-info__email {
    font-size: 1.6rem;
  }
}

.contact-thanks {
  padding: 8rem 0 12rem;
  background-color: #FFFFFF;
}
.contact-thanks__inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.contact-thanks__content {
  background-color: #FFFFFF;
  border-radius: 2rem;
  padding: 4rem;
  -webkit-box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
          box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
  text-align: center;
  margin-bottom: 4rem;
}
.contact-thanks__icon {
  font-size: 6rem;
  color: #C0C0C0;
  margin-bottom: 2rem;
  -webkit-animation: fadeInScale 0.6s ease-out;
          animation: fadeInScale 0.6s ease-out;
}
.contact-thanks__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 3rem;
  font-family: "Noto Serif JP", serif;
}
.contact-thanks__message {
  margin-bottom: 3rem;
}
.contact-thanks__message p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.contact-thanks__message p:last-child {
  margin-bottom: 0;
}
.contact-thanks__info {
  margin-bottom: 4rem;
}
.contact-thanks__note {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  background-color: rgba(192, 192, 192, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(192, 192, 192, 0.2);
}
.contact-thanks__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-thanks__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 2rem 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 5rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
          box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}
.contact-thanks__button--home {
  background: linear-gradient(135deg, #C0C0C0 0%, #a7a7a7 100%);
  color: #1A1A1A;
}
.contact-thanks__button--home:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
          box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}
.contact-thanks__button--contact {
  background: linear-gradient(135deg, #999 0%, #777 100%);
  color: #1A1A1A;
  -webkit-box-shadow: 0 4px 15px rgba(153, 153, 153, 0.2);
          box-shadow: 0 4px 15px rgba(153, 153, 153, 0.2);
}
.contact-thanks__button--contact:hover {
  background: linear-gradient(135deg, #888 0%, #666 100%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(136, 136, 136, 0.3);
          box-shadow: 0 6px 20px rgba(136, 136, 136, 0.3);
}
.contact-thanks__button i {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .contact-thanks {
    padding: 2rem 0 8rem;
  }
  .contact-thanks__content {
    padding: 3rem 2rem;
  }
  .contact-thanks__icon {
    font-size: 5rem;
  }
  .contact-thanks__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .contact-thanks__message {
    margin-bottom: 2rem;
  }
  .contact-thanks__message p {
    font-size: 1.4rem;
  }
  .contact-thanks__note {
    font-size: 1.3rem;
    padding: 1.5rem;
  }
  .contact-thanks__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .contact-thanks__button {
    padding: 1.8rem 3rem;
    font-size: 1.5rem;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@-webkit-keyframes fadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.privacy-policy {
  padding: 8rem 0;
  background-color: #FFFFFF;
}
.privacy-policy__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.privacy-policy__content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy__intro {
  text-align: center;
  margin-bottom: 6rem;
}
.privacy-policy__description {
  font-size: 1.6rem;
  line-height: 2;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.privacy-policy__sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.privacy-policy__section {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 3rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #C0C0C0;
}
.privacy-policy__section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 2rem;
  position: relative;
}
.privacy-policy__section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: #C0C0C0;
}
.privacy-policy__section-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}
.privacy-policy__section-content p:last-child {
  margin-bottom: 0;
}
.privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.privacy-policy__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
}
.privacy-policy__list li:last-child {
  margin-bottom: 0;
}
.privacy-policy__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C0C0C0;
  font-weight: 700;
  font-size: 1.8rem;
}
.privacy-policy__contact {
  background-color: rgba(192, 192, 192, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(192, 192, 192, 0.2);
}
.privacy-policy__company {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 1rem;
}
.privacy-policy__address, .privacy-policy__contact-info {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.privacy-policy__address:last-child, .privacy-policy__contact-info:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .privacy-policy {
    padding: 6rem 0;
  }
  .privacy-policy__content {
    padding: 0 1rem;
  }
  .privacy-policy__intro {
    margin-bottom: 4rem;
  }
  .privacy-policy__description {
    font-size: 1.4rem;
    text-align: left;
  }
  .privacy-policy__sections {
    gap: 3rem;
  }
  .privacy-policy__section {
    padding: 2rem;
  }
  .privacy-policy__section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .privacy-policy__section-content p {
    font-size: 1.4rem;
  }
  .privacy-policy__list li {
    font-size: 1.4rem;
    padding-left: 1.5rem;
  }
  .privacy-policy__contact {
    padding: 1.5rem;
  }
  .privacy-policy__company {
    font-size: 1.6rem;
  }
  .privacy-policy__address, .privacy-policy__contact-info {
    font-size: 1.4rem;
  }
}
.ambassador-mv {
  min-height: 100vh;
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.ambassador-mv::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  z-index: 1;
}
.ambassador-mv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.ambassador-mv__content {
  text-align: center;
  color: #FFFFFF;
}
.ambassador-mv__title {
  margin-bottom: 3rem;
}
.ambassador-mv__brand {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.ambassador-mv__main {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #FFFFFF, #C0C0C0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.ambassador-mv__subtitle {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.9);
}
.ambassador-mv__subtitle strong {
  color: #C0C0C0;
  font-size: 2.4rem;
  font-weight: 700;
}
.ambassador-mv__prizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5rem;
  margin-top: 6rem;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.ambassador-mv__prize {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ambassador-mv__prize--runner {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 3px solid rgba(192, 192, 192, 0.4);
  border-radius: 2.8rem;
  padding: 3.2rem 2.8rem;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  min-width: 280px;
}
.ambassador-mv__prize--runner:hover {
  -webkit-transform: translateY(-0.8rem) scale(1);
          transform: translateY(-0.8rem) scale(1);
  background: rgba(255, 255, 255, 0.15);
  border-color: #C0C0C0;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.ambassador-mv__prize--grand {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 193, 7, 0.25), rgba(255, 215, 0, 0.2));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 4px solid #FFD700;
  border-radius: 3rem;
  padding: 3.5rem 3rem;
  -webkit-transform: scale(1.15) translateY(-1.5rem);
          transform: scale(1.15) translateY(-1.5rem);
  min-width: 320px;
  -webkit-box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 0 0 2px rgba(255, 215, 0, 0.3);
          box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.4), 0 0 0 2px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.ambassador-mv__prize--grand::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.15), transparent);
  -webkit-animation: shimmer 3s infinite;
          animation: shimmer 3s infinite;
  z-index: 1;
}
.ambassador-mv__prize--grand:hover {
  -webkit-transform: scale(1.2) translateY(-2rem);
          transform: scale(1.2) translateY(-2rem);
  -webkit-box-shadow: 0 0 70px rgba(255, 215, 0, 0.6), 0 35px 70px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 215, 0, 0.4);
          box-shadow: 0 0 70px rgba(255, 215, 0, 0.6), 0 35px 70px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 215, 0, 0.4);
}
.ambassador-mv__prize-crown {
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.3);
          box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.3);
  z-index: 3;
}
.ambassador-mv__prize-crown i {
  color: #FFFFFF;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.ambassador-mv__prize-ribbon {
  position: absolute;
  top: 0.8rem;
  right: -0.8rem;
  background: linear-gradient(135deg, #DC143C, #B22222);
  color: #FFFFFF;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.ambassador-mv__prize-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, #C0C0C0, #999999);
  color: #1A1A1A;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.ambassador-mv__prize-content {
  position: relative;
  z-index: 2;
}
.ambassador-mv__prize-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.ambassador-mv__prize-sparkles .sparkle {
  position: absolute;
  font-size: 1.2rem;
  -webkit-animation: sparkle 2s infinite;
          animation: sparkle 2s infinite;
}
.ambassador-mv__prize-sparkles .sparkle.sparkle-1 {
  top: 10%;
  left: 15%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.ambassador-mv__prize-sparkles .sparkle.sparkle-2 {
  top: 20%;
  right: 10%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.ambassador-mv__prize-sparkles .sparkle.sparkle-3 {
  bottom: 25%;
  left: 10%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ambassador-mv__prize-sparkles .sparkle.sparkle-4 {
  bottom: 15%;
  right: 20%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.ambassador-mv__prize i {
  font-size: 3.2rem;
  color: #C0C0C0;
  margin-bottom: 1.2rem;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ambassador-mv__prize-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ambassador-mv__prize-amount {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #C0C0C0;
  margin-bottom: 0.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ambassador-mv__prize-amount .currency {
  font-size: 1.9rem;
  font-weight: 600;
}
.ambassador-mv__prize-count {
  display: block;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.ambassador-mv__prize--grand i {
  color: #FFD700 !important;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  font-size: 4rem !important;
}
.ambassador-mv__prize--grand .ambassador-mv__prize-title {
  color: #FFD700 !important;
  font-weight: 700 !important;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  font-size: 1.9rem !important;
}
.ambassador-mv__prize--grand .ambassador-mv__prize-amount {
  color: #FFD700 !important;
  font-size: 4rem !important;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  font-weight: 900 !important;
}
.ambassador-mv__prize--grand .ambassador-mv__prize-amount .currency {
  font-size: 2.5rem !important;
  color: #FFD700 !important;
}
.ambassador-mv__prize--grand .ambassador-mv__prize-count {
  color: rgba(255, 215, 0, 0.9) !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
}

.deadline {
  padding: 6rem 0;
  background: linear-gradient(135deg, #C0C0C0 0%, #d0d0d0 100%);
  text-align: center;
  position: relative;
}
.deadline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.deadline__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.deadline__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.deadline__date {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.deadline__note {
  font-size: 1.6rem;
  color: #1A1A1A;
  font-weight: 500;
}

.overview {
  padding: 12rem 0;
  background-color: #FFFFFF;
  position: relative;
}
.overview__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.overview__inner .section-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.overview__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.overview__item {
  background: #FFFFFF;
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.overview__item:hover {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.overview__item-icon {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #C0C0C0, #e0e0e0);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 2rem;
}
.overview__item-icon i {
  font-size: 2.4rem;
  color: #FFFFFF;
}
.overview__item-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}
.overview__item-content p {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
}

.benefits {
  padding: 12rem 0;
  background-color: #2A2A2A;
  position: relative;
}
.benefits__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.benefits__list {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.benefits__item {
  background: #FFFFFF;
  border-radius: 2rem;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.benefits__item:hover {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.benefits__item-icon {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #C0C0C0, #e0e0e0);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.benefits__item-icon i {
  font-size: 2.4rem;
  color: #FFFFFF;
}
.benefits__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.benefits__item-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.benefits__item-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
}
.benefits__item-content p:last-child {
  margin-bottom: 0;
}
.benefits__prizes {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.benefits__prize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #C0C0C0, #d0d0d0);
  border-radius: 1rem;
  color: #FFFFFF;
  font-weight: 500;
}
.benefits__prize-icon {
  font-size: 1.8rem;
}

.about-brand {
  padding: 12rem 0;
  background-color: #1A1A1A;
  position: relative;
}
.about-brand__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-brand__content {
  max-width: 1000px;
  margin: 0 auto;
}
.about-brand__text {
  text-align: center;
  margin-bottom: 6rem;
}
.about-brand__description {
  font-size: 1.8rem;
  line-height: 2;
  color: #FFFFFF;
  margin-bottom: 3rem;
}
.about-brand__description:last-of-type {
  margin-bottom: 4rem;
}
.about-brand__catch {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #C0C0C0;
  line-height: 1.8;
}
.about-brand__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.about-brand__feature {
  background: #FFFFFF;
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-brand__feature:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
.about-brand__feature-icon {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #C0C0C0, #e0e0e0);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 2rem;
}
.about-brand__feature-icon i {
  font-size: 2.4rem;
  color: #FFFFFF;
}
.about-brand__feature h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.about-brand__feature p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1A1A1A;
}

.apply {
  padding: 12rem 0;
  background: linear-gradient(135deg, #C0C0C0 0%, #d0d0d0 100%);
  text-align: center;
  position: relative;
}
.apply::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}
.apply__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.apply__inner .section-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.apply__text {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 3rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}
.apply__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  color: #C0C0C0;
  padding: 2rem 4rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}
.apply__button:hover {
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #ffffff;
}
.apply__button i {
  font-size: 2rem;
}
.apply__note {
  font-size: 1.4rem;
  color: #333333;
  font-style: italic;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

@-webkit-keyframes shimmer {
  0% {
    -webkit-transform: translateX(-100%) translateY(-100%) rotate(45deg);
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(100%) translateY(100%) rotate(45deg);
            transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes shimmer {
  0% {
    -webkit-transform: translateX(-100%) translateY(-100%) rotate(45deg);
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(100%) translateY(100%) rotate(45deg);
            transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
@-webkit-keyframes goldPulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 15px 35px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}
@keyframes goldPulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  50% {
    -webkit-box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 15px 35px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 15px 35px rgba(0, 0, 0, 0.3);
  }
}
@-webkit-keyframes sparkle {
  0%, 100% {
    opacity: 0;
    -webkit-transform: scale(0.5) rotate(0deg);
            transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2) rotate(180deg);
            transform: scale(1.2) rotate(180deg);
  }
}
@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    -webkit-transform: scale(0.5) rotate(0deg);
            transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2) rotate(180deg);
            transform: scale(1.2) rotate(180deg);
  }
}
@media screen and (max-width: 768px) {
  .ambassador-mv {
    min-height: 80vh;
    padding: 12rem 0 6rem;
  }
  .ambassador-mv__brand {
    font-size: 2.4rem;
  }
  .ambassador-mv__main {
    font-size: 3.2rem;
  }
  .ambassador-mv__subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .ambassador-mv__subtitle strong {
    font-size: 2rem;
  }
  .ambassador-mv__prizes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ambassador-mv__prize {
    width: 90%;
    max-width: 300px;
  }
  .ambassador-mv__prize--grand {
    -webkit-transform: scale(1.05) translateY(0);
            transform: scale(1.05) translateY(0);
    padding: 2.5rem 2rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .ambassador-mv__prize--grand:hover {
    -webkit-transform: scale(1.08) translateY(-0.5rem);
            transform: scale(1.08) translateY(-0.5rem);
  }
  .ambassador-mv__prize--grand .ambassador-mv__prize-crown {
    width: 2.5rem;
    height: 2.5rem;
    top: -1.2rem;
  }
  .ambassador-mv__prize--grand .ambassador-mv__prize-crown i {
    font-size: 1.3rem;
  }
  .ambassador-mv__prize--grand .ambassador-mv__prize-ribbon {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
  }
  .ambassador-mv__prize--grand i {
    font-size: 3rem !important;
  }
  .ambassador-mv__prize--grand .ambassador-mv__prize-amount {
    font-size: 3rem !important;
  }
  .ambassador-mv__prize--grand .ambassador-mv__prize-amount .currency {
    font-size: 2rem !important;
  }
  .ambassador-mv__prize--grand .ambassador-mv__prize-sparkles .sparkle {
    font-size: 1rem;
  }
  .ambassador-mv__prize--runner {
    -webkit-transform: scale(1);
            transform: scale(1);
    padding: 2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ambassador-mv__prize--runner:hover {
    -webkit-transform: translateY(-0.3rem) scale(1.02);
            transform: translateY(-0.3rem) scale(1.02);
  }
  .ambassador-mv__prize--runner .ambassador-mv__prize-badge {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
    top: -0.6rem;
    right: -0.6rem;
  }
  .ambassador-mv__prize-amount {
    font-size: 2.4rem;
  }
  .ambassador-mv__prize-amount .currency {
    font-size: 1.6rem;
  }
  .deadline {
    padding: 4rem 0;
  }
  .deadline__title {
    font-size: 2rem;
  }
  .deadline__date {
    font-size: 2.8rem;
  }
  .deadline__note {
    font-size: 1.4rem;
  }
  .overview {
    padding: 8rem 0;
  }
  .overview__details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .overview__item {
    padding: 2rem;
  }
  .overview__item-icon {
    width: 5rem;
    height: 5rem;
  }
  .overview__item-icon i {
    font-size: 2rem;
  }
  .overview__item-content h3 {
    font-size: 1.6rem;
    color: #000000;
  }
  .overview__item-content p {
    font-size: 1.8rem;
    color: #333333;
  }
  .benefits {
    padding: 8rem 0;
  }
  .benefits__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .benefits__item:hover {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  .benefits__item-icon {
    width: 5rem;
    height: 5rem;
  }
  .benefits__item-icon i {
    font-size: 2rem;
  }
  .benefits__item-content h3 {
    font-size: 1.8rem;
  }
  .benefits__item-content p {
    font-size: 1.4rem;
  }
  .benefits__prizes {
    margin-top: 1rem;
  }
  .benefits__prize {
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
  }
  .benefits__prize-icon {
    font-size: 1.6rem;
  }
  .about-brand {
    padding: 8rem 0;
  }
  .about-brand__text {
    margin-bottom: 4rem;
  }
  .about-brand__description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .about-brand__description:last-of-type {
    margin-bottom: 3rem;
  }
  .about-brand__catch {
    font-size: 2rem;
  }
  .about-brand__features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-brand__feature {
    padding: 2rem;
  }
  .about-brand__feature-icon {
    width: 5rem;
    height: 5rem;
  }
  .about-brand__feature-icon i {
    font-size: 2rem;
  }
  .about-brand__feature h4 {
    font-size: 1.6rem;
  }
  .about-brand__feature p {
    font-size: 1.3rem;
  }
  .apply {
    padding: 8rem 0;
  }
  .apply__text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 600;
  }
  .apply__button {
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .apply__button i {
    font-size: 1.8rem;
  }
  .apply__note {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 500;
  }
}
.mv {
  height: 100vh;
  background: url("../images/mv-bg.jpg") center/cover;
  background-color: #1A1A1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}
.mv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mv__title {
  width: 25%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-animation: mvTitleIn 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: mvTitleIn 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mv__title img {
  width: 100%;
  height: auto;
}
.mv__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease 1s forwards;
          animation: fadeIn 0.8s ease 1s forwards;
}
.mv__scroll span {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  color: #C0C0C0;
}
.mv__scroll-line {
  width: 1px;
  height: 6rem;
  background-color: #C0C0C0;
  margin: 0 auto;
  -webkit-animation: scrollLine 2s infinite;
          animation: scrollLine 2s infinite;
}

.inner-container, .faq__inner, .products__inner, .concept__inner, .contact__inner, .history__inner, .message__inner, .about__inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.about {
  padding: 12rem 0;
  background-color: #1A1A1A;
  position: relative;
}
.about__inner {
  position: relative;
  z-index: 2;
}
.about__content {
  max-width: 800px;
  margin: 0 auto;
}
.about__table {
  background-color: #FFFFFF;
  border-radius: 2rem;
  padding: 3rem;
  -webkit-box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
          box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
}
.about__table table {
  width: 100%;
  border-collapse: collapse;
}
.about__table table th,
.about__table table td {
  padding: 1.5rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(192, 192, 192, 0.3);
  color: #1A1A1A;
}
.about__table table th {
  width: 30%;
  font-weight: 700;
  color: #C0C0C0;
  font-size: 1.5rem;
}
.about__table table td {
  font-size: 1.5rem;
  line-height: 1.8;
}
.about__table table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about__table table ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.about__table table ul li:last-child {
  margin-bottom: 0;
}
.about__table table ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #1A1A1A;
  border-radius: 50%;
}

.message {
  padding: 12rem 0;
  background-color: #2A2A2A;
  position: relative;
}
.message__catch {
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.message__catch-en {
  font-size: 3rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 1rem;
}
.message__catch-ja {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 1rem;
}
.message__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.message__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  -webkit-box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
          box-shadow: 0 10px 30px rgba(212, 165, 165, 0.1);
}
.message__text p {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .message__text p {
    font-size: 1.4rem;
  }
}
.message__name {
  font-weight: 700;
  color: #C0C0C0;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
}

.history {
  padding: 12rem 0;
  background-color: #373737;
  position: relative;
}
.history__content {
  max-width: 900px;
  margin: 0 auto;
}
.history__timeline {
  position: relative;
}
.history__timeline::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#C0C0C0), to(rgba(192, 192, 192, 0.3)));
  background: linear-gradient(to bottom, #C0C0C0, rgba(192, 192, 192, 0.3));
}
.history__year {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 6rem;
}
.history__year:last-child {
  margin-bottom: 0;
}
.history__year::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #C0C0C0;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  -webkit-box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
          box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}
.history__year h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 2rem;
  position: relative;
}
.history__year ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.history__year ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #FFFFFF;
}
.history__year ul li:last-child {
  margin-bottom: 0;
}
.history__year ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C0C0C0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .history__timeline::before {
    left: 1.5rem;
  }
  .history__year {
    padding-left: 4rem;
  }
  .history__year::before {
    left: 1.2rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .history__year h3 {
    font-size: 2rem;
  }
  .history__year ul li {
    font-size: 1.4rem;
  }
}

.contact {
  padding: 12rem 0;
  text-align: center;
  background-color: #2A2A2A;
}
.contact__text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
.contact__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: #C0C0C0;
  color: #1A1A1A;
  padding: 2rem 4rem;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__button:hover {
  background-color: #dadada;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
}
.contact__button i {
  font-size: 1.8rem;
}

.section-title-en {
  font-size: 8rem;
  font-weight: 700;
  color: rgba(192, 192, 192, 0.1);
  position: absolute;
  right: -8%;
  top: 35%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: 1;
  white-space: nowrap;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  text-orientation: mixed;
}

@media screen and (max-width: 768px) {
  .section-title-en {
    left: 41px;
    top: -3%;
    -webkit-transform-origin: left;
            transform-origin: left;
    z-index: 0;
  }
}
.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFF;
  position: relative;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.section-title--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section-title--left::before {
  right: auto;
  left: 0;
}
.section-title--left::after {
  right: auto;
  left: 0;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 3.2rem;
    width: 47%;
  }
  .about,
  .message {
    padding: 8rem 0;
  }
  .about__content,
  .message__content {
    grid-template-columns: 1fr;
  }
  .about__table {
    padding: 2rem;
  }
  .about__table table th,
  .about__table table td {
    padding: 1.2rem;
    font-size: 1.4rem;
  }
  .about__table table th {
    width: 35%;
  }
  .contact {
    padding: 8rem 0;
  }
  .contact__text {
    font-size: 1.6rem;
  }
  .contact__button {
    padding: 1.5rem 3rem;
  }
}
.concept {
  padding: 12rem 0;
  background-color: #1A1A1A;
  position: relative;
}
.concept__content {
  max-width: 800px;
  margin: 0 auto;
}
.concept__text {
  text-align: center;
}
.concept__text .concept__catch {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #C0C0C0;
  margin-bottom: 3rem;
}
.concept__text .concept__description {
  font-size: 1.6rem;
  line-height: 2;
  color: #FFFFFF;
  margin-bottom: 5rem;
}
.concept__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.concept__point {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: #2A2A2A;
  border-radius: 1rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 100%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.concept__point:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
.concept__point h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #C0C0C0;
  margin-bottom: 1.5rem;
}
.concept__point p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .concept {
    padding: 8rem 0;
  }
  .concept__text .concept__catch {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .concept__text .concept__description {
    margin-bottom: 3rem;
    text-align: left;
    font-size: 1.4rem;
  }
  .concept__points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .concept__point {
    padding: 2rem 1.5rem;
  }
}
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes mvTitleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(30px);
            transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

@keyframes mvTitleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(30px);
            transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.products {
  padding: 12rem 0;
  background-color: #FFFFFF;
  position: relative;
}
.products .section-title {
  color: #1A1A1A;
}
.products__content {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.products__image img {
  width: 100%;
  height: auto;
}
.products__info .products__name {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.products__info .products__description {
  font-size: 1.4rem;
  line-height: 2;
  color: #1A1A1A;
  margin-bottom: 4rem;
}
.products__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.products__feature {
  text-align: center;
  padding: 2rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.products__feature:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
.products__feature i {
  font-size: 2.4rem;
  color: #C0C0C0;
  margin-bottom: 1.5rem;
}
.products__feature h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.products__feature p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1A1A1A;
}

@media screen and (max-width: 768px) {
  .products {
    padding: 8rem 0;
  }
  .products__content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .products__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .products__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .products__info .products__name {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .products__info .products__description {
    margin-bottom: 3rem;
  }
  .products__features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .products__feature {
    padding: 1.5rem;
  }
}
.products__button {
  margin-top: 3rem;
  text-align: center;
}
.products__button .btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", serif;
}
.products__button .btn--primary {
  background: #000;
  color: #FFFFFF;
  -webkit-box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
          box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}
.products__button .btn--primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
          box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}
.products__button .btn--primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.faq {
  padding: 12rem 0;
  background-color: #FFFFFF;
}
.faq__content {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(192, 192, 192, 0.3);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__question {
  padding: 2.5rem 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__question h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A1A1A;
  padding-right: 3rem;
}
.faq__icon {
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__icon i {
  font-size: 1.6rem;
  color: #C0C0C0;
}
.faq__answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq__answer p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1A1A1A;
  padding-bottom: 2.5rem;
}
.faq__item.is-active .faq__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__item.is-active .faq__answer {
  max-height: 500px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 8rem 0;
  }
  .faq__question {
    padding: 2rem 0;
  }
  .faq__question h3 {
    font-size: 1.6rem;
  }
  .faq__answer {
    padding: 0 0 2rem;
  }
  .faq__answer p {
    font-size: 1.4rem;
  }
}
.wpcf7-response-output {
  display: none !important;
}

/* Contact Form 7の独自エラーメッセージを非表示 */
.wpcf7-not-valid-tip {
  display: none !important;
}

/* Contact Form 7のスクリーンリーダー用エラーメッセージも非表示 */
.screen-reader-response {
  display: none !important;
}/*# sourceMappingURL=main.css.map */