@charset "UTF-8";
:root {
  --yellow: #f5c464;
  --yellow-bg: #fffbef;
  --teal: #50c8b5;
  --teal-bg: #edfaf7;
  --sky: #e5f4fa;
  --sky-dark: #b8dff0;
  --navy: #2d3580;
  --text: #333;
  --text-mid: #666;
  --text-light: #999;
  --white: #fff;
  --border: #ebebeb;
  --purple: #e2c6ff;
}

/* リセット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.0625vw;
  --rate-fz: 0.0625vw;
  --cap: 1;
}
@media screen and (max-width: 999px) {
  :root {
    --rate-fz: 0.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --rate-vw: 0.2666666667vw;
    --rate-fz: 0.2666666667vw;
    --cap: 10;
  }
}

/*------------------------------
common
------------------------------*/
/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
body {
  color: #37383C;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
  background: #fcfcfc;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

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

header, main, footer {
  position: relative;
  z-index: 10;
}

a {
  transition: opacity 0.3s;
}

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

.u-inner-1400 {
  width: clamp(0px, 1400 * var(--rate-vw), 1400px * var(--cap));
  max-width: clamp(0px, 1400 * var(--rate-vw), 1400px * var(--cap));
}
@media screen and (max-width: 999px) {
  .u-inner-1400 {
    width: 90%;
    max-width: 100%;
  }
}

/* タイトル
------------------------------*/
.c-section-title {
  font-size: clamp(0px, 32 * var(--rate-fz), 32px * var(--cap));
  font-weight: 700;
  position: relative;
  padding-left: 6em;
}
.c-section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #37383C;
  width: 5em;
  height: 1px;
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
    padding-left: 4em;
  }
  .c-section-title::before {
    width: 3em;
  }
}

.c-section-title-wh::before {
  background: #fff;
}

/*------------------------------
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;
  }
}

/*------------------------------
other
------------------------------*/
.fade:not(.nofade) {
  opacity: 0;
}
/*# sourceMappingURL=common.css.map */