/* ==============================
   Reset & Base
   ============================== */

/* ブラウザデフォルト余白を削除・ボックスサイズ統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML・body 基本設定 */
html, body {
  height: 100%;
	font-weight: 500;
  line-height: 1.75;
  color: #111;
  background: #fff;
  font-family: "Inter", "Zen Kaku Gothic New", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

/* タイトル系の余白・スタイルを無効化 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
	letter-spacing: .08em;
  line-height: inherit;
}
@media screen and (max-width: 768px) {
	h1, h2, h3, h4, h5, h6 {
		letter-spacing: .05em;
	}
}

/* 段落・リストの余白リセット */
p, ul, ol, dl {
  margin: 0;
  padding: 0;
}

/* リストマーカーを非表示 */
ul, ol {
  list-style: none;
}

/* strong, emの装飾を標準化 */
strong, em {
  font-weight: inherit;
  font-style: normal;
}

/* テーブルリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 画像・動画の基本設定 */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .4s ease;
}
a:hover {
  opacity: .7;
}

/* フォーム要素リセット */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* ボタンのクリック時カーソル */
button {
  cursor: pointer;
}

/* 改行 */
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline-block;
	}
}

/* 均等割り付け：両端揃え（日本語向け） */
.u-justify {
	text-align: justify;
	/* Edge/旧IEでCJKの均等割付を有効化（Chromeは未対応が多い） */
	text-justify: inter-ideograph;
}

/*--------------------------------------------------------------------------
汎用
--------------------------------------------------------------------------*/
/*------------------------------------
.container
------------------------------------*/
.container {
	width: calc(100% - 16%);
	margin-inline: auto;
}
@media screen and (max-width: 768px) {}

/*--------------------------------------------------------------------------
.fixed-cta
--------------------------------------------------------------------------*/
.fixed-cta { display: none; }

@media (max-width: 767px) {
  .fixed-cta { 
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    padding: 12px env(safe-area-inset-right) calc(12px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .fixed-cta.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .fixed-cta__inner {
    display: flex;
    gap: 8px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 12px;
  }
  .fixed-cta__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background: #000;
    min-height: 48px;
	  font-size: 18px;
	  letter-spacing: .05em;
    color: #fff;
    transition: opacity .2s ease, transform .2s ease;
  }
  .fixed-cta__btn:active {
    transform: translateY(1px);
  }
}

/*--------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
footer {
	padding: 50px 0;
}
footer .container {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 30px 0 100px;
	}
	footer .container {
		flex-direction: column;
		gap: 30px;
	}
}

/*.footer-left*/
.footer-left .logo {
	display: inline-block;
	margin-bottom: 40px;
}
.company-info {
	font-size: 15px;
}
.company-info .name {
	line-height: 1;
	margin-bottom: 20px;
}
.company-info .address {
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.footer-left .logo {
		width: 63.4920634921%;
		margin-bottom: 30px;
	}
}

/*.footer-right*/
.footer-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: right;
}
.footer-right .sns {
	display: flex;
	align-items: center;
	gap: 30px;
}
.footer-bottom {
	font-weight: 100;
}
@media screen and (max-width: 768px) {
	.footer-right {
		gap: 40px;
	}
	.footer-bottom {
		font-size: 12px;
		text-align: center;
	}
}
