@charset "UTF-8";
/* =======================
  Variables
========================== */
:root {
  --ivory: #fafafa;
  --yellowgreen: #d1f91c;
  --yellow: #f6f8e1;
  --red: #ce0404;

  --font_100: clamp(3.2rem, 0.727rem + 7.727vw, 10rem);
  --font_98: clamp(2.8rem, 0.255rem + 7.955vw, 9.8rem);
  --font_88: clamp(5.6rem, 4.436rem + 3.636vw, 8.8rem);
  --font_54: clamp(3.6rem, 2.945rem + 2.045vw, 5.4rem);
  --font_30: clamp(1.6rem, 1.091rem + 1.591vw, 3rem);
  --font_24: clamp(2.2rem, 1.855rem + 0.455vw, 2.4rem);
  --font_22: clamp(2rem, 1.927rem + 0.227vw, 2.2rem);
  --font_20: clamp(1.5rem, 1.318rem + 0.568vw, 2rem);
  --font_18: clamp(1.6rem, 1.527rem + 0.227vw, 1.8rem);
  --font_17: clamp(1.5rem, 1.427rem + 0.227vw, 1.7rem);
  --font_16: clamp(1.4rem, 1.327rem + 0.227vw, 1.6rem);
  --font_15: clamp(1.3rem, 1.227rem + 0.227vw, 1.5rem);
  --font_14: clamp(1.2rem, 1.127rem + 0.227vw, 1.4rem);
  --font_13: clamp(1.1rem, 1.027rem + 0.227vw, 1.3rem);
  --font_12: clamp(1rem, 0.927rem + 0.227vw, 1.2rem);
  --font_10: clamp(0.8rem, 0.727rem + 0.227vw, 1rem);

  --space_120: clamp(50px, 5vw, 120px);
  --space_80: clamp(50px, 5vw, 80px);
  --space_60: clamp(40px, 5vw, 60px);
  --space_40: clamp(20px, 5vw, 40px);
  --space_30: clamp(10px, 5vw, 30px);
  --space_20: clamp(10px, 5vw, 20px);
}
/* =======================
  Base
========================== */
html {
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  color: #4f5353;
  font-family:
    YakuHanJP, "Noto Sans JP", "Source Han Sans", "Yu Gothic", "Hiragino Sans",
    "Meiryo", sans-serif;
  font-weight: 400;
  font-size: var(--font_16);
  letter-spacing: 0.02em;
  line-height: 1.8;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--ivory);
  overflow-x: hidden;
  text-align: justify;
}

img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.15em;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
address {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  line-height: 1.5;
}
iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
/* =======================
  Layout
========================== */
.inner {
  margin-inline: auto;
  max-width: 1200px;
  width: 90%;
}
/* =======================
  Utilities
========================== */
.uppercase {
  text-transform: uppercase;
}
.br-line {
  display: none;
}
@media screen and (max-width: 1333px) and (min-width: 1109px) {
  .br-line {
    display: block;
  }
}
/* =======================
  Buttons
========================== */
/* =======================
  フェードイン
========================== */
.fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade.is-active {
  opacity: 1;
}
/* =======================
  タイトル
========================== */
.section__heading {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
.section__heading-en {
  position: absolute;
  top: -16px;
  left: 45%;
  transform: translateX(-50%) rotate(-8deg);
  font-family: "austin-pen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--font_88);
  line-height: 1;
  color: rgba(209, 249, 28, 0.55);
  white-space: nowrap;
}
.section__heading-title {
  position: relative;
  z-index: 1;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: var(--font_88);
  font-weight: 700;
  line-height: 1;
  color: #000;
}
.section__heading-text {
  font-size: var(--font_16);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .section__heading {
    margin-bottom: 30px;
  }
  .adjustment__title {
    font-size: 4.6rem;
  }
}
/* =========================
  Header
========================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  height: 80px;
  background: transparent;
  box-sizing: border-box;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  padding: 0 3%;
  background: #f4f4f4;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.header__logo {
  flex-shrink: 0;
  margin: 0;
}
.header__logo-link {
  display: block;
}
.header__logo-image {
  display: block;
  width: 87px;
  height: auto;
}
/*nav*/
.global__nav {
  margin-left: auto;
}
.global__nav-list {
  display: flex;
  align-items: center;
  gap: 42px;
}
.global__nav-item {
  flex-shrink: 0;
}
.global__nav-link {
  display: inline-block;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: var(--font_18);
  font-weight: 600;
  line-height: 1;
  color: #333;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}
.global__nav-link:hover {
  opacity: 0.7;
}
/*utility*/
.header__utility {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__sns-list {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__sns-item {
  line-height: 1;
}
.header__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__sns-link:hover {
  opacity: 0.7;
}
.header__sns-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.header__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 48px;
  white-space: nowrap;
  padding: 0 28px;
  border-radius: 9999px;
  background: var(--yellowgreen);
  font-size: var(--font_15);
  font-weight: 700;
  color: #000;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* キラッと光 */
.header__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
}

/* ホバー */
.header__button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.header__button:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
@media screen and (max-width: 1200px) {
  .global__nav-list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    column-gap: 20px;
  }
  .header__logo-image {
    width: 68px;
  }
  .header__sns-icon {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
  .header__sns-list {
    gap: 5px;
  }
  .header__utility {
    gap: 10px;
  }
  .header__button {
    min-width: 140px;
    min-height: 42px;
    padding: 0 20px;
  }
}
/* =======================
  Footer
========================== */
.footer {
  background: #e8e6e3;
  margin-top: 120px;
}
.footer__inner {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 60px;
  }
  .footer__inner {
    padding-top: 60px;
  }
}
/* =========================
  Contact
========================= */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 48px 56px;
  border-radius: 40px;
  min-height: 320px;
  background: url("../images/common/contact-base.png") center / cover no-repeat;
  text-decoration: none;
  color: #111;
}
.footer-contact__title {
  font-size: var(--font_88);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}
.footer-contact__subtitle {
  font-size: var(--font_20);
  font-weight: bold;
}
.footer-contact__button {
  width: 96px;
  height: 96px;
  background: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.footer-contact:hover .footer-contact__button {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.footer-contact__arrow {
  color: #fff;
  font-size: 2.8rem;
}
@media screen and (max-width: 620px) {
  .footer-contact {
    padding: 40px 30px;
    border-radius: 40px;
    min-height: 240px;
  }
  .footer-contact__button {
    margin: 0 0 0 auto;
    width: 60px;
    height: 60px;
  }
}
/* =========================
  Footer main
========================= */
.footer__main {
  display: flex;
  justify-content: space-between;
  row-gap: 30px;
  padding: 60px 0 40px;
}
.footer__logo img {
  width: 150px;
}
.footer__company {
  margin-top: 16px;
}
.footer__company-text {
  font-size: var(--font_15);
}
/* NAV */
.footer__nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 10px;
  margin: 0;
  padding: 0;
}
.footer__nav-item a {
  font-weight: 500;
  color: #333;
}
/* SNS */
.footer__sns {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__sns-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .footer__main {
    flex-direction: column-reverse;
    padding-top: 26px;
  }
  .footer__nav-list {
    display: none;
  }
  .footer__brand {
    margin: 0 auto;
  }
  .footer__logo {
    display: flex;
    justify-content: center;
  }
  .footer__nav-area {
    gap: 0;
  }
  .footer__sns {
    gap: 16px;
  }
  .footer__sns-icon {
    width: 26px;
    height: 26px;
  }
  .footer__company {
    text-align: center;
  }
}
/* =========================
  Copyright
========================= */
.footer__copy {
  background: #000;
  text-align: center;
  padding: 16px;
}
.footer__copy-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  margin: 0;
}
/* =========================
  privacy__policy
========================= */
.privacy__policy {
  padding-top: 100px;
}
.privacy__policy .section__heading-en {
  font-size: var(--font_54);
}
.privacy__policy-mv-text {
  line-height: 1.9;
  font-weight: 500;
  color: #222;
}
.privacy__policy-content {
  margin-top: 30px;
}
.privacy__policy-section {
  padding-bottom: 40px;
}
.privacy__policy-box {
  padding: 40px;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.privacy__policy-heading {
  margin-bottom: 10px;
  font-size: var(--font_18);
  font-weight: 500;
  line-height: 1.6;
  color: #222;
}
.privacy__policy-text {
  line-height: 1.9;
  color: #222;
}
.privacy__policy-list {
  display: grid;
  margin-top: 16px;
}
.privacy__policy-item {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.9;
  color: #222;
}
.privacy__policy-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.privacy__policy-contact-text {
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.8;
  color: #222;
}
.privacy__policy-contact-link a {
  font-weight: 700;
  line-height: 1.8;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.privacy__policy-contact-link a:hover {
  opacity: 0.7;
}
.privacy__policy-date {
  margin-top: 40px;
  text-align: right;
}
.privacy__policy-date-text {
  font-size: var(--font_16);
  line-height: 1.8;
  color: #666;
}
@media screen and (max-width: 767px) {
  .privacy__policy {
    padding-top: 60px;
  }
  .privacy__policy .section__heading-en {
    white-space: inherit;
  }
  .privacy__policy-mv-text {
    line-height: 1.8;
  }
  .privacy__policy-box {
    padding: 24px 16px;
  }
  .privacy__policy-heading {
    margin-bottom: 12px;
    font-size: var(--font_20);
    line-height: 1.6;
  }

  .privacy__policy-text {
    font-size: var(--font_16);
    line-height: 1.8;
  }

  .privacy__policy-list {
    gap: 8px;
    margin-top: 12px;
  }

  .privacy__policy-item {
    font-size: var(--font_16);
    line-height: 1.8;
  }

  .privacy__policy-contact {
    margin-top: 16px;
    padding: 18px 14px;
  }

  .privacy__policy-contact-name,
  .privacy__policy-contact-text,
  .privacy__policy-contact-link a {
    font-size: var(--font_16);
    line-height: 1.8;
  }

  .privacy__policy-date {
    margin-top: 28px;
  }

  .privacy__policy-date-text {
    font-size: var(--font_14);
  }
}
/* =========================
  contact
========================= */
.contact {
  padding-top: 100px;
}
.page__contact-text {
  margin-bottom: 60px;
}
.smf-form--letter .smf-text-control__control {
  font-size: 1.6rem;
  padding: 14px 20px;
}
.smf-form .smf-textarea-control__control {
  font-size: 1.6rem;
  padding: 14px 20px;
}
.smf-form .smf-radio-button-control {
  align-items: center;
}
[data-screen="back"]
  .smf-progress-tracker__item--input
  .smf-progress-tracker__item__number,
[data-screen="complete"]
  .smf-progress-tracker__item--complete
  .smf-progress-tracker__item__number,
[data-screen="confirm"]
  .smf-progress-tracker__item--confirm
  .smf-progress-tracker__item__number,
[data-screen="input"]
  .smf-progress-tracker__item--input
  .smf-progress-tracker__item__number,
[data-screen="invalid"]
  .smf-progress-tracker__item--input
  .smf-progress-tracker__item__number {
  background-color: #333;
}
.smf-progress-tracker__item__number {
  width: 40px;
  height: 40px;
}
.smf-progress-tracker__item:after,
.smf-progress-tracker__item:before {
  top: 20px;
}
.smf-form--letter .smf-item {
  text-align: left;
  padding: 20px 0;
}
.has-vivid-red-color {
  border: 1px solid var(--red);
  font-size: var(--font_12);
  padding: 3px 10px;
}
.smf-radio-buttons-control__control {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 5px;
}
.smf-item__label {
  font-weight: bold;
}
.smf-item__description {
  font-size: var(--font_14);
}
.field-text-privacy a {
  display: inline;
  border-bottom: 1px solid #333;
}
.field-group-privacy {
  display: flex;
  justify-content: center;
}
.smf-label {
  text-align: center;
}
.field-group-privacy .smf-checkbox-control__label {
  display: none;
}
.smf-action .smf-button-control__control[data-action="confirm"],
.smf-action .smf-button-control__control[data-action="complete"] {
  background: var(--yellowgreen);
  color: #000;
  font-size: var(--font_16);
  border-radius: 30px;
  border: none;
  padding: 10px 80px;
}
.smf-action .smf-button-control__control[data-action="back"] {
  border-radius: 30px;
  padding: 10px 40px;
  margin-bottom: 1em;
}
.field-checkbox-privacy .smf-placeholder {
  display: flex;
  column-gap: 10px;
}
.field-checkbox-privacy .smf-error-messages {
  margin-top: 0;
}
body .is-layout-flex {
  flex-wrap: wrap;
}
.grecaptcha-badge {
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .pageContact-description {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 60px;
  }
  .page__contact-text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .smf-form--letter .smf-item {
    padding: 10px 0;
  }
}
/* =========================
  404
========================= */
.notfound {
  padding-top: 100px;
}
.notfound .section__heading-en {
  font-size: var(--font_54);
}
.page__notfound-text {
  margin-bottom: 60px;
  text-align: center;
}
.notfound-link {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .notfound {
    padding-top: 60px;
  }
  .page__notfound-text {
    margin-bottom: 40px;
    text-align: left;
  }
}
