@charset "UTF-8";
:root {
  /* Design */
  --design-widith-sm: 375;
  --design-widith-md: 768;
  --design-widith-lg: 1200;
  /* Color */
  --c-white: #fff;
  --c-black: #3C3C43;
  --c-red: #E12235;
  --c-yellow: #FFEC89;
  --c-green: #008E3F;
  --c-brown: #4C271C;
  --c-orange: #FF7512;
  --color-gra: #969696;
  --c-light-gray:#F8F6F6;
  /* Font Family */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  /* Font Size */
  /*---------- SP ----------*/
  /*40px*/
  --font-size-xl-sp: min(10.2222vw, 2.5rem);
  /*32px*/
  --font-size-l-sp: min(8.533333vw, 2rem);
  /*24px*/
  --font-size-m-sp: min(6.4vw, 1.5rem);
  /*20px*/
  --font-size-s-sp: min(5.33333vw, 1.25rem);
  /*18px*/
  --font-size-2s-sp: min(4.8vw, 1.125rem);
  /*16px*/
  --font-size-regular-sp: min(4.26666vw, 1rem);
  /*14px*/
  --font-size-ss-sp: min(3.733333vw, .875rem);
  /*---------- PC----------*/
  /*48px*/
  --font-size-xl-pc: min(4vw, 3rem);
  /*40px*/
  --font-size-l-pc: min(3.33333vw, 2.5rem);
  /*32px*/
  --font-size-m-pc: min(2.66666vw, 2rem);
  /*28px*/
  --font-size-sm-pc: min(2.33333vw, 1.75rem);
  /*24px*/
  --font-size-s-pc: min(2vw, 1.5rem);
  /*20px*/
  --font-size-2s-pc: min(1.66666vw, 1.25rem);
  /*18x*/
  --font-size-3s-pc: min(1.5vw, 1.125rem);
  /*16px*/
  --font-size-regular-pc: min(1.33333vw, 1rem);
  /*14px*/
  --font-size-mini-pc: min(1.16666vw, 0.875rem);
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-ex-bold: 900;
  /* Line Height */
  --lh-ss: 1;
  --lh-s: 1.25;
  --lh-m: 1.4;
  --lh-l: 1.8;
  --lh-xl: 2;
  /* Letter Spacing */
  --tracking-normal: normal;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  /* Margin */
  /* 8 */
  --space-xs: .5rem;
  --space-s: 1rem;
  /* 24 */
  --space-m: 1.5rem;
  /* 32 */
  --space-l: 2rem;
  /* 40 */
  --space-xl: 2.5rem;
  /* 56 */
  --space-xxl: 3.5rem;
  /* Container Size & Offset */
  --max-container-size: 1440px;
  --offset-xs: 1.5vw;
  --offset-sm: 2.5vw;
  --offset-md: 5vw;
  --offset-lg: 10vw;
  /* Radius */
  --radius-sm: 4px;
  --radius-m: 8px;
  --radius-md: 16px;
  --radius-lg: 2.5rem;
  --radius-full: 50%;
  /* Transition & Animation */
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 1.2s;
  --ease-in-sine: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

em {
  font-style: normal;
}

/*========== responsive ==========*/
/* 374px以下  SPデザイン以下 */
/* 〜767px SPデザイン */
/* 768px〜 PCデザイン */
/* 768px〜1199px  タブレットのみ */
/* 1300px以上  PCコンテンツ幅以上 */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/* stylelint-disable */
/*! Oreset.css v2.0.0 | MIT License | https://github.com/hilosiva/Oreset.css */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  line-height: var(--lh-l);
  font-family: var(--font-ja);
  font-feature-settings: "palt";
  color: var(--color-black-secondary);
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style-type: "";
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden=until-found])) {
  display: none;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled=true]) {
  cursor: not-allowed;
}

:where([aria-busy=true]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden=false][hidden]) {
  display: initial;
}

:where([aria-hidden=false][hidden]):not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/*
  # aタグ
---------------------------------------------- */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  ::-webkit-backdrop {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
  *,
*:before,
*:after,
::backdrop {
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  /* 文字色を親から継承 */
  color: inherit;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  /*-webkit-appearance: none;
    margin: 0;*/
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* input */
input {
  /* inputの枠線を消す */
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

/**
  * Remove padding
  */
option {
  padding: 0;
}

/**
  * Reset to invisible
  */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/*
  # other
---------------------------------------------- */
/*-- telスマホのみ --*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

/* マーカーペン */
.js-marker {
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, var(--c-yellow), var(--c-yellow));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 30%;
  transition: all 0.7s ease-in-out;
}

/* アニメーション発火時 */
.js-marker.inview {
  background-size: 100% 30%;
}

/* フェードイン(初期値) */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}

/* フェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  transition-delay: 0.3s;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* ===============================================
 ボタン共通
=============================================== */
.c-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19.375rem;
  max-width: 100%;
  height: 5rem;
  border-radius: 0.5rem;
  border: solid 1px var(--c-black);
  font-size: var(--font-size-regular-sp);
  transition: var(--duration-fast);
}
@media screen and (min-width: 768px) {
  .c-button a {
    font-size: var(--font-size-regular-pc);
  }
}

/* ===============================================
電話
=============================================== */
.c-button-tel a {
  flex-direction: column;
}
.c-button-tel a:hover {
  background-color: #ddd;
}
.c-button-tel a p {
  font-size: 0.625rem;
  letter-spacing: var(--tracking-wider);
}
.c-button-tel a img {
  max-width: 1.4375rem;
}

.c-button-tel-number {
  display: flex;
  align-items: center;
  font-family: var(--font-en);
  font-weight: var(--font-medium);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .c-button-tel-number {
    font-size: var(--font-size-s-pc);
  }
}

/* ===============================================
 メール
=============================================== */
.c-button-mail a {
  color: var(--c-white);
  align-items: center;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-bold);
  letter-spacing: 0.16em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-button-mail a {
    font-size: min(1.25vw, 0.9375rem);
  }
}
.c-button-mail a:hover {
  background-color: #292626;
}
.c-button-mail a img {
  max-width: 1.125rem;
  margin-right: 0.25rem;
}

.c-box-two {
  display: flex;
}

.c-card {
  background-color: var(--color-white);
}

.c-card-large {
  border-radius: var(--radius-md);
  box-shadow: 0px 0px 30px 0px rgba(60, 60, 67, 0.16);
}

.c-title {
  text-align: center;
  color: var(--color-green-primary);
  font-size: var(--font-size-m-sp);
  letter-spacing: var(--tracking-wider);
  line-height: var(--lh-m);
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: var(--font-size-l-pc);
  }
}

.c-title-en {
  display: block;
  color: var(--c-red);
  font-family: var(--font-en);
  font-size: var(--font-size-ss-sp);
  line-height: var(--lh-ss);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: var(--font-size-regular-pc);
  }
}

.c-title-ja {
  line-height: var(--lh-m);
  font-weight: var(--font-medium);
  letter-spacing: 0.2em;
}

/* 下線あり */
.c-title-border {
  position: relative;
}
.c-title-border:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  width: 2rem;
  height: 3px;
  background-color: var(--c-red);
  left: 50%;
  transform: translateX(-50%);
}

/* ＼ ／ タイトル */
.c-title-l {
  font-size: var(--font-size-m-sp);
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .c-title-l {
    font-size: var(--font-size-xl-pc);
  }
}

.c-title-line {
  position: relative;
}

.c-title-big {
  text-align: center;
}
.c-title-big .-ja {
  margin-bottom: 1rem;
  display: block;
  color: var(--c-red);
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .c-title-big .-ja {
    font-size: var(--font-size-regular-pc);
  }
}
.c-title-big .-en {
  color: #8C8C8C;
  font-family: var(--font-en);
  font-size: min(10.66666vw, 2.5rem);
  font-weight: var(--font-semi-bold);
  line-height: var(--lh-ss);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-title-big .-en {
    font-size: 5.5rem;
  }
}

.c-text-lead {
  font-size: var(--font-size-regular-sp);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .c-text-lead {
    font-size: var(--font-size-3s-pc);
  }
}

.c-text-s {
  display: block;
  color: var(--c-black);
  font-size: var(--font-size-ss-sp);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .c-text-s {
    font-size: var(--font-size-mini-pc);
  }
}

/*--------------------------------
ページトップへ戻るボタン
--------------------------------*/
.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}

.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}

.page_top_arrow {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  color: var(--c-white);
  cursor: pointer;
  background-color: var(--c-green);
  border: solid 2px var(--c-green);
  width: 4rem;
  height: 4rem;
  transition: all 0.2s ease-in-out;
  z-index: 6;
}

.page_top_arrow:hover {
  color: var(--c-green);
  background-color: var(--c-white);
}

.page_top_arrow:before {
  content: "";
  width: 1.1875rem;
  height: 1.1875rem;
  border-top: solid 4px var(--c-white);
  border-right: solid 4px var(--c-white);
  left: 46%;
  transform: rotate(-45deg) translateX(-50%);
  position: absolute;
}

.page_top_arrow:hover:before {
  border-top: solid 4px var(--c-green);
  border-right: solid 4px var(--c-green);
}

.page_top_arrow:before {
  top: 17px;
}

/*------------------------------
layout > header
------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  padding: 0.5em min(1.388888vw, 1.5rem);
  width: 100%;
  z-index: 10;
  transition: 0.3s;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 1.2rem min(1.388888vw, 1.5rem);
  }
}

.l-header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1291px) {
  .l-header {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: 0.3s;
  }
}
.header-logo {
  width: 100%;
  max-width: 20rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    max-width: min(22.888vw, 20rem);
  }
}

@media (min-width: 1291px) {
  .header-nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
.header-nav-lists {
  display: flex;
  gap: 1.5rem;
}
.header-nav-lists a {
  color: var(--c-white);
  transition: var(--duration-fast);
}
.header-nav-lists a:hover {
  color: var(--c-orange);
}

.header-nav-ja {
  display: block;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-bold);
  line-height: 1.8;
  letter-spacing: var(--tracking-widest);
  transition: var(--duration-fast);
}
@media (min-width: 1291px) {
  .header-nav-ja {
    line-height: var(--lh-ss);
    font-size: var(--font-size-regular-pc);
  }
}

.header-button {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1290px) {
  .header-button {
    margin-top: 2rem;
    flex-direction: column;
  }
}
.header-button .c-button a {
  width: min(20.83333vw, 13.75rem);
  max-height: 3.8125rem;
}
@media (max-width: 1290px) {
  .header-button .c-button a {
    width: min(58.66666vw, 13.75rem);
  }
}

/*-- telスマホのみ --*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*-- スクロール後の背景 --*/
.l-header.scrolled {
  background-color: rgba(0, 0, 0, 0.72);
}

/* ===============================================
スマホメニュー
=============================================== */
@media (max-width: 1290px) {
  .header-logo-sp {
    max-width: min(74.6666vw, 28rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .header-logo-sp img {
    width: 100%;
  }
  .drawer-menu {
    display: block;
    position: fixed;
    z-index: 15;
    right: 1rem;
    top: 0.85rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s;
  }
  .drawer-menu::after {
    position: absolute;
    top: 1.5625rem;
    content: "MENU";
    display: block;
    text-align: center;
    width: 100%;
    font-size: min(2.13333vw, 0.5rem);
    font-weight: var(--font-medium);
    line-height: var(--lh-ss);
    text-decoration: none;
    color: var(--c-orange);
  }
  .drawer-menu span {
    display: block;
    position: absolute;
    height: 2px;
    left: 3px;
    width: 1.5rem;
    transition: 0.3s ease-in-out;
    background-color: var(--c-orange);
  }
  .drawer-menu span:nth-child(1) {
    top: 0.389062rem;
  }
  .drawer-menu span:nth-child(2) {
    top: 0.778125rem;
  }
  .drawer-menu span:nth-child(3) {
    top: 1.167187rem;
  }
  .drawer-menu.active::after {
    content: "CLOSE";
  }
  /* ナビ開いてる時 */
  .drawer-menu.active span:nth-child(1) {
    opacity: 0;
  }
  .drawer-menu.active span:nth-child(2) {
    top: 0.752rem;
    transform: rotate(30deg);
  }
  .drawer-menu.active span:nth-child(3) {
    transform: rotate(-30deg);
    top: 0.752rem;
  }
  /* ナビメニュー内 */
  .header-nav {
    flex-direction: column;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    transform: translateX(100%);
    /* 初期状態で画面外に */
    transition: transform 0.6s ease, visibility 0s linear 0.6s;
    /* visibilityの遅延を追加 */
    visibility: hidden;
    /* 初期状態で非表示 */
    overflow-y: scroll;
    padding: 6.25rem 0.9375rem;
  }
  /* メニューが開いたとき */
  .header-nav.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.6s ease;
  }
  .header-nav-inner {
    padding: 3rem min(8.5333vw, 2rem);
    border-radius: 0.5rem;
  }
  .header-nav-lists {
    margin: 2.5rem auto 0;
    flex-direction: column;
    gap: 1.1875rem;
    align-items: center;
    list-style-type: none;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .header-nav-list a {
    display: block;
    width: 100%;
  }
  .header-button .c-button-cta-text {
    font-size: var(--font-size-ss-sp);
    letter-spacing: var(--tracking-wider);
  }
  .header-button .c-button-cta a::before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
  }
  .header-tel {
    margin-top: 2.5rem;
  }
  .header-tel a {
    font-size: min(8.533333vw, 2rem);
    justify-content: center;
  }
  .header-tel p {
    font-size: var(--font-size-ss-sp);
    margin-top: -0.75rem;
  }
  .header-tel img {
    max-width: min(6.4vw, 1.5rem);
  }
  .header-tel-sp {
    position: absolute;
    top: 0.85rem;
    right: 4rem;
  }
  .header-tel-sp img {
    max-width: min(5.06666vw, 1.1875rem);
  }
  .header-tel-sp span {
    margin-top: 0.325rem;
    display: block;
    text-transform: uppercase;
    font-size: min(2.13333vw, 0.5rem);
    line-height: var(--lh-ss);
  }
}
.header-logo-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.header-logo-inner img {
  height: 48px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .header-logo-inner img {
    height: 70px;
  }
}

.header-logo-text {
  color: var(--c-white);
}
.header-logo-text span {
  display: block;
}
.header-logo-text span:first-of-type {
  font-size: min(2.6666vw, 12px);
  font-weight: 500;
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .header-logo-text span:first-of-type {
    font-size: var(--font-size-mini-pc);
  }
}
.header-logo-text span:nth-child(2) {
  margin-top: 8px;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-bold);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .header-logo-text span:nth-child(2) {
    font-size: var(--font-size-2s-pc);
  }
}

/*------------------------------
layout > section
------------------------------*/
.l-section {
  padding: 4rem 0;
}

.l-section-bg-gray {
  background-color: var(--c-light-gray);
}

/*------------------------------
layout > container
------------------------------*/
.l-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-container-m {
  max-width: 72.5rem;
}

.l-container-s {
  max-width: 56.875rem;
}

.l-cta {
  padding: 3rem 0;
  background: url(../../assets/img/cta-sp-bg.jpg) center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding: 4.5rem 0;
    background: url(../../assets/img/bg.jpg) center/cover no-repeat;
  }
}
.l-cta .l-cta-message {
  margin-top: 2rem;
  text-align: center;
  font-size: var(--font-size-2s-sp);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wider);
}
.l-cta .l-cta-message em {
  font-size: var(--font-size-m-sp);
}
@media screen and (min-width: 768px) {
  .l-cta .l-cta-message em {
    font-size: var(--font-size-m-pc);
  }
}
@media screen and (min-width: 768px) {
  .l-cta .l-cta-message {
    font-size: var(--font-size-2s-pc);
  }
}
.l-cta .c-button-tel-number {
  font-size: var(--font-size-m-sp);
}
@media screen and (min-width: 768px) {
  .l-cta .c-button-tel-number {
    font-size: var(--font-size-sm-pc);
  }
}
@media screen and (min-width: 768px) {
  .l-cta .c-button-mail a {
    font-size: var(--font-size-regular-pc);
  }
}

.l-cta .c-title-line {
  text-align: center;
}
.l-cta .c-title-line .--text-s {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .l-cta .c-title-line .--text-s {
    font-size: var(--font-size-m-pc);
  }
}
.l-cta .c-title-line em {
  position: relative;
  padding: 0 0.92rem;
}
@media screen and (min-width: 768px) {
  .l-cta .c-title-line em {
    padding: 0 1.5rem;
  }
}
.l-cta .c-title-line em::before, .l-cta .c-title-line em::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 1.5rem;
  background-color: #FDD100;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-cta .c-title-line em::before, .l-cta .c-title-line em::after {
    height: 2.5rem;
    bottom: 0.5rem;
  }
}
.l-cta .c-title-line em::before {
  left: 0;
  transform: rotate(-40deg);
}
.l-cta .c-title-line em::after {
  right: 0;
  transform: rotate(40deg);
}

.l-cta-button {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-cta-button {
    flex-direction: inherit;
  }
}

.cta-title {
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: #2B2B31;
  padding: 2rem 0;
}

.copyright {
  display: block;
  text-align: center;
  color: var(--c-white);
  font-family: var(--font-en);
  font-size: min(3.2vw, 0.75rem);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 0.75rem;
  }
}

.mv {
  background: url(../../assets/img/mv.jpg) center/cover no-repeat;
}

.mv-inner {
  height: 120.52777vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv-inner {
    height: 56.52777vw;
  }
}

.mv-copy-container {
  position: absolute;
  left: 5.5555vw;
  bottom: 2.5rem;
}

.mv-copy h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.mv-copy h2 span {
  padding: 0.5rem 1.5rem;
  background-color: var(--c-white);
  letter-spacing: 0.16em;
  line-height: var(--lh-ss);
  font-size: min(7.4666vw, 1.75rem);
}
@media screen and (min-width: 768px) {
  .mv-copy h2 span {
    font-size: 3.33333vw;
  }
}

.mv-crown {
  margin-top: var(--space-m);
}
.mv-crown img {
  max-width: min(74.66666vw, 17.5rem);
}
@media screen and (min-width: 768px) {
  .mv-crown img {
    max-width: 21.875rem;
  }
}

/* ===============================================
 sdgs
=============================================== */
.sdgs {
  padding-top: 2rem;
}
.sdgs figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: var(--font-bold);
}
.sdgs img {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sdgs img {
    max-width: 50.41666vw;
  }
}

/* ===============================================
 greeting
=============================================== */
.greeting {
  padding-bottom: 4rem;
}

.greeting-inner {
  position: relative;
  padding-top: 3rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .greeting-inner::before {
    position: absolute;
    content: "greeting";
    left: min(-5vw, -4.8rem);
    top: 3rem;
    color: #F7F7F7;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-size: min(12.5vw, 11.25rem);
    font-weight: 900;
    z-index: -1;
  }
}

.greeting-card {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .greeting-card {
    padding: 3rem;
  }
}

.greeting-text {
  margin-top: 2rem;
  line-height: 2.2;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .greeting-text {
    text-align: center;
  }
}

.representative {
  margin-top: 1rem;
  display: block;
  text-align: right;
  font-size: var(--font-size-2s-sp);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-widest);
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .representative {
    font-size: var(--font-size-2s-pc);
  }
}

.representative span {
  letter-spacing: var(--tracking-wider);
  font-size: 0.75rem;
  margin-right: 1rem;
}

.youtube-message {
  margin-top: 3.5rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 56.25% 0 0;
  height: 0;
  overflow: hidden;
}
.youtube-message iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-message-text img {
  display: inline-block;
  width: 20px;
  margin-inline: 4px;
}

/* ===============================================
 お悩み
=============================================== */
.onayami {
  position: relative;
  background-color: #FBFAFA;
}
.onayami::after {
  position: absolute;
  content: "";
  width: 7rem;
  height: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../assets/img/arrow.svg) center/contain no-repeat;
  bottom: -2.5rem;
}
.onayami .c-box-two {
  margin-top: 2.5rem;
  gap: 3.75rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .onayami .c-box-two {
    flex-direction: column-reverse;
  }
}

.onayami-title {
  max-width: 31.875rem;
  margin-left: auto;
  margin-right: auto;
}

.onayami-image {
  max-width: 25.5625rem;
}

.onayami-list {
  position: relative;
  padding-left: 2rem;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
}
.onayami-list::before {
  position: absolute;
  content: "";
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../assets/img/check.svg) center/contain no-repeat;
}
.onayami-list:nth-child(n+2) {
  margin-top: 1rem;
}
.onayami-list span {
  margin-left: 0.5rem;
  color: #4C271C;
  font-size: var(--font-size-2s-sp);
}
@media screen and (min-width: 768px) {
  .onayami-list span {
    font-size: var(--font-size-s-pc);
  }
}
@media screen and (min-width: 768px) {
  .onayami-list {
    font-size: var(--font-size-regular-pc);
  }
}

.onaymi-message {
  margin-top: 2rem;
  text-align: center;
}
.onaymi-message p:last-of-type {
  margin-top: 1rem;
  font-weight: var(--font-bold);
  font-size: 1.5rem;
}

.read-dot {
  -webkit-text-emphasis: circle orange;
          text-emphasis: circle orange;
}

/* ===============================================
 Service
=============================================== */
.service {
  overflow: hidden;
}

.service .c-box-two {
  margin-top: 2rem;
  gap: 2rem;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .service .c-box-two {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .service .c-box-two .service-image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-shadow: 0 2rem 3.4rem rgba(0, 0, 0, 0.16);
  }
}

.service-body .service-body-title {
  font-size: var(--font-size-s-sp);
  letter-spacing: var(--tracking-widest);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .service-body .service-body-title {
    font-size: var(--font-size-s-pc);
  }
}

.service-text {
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}
.service-text p:nth-child(n+2) {
  margin-top: 1.4rem;
}
.service-text em {
  font-weight: var(--font-bold);
}

/* ===============================================
 車両紹介
=============================================== */
.car-lists {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.75rem 2rem;
}
@media screen and (min-width: 768px) {
  .car-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.car-list figcaption {
  margin-top: 0.5rem;
  font-size: var(--font-size-s-sp);
  font-weight: var(--font-bold);
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .car-list figcaption {
    font-size: var(--font-size-s-pc);
  }
}

.car-list p {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .car-list p {
    font-size: var(--font-size-regular-pc);
  }
}

/* ===============================================
 連携
=============================================== */
.alignment {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .alignment {
    padding-top: 8rem;
  }
}

.alignment-title {
  text-align: center;
}
.alignment-title em {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background-color: var(--c-white);
  font-size: var(--font-size-2s-sp);
  box-shadow: 0 0 1rem var(--c-yellow);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .alignment-title em {
    padding: 1rem 1.5rem;
    font-size: var(--font-size-m-pc);
  }
}

.alignment-card {
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: -2rem;
  padding: 5.875rem 2rem 2.5rem;
  background-color: var(--c-light-gray);
  border-radius: 6rem 6rem 0 0;
}
@media screen and (max-width: 767px) {
  .alignment-card {
    flex-direction: column-reverse;
    border-radius: 2.4rem 2.4rem 0 0;
    padding: 3rem 1.5rem 2.5rem;
  }
}

.alignment-body {
  font-size: var(--font-size-regular-sp);
  line-height: 1.66;
}
@media screen and (min-width: 768px) {
  .alignment-body {
    font-size: var(--font-size-3s-pc);
  }
}
.alignment-body p:nth-child(n+2) {
  margin-top: 1.4rem;
}

.alignment-image {
  max-width: min(94.4vw, 22.125rem);
}
@media screen and (min-width: 768px) {
  .alignment-image {
    max-width: min(29.5vw, 22.125rem);
  }
}

/* ===============================================
 voice
=============================================== */
.voice {
  position: relative;
  overflow: hidden;
}
.voice::before {
  position: absolute;
  content: "voice";
  right: min(-6.4vw, -5.8rem);
  bottom: -1rem;
  color: #F7F7F7;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-size: min(12.5vw, 11.25rem);
  font-weight: 900;
  z-index: -1;
}

.voice-card {
  background-color: var(--c-white);
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 4px 1rem rgba(0, 0, 0, 0.16);
  border-radius: 1rem;
}
.voice-card figcaption {
  margin-top: 0.5rem;
  color: #858380;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-bold);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .voice-card figcaption {
    font-size: var(--font-size-mini-pc);
  }
}
.voice-card figure {
  text-align: center;
}
.voice-card figure img {
  max-width: 6rem;
  margin-left: auto;
  margin-right: auto;
}

.voice-lists {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 3rem;
}
@media screen and (min-width: 768px) {
  .voice-lists {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice-body {
  margin-top: 1rem;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-medium);
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .voice-body {
    font-size: var(--font-size-regular-pc);
  }
}

/* ===============================================
 company
=============================================== */
.company {
  background-color: #F2F2F2;
}

.company-inner {
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company-inner {
    flex-direction: inherit;
    justify-content: space-between;
  }
}

.company-body-title {
  color: var(--c-orange);
  font-size: var(--font-size-s-sp);
}
@media screen and (min-width: 768px) {
  .company-body-title {
    font-size: var(--font-size-s-pc);
  }
}

.company-body {
  flex-grow: 1;
}

.company-info div {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: solid 1px #C3C3C3;
}

.company-info-title {
  flex: 0 0 5rem;
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-wider);
}
@media screen and (min-width: 768px) {
  .company-info-title {
    font-size: var(--font-size-3s-pc);
  }
}

.company-info-text {
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .company-info-text {
    font-size: var(--font-size-regular-pc);
  }
}
.company-info-text span {
  display: block;
}

.company-iframe {
  position: relative;
  padding-top: 62.5%;
  width: 100%;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company-iframe {
    padding-top: 40%;
    width: 40%;
  }
}
.company-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===============================================
 price
=============================================== */
.price-lists {
  margin-top: 2.5rem;
}

.price-list h3 {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--c-orange);
  color: var(--c-orange);
  font-size: var(--font-size-m-sp);
  line-height: var(--lh-ss);
}
@media screen and (min-width: 768px) {
  .price-list h3 {
    margin-bottom: 2.5rem;
    font-size: var(--font-size-s-pc);
  }
}

.price-list table {
  width: 100%;
}
.price-list table tr {
  border-bottom: 1px solid #C3C3C3;
}
.price-list table th,
.price-list table td {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .price-list table th,
.price-list table td {
    display: block;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.price-list table th {
  text-align: left;
  font-weight: var(--font-medium);
  font-size: var(--font-size-regular-sp);
}
@media screen and (min-width: 768px) {
  .price-list table th {
    font-size: var(--font-size-3s-pc);
  }
}
.price-list table th small {
  display: block;
  font-size: var(--font-size-ss-sp);
  font-weight: var(--font-regular);
}
@media screen and (min-width: 768px) {
  .price-list table th small {
    font-size: var(--font-size-mini-pc);
  }
}
.price-list table td.price-price {
  width: 15.25rem;
}
@media screen and (max-width: 767px) {
  .price-list table td.price-price {
    width: 100%;
    text-align: right;
  }
}
.price-list:nth-child(n+2) {
  margin-top: 4rem;
}

.border0 {
  border-bottom: none !important;
}
.border0 th,
.border0 td {
  padding-bottom: 0 !important;
}

.kessai {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  border: solid 2px var(--c-green);
  text-align: center;
}
.kessai h2 {
  color: var(--c-green);
}
.kessai p {
  margin-top: 1rem;
}

/* ===============================================
 FQA
=============================================== */
.faq {
  padding: 3.5rem 0;
  background-color: #F2F2F2;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 5rem 0;
  }
}

.faq-title {
  text-align: center;
}
.faq-title .faq-title-en {
  display: block;
  font-family: var(--font-en);
  color: var(--c-green);
  font-size: var(--font-size-regular-sp);
  font-weight: var(--font-semi-bold);
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .faq-title .faq-title-en {
    font-size: var(--font-size-regular-pc);
  }
}

.faq-title-ja {
  font-size: var(--font-size-m-sp);
}
@media screen and (min-width: 768px) {
  .faq-title-ja {
    font-size: var(--font-size-l-pc);
  }
}

.accordion-lists {
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .accordion-lists {
    margin-top: 2.5rem;
  }
}

/*-- アコーディオン --*/
.accordion-list {
  margin-bottom: 2.4rem;
  background-color: var(--c-white);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .accordion-list {
    padding: 2rem 1.5rem;
  }
}

.accordion-title {
  font-size: var(--font-size-3s-pc);
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .accordion-title {
    font-size: var(--font-size-regular-sp);
    padding-right: 1.5rem;
    align-items: flex-start;
  }
}

.accordion-title::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.2rem;
  background-color: var(--c-green);
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}
@media screen and (max-width: 767px) {
  .accordion-title::before {
    right: 0;
    top: 20%;
    width: 1rem;
  }
}

.accordion-title::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.2rem;
  background-color: var(--c-green);
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}
@media screen and (max-width: 767px) {
  .accordion-title::after {
    right: 0;
    top: 20%;
    width: 1rem;
  }
}

.accordion-title img,
.accordion-content img {
  max-width: 3.2rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .accordion-title img,
.accordion-content img {
    max-width: 2rem;
    margin-right: 0.5rem;
  }
}

.accordion-title.show::before {
  opacity: 0;
}

.accordion-title.show::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  display: none;
}

.accordion-inner {
  margin-top: 1.5rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .accordion-inner {
    align-items: flex-start;
  }
}

/* ===============================================
 contact
=============================================== */
.contact-message {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-message {
    margin-top: 4rem;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .contact-message {
    font-size: 4.26666vw;
  }
}
.form {
  margin-top: 2rem;
}

label {
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

input {
  border: 1px solid transparent;
  outline: 0;
  transition: border 0.2s ease-out;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border: 1px solid #959595 !important;
  outline: 0;
}

.form-item {
  width: 100%;
  padding-top: 18px;
  padding-bottom: 12px;
}

.form-item select {
  width: 100%;
  height: 4rem;
}

.form-item-label {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  font-weight: var(--font-medium);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.form-item-label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.form-label-required {
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  background: #e60707;
  color: var(--c-white);
  font-weight: 500;
  font-size: 10px;
}

.form-item-input {
  flex: 1;
  width: 100%;
  height: 4rem;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #959595;
  background: #fff;
}

.form-item-textarea {
  flex: 1;
  width: 100% !important;
  height: 216px !important;
  border-radius: 6px;
  padding: 16px 20px;
  border: 1px solid #959595;
  background: #fff;
}

.submit-button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.625rem;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.2rem 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 3vw, 20px);
  transition: 0.3s;
  border-radius: 0.5rem;
}

.privacy-check {
  margin-top: 2rem;
  text-align: center;
}

::-moz-placeholder {
  color: #c8c8c8;
  font-size: 16px;
}

::placeholder {
  color: #c8c8c8;
  font-size: 16px;
}

.form select {
  -webkit-appearance: none;
  border-radius: 6px;
  background: none;
  border: 0;
  box-sizing: border-box;
  width: 100%;
  height: 4rem;
  padding: 10px 15px;
  border: 1px solid #959595;
  background: #fff;
}

.select-item {
  position: relative;
}

.select-item::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

.submit-button {
  background-color: #ccc;
  border: none;
  color: #fff;
  cursor: not-allowed;
}

.submit-button.enabled {
  background-color: var(--c-black);
  cursor: pointer;
}

.form select::-ms-expand {
  display: block;
}

.privacy-container {
  width: 90%;
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.privacy-policy {
  height: 200px;
  margin-top: 29px;
  padding: 20px 18px;
  overflow: scroll;
  border: 1px solid #c4c4c4;
  background: #fff;
  border-radius: 4px;
  color: #212121;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}
.privacy-policy h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.privacy-policy p {
  margin-bottom: 0.8rem;
}

.privacy-policy h3 {
  margin: 1.5rem 0;
  padding-left: 1rem;
  padding-bottom: 0.3rem;
  border-left: 4px solid var(--c-green);
  border-bottom: 1px solid var(--c-green);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: var(--tracking-widest);
}

.privacy-policy li {
  padding-left: 12px;
  position: relative;
}
.privacy-policy li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.thanks-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 10rem 0;
}

.thanks-section h1 {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 2.4rem);
  text-align: center;
}

.thanks-section p {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 2;
}

.thanks-message {
  text-align: center;
}

.contact-fixed-button {
  z-index: 5;
  position: fixed;
  right: 40px;
  bottom: 40px;
  -webkit-animation: yurayura 2s linear infinite;
          animation: yurayura 2s linear infinite;
  transition: 0.3s;
}

.contact-fixed-button img {
  width: min(12.5vw, 180px);
  filter: drop-shadow(0px 0px 20px rgba(69, 59, 0, 0.16));
}

.contact-fixed-button:hover {
  filter: brightness(1.1);
}

/* デフォルトのチェックボックスを表示する */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  /* Safariや古いブラウザ用 */
  -moz-appearance: checkbox;
       appearance: checkbox;
  /* 他のモダンブラウザ用 */
  width: auto;
  /* デフォルトの幅 */
  height: auto;
  /* デフォルトの高さ */
  margin: 0;
}

.thanks-page {
  height: 100%;
}
.thanks-page .header-nav-lists a {
  color: var(--c-black);
}
.thanks-page .header-nav-lists a:hover {
  color: var(--c-orange);
}

.thanks {
  width: 100%;
  height: 18rem;
  background: url(../../assets/img/bg.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .thanks {
    height: 25rem;
  }
}

.thanks-inner {
  margin-top: 3rem;
  padding-bottom: 12rem;
}
@media screen and (min-width: 768px) {
  .thanks-inner {
    margin-top: 5rem;
  }
}

.pagetop-button {
  margin-top: 4rem;
}

.pagetop-button a {
  margin-top: 0.5rem;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.625rem;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.2rem 0;
  color: #fff;
  background-color: var(--c-black);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 3vw, 20px);
  transition: 0.3s;
  border-radius: 0.5rem;
}
.pagetop-button a:hover {
  opacity: 0.8;
}

.thanks-page .footer {
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
}

.u-white {
  color: var(--c-white);
}

.u-black {
  color: var(--c-black);
}

.u-orange {
  color: var(--c-orange);
}

.u-bg-white {
  background-color: var(--c-white);
}

.u-bg-black {
  background-color: var(--c-black);
}

.u-bold {
  font-weight: bold;
}

.u-center {
  text-align: center;
}

.u-mt10 {
  margin-top: 10px;
}