@charset "UTF-8";
/*
	font
*******************************/
/*
	color（Figma variables 準拠）
*******************************/
/*
	radius
*******************************/
/*
	breakpoint
*******************************/
/*
	テキストスタイル
*******************************/
/*
	メディアクエリ
*******************************/
/*
	base（サイト共通の土台。font-size mixin は html{62.5%} 前提＝10px基準）
*******************************/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  color: #161514;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, p, figure, dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

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

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

table {
  border-collapse: collapse;
}

button {
  font: inherit;
}

/*
	siteFooter（includes/footer.php・全LP共通。濃色地に運営者情報＋免責）
*******************************/
.siteFooter {
  background: #161514;
  color: #fff;
  padding-block: 100px;
}
.siteFooterInner {
  margin-inline: auto;
  width: min(1200px, 100% - 80px);
}
.siteFooterMeta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 31px;
}
.siteFooterMetaRow {
  align-items: center;
  display: flex;
  gap: 12px;
}
.siteFooterMetaLabel {
  font-size: 14px;
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 100px;
}
.siteFooterMetaValue {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.siteFooterMetaValue a {
  text-decoration: underline;
}
.siteFooterDisclaimer {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.67;
  margin-top: 34px;
}
.siteFooterCopyright {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.67;
}
@media screen and (max-width: 768px) {
  .siteFooter {
    padding-block: 60px;
  }
  .siteFooterInner {
    width: calc(100% - 40px);
  }
}
