@charset "UTF-8";
/****************************************

  Reset CSS

*****************************************/

*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  /*color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

main {
  margin-top: 72px;
  flex: 1;
}

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

@media screen and (min-width: 768px) {
  main {
    margin-top: 80px;
  }
}

/****************************************

  Common CSS

*****************************************/

.section {
  padding-left: 6%;
  padding-right: 6%;
  width: 100%;
}
.section_inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
}
.section_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_title_en {
  font-size: 32px;
  font-weight: bold;
}
.section_title_ja {
  font-size: 14px;
  font-weight: bold;
}

/****************************************

  Header CSS

*****************************************/

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 6%;
  padding-right: 6%;
  width: 100%;
  height: 72px;
  background-color: #202020;
}
.header_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 72px;
  max-width: 1200px;
}
.header_logo {
  font-size: 18px;
  font-weight: bold;
  color: #fffffc;
}

@media screen and (min-width: 700px) {
  .header {
    padding-left: 40px;
    padding-right: 40px;
    height: 80px;
  }
  .header_inner {
    height: 80px;
  }
  .header_logo {
    font-size: 24px;
  }
}

/****************************************

  Footer CSS

*****************************************/

.footer {
  margin-top: 40px;
  padding-left: 6%;
  padding-right: 6%;
  width: 100%;
  height: 72px;
  background-color: #202020;
}
.footer_inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 72px;
  max-width: 1200px;
}
.copyright {
  font-size: 12px;
  color: #fffffc;
}

@media screen and (min-width: 700px) {
  .footer {
    margin-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
    height: 80px;
  }
  .footer_inner {
    height: 80px;
  }
}

/****************************************

  MainVisual CSS

*****************************************/

.mainVisual {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.mainVisual_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 700px) {
  .mainVisual {
    min-height: 500px;
  }
}

/****************************************

  CatchCopy CSS

*****************************************/

.catchCopy {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #202020;
  color: #fffffc;
}
.catchCopy_desc {
  margin-top: 8px;
  font-size: 14px;
}
@media screen and (min-width: 700px) {
  .catchCopy {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .catchCopy_desc {
    font-size: 16px;
  }
}

/****************************************

  Service CSS

*****************************************/

.service {
  margin-top: 40px;
}
.service_inner {
  max-width: 800px;
}
.service_desc {
  margin-top: 40px;
}
@media screen and (min-width: 700px) {
  .service {
    margin-top: 80px;
  }
  .service_desc {
    text-align: center;
  }
}

/****************************************

  Price CSS

*****************************************/

.price {
  margin-top: 40px;
}
.price_inner {
  width: 100%;
  max-width: 800px;
}
.price_list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price_title {
  padding: 16px;
  background-color: #202020;
  color: #fffffc;
}
.price_body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 16px;
}
@media screen and (min-width: 700px) {
  .price {
    margin-top: 80px;
  }
}

/****************************************

  Info CSS

*****************************************/

.info {
  margin-top: 40px;
}
.info_inner {
  max-width: 800px;
}
.info_list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.info_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.info_item:not(:first-of-type) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #707070;
}
.info_title {
  width: 24%;
  font-size: 18px;
  font-weight: bold;
}
.info_desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
