@charset "UTF-8";
/* ============================================================
   Common (global)
   - ベース
   - ユーティリティ
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
:root {
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Kozuka Mincho Pro", "Noto Serif JP", "IPAexMincho", serif;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --safe-left: env(safe-area-inset-left);
  --safe-right: env(safe-area-inset-right);
}

html {
  font-size: 10px !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
  color: #464646;
  background: #FFFFFF;
  min-height: 100%;
  overflow-x: hidden;
}

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

picture {
  display: block;
  line-height: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.9;
}

/* コンテナ */
.inner {
  width: 100%;
  padding-inline: 1.6rem;
  margin-inline: auto;
}
@media print, screen and (min-width: 992px) {
  .inner {
    max-width: 1000px;
  }
}
@media screen and (max-width: 991px) {
  .inner {
    max-width: 768px;
  }
}
.inner.width {
  max-width: 100%;
  padding-inline: 0;
}

/* 表示切替 */
@media print, screen and (min-width: 992px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
}
/* ユーティリティ */
.text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
}

.lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
}

.catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.2rem;
}