@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

:root {
  --rate-vw: 0.078125vw;
  --rate-fz: 0.078125vw;
  --cap: 1;
}
@media screen and (max-width: 999px) {
  :root {
    --rate-fz: 0.1302083333vw;
    --rate-vw: 0.1302083333vw;
    --cap: 10;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --rate-vw: 0.2666666667vw;
    --rate-fz: 0.2666666667vw;
  }
}

/*------------------------------
common
------------------------------*/
body {
  color: #000;
  font-family: "Zen Old Mincho", serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

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

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  main {
    margin-top: clamp(0px, 30 * var(--rate-vw), 30px * var(--cap));
  }
}

/* コンテンツ幅
------------------------------*/
.inner {
  margin-inline: auto;
  width: clamp(0px, 1112 * var(--rate-vw), 1112px * var(--cap));
  max-width: 1112px;
}
@media screen and (max-width: 999px) {
  .inner {
    width: 90%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: clamp(0px, 354 * var(--rate-vw), 354px * var(--cap));
  }
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  padding: clamp(0px, 257 * var(--rate-vw), 257px * var(--cap)) 0 clamp(0px, 36 * var(--rate-vw), 36px * var(--cap));
  position: relative;
}
@media (max-width: 999px) {
  .c-page-header {
    padding: clamp(0px, 200 * var(--rate-vw), 200px * var(--cap)) 0 clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 14% 0;
    aspect-ratio: 376/176;
  }
}

.c-page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-page-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .c-page-header__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

.c-page-header__title {
  font-size: clamp(0px, 36 * var(--rate-fz), 36px * var(--cap));
  font-weight: 600;
  line-height: 1.3333333333;
  color: #fff;
  text-align: center;
  position: relative;
}

.c-page-header__button {
  margin-top: clamp(0px, 206 * var(--rate-vw), 206px * var(--cap));
  position: relative;
  text-align: center;
  visibility: hidden;
  pointer-events: none;
}
.c-page-header__button a {
  display: inline-block;
  width: 150px;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  font-weight: 600;
  line-height: 1.3333333333;
  color: #fff;
  background: #000;
  text-align: center;
  padding: 1em 0;
}
@media (max-width: 999px) {
  .c-page-header__button {
    margin-top: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
  }
}
@media (max-width: 767px) {
  .c-page-header__button {
    display: none;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}
/*# sourceMappingURL=common.css.map */