@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  text-decoration: none;
}

html {
  overflow-x: hidden;
}

iframe {
  width: 100%;
  height: 400px;
}

address {
  font-style: normal;
}

:root {
  --primary: #002F7C;
  --secondary: #EBF929;
  --white: #FFF;
  --black: #333333;
  --black2: #525252;
  --black3: #707070;
  --bk: #fff;
  --bk2: #F1F1F1;
  --ntl300: #EAEAEA;
  --ntl400: #D3D3D3;
  --ntl500: #666666;
  --ntl900: #3A3A3A;
  --sans: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
      "メイリオ", Meiryo, sans-serif;
  --serif: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --fa: "Font Awesome 5 Free";
  --gutter: clamp(16px, 4vw, 32px);
  --container-max: 1390px;
  --container-padding: 25px;
}

/*************************************************/
/*タグごとの共通設定
/*************************************************/
html {
  overflow-x: hidden;
  font-size: 62.5%;
  /* 1rem = 10px にするための定番設定 */
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 59%;
    /* 1rem ≒ 9.4px */
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 56.25%;
    /* 1rem = 9px */
  }
}
@media screen and (max-width: 486px) {
  html {
    font-size: 53%;
    /* 1rem ≒ 8.5px */
  }
}

body {
  font-size: 1.8rem;
  /*=18px(pc時)*/
  font-family: var(--sans);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--black);
  word-wrap: break-word;
  background: var(--bk);
  font-feature-settings: "palt";
}

main {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: calc(100% - var(--gutter) * 2);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 486px) {
  .container {
    width: calc(100% - clamp(12px, 3vw, 16px) * 2);
  }
}

ul,
ol {
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: var(--black);
}

/*************************************************/
/*部品として機能する共通クラス
/*************************************************/
.common-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 250px;
  padding: 16px 28px 16px 12px;
  border: 1px solid var(--ntl400);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .common-link {
    width: 220px;
    padding: 14px 32px;
    font-size: 16px;
  }
}
@media screen and (max-width: 486px) {
  .common-link {
    width: 200px;
    padding: 12px 24px;
    font-size: 15px;
  }
}
.common-link i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.common-link:hover {
  opacity: 0.7;
}
.common-link:hover i {
  transform: translateY(-50%) translateX(4px);
}

.common-btn {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.025em;
  color: var(--black);
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .common-btn {
    font-size: 1.6rem;
    gap: 10px;
  }
}
@media screen and (max-width: 486px) {
  .common-btn {
    font-size: 1.5rem;
    gap: 8px;
  }
}
.common-btn__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .common-btn__circle {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 486px) {
  .common-btn__circle {
    width: 40px;
    height: 40px;
  }
}
.common-btn__circle i {
  font-size: 14px;
  transition: 0.3s;
}
@media screen and (max-width: 486px) {
  .common-btn__circle i {
    font-size: 12px;
  }
}
.common-btn:hover .common-btn__circle {
  background: var(--primary);
  color: var(--white);
}
.common-btn:hover i {
  transform: translateX(3px);
}

.common-head {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .common-head {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 486px) {
  .common-head {
    margin-bottom: 16px;
  }
}
.common-head p {
  font-family: var(--en);
  font-size: 72px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1100px) {
  .common-head p {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .common-head p {
    font-size: 48px;
  }
}
@media screen and (max-width: 486px) {
  .common-head p {
    font-size: 40px;
  }
}
.common-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .common-head h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 486px) {
  .common-head h2 {
    font-size: 18px;
  }
}

.common-msg {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .common-msg {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 486px) {
  .common-msg {
    margin-bottom: 16px;
  }
}
.common-msg p {
  color: var(--primary);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .common-msg p {
    font-size: 1.6rem;
  }
}
.common-msg h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.34;
}
@media screen and (max-width: 1100px) {
  .common-msg h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .common-msg h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 486px) {
  .common-msg h2 {
    font-size: 30px;
  }
}

.sub-head {
  position: relative;
}
.sub-head .wrapper {
  position: absolute;
  inset: 0;
}
.sub-head .wrapper img {
  -o-object-position: center -200px;
     object-position: center -200px;
}
@media screen and (max-width: 1100px) {
  .sub-head .wrapper img {
    -o-object-position: center;
       object-position: center;
  }
}
.sub-head .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1400px;
  height: 100%;
  padding: 160px 0 61px 0;
}
@media screen and (max-width: 1100px) {
  .sub-head .container {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .sub-head .container {
    padding-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: 16px;
  }
}
.sub-head .head {
  padding-left: 32px;
  border-left: 8px solid var(--white);
}
@media screen and (max-width: 768px) {
  .sub-head .head {
    padding-left: 20px;
    border-left-width: 6px;
  }
}
.sub-head .head p {
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
}
@media screen and (max-width: 1100px) {
  .sub-head .head p {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .sub-head .head p {
    font-size: 40px;
  }
}
@media screen and (max-width: 486px) {
  .sub-head .head p {
    font-size: 32px;
  }
}
.sub-head .head h1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .sub-head .head h1 {
    font-size: 1.6rem;
    margin-top: 4px;
  }
}
.sub-head .pankuzu {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .sub-head .pankuzu {
    font-size: 12px;
    font-weight: 400;
    align-self: end;
  }
}
.sub-head .pankuzu a {
  color: var(--white);
}
.sub-head .pankuzu a:hover {
  opacity: 0.7;
}
.sub-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/*************************************************/
/*スタイルを設定する共通クラス
/*************************************************/
.image--fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image--cont {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*************************************************/
/*共通見出し（h2）クラス
/*************************************************/
.common-h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.common-h2 p {
  font-weight: 700;
  line-height: 1.5;
  color: var(--ntl400);
}
@media screen and (max-width: 768px) {
  .common-h2 p {
    font-size: 1.6rem;
  }
}
.common-h2 h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .common-h2 h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .common-h2 h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 486px) {
  .common-h2 h2 {
    font-size: 22px;
  }
}

/*************************************************/
/*共通メッセージ（キャッチ）クラス
/*************************************************/
.common-msg p {
  font-weight: 700;
  line-height: 1.5;
  color: var(--ntl400);
}
.common-msg h2 {
  position: relative;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.5;
}
.common-msg h2::before {
  content: "";
  position: absolute;
  top: calc(0.75em - 0.5px);
  right: 100%;
  margin-right: 24px;
  width: 94px;
  height: 1px;
  background: var(--black2);
}
@media screen and (max-width: 1100px) {
  .common-msg h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .common-msg h2 {
    font-size: 28px;
  }
  .common-msg h2::before {
    display: none;
  }
}
@media screen and (max-width: 486px) {
  .common-msg h2 {
    font-size: 24px;
  }
}

.fadeIn {
  opacity: 0;
}
.fadeIn.isAnime {
  -webkit-animation: fadeIn 0.5s 0.2s forwards;
          animation: fadeIn 0.5s 0.2s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInUp {
  opacity: 0;
}
.fadeInUp.isAnime {
  -webkit-animation: fadeInUp 0.9s 0.2s forwards;
          animation: fadeInUp 0.9s 0.2s forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.zoomIn {
  opacity: 0;
}
.zoomIn.isAnime {
  -webkit-animation: zoomIn 0.9s 0.2s forwards;
          animation: zoomIn 0.9s 0.2s forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.slideInLeft {
  opacity: 0;
}
.slideInLeft.isAnime {
  -webkit-animation: slideInLeft 1s forwards;
          animation: slideInLeft 1s forwards;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideInRight {
  opacity: 0;
}
.slideInRight.isAnime {
  -webkit-animation: slideInRight 1s forwards;
          animation: slideInRight 1s forwards;
}

@-webkit-keyframes slideInRight {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fuwa {
  -webkit-animation: float 2s infinite;
          animation: float 2s infinite;
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
:root {
  --primary: #002F7C;
  --secondary: #EBF929;
  --white: #FFF;
  --black: #333333;
  --black2: #525252;
  --black3: #707070;
  --bk: #F1F1F1;
  --ntl300: #EAEAEA;
  --ntl400: #D3D3D3;
  --ntl500: #666666;
  --ntl900: #3A3A3A;
  --sans: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, sans-serif;
  --en: "Anton", sans-serif;
  --fa: "Font Awesome 5 Free";
  --gutter: clamp(16px, 4vw, 32px);
  --container-max: 1390px;
  --container-padding: 25px;
}

/*************************************************/
/* アーカイブページ
/*************************************************/
.post-archive .container {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .post-archive .container {
    padding: 40px 0;
  }
}
.post-archive .container .content article a {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--ntl400);
  padding: 0 3rem 1rem 0;
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .post-archive .container .content article a {
    gap: 1rem;
  }
}
@media screen and (max-width: 486px) {
  .post-archive .container .content article a {
    flex-direction: column;
    gap: 0;
  }
}
.post-archive .container .content article a:hover::before {
  transform: translateX(10px) translateY(-50%);
}
.post-archive .container .content article a:hover .meta .cat {
  background: var(--primary);
  color: var(--white);
}
.post-archive .container .content article a::before {
  content: "\f061";
  position: absolute;
  font-family: var(--fa);
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 1rem;
  transition: 0.3s;
}
.post-archive .container .content article a .meta {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 486px) {
  .post-archive .container .content article a .meta {
    margin-right: auto;
  }
}
.post-archive .container .content article a .meta .cat {
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  padding: 0.25rem 1rem;
  transition: 0.3s;
  font-size: 0.875rem;
}
@media screen and (max-width: 486px) {
  .post-archive .container .content article a .meta .cat {
    padding: 0 0.5rem;
  }
}
.post-archive .container .content article a h2 {
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 486px) {
  .post-archive .container .content article a h2 {
    margin-right: auto;
  }
}

/*************************************************/
/* 投稿ページ
/*************************************************/
.post-wrap {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 0 12rem 0;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .post-wrap {
    grid-template-columns: 1fr;
    width: 90%;
    padding: 2rem 0;
    gap: 1.5rem;
  }
}

#post-entry {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: var(--white);
}
#post-entry .article-header {
  border-bottom: 1px solid var(--ntl400);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
#post-entry .article-header h1 {
  font-size: 3rem;
}
@media screen and (max-width: 1100px) {
  #post-entry .article-header h1 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  #post-entry .article-header h1 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 486px) {
  #post-entry .article-header h1 {
    font-size: 2.2rem;
  }
}
#post-entry .article-header .meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
  color: var(--ntl500);
}
#post-entry .article-header .meta .pubdate {
  position: relative;
}
#post-entry .article-header .meta .pubdate::before {
  content: "\f017";
  font-family: var(--fa);
  font-weight: 900;
  margin-right: 5px;
}
#post-entry .article-header .meta .update {
  position: relative;
}
#post-entry .article-header .meta .update::before {
  content: "\f021";
  font-family: var(--fa);
  font-weight: 900;
  margin-right: 5px;
}
#post-entry .entry-content p,
#post-entry .entry-content .wp-block-group p:last-child {
  margin-bottom: 2.2rem;
}
#post-entry .entry-content p a,
#post-entry .entry-content .wp-block-group p:last-child a {
  color: var(--primary);
  text-decoration: underline;
}
#post-entry .entry-content p a:hover,
#post-entry .entry-content .wp-block-group p:last-child a:hover {
  text-decoration: none;
}
#post-entry .entry-content strong {
  font-weight: bold;
}
#post-entry .entry-content .wp-block-image {
  margin-bottom: 2.2rem;
}
#post-entry .entry-content ul {
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 1rem 2.5rem;
  border: 2px solid #eee;
}
#post-entry .entry-content ul li {
  list-style: disc;
}
#post-entry .entry-content ol {
  margin-left: 1.1rem;
  margin-bottom: 1rem;
}
#post-entry .entry-content ol li {
  list-style: decimal;
}
#post-entry .entry-content h2 {
  font-size: 2.4rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1100px) {
  #post-entry .entry-content h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  #post-entry .entry-content h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 486px) {
  #post-entry .entry-content h2 {
    font-size: 1.8rem;
  }
}
#post-entry .entry-content h3 {
  font-size: 2rem;
  border: 2px solid var(--primary);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1100px) {
  #post-entry .entry-content h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  #post-entry .entry-content h3 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 486px) {
  #post-entry .entry-content h3 {
    font-size: 1.6rem;
  }
}
#post-entry .entry-content h4 {
  font-size: 1.8rem;
  border-bottom: 2px dotted var(--primary);
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1100px) {
  #post-entry .entry-content h4 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  #post-entry .entry-content h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  #post-entry .entry-content h4 {
    font-size: 1.5rem;
  }
}
#post-entry .entry-content .vk_borderBox_title {
  border: none;
}
#post-entry .entry-content .vk_borderBox_body p {
  margin-bottom: 1rem;
}
#post-entry .entry-content #toc_container {
  padding: 30px;
  border: none !important;
  box-shadow: 3px 3px 3px #ccc;
  margin-bottom: 50px;
}
#post-entry .entry-content #toc_container .toc_title {
  text-align: left;
  position: relative;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 5px 0 5px 58px;
  font-size: 23px;
  font-weight: 700;
}
#post-entry .entry-content #toc_container .toc_title::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  font-family: var(--fa);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
  content: "\f0ca";
  background-color: var(--secondary-color);
}
#post-entry .entry-content #toc_container .toc_toggle {
  display: inline-block;
  vertical-align: middle;
  width: 75px;
  height: 25px;
  margin-left: 10px;
  background: #cbcbcb;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
}
#post-entry .entry-content #toc_container .toc_toggle .toc_brackets,
#post-entry .entry-content #toc_container .toc_toggle .toc_brackets {
  display: none;
}
#post-entry .entry-content .toc_list {
  margin: inherit;
  padding: inherit;
  border: none;
  color: #555;
  padding-left: 20px !important;
  margin: 0 !important;
}
#post-entry .entry-content .toc_list > li {
  list-style: decimal !important;
  font-weight: 700;
  padding: 5px 0;
}
#post-entry .entry-content .toc_list > li a {
  color: #555;
}
#post-entry .entry-content .toc_list ul {
  margin: inherit;
  padding: inherit;
  border: none;
  margin-bottom: 1rem !important;
}
#post-entry .entry-content .toc_list ul li {
  list-style: decimal !important;
  font-weight: 500;
}

.post-navigation {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  padding: 3rem 0;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
.post-navigation .nav-links a {
  display: block;
  width: 120px;
  text-align: center;
  padding: 0.3rem;
  transition: 0.5s;
  color: #fff;
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.post-navigation .nav-links a:hover {
  background-color: var(--white);
  color: var(--primary);
}

.paging {
  margin: 50px 0;
}
.paging .page-numbers {
  display: flex;
  justify-content: center;
}
.paging .page-numbers li {
  margin: 0 2px;
}
.paging .page-numbers li a,
.paging .page-numbers li .page-numbers {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  line-height: 1;
  text-align: center;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  transition: 0.3s;
}
.paging .page-numbers li a.current,
.paging .page-numbers li .page-numbers.current {
  background-color: var(--white);
  color: var(--primary);
}
.paging .page-numbers li a:hover,
.paging .page-numbers li .page-numbers:hover {
  background-color: var(--bk);
  color: var(--primary);
}

.post-sidebar > .widget {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}
.post-sidebar > .widget h2 {
  background-color: var(--black);
  color: #fff;
  padding: 20px;
}
.post-sidebar > .widget .wp-block-categories-list {
  padding: 0 20px 20px;
}
.post-sidebar .wp-block-group {
  overflow: hidden;
}
.post-sidebar .wp-block-group .wp-block-latest-posts {
  padding: 1rem;
}
.post-sidebar .wp-block-group .wp-block-latest-posts .wp-block-latest-posts__post-title {
  text-decoration: underline;
  transition: 0.3s;
}
.post-sidebar .wp-block-group .wp-block-latest-posts .wp-block-latest-posts__post-title:hover {
  color: var(--primary);
}
.post-sidebar .wp-block-group .wp-block-latest-posts__list {
  background: var(--white);
}
.post-sidebar .widget_search {
  border: none !important;
}
.post-sidebar .widget_search .wp-block-search__label {
  display: none !important;
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper {
  position: relative;
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper .wp-block-search__input {
  border: 1px solid #eee;
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper .wp-block-search__button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 55px;
  background-color: #000;
  color: #fff;
  width: 50px;
}
.post-sidebar .widget_categories .wp-block-categories-list {
  padding: 20px;
}
.post-sidebar .popular-posts .wpp-list {
  padding: 20px;
  font-size: 0.8rem;
}
.post-sidebar .popular-posts .wpp-list li {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 20px;
  overflow: visible;
}
.post-sidebar .popular-posts .wpp-list li a {
  display: block;
}
.post-sidebar .popular-posts .wpp-list li a:first-child {
  position: relative;
}
.post-sidebar .popular-posts .wpp-list li a:first-child::before {
  position: absolute;
  content: "1";
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background-color: var(--secondary);
  left: -5px;
  top: -5px;
  color: #fff;
}
.post-sidebar .popular-posts .wpp-list li:nth-child(2) a:first-child::before {
  content: "2";
}
.post-sidebar .popular-posts .wpp-list li:nth-child(3) a:first-child::before {
  content: "3";
}
.post-sidebar .popular-posts .wpp-list li:nth-child(4) a:first-child::before {
  content: "4";
  background-color: #666;
}
.post-sidebar .popular-posts .wpp-list li:nth-child(5) a:first-child::before {
  content: "5";
  background-color: #666;
}

/*************************************************/
/* サイドバー（お知らせ詳細）
/*************************************************/
.news-single .post-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  .news-single .post-sidebar {
    position: static;
    top: auto;
    gap: 14px;
  }
}

.post-sidebar > .widget {
  margin-bottom: 0;
  border: 1px solid var(--ntl400);
  box-shadow: none;
  background: var(--white);
}
.post-sidebar > .widget h2 {
  margin: 0;
  padding: 12px 16px;
  border-left: 4px solid var(--black);
  background: var(--bk2);
  color: var(--black);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
}
.post-sidebar > .widget ul,
.post-sidebar > .widget ol {
  list-style: none;
  margin: 0;
  padding: 10px 16px 14px;
}
.post-sidebar > .widget li {
  margin: 0;
  border-bottom: 1px solid #ececec;
}
.post-sidebar > .widget li:last-child {
  border-bottom: none;
}
.post-sidebar > .widget li a {
  display: block;
  padding: 10px 0;
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1.6;
}
.post-sidebar > .widget li a:hover {
  color: var(--black3);
  opacity: 0.8;
}
.post-sidebar .widget_search {
  border: 1px solid var(--ntl400) !important;
  box-shadow: none;
  padding: 16px;
  background: var(--white);
}
.post-sidebar .widget_search .wp-block-search__label {
  display: none !important;
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper .wp-block-search__input {
  height: 44px;
  border: 1px solid var(--ntl400);
  padding: 0 12px;
  font-size: 1.5rem;
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper .wp-block-search__button {
  position: static;
  transform: none;
  height: 44px;
  min-width: 52px;
  line-height: 1;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}
.post-sidebar .widget_search .wp-block-search__inside-wrapper .wp-block-search__button:hover {
  opacity: 0.8;
}
.post-sidebar .wp-block-latest-posts__featured-image {
  margin-bottom: 8px;
}
.post-sidebar .wp-block-latest-posts__post-date {
  display: block;
  margin-top: 2px;
  color: var(--ntl500);
  font-size: 1.3rem;
}
.post-sidebar .popular-posts .wpp-list {
  padding: 10px 16px 14px;
  font-size: 1.4rem;
}
.post-sidebar .popular-posts .wpp-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
}
.post-sidebar .popular-posts .wpp-list li:last-child {
  border-bottom: none;
}
.post-sidebar .popular-posts .wpp-list li a:first-child::before {
  width: 22px;
  height: 22px;
  left: -6px;
  top: -6px;
  border-radius: 50%;
  background: #34383d;
  color: var(--white);
  font-size: 11px;
}

:root {
  --white: #FFF;
  --black: #333333;
  --black2: #525252;
  --black3: #707070;
  --bk: #fff;
  --bk2: #F1F1F1;
  --ntl300: #f4f4f4;
  --ntl400: #D3D3D3;
  --ntl500: #666666;
  --ntl900: #3A3A3A;
  --sans: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
  	"メイリオ", Meiryo, sans-serif;
  --serif: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --fa: "Font Awesome 5 Free";
  --gutter: clamp(16px, 4vw, 32px);
  --container-max: 1390px;
  --container-padding: 25px;
}

/*************************************************/
/*ヘッダー
/*************************************************/
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 110px;
  padding: 0 32px;
  transition: height 0.3s, background 0.3s, -webkit-backdrop-filter 0.3s;
  transition: height 0.3s, background 0.3s, backdrop-filter 0.3s;
  transition: height 0.3s, background 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
}
@media screen and (max-width: 1100px) {
  .site-header {
    height: 80px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    left: 0;
    transform: none;
    height: 60px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 486px) {
  .site-header {
    padding: 0 8px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header.scroll {
  height: 90px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.scroll .site-header__logo {
  width: 104px;
  height: 70px;
}
@media screen and (max-width: 1100px) {
  .site-header.scroll .site-header__logo {
    width: 92px;
    height: 62px;
  }
}
@media screen and (max-width: 768px) {
  .site-header.scroll .site-header__logo {
    width: 78px;
    height: 52px;
  }
}
@media screen and (max-width: 1100px) {
  .site-header.scroll {
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .site-header.scroll {
    height: 60px;
  }
}
.site-header.scroll .site-header__logo img {
  filter: brightness(0);
}
.site-header.scroll .site-header__nav li a {
  color: var(--black);
}
.site-header.scroll .site-header__nav.active li a {
  color: var(--white);
}
.site-header.scroll #toggle-nav span {
  background-color: var(--black);
}
.site-header.scroll #toggle-nav.open span {
  background-color: var(--white);
}
.site-header.menu-open .site-header__logo img {
  filter: none;
}
.site-header.menu-open #toggle-nav span {
  background-color: var(--white);
}
.site-header__logo {
  width: 136px;
  height: 93px;
  transition: width 0.35s ease, height 0.35s ease;
}
@media screen and (max-width: 1100px) {
  .site-header__logo {
    width: 110px;
    height: 75px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__logo {
    position: relative;
    z-index: 1301;
    width: 90px;
    height: 62px;
  }
}
@media screen and (max-width: 486px) {
  .site-header__logo {
    width: 78px;
    height: 52px;
  }
}
.site-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.site-header__logo a img {
  transition: filter 0.35s ease;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 33px;
}
@media screen and (max-width: 1100px) {
  .site-header__nav {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    z-index: 1200;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 112px 24px 40px;
    background: rgba(12, 12, 12, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media screen and (max-width: 486px) {
  .site-header__nav {
    gap: 20px;
    padding: 96px 20px 32px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.site-header__nav li a {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.8;
  color: #f4f4f4;
}
@media screen and (max-width: 1100px) {
  .site-header__nav li a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .site-header__nav li a {
    font-size: 2.2rem;
    line-height: 1.6;
    color: var(--white);
  }
}
@media screen and (max-width: 486px) {
  .site-header__nav li a {
    font-size: 1.9rem;
  }
}
.site-header__nav li a:hover {
  opacity: 0.7;
}

#toggle-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1500;
  position: absolute;
  top: 50%;
  right: clamp(16px, 4vw, 20px);
  transform: translateY(-50%);
  padding: 0;
  background: none;
  border: none;
}
@media screen and (max-width: 768px) {
  #toggle-nav {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  #toggle-nav {
    width: 28px;
    height: 20px;
    right: 16px;
  }
}
@media screen and (max-width: 486px) {
  #toggle-nav {
    width: 26px;
    height: 18px;
    right: 12px;
  }
}
#toggle-nav span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}
@media screen and (max-width: 486px) {
  #toggle-nav span {
    height: 2px;
  }
}
#toggle-nav span:nth-child(1) {
  top: 0;
}
#toggle-nav span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#toggle-nav span:nth-child(3) {
  bottom: 0;
}
#toggle-nav.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#toggle-nav.open span:nth-child(2) {
  opacity: 0;
}
#toggle-nav.open span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

/*************************************************/
/*フッター
/*************************************************/
.footer-info {
  background: var(--black);
  padding: 53px 71px 32px;
}
@media screen and (max-width: 1100px) {
  .footer-info {
    padding: 40px 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer-info {
    padding: 32px 0 24px;
  }
}
.footer-info .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1400px;
}
@media screen and (max-width: 1100px) {
  .footer-info .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.footer-info__left {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .footer-info__left {
    gap: 24px;
    align-items: center;
  }
}
.footer-info__logo {
  width: 173px;
  height: 119px;
}
@media screen and (max-width: 768px) {
  .footer-info__logo {
    width: 130px;
    height: 90px;
  }
}
.footer-info__logo a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.footer-info__logo a:hover {
  opacity: 0.7;
}
.footer-info__company {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-info__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer-info__name {
    font-size: 1.8rem;
  }
}
.footer-info__company address {
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--ntl400);
}
@media screen and (max-width: 768px) {
  .footer-info__company address {
    font-size: 14px;
    text-align: center;
  }
}
.footer-info__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
@media screen and (max-width: 1100px) {
  .footer-info__right {
    align-items: center;
    width: 100%;
  }
}
.footer-info__nav {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer-info__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
}
.footer-info__nav li a {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer-info__nav li a {
    font-size: 1.6rem;
  }
}
.footer-info__nav li a:hover {
  opacity: 0.7;
}
.footer-info__contact-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 16px 14px;
  background: #3c3c3c;
  border-left: 8px solid var(--ntl500);
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer-info__contact-box {
    padding: 12px 16px 12px 12px;
    gap: 12px;
  }
}
.footer-info__tel-link {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-info__tel-link:hover {
  opacity: 0.7;
}
.footer-info__tel-label {
  font-size: 19px;
  line-height: 1;
}
.footer-info__tel-number {
  font-weight: 500;
  font-size: 43px;
  line-height: 1;
  letter-spacing: 1.08px;
}
@media screen and (max-width: 1100px) {
  .footer-info__tel-number {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .footer-info__tel-number {
    font-size: 28px;
  }
}
@media screen and (max-width: 486px) {
  .footer-info__tel-number {
    font-size: 24px;
  }
}
.footer-info__hours {
  display: flex;
  gap: 16px;
  font-size: 1.6rem;
  color: var(--ntl400);
}
@media screen and (max-width: 768px) {
  .footer-info__hours {
    font-size: 14px;
    gap: 12px;
  }
}
.footer-info__sns {
  display: inline-flex;
  color: var(--white);
  font-size: 23px;
}
.footer-info__sns:hover {
  opacity: 0.7;
}

.footer-copyright {
  background: var(--black);
  border-top: 1px solid var(--ntl500);
  padding: 12px 0;
}
.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  font-size: 12px;
  line-height: 1.6;
  color: #8d8d8d;
}
@media screen and (max-width: 768px) {
  .footer-copyright .container {
    flex-direction: column-reverse;
    gap: 4px;
  }
}
.footer-copyright a {
  color: #8d8d8d;
  text-decoration: underline;
}
.footer-copyright a:hover {
  opacity: 0.7;
}

/*************************************************/
/*トップページ固定CTA
/*************************************************/
body.home .site-main {
  padding-bottom: 78px;
}
@media screen and (max-width: 768px) {
  body.home .site-main {
    padding-bottom: 74px;
  }
}
@media screen and (max-width: 486px) {
  body.home .site-main {
    padding-bottom: 68px;
  }
}

.home-fixed-contact {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 950;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 100%, 0);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.home-fixed-contact.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.home-fixed-contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 8px 14px;
  color: var(--black);
  font-family: var(--serif);
  transition: background 0.3s, opacity 0.3s;
}
.home-fixed-contact__item:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.home-fixed-contact__item:hover {
  background: rgba(255, 255, 255, 0.62);
  opacity: 1;
}
.home-fixed-contact__icon {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.home-fixed-contact__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.home-fixed-contact__main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.2;
  white-space: nowrap;
}
.home-fixed-contact__sub {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--black3);
  white-space: nowrap;
}
.home-fixed-contact__item--tel .home-fixed-contact__main {
  font-size: 2.8rem;
  font-weight: 700;
}
.home-fixed-contact__item--tel .home-fixed-contact__icon {
  font-size: 2.3rem;
}
@media screen and (max-width: 1360px) {
  .home-fixed-contact__item {
    gap: 8px;
    padding: 8px 10px;
    min-height: 72px;
  }
  .home-fixed-contact__main {
    font-size: 2rem;
  }
  .home-fixed-contact__item--tel .home-fixed-contact__main {
    font-size: 2.5rem;
  }
  .home-fixed-contact__sub {
    font-size: 1.2rem;
  }
  .home-fixed-contact__icon {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1100px) {
  .home-fixed-contact__item {
    min-height: 66px;
  }
  .home-fixed-contact__main {
    font-size: 1.8rem;
  }
  .home-fixed-contact__item--tel .home-fixed-contact__main {
    font-size: 2.2rem;
  }
  .home-fixed-contact__sub {
    font-size: 1.1rem;
  }
  .home-fixed-contact__icon {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .home-fixed-contact__item {
    flex-direction: column;
    gap: 4px;
    min-height: 74px;
    padding: 8px 6px;
  }
  .home-fixed-contact__icon {
    font-size: 2.2rem;
  }
  .home-fixed-contact__body {
    align-items: center;
  }
  .home-fixed-contact__main {
    font-size: 1.7rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }
  .home-fixed-contact__item--tel .home-fixed-contact__main {
    font-size: 1.9rem;
  }
  .home-fixed-contact__sub {
    display: none;
  }
}
@media screen and (max-width: 486px) {
  .home-fixed-contact__item {
    min-height: 68px;
  }
  .home-fixed-contact__main {
    font-size: 1.5rem;
  }
  .home-fixed-contact__item--tel .home-fixed-contact__main {
    font-size: 1.7rem;
  }
}

body.home #scrollTopBtn {
  bottom: 98px;
}
@media screen and (max-width: 768px) {
  body.home #scrollTopBtn {
    bottom: 96px;
  }
}
@media screen and (max-width: 486px) {
  body.home #scrollTopBtn {
    bottom: 86px;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 50px;
  height: 50px;
  background: var(--black);
  opacity: 0;
  transform: translateX(100%);
  z-index: 8000;
  border: 1px solid var(--white);
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #scrollTopBtn {
    width: 45px;
    height: 45px;
    bottom: 16px;
    right: 12px;
  }
}
@media screen and (max-width: 486px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 10px;
  }
}
#scrollTopBtn::after {
  content: "";
  top: 46%;
  left: 55%;
  width: 12px;
  height: 12px;
  position: absolute;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(-45deg) translate(-50%, -50%);
  transition: 0.2s;
}
@media screen and (max-width: 486px) {
  #scrollTopBtn::after {
    width: 10px;
    height: 10px;
  }
}
#scrollTopBtn:hover::after {
  top: 40%;
}
#scrollTopBtn.in {
  transform: translateX(0);
  opacity: 1;
}

/*************************************************/
/*トップページ - ヒーロー
/*************************************************/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  will-change: opacity, transform;
  -webkit-animation: heroSectionFade 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: heroSectionFade 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media screen and (max-width: 1100px) {
  .hero {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    height: 600px;
  }
}
@media screen and (max-width: 486px) {
  .hero {
    height: 520px;
  }
}
.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero__slider-track, .hero__slider-list, .hero__slider-item {
  width: 100%;
  height: 100%;
}
.hero__slider-item {
  overflow: hidden;
}
.hero__slider-item .hero__bg {
  transform: scale(1);
  will-change: transform;
}
.hero__slider-item.is-active .hero__bg {
  -webkit-animation: heroSlideZoom 7s ease-out forwards;
          animation: heroSlideZoom 7s ease-out forwards;
}
.hero__bg {
  width: 100%;
  height: 100%;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.hero__content {
  position: absolute;
  left: 101px;
  bottom: 3%;
  z-index: 2;
  color: var(--white);
  opacity: 0;
  transform: translate3d(-44px, 0, 0);
  -webkit-animation: heroCatchIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
          animation: heroCatchIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
@media screen and (max-width: 1100px) {
  .hero__content {
    left: 64px;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    left: 24px;
    right: 24px;
    bottom: clamp(126px, 22vw, 158px);
  }
}
@media screen and (max-width: 486px) {
  .hero__content {
    left: 16px;
    right: 16px;
    bottom: 100px;
  }
}
.hero__sub {
  font-weight: 700;
  line-height: 1.53;
}
@media screen and (max-width: 768px) {
  .hero__sub {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 486px) {
  .hero__sub {
    font-size: 12px;
  }
}
.hero__catch h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 72px;
  line-height: 1.8;
  white-space: nowrap;
  position: relative;
  line-height: 1.25;
}
@media screen and (max-width: 1100px) {
  .hero__catch h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .hero__catch h2 {
    font-size: 36px;
    line-height: 1.35;
    white-space: normal;
  }
}
@media screen and (max-width: 486px) {
  .hero__catch h2 {
    font-size: 28px;
  }
}
.hero__catch h2::before {
  content: "";
  position: absolute;
  left: -101px;
  top: 0.625em;
  transform: translateY(-50%);
  width: 87px;
  height: 1px;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .hero__catch h2::before {
    display: none;
  }
}
.hero__news {
  position: absolute;
  right: 32px;
  bottom: 3%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(45vw, 680px);
  min-width: 0;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 6px;
  opacity: 0;
  transform: translate3d(-32px, 0, 0);
  -webkit-animation: heroCatchIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
          animation: heroCatchIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}
@media screen and (max-width: 1100px) {
  .hero__news {
    right: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .hero__news {
    left: 24px;
    right: auto;
    bottom: 18px;
    width: calc(100% - 48px);
    max-width: 560px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
@media screen and (max-width: 486px) {
  .hero__news {
    left: 16px;
    right: auto;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: none;
    padding: 8px 10px;
    border-radius: 4px;
  }
}
.hero__news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 486px) {
  .hero__news-meta {
    gap: 6px;
  }
}
.hero__news-date {
  font-size: 1.6rem;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .hero__news-date {
    font-size: 14px;
  }
}
.hero__news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 14px;
  border: 1px solid var(--white);
  border-radius: 56px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .hero__news-tag {
    padding: 1px 10px;
    font-size: 12px;
  }
}
.hero__news-title {
  flex: 1;
  min-width: 0;
  display: block;
  font-size: 1.6rem;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .hero__news-title {
    flex: none;
    width: 100%;
    font-size: 14px;
    line-height: 1.45;
  }
}
@media screen and (max-width: 486px) {
  .hero__news-title {
    font-size: 13px;
  }
}

@-webkit-keyframes heroSectionFade {
  0% {
    opacity: 0;
    transform: none;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroSectionFade {
  0% {
    opacity: 0;
    transform: none;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes heroCatchIn {
  0% {
    opacity: 0;
    transform: translate3d(-44px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroCatchIn {
  0% {
    opacity: 0;
    transform: translate3d(-44px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes heroSlideZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@keyframes heroSlideZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
.hero-catch-reveal {
  opacity: 0;
  transform: translate3d(-28px, 0, 0);
  filter: blur(2px);
  will-change: opacity, transform, filter;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-catch-reveal.isAnime {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/*************************************************/
/*トップページ - イベント/*************************************************/
.home-event .container {
  padding: 80px 0;
}
@media screen and (max-width: 1100px) {
  .home-event .container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .home-event .container {
    padding: 48px 0;
  }
}
@media screen and (max-width: 486px) {
  .home-event .container {
    padding: 40px 0;
  }
}
.home-event .common-h2 {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .home-event .common-h2 {
    margin-bottom: 24px;
  }
}
.home-event__list {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .home-event__list {
    gap: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 486px) {
  .home-event__list {
    gap: 8px;
  }
}
.home-event__empty {
  width: 100%;
  text-align: center;
  padding: 48px 0;
  color: var(--ntl500);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .home-event__empty {
    padding: 32px 0;
    margin-bottom: 24px;
  }
}
.home-event__btn {
  display: flex;
  justify-content: center;
}
.home-event .event-card {
  display: flex;
  flex: 1;
  min-width: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .home-event .event-card {
    flex-direction: column;
  }
}
.home-event .event-card__image {
  width: 287px;
  height: 287px;
  flex-shrink: 0;
  overflow: hidden;
}
.home-event .event-card__image .image--fit {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 1100px) {
  .home-event .event-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }
}
.home-event .event-card:hover {
  opacity: 0.7;
}
.home-event .event-card:hover .event-card__image .image--fit {
  transform: scale(1.06);
}
.home-event .event-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--bk2);
}
@media screen and (max-width: 1100px) {
  .home-event .event-card__body {
    padding: 16px;
  }
}
.home-event .event-card__date {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}
.home-event .event-card__title {
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--ntl500);
  margin-bottom: 8px;
}
.home-event .event-card__title p {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .home-event .event-card__title p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 486px) {
  .home-event .event-card__title p {
    font-size: 1.6rem;
  }
}
.home-event .event-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.home-event .event-card__info div dt {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}
.home-event .event-card__info div dt::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--ntl500);
}
.home-event .event-card__info div dd {
  font-size: 14px;
  line-height: 1.6;
}

/*************************************************/
/*トップページ - メッセージ
/*************************************************/
.home-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 134px;
}
@media screen and (max-width: 1100px) {
  .home-msg {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .home-msg {
    padding-bottom: 0;
  }
}
.home-msg__bg {
  position: relative;
  width: 100%;
  height: 554px;
  margin-bottom: -54px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .home-msg__bg {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .home-msg__bg {
    height: 300px;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 486px) {
  .home-msg__bg {
    height: 200px;
    margin-bottom: -20px;
  }
}
.home-msg__box {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 77px;
  width: 96%;
  max-width: 1400px;
  background: var(--bk);
  will-change: transform;
}
@media screen and (max-width: 1100px) {
  .home-msg__box {
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .home-msg__box {
    flex-direction: column;
    gap: 0;
    max-width: calc(100% - 32px);
  }
}
@media screen and (max-width: 486px) {
  .home-msg__box {
    max-width: calc(100% - 24px);
  }
}
.home-msg__image {
  flex: 1;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .home-msg__image {
    display: none;
  }
}
.home-msg__bg .image--fit {
  will-change: transform;
}
.home-msg__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 64px;
}
@media screen and (max-width: 1100px) {
  .home-msg__content {
    padding-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .home-msg__content {
    padding: 32px 24px 24px;
  }
}
@media screen and (max-width: 486px) {
  .home-msg__content {
    padding: 24px 16px 20px;
  }
}
.home-msg .common-msg {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .home-msg .common-msg {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 486px) {
  .home-msg .common-msg {
    margin-bottom: 24px;
  }
}
.home-msg__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 45px;
  width: clamp(530px, 35vw, 650px);
}
@media screen and (max-width: 1100px) {
  .home-msg__txt {
    width: min(46vw, 560px);
  }
}
@media screen and (max-width: 768px) {
  .home-msg__txt {
    width: 100%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 486px) {
  .home-msg__txt {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .home-msg__txt p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .home-msg__txt p {
    font-size: 1.5rem;
  }
}
.home-msg__btn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .home-msg__btn {
    justify-content: center;
  }
}

/*************************************************/
/*トップページ - 施工事例/*************************************************/
.home-works .container {
  padding: 40px 0;
  max-width: 1400px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .home-works .container {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  .home-works .container {
    max-width: calc(100% - 48px);
  }
}
@media screen and (max-width: 486px) {
  .home-works .container {
    max-width: calc(100% - 32px);
    padding-bottom: 0;
  }
}
.home-works .common-h2 {
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .home-works .common-h2 {
    margin-bottom: 32px;
  }
}
.home-works__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .home-works__list {
    margin-bottom: 40px;
  }
}
.home-works__row {
  display: flex;
  gap: 71px;
}
@media screen and (max-width: 1100px) {
  .home-works__row {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .home-works__row {
    flex-direction: column;
    gap: 24px;
  }
}
.home-works__btns {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .home-works__btns {
    align-items: center;
    gap: 16px;
  }
}
@media screen and (max-width: 486px) {
  .home-works__btns {
    flex-direction: column;
  }
}
.home-works .works-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.home-works .works-card:hover {
  opacity: 0.85;
}
.home-works .works-card:hover .works-card__image .image--fit {
  transform: scale(1.06);
}
.home-works .works-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.home-works .works-card__image .image--fit {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-works .works-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 12px;
  background: rgba(47, 47, 47, 0.49);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.home-works .works-card__name {
  display: flex;
  align-items: center;
  gap: 6px;
}
.home-works .works-card__name span:last-child {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  color: var(--white);
}
@media screen and (max-width: 1100px) {
  .home-works .works-card__name span:last-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home-works .works-card__name span:last-child {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 486px) {
  .home-works .works-card__name span:last-child {
    font-size: 1.6rem;
  }
}
.home-works .works-card__dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}
@media screen and (max-width: 486px) {
  .home-works .works-card__dot {
    width: 10px;
    height: 10px;
  }
}
.home-works .works-card__price {
  text-align: center;
  color: var(--white);
}
.home-works .works-card__price p:first-child {
  font-weight: 700;
  line-height: 1.3;
}
.home-works .works-card__price p:first-child span:last-child {
  font-size: 24px;
}
@media screen and (max-width: 1100px) {
  .home-works .works-card__price p:first-child span:last-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 486px) {
  .home-works .works-card__price p:first-child span:last-child {
    font-size: 1.8rem;
  }
}
.home-works .works-card__note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ntl400);
}
.home-works .works-card__desc {
  display: flex;
  align-items: flex-end;
  gap: 36px;
}
@media screen and (max-width: 768px) {
  .home-works .works-card__desc {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.home-works .works-card__desc p {
  flex: 1;
  color: var(--black2);
}
@media screen and (max-width: 768px) {
  .home-works .works-card__desc p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .home-works .works-card__desc p {
    font-size: 1.5rem;
  }
}
.home-works .works-card__link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.35px;
}
.home-works .works-card__link span {
  display: inline-block;
  width: 31px;
  height: 1px;
  background: var(--black);
}

/*************************************************/
/*トップページ - お知らせ
/*************************************************/
.home-news .container {
  padding: 40px 0;
  max-width: 1400px;
}
@media screen and (max-width: 1100px) {
  .home-news .container {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  .home-news .container {
    padding: 32px 0;
    max-width: calc(100% - 48px);
  }
}
@media screen and (max-width: 486px) {
  .home-news .container {
    max-width: calc(100% - 32px);
    padding-bottom: 0;
  }
}
.home-news__inner {
  display: flex;
  gap: 71px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .home-news__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .home-news__inner {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.home-news .common-h2 {
  align-items: flex-start;
}
.home-news__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-news__btn {
  display: flex;
  justify-content: center;
}
.home-news .news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .home-news .news-item {
    padding: 8px 0;
  }
}
.home-news .news-item__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .home-news .news-item__thumb {
    width: 100px;
    height: 75px;
  }
}
@media screen and (max-width: 486px) {
  .home-news .news-item__thumb {
    width: 80px;
    height: 60px;
  }
}
.home-news .news-item__body {
  flex: 1;
  min-width: 0;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .home-news .news-item__body {
    padding: 0 16px;
  }
}
@media screen and (max-width: 486px) {
  .home-news .news-item__body {
    padding: 0 12px;
  }
}
.home-news .news-item__date {
  font-size: 1.6rem;
  color: var(--ntl400);
}
@media screen and (max-width: 768px) {
  .home-news .news-item__date {
    font-size: 14px;
  }
}
.home-news .news-item__title {
  display: block;
  max-width: 100%;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home-news .news-item__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .home-news .news-item__title {
    font-size: 1.5rem;
  }
}
.home-news .news-item__arrow {
  color: var(--ntl500);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.home-news .news-item:hover {
  opacity: 0.7;
}
.home-news .news-item:hover .news-item__arrow {
  transform: translateX(4px);
}

/*************************************************/
/*トップページ - リンクバナー
/*************************************************/
.home-link__list {
  display: flex;
  gap: 2px;
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .home-link__list {
    flex-direction: column;
    gap: 12px;
    padding: 40px 16px;
  }
}
@media screen and (max-width: 486px) {
  .home-link__list {
    padding: 32px 16px;
  }
}
.home-link__item {
  position: relative;
  flex: 1;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.home-link__item .image--fit {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-link__item:hover .image--fit {
  transform: scale(1.06);
}
.home-link__item:hover .home-link__overlay {
  background: rgba(60, 60, 60, 0.55);
}
.home-link__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 60, 60, 0.4);
  transition: 0.3s;
}
.home-link__en {
  position: absolute;
  left: 21px;
  top: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f4f4f4;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 768px) {
  .home-link__en {
    left: 16px;
    top: 16px;
    writing-mode: horizontal-tb;
  }
}
.home-link__label {
  position: absolute;
  bottom: 21px;
  right: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-link__line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--white);
}
@media screen and (max-width: 486px) {
  .home-link__line {
    width: 30px;
  }
}
.home-link__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 1100px) {
  .home-link__name {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .home-link__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 486px) {
  .home-link__name {
    font-size: 22px;
  }
}

/*************************************************/
/*住まいへのこだわりページ
/*************************************************/
.about-feature .container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1400px;
}
@media screen and (max-width: 1100px) {
  .about-feature .container {
    padding: 60px 0;
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .about-feature .container {
    padding: 48px 0;
    gap: 60px;
  }
}
@media screen and (max-width: 486px) {
  .about-feature .container {
    padding: 40px 0;
    gap: 48px;
  }
}
.about-feature__item {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .about-feature__item {
    flex-direction: column-reverse;
    gap: 8px;
  }
}
.about-feature__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .about-feature__item--reverse {
    flex-direction: column-reverse;
  }
}
.about-feature__item--reverse .about-feature__text {
  text-align: right;
}
@media screen and (max-width: 1100px) {
  .about-feature__item--reverse .about-feature__text {
    text-align: left;
  }
}
.about-feature__item--reverse .about-feature__label {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .about-feature__item--reverse .about-feature__label {
    align-items: flex-start;
  }
}
.about-feature__text {
  width: 500px;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .about-feature__text {
    width: 100%;
  }
}
.about-feature__text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 1100px) {
  .about-feature__text h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .about-feature__text h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 486px) {
  .about-feature__text h2 {
    font-size: 24px;
  }
}
.about-feature__text p {
  color: var(--black2);
}
@media screen and (max-width: 768px) {
  .about-feature__text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .about-feature__text p {
    font-size: 1.5rem;
  }
}
.about-feature__label {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .about-feature__label {
    margin-bottom: 4px;
  }
}
.about-feature__num {
  display: block;
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  opacity: 0.1;
}
@media screen and (max-width: 1100px) {
  .about-feature__num {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .about-feature__num {
    font-size: 60px;
  }
}
@media screen and (max-width: 486px) {
  .about-feature__num {
    font-size: 48px;
  }
}
.about-feature__en {
  position: absolute;
  bottom: 0;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--black);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--black2);
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .about-feature__en {
    font-size: 13px;
  }
}
.about-feature__image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about-feature__image {
    width: 100%;
    flex: none;
  }
}

/*************************************************/
/*事業案内ページ
/*************************************************/
.service-list .container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1400px;
}
@media screen and (max-width: 1100px) {
  .service-list .container {
    padding: 60px 0;
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .service-list .container {
    padding: 48px 0;
    gap: 60px;
  }
}
@media screen and (max-width: 486px) {
  .service-list .container {
    padding: 40px 0;
    gap: 48px;
  }
}
.service-list__item {
  display: flex;
  gap: clamp(40px, 5vw, 80px);
}
@media screen and (max-width: 1100px) {
  .service-list__item {
    flex-direction: column;
    gap: 12px;
  }
}
.service-list__item-inner {
  flex: 1;
  min-width: 0;
}
.service-list__image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-list__content {
  width: 600px;
  flex-shrink: 0;
  min-width: 0;
}
@media screen and (max-width: 1100px) {
  .service-list__content {
    width: 100%;
  }
}
.service-list__head {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-bottom: 8px;
}
@media screen and (max-width: 1100px) {
  .service-list__head {
    margin-bottom: 2px;
  }
}
.service-list__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
  border-right: 1px solid var(--ntl400);
}
.service-list__label p {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service-list__label p {
    font-size: 1.6rem;
  }
}
.service-list__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.24;
}
@media screen and (max-width: 768px) {
  .service-list__num {
    font-size: 24px;
  }
}
.service-list__title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 1100px) {
  .service-list__title {
    margin-bottom: 16px;
  }
}
.service-list__title h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .service-list__title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .service-list__title h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 486px) {
  .service-list__title h2 {
    font-size: 22px;
  }
}
.service-list__line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--black);
  flex-shrink: 0;
}
@media screen and (max-width: 486px) {
  .service-list__line {
    width: 30px;
  }
}
.service-list__desc {
  color: var(--black2);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service-list__desc {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .service-list__desc {
    font-size: 1.5rem;
  }
}
.service-list__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-list__links-row {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .service-list__links-row {
    flex-direction: column;
  }
}
.service-list__link {
  position: relative;
  flex: 1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px 16px 16px;
  border: 1px solid var(--ntl400);
  background: var(--white);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service-list__link {
    padding: 14px 32px;
    font-size: 1.5rem;
  }
}
.service-list__link i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.service-list__link:hover {
  opacity: 0.7;
}
.service-list__link--single {
  flex: none;
  width: 292px;
}
@media screen and (max-width: 768px) {
  .service-list__link--single {
    width: 100%;
  }
}

/*************************************************/
/*会社案内ページ - 代表メッセージ
/*************************************************/
.company-msg .container {
  padding: 80px 0;
  display: flex;
  gap: 69px;
  max-width: 1200px;
}
@media screen and (max-width: 1100px) {
  .company-msg .container {
    padding: 60px 0;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .company-msg .container {
    padding: 48px 0;
    flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-width: 486px) {
  .company-msg .container {
    padding: 40px 0;
  }
}
.company-msg__profile {
  flex-shrink: 0;
  width: 481px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .company-msg__profile {
    width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .company-msg__profile {
    width: 100%;
  }
}
.company-msg__photo {
  width: 100%;
  height: 570px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .company-msg__photo {
    height: 420px;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 768px) {
  .company-msg__photo {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.company-msg__name {
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.5;
}
.company-msg__name p:first-child {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black3);
}
.company-msg__name p:last-child {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .company-msg__name p:last-child {
    font-size: 20px;
  }
}
.company-msg__body {
  flex: 1;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .company-msg__body {
    padding-top: 0;
    gap: 24px;
  }
}
.company-msg .common-msg {
  margin-bottom: 0;
}
.company-msg .common-msg h2 {
  line-height: 1.8;
}
.company-msg__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.company-msg__text p {
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .company-msg__text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .company-msg__text p {
    font-size: 1.5rem;
  }
}
.company-msg__divider {
  width: 480px;
  border: none;
  border-top: 1px solid var(--ntl400);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company-msg__divider {
    width: 100%;
  }
}

/*************************************************/
/*会社案内ページ - 経営理念
/*************************************************/
.company-philosophy {
  background: #f1f1f1;
}
.company-philosophy .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .company-philosophy .container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .company-philosophy .container {
    padding: 48px 0;
  }
}
.company-philosophy .common-h2 {
  position: relative;
  z-index: 10;
}
.company-philosophy__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 399px;
  height: 278px;
  opacity: 0.72;
}
@media screen and (max-width: 768px) {
  .company-philosophy__logo {
    width: 250px;
    height: 174px;
  }
}
.company-philosophy__quote-left {
  position: absolute;
  top: 48px;
  left: calc(50% - 380px);
  font-size: 44px;
  color: var(--ntl400);
}
@media screen and (max-width: 768px) {
  .company-philosophy__quote-left {
    left: 0;
    font-size: 32px;
  }
}
.company-philosophy__quote-right {
  position: absolute;
  bottom: 48px;
  right: calc(50% - 380px);
  font-size: 44px;
  color: var(--ntl400);
}
@media screen and (max-width: 768px) {
  .company-philosophy__quote-right {
    right: 0;
    font-size: 32px;
  }
}
.company-philosophy__text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 2;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .company-philosophy__text {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .company-philosophy__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 486px) {
  .company-philosophy__text {
    font-size: 22px;
  }
}

/*************************************************/
/*会社案内ページ - 会社沿革
/*************************************************/
.company-history .container {
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
}
@media screen and (max-width: 1100px) {
  .company-history .container {
    padding: 60px 0 48px;
  }
}
@media screen and (max-width: 768px) {
  .company-history .container {
    padding: 48px 0 40px;
  }
}
.company-history__list {
  width: 100%;
}
.company-history__row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 16px 24px 32px;
}
@media screen and (max-width: 768px) {
  .company-history__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
}
.company-history__row--even {
  background: #f1f1f1;
}
.company-history__date {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .company-history__date {
    width: auto;
    border-right: none;
    border-bottom: 1px solid var(--ntl400);
    padding-bottom: 4px;
  }
}
.company-history__date p {
  font-family: "Hiragino Mincho ProN", var(--serif);
  font-style: normal;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .company-history__date p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .company-history__detail {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .company-history__detail {
    font-size: 1.5rem;
  }
}

/*************************************************/
/*会社案内ページ - 会社概要
/*************************************************/
.company-info .container {
  display: flex;
  gap: 72px;
  align-items: center;
  padding: 30px 0 60px;
}
@media screen and (max-width: 1100px) {
  .company-info .container {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .company-info .container {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0 48px;
    align-items: stretch;
  }
}
@media screen and (max-width: 486px) {
  .company-info .container {
    gap: 16px;
    padding: 24px 0 40px;
  }
}
.company-info .common-h2 {
  align-items: flex-start;
}
.company-info__image {
  flex: 1;
  margin-left: calc(-50vw + 50%);
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .company-info__image {
    width: min(460px, 50vw + 50%);
  }
}
@media screen and (max-width: 768px) {
  .company-info__image {
    margin-left: 0;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}
.company-info__content {
  flex-shrink: 0;
  min-width: 0;
}
.company-info__table {
  width: 564px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .company-info__table {
    width: 100%;
    margin-top: 16px;
  }
}
.company-info__row {
  display: flex;
  gap: 0;
}
@media screen and (max-width: 486px) {
  .company-info__row {
    flex-direction: column;
  }
}
.company-info__row:not(:last-child) {
  margin-bottom: 8px;
}
.company-info__row dt {
  width: 125px;
  flex-shrink: 0;
  padding: 16px 0 16px 8px;
  border-bottom: 1px solid var(--ntl500);
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .company-info__row dt {
    font-size: 1.6rem;
    width: 110px;
  }
}
@media screen and (max-width: 486px) {
  .company-info__row dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 4px;
  }
}
.company-info__row dd {
  flex: 1;
  padding: 16px 0 16px 29px;
  border-bottom: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .company-info__row dd {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 486px) {
  .company-info__row dd {
    padding-left: 8px;
    padding-top: 0;
  }
}

/*************************************************/
/*会社案内ページ - スタッフ紹介
/*************************************************/
.company-staff .container {
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
}
@media screen and (max-width: 1100px) {
  .company-staff .container {
    padding: 48px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .company-staff .container {
    padding: 40px 0 48px;
  }
}
.company-staff .common-h2 {
  align-items: flex-start;
}
.company-staff__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 768px) {
  .company-staff__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.company-staff__header-text {
  color: var(--black3);
  text-align: right;
}
@media screen and (max-width: 768px) {
  .company-staff__header-text {
    font-size: 1.6rem;
    text-align: left;
  }
}
@media screen and (max-width: 486px) {
  .company-staff__header-text {
    font-size: 1.5rem;
  }
}
.company-staff__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company-staff__row {
  display: flex;
  gap: 72px;
}
@media screen and (max-width: 1100px) {
  .company-staff__row {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .company-staff__row {
    flex-direction: column;
    gap: 32px;
  }
}
.company-staff__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: calc(50% - 36px);
}
@media screen and (max-width: 1100px) {
  .company-staff__card {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .company-staff__card {
    max-width: 100%;
  }
}
.company-staff__photo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.company-staff__info {
  display: flex;
  flex-direction: column;
}
.company-staff__name-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 486px) {
  .company-staff__name-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.company-staff__name {
  display: flex;
  gap: 16px;
  align-items: center;
  line-height: 1.8;
}
@media screen and (max-width: 486px) {
  .company-staff__name {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.company-staff__name-ja {
  font-family: var(--serif);
  font-style: normal;
  font-size: 28px;
}
@media screen and (max-width: 1100px) {
  .company-staff__name-ja {
    font-size: 24px;
  }
}
@media screen and (max-width: 486px) {
  .company-staff__name-ja {
    font-size: 20px;
  }
}
.company-staff__name-en {
  font-weight: 300;
  color: #666;
  letter-spacing: 1.35px;
}
@media screen and (max-width: 768px) {
  .company-staff__name-en {
    font-size: 14px;
  }
}
.company-staff__role {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .company-staff__role {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .company-staff__hobby {
    font-size: 1.6rem;
  }
}

/*************************************************/
/*採用情報ページ - 代表メッセージ
/*************************************************/
.recruit-msg .container {
  padding: 80px 0;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1100px) {
  .recruit-msg .container {
    padding: 60px 0;
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-msg .container {
    padding: 48px 0;
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-msg .container {
    padding: 40px 0;
    gap: 24px;
  }
}
.recruit-msg .image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruit-msg .image {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.recruit-msg__body {
  width: 600px;
  flex-shrink: 0;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .recruit-msg__body {
    padding-top: 40px;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-msg__body {
    width: 100%;
    padding-top: 0;
    gap: 24px;
  }
}
.recruit-msg__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .recruit-msg__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .recruit-msg__text {
    font-size: 1.5rem;
  }
}
.recruit-msg__quote {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recruit-msg__quote {
    font-size: 20px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-msg__quote {
    font-size: 1.8rem;
  }
}
.recruit-msg__signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.5;
}
.recruit-msg__signature p:first-child {
  font-size: 1.6rem;
}
.recruit-msg__signature p:last-child {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .recruit-msg__signature p:last-child {
    font-size: 20px;
  }
}

/*************************************************/
/*採用情報ページ - 社員の一日
/*************************************************/
.recruit-schedule {
  background: #f1f1f1;
}
.recruit-schedule .container {
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 74px;
  max-width: 1000px;
}
@media screen and (max-width: 1100px) {
  .recruit-schedule .container {
    padding: 48px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-schedule .container {
    padding: 40px 0 48px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-schedule .container {
    gap: 40px;
  }
}
.recruit-schedule__body {
  position: relative;
  width: 100%;
}
.recruit-schedule__employee {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--black);
  border-radius: 48px;
  padding: 13px 40px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .recruit-schedule__employee {
    padding: 10px 24px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-schedule__employee {
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
  }
}
.recruit-schedule__employee-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .recruit-schedule__employee-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-schedule__employee-name {
    font-size: 1.8rem;
  }
}
.recruit-schedule__employee-name span {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .recruit-schedule__employee-name span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 486px) {
  .recruit-schedule__employee-name span {
    font-size: 1.3rem;
  }
}
.recruit-schedule__employee-role {
  padding-left: 16px;
  border-left: 1px solid #666;
}
@media screen and (max-width: 486px) {
  .recruit-schedule__employee-role {
    padding-left: 10px;
  }
}
.recruit-schedule__employee-role p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 486px) {
  .recruit-schedule__employee-role p {
    font-size: 1.4rem;
  }
}
.recruit-schedule__timeline {
  width: 100%;
  background: var(--white);
  padding: 56px 80px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .recruit-schedule__timeline {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-schedule__timeline {
    padding: 32px 24px;
    max-width: 100%;
  }
}
@media screen and (max-width: 486px) {
  .recruit-schedule__timeline {
    padding: 24px 16px;
  }
}
.recruit-schedule__timeline::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--ntl400);
}
@media screen and (max-width: 1100px) {
  .recruit-schedule__timeline::before {
    top: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-schedule__timeline::before {
    top: 32px;
    bottom: 32px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-schedule__timeline::before {
    top: 24px;
    bottom: 24px;
  }
}

.timeline-entry {
  display: flex;
  align-items: center;
  position: relative;
}
.timeline-entry--main {
  min-height: 192px;
}
@media screen and (max-width: 768px) {
  .timeline-entry--main {
    min-height: 140px;
  }
}
.timeline-entry--sub {
  height: 79px;
}
@media screen and (max-width: 768px) {
  .timeline-entry--sub {
    height: 60px;
  }
}
.timeline-entry__time {
  width: calc((100% - 1px) / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .timeline-entry__time {
    padding-right: 20px;
  }
}
.timeline-entry__hour {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .timeline-entry__hour {
    font-size: 1.8rem;
  }
}
.timeline-entry__task {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .timeline-entry__task {
    font-size: 1.5rem;
  }
}
.timeline-entry--sub .timeline-entry__hour, .timeline-entry--sub .timeline-entry__task {
  color: #939393;
}
.timeline-entry__line {
  position: relative;
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
}
.timeline-entry__line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 50%;
}
.timeline-entry--main .timeline-entry__line::after {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--black);
}
.timeline-entry--sub .timeline-entry__line::after {
  width: 8px;
  height: 8px;
  background: #939393;
}
.timeline-entry__image {
  width: calc((100% - 1px) / 2);
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .timeline-entry__image {
    padding-left: 20px;
  }
}
.timeline-entry__image-inner {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .timeline-entry__image-inner {
    max-width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .timeline-entry__image-inner {
    max-width: 180px;
  }
}
@media screen and (max-width: 486px) {
  .timeline-entry__image-inner {
    max-width: 130px;
  }
}
.timeline-entry__image-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************************************/
/*採用情報ページ - 募集要項
/*************************************************/
.recruit-info .container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
}
@media screen and (max-width: 1100px) {
  .recruit-info .container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-info .container {
    padding: 48px 0;
  }
}
@media screen and (max-width: 486px) {
  .recruit-info .container {
    padding: 40px 0;
  }
}
.recruit-info__table {
  width: 100%;
}
.recruit-info__row {
  display: flex;
}
@media screen and (max-width: 486px) {
  .recruit-info__row {
    flex-direction: column;
  }
}
.recruit-info__row dt {
  width: 250px;
  flex-shrink: 0;
  padding: 40px 44px;
  border-bottom: 1px solid #666;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .recruit-info__row dt {
    width: 180px;
    padding: 24px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-info__row dt {
    width: 100%;
    padding: 16px 16px 8px;
    border-bottom: none;
  }
}
.recruit-info__row dd {
  flex: 1;
  padding: 40px 32px;
  border-bottom: 1px solid var(--ntl400);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .recruit-info__row dd {
    padding: 24px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 486px) {
  .recruit-info__row dd {
    padding: 8px 16px 16px;
  }
}
.recruit-info__row:first-child dt {
  border-top: 1px solid #666;
}
.recruit-info__row:first-child dd {
  border-top: 1px solid var(--ntl400);
}
.recruit-info__note {
  margin-top: 5px;
  padding: 8px 12px;
  background: #f1f1f1;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black3);
}
@media screen and (max-width: 768px) {
  .recruit-info__note {
    font-size: 14px;
  }
}
.recruit-info__sub-block:not(:last-child) {
  margin-bottom: 24px;
}
.recruit-info__sub-title {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px dashed var(--black);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .recruit-info__sub-title {
    font-size: 16px;
  }
}
.recruit-info__condition p {
  display: flex;
  gap: 0;
}
.recruit-info__condition p strong {
  display: inline-block;
  width: 60px;
  flex-shrink: 0;
  font-weight: 700;
}

/*************************************************/
/* News archive */
/*************************************************/
.news-archive .container {
  max-width: 1400px;
  padding: 72px 0 96px;
}
@media screen and (max-width: 768px) {
  .news-archive .container {
    padding: 48px 0 64px;
  }
}
.news-archive__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ntl400);
}
.news-archive__item a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .news-archive__item a {
    gap: 12px;
    padding: 12px 0;
  }
}
.news-archive__item a:hover {
  opacity: 0.78;
}
.news-archive__thumb {
  width: 180px;
  aspect-ratio: 16/9;
  background: var(--ntl300);
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 486px) {
  .news-archive__thumb {
    width: 96px;
  }
}
.news-archive__body {
  flex: 1;
  min-width: 0;
}
.news-archive__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.news-archive__date {
  font-size: 1.5rem;
  color: var(--ntl500);
}
.news-archive__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border-radius: 999px;
  border: 1px solid var(--ntl400);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ntl500);
}
.news-archive__title {
  font-size: 1.9rem;
  font-family: var(--serif);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-archive__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 486px) {
  .news-archive__title {
    font-size: 1.6rem;
  }
}
.news-archive__arrow {
  color: var(--ntl500);
  font-size: 1.3rem;
}
.news-archive__empty {
  padding: 24px 0;
}
.news-archive__pagination {
  margin-top: 32px;
}
.news-archive__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.news-archive__pagination .page-numbers a,
.news-archive__pagination .page-numbers span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--ntl400);
  padding: 0 10px;
  font-size: 1.4rem;
  color: var(--black);
}
.news-archive__pagination .page-numbers .current {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

/*************************************************/
/* News single */
/*************************************************/
.news-single .container {
  max-width: 1400px;
  padding: 72px 0 96px;
}
@media screen and (max-width: 768px) {
  .news-single .container {
    padding: 48px 0 64px;
  }
}
.news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 1100px) {
  .news-single__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.news-single__article {
  background: var(--white);
  min-width: 0;
}
.news-single .post-sidebar {
  min-width: 0;
}
.news-single__header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ntl400);
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.news-single__meta time {
  color: var(--ntl500);
  font-size: 1.5rem;
}
.news-single__cat {
  padding: 2px 12px;
  border: 1px solid var(--ntl400);
  border-radius: 999px;
  color: var(--ntl500);
  font-size: 1.3rem;
}
.news-single__title {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-single__title {
    font-size: 2.4rem;
  }
}
.news-single__event-info {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--bk2);
  border-radius: 6px;
  display: grid;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .news-single__event-info {
    padding: 10px 12px;
  }
}
.news-single__event-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 2px 0;
}
@media screen and (max-width: 768px) {
  .news-single__event-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2px;
  }
}
.news-single__event-row dt {
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ntl500);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.news-single__event-row dd {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
}
.news-single__thumb {
  margin-bottom: 24px;
}
.news-single__thumb img {
  width: 100%;
  height: auto;
}
.news-single__content {
  margin-bottom: 40px;
}
.news-single__content p {
  margin-bottom: 1em;
}
.news-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .news-single__nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.news-single__nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  transition: opacity 0.3s ease;
}
.news-single__nav-item a:hover {
  opacity: 0.7;
}
.news-single__nav-item--back {
  text-align: center;
}
.news-single__nav-item--next {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .news-single__nav-item--next {
    text-align: left;
  }
}

/*************************************************/
/* Works archive */
/*************************************************/
.works-archive .container {
  max-width: 1400px;
  padding: 72px 0 96px;
}
@media screen and (max-width: 768px) {
  .works-archive .container {
    padding: 48px 0 64px;
  }
}
.works-archive__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.works-archive__filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1.3;
}
.works-archive__filter a:hover {
  opacity: 0.7;
}
.works-archive__filter a.is-active {
  background: var(--black);
  color: var(--white);
}
.works-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
}
@media screen and (max-width: 1100px) {
  .works-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 486px) {
  .works-archive__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.works-archive__empty {
  text-align: center;
}
.works-archive__pagination {
  margin-top: 32px;
}
.works-archive__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.works-archive__pagination .page-numbers a,
.works-archive__pagination .page-numbers span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--ntl400);
  padding: 0 10px;
  font-size: 1.4rem;
  color: var(--black);
}
.works-archive__pagination .page-numbers .current {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.works-archive-card a {
  display: block;
  transition: opacity 0.3s ease;
}
.works-archive-card a:hover {
  opacity: 0.78;
}
.works-archive-card a:hover .works-archive-card__thumb .image--fit {
  transform: scale(1.06);
}
.works-archive-card__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--ntl300);
  margin-bottom: 10px;
  overflow: hidden;
}
.works-archive-card__thumb .image--fit {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.works-archive-card__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 12px;
  border: 1px solid var(--ntl400);
  border-radius: 999px;
  margin-bottom: 8px;
  color: var(--ntl500);
  font-size: 1.3rem;
  line-height: 1.4;
}
.works-archive-card__title {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .works-archive-card__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 486px) {
  .works-archive-card__title {
    font-size: 1.8rem;
  }
}

/*************************************************/
/* Works single */
/*************************************************/
.works-single .container {
  max-width: 1400px;
  padding: 72px 0 96px;
}
@media screen and (max-width: 768px) {
  .works-single .container {
    padding: 48px 0 64px;
  }
}
.works-single__article {
  max-width: 1100px;
  margin: 0 auto;
}
.works-single__main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  touch-action: pan-y;
}
.works-single__main-image > .image--cont {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.works-single__main-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.46);
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
.works-single__main-nav:hover {
  opacity: 0.7;
}
.works-single__main-nav--prev {
  left: 14px;
}
.works-single__main-nav--next {
  right: 14px;
}
@media screen and (max-width: 768px) {
  .works-single__main-nav {
    width: 40px;
    height: 40px;
  }
  .works-single__main-nav--prev {
    left: 10px;
  }
  .works-single__main-nav--next {
    right: 10px;
  }
}
.works-single__thumbs {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0 0 8px;
  margin: 0 0 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.works-single__thumbs li {
  flex: 0 0 176px;
  min-width: 176px;
  scroll-snap-align: start;
}
@media screen and (max-width: 768px) {
  .works-single__thumbs {
    gap: 8px;
    margin-bottom: 24px;
  }
  .works-single__thumbs li {
    flex-basis: 120px;
    min-width: 120px;
  }
}
.works-single__thumb {
  width: 100%;
  padding: 0;
  border: 1px solid var(--ntl400);
  background: var(--ntl300);
  cursor: pointer;
  aspect-ratio: 16/10;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.works-single__thumb.is-active {
  border-color: var(--black);
  opacity: 0.5;
}
.works-single__title {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .works-single__title {
    font-size: 2.6rem;
  }
}
.works-single__specs {
  border-top: 1px solid var(--ntl400);
  margin-bottom: 32px;
}
.works-single__spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ntl400);
}
@media screen and (max-width: 768px) {
  .works-single__spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.works-single__spec-row dt {
  font-weight: 700;
}
.works-single__spec-row dd {
  margin: 0;
}
.works-single__content {
  margin-bottom: 32px;
}
.works-single__back {
  display: flex;
  justify-content: center;
}

/*************************************************/
/* Contact / Thanks */
/*************************************************/
.contact-page .container {
  max-width: 1100px;
  padding: 72px 0 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .contact-page .container {
    padding: 48px 0 64px;
    gap: 20px;
  }
}
.contact-page .common-h2 {
  align-items: flex-start;
}
.contact-page__lead {
  color: var(--black3);
  line-height: 1.8;
}
.contact-page__panel, .contact-page__form {
  background: var(--white);
  border: 1px solid var(--ntl400);
  padding: 24px;
}
@media screen and (max-width: 486px) {
  .contact-page__panel, .contact-page__form {
    padding: 16px;
  }
}
.contact-page__panel-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.contact-page__tel-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 10px;
}
.contact-page__tel-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.contact-page__tel-label {
  font-size: 1.8rem;
}
.contact-page__tel-number {
  font-size: 3.6rem;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .contact-page__tel-number {
    font-size: 2.8rem;
  }
}
.contact-page__fax {
  font-size: 1.8rem;
}
.contact-page__panel-note, .contact-page__form-note {
  color: var(--ntl500);
  font-size: 1.4rem;
}

.thanks-page .container {
  max-width: 1000px;
  padding: 72px 0 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .thanks-page .container {
    padding: 48px 0 64px;
    gap: 20px;
  }
}
.thanks-page__card {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid var(--ntl400);
  background: var(--white);
  text-align: center;
}
@media screen and (max-width: 486px) {
  .thanks-page__card {
    padding: 32px 20px;
  }
}
.thanks-page__icon {
  font-size: 4.4rem;
  line-height: 1;
  color: var(--black);
  margin-bottom: 16px;
}
.thanks-page__title {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .thanks-page__title {
    font-size: 2.4rem;
  }
}
.thanks-page__text {
  color: var(--black3);
  line-height: 1.8;
  margin-bottom: 28px;
}
.thanks-page__link {
  margin: 0 auto;
}

/*************************************************/
/* Privacy policy */
/*************************************************/
.privacy-page .container {
  max-width: 1000px;
  padding: 72px 0 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .privacy-page .container {
    padding: 48px 0 64px;
    gap: 20px;
  }
}
.privacy-page .common-h2 {
  align-items: flex-start;
}
.privacy-page__content {
  background: var(--white);
  border: 1px solid var(--ntl400);
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .privacy-page__content {
    padding: 28px 20px;
  }
}
.privacy-page__lead {
  line-height: 1.9;
  color: var(--black3);
  margin-bottom: 8px;
}
.privacy-page__article {
  line-height: 1.9;
}
.privacy-page__article + .privacy-page__article {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ntl300);
}
@media screen and (max-width: 768px) {
  .privacy-page__article + .privacy-page__article {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.privacy-page__article h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .privacy-page__article h3 {
    font-size: 2.1rem;
  }
}
.privacy-page__article p {
  margin-bottom: 12px;
}
.privacy-page__article p:last-child {
  margin-bottom: 0;
}
.privacy-page ol,
.privacy-page ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px 1.8em;
}
.privacy-page ol li,
.privacy-page ul li {
  padding-left: 2px;
}
.privacy-page ol li {
  list-style: decimal;
}
.privacy-page ul li {
  list-style: disc;
}
.privacy-page li > ol,
.privacy-page li > ul {
  margin-top: 8px;
  margin-bottom: 0;
}
.privacy-page__contact {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--ntl400);
  background: var(--bk2);
}
.privacy-page__contact p {
  margin: 0;
}
.privacy-page__contact p + p {
  margin-top: 4px;
}