@charset "UTF-8";

body {
  background: #fff !important;
  color: rgb(16, 15, 15) !important;
}

#container {
  /*1200px 想定*/
  width: 70vw !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

@media screen and (max-width: 1023px) {
  #container {
    width: 80vw !important;
  }
}

@media screen and (max-width: 768px) {
  #container {
    width: 90vw !important;
  }
}

/************************************
/*アーカイブページのタイトル調整
************************************/
/* アーカイブタイトル全体 */
#archive-title {
  font-size: 1.2em;
  font-weight: 400 !important;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 30px;
}

/* フォントアイコンの見た目（fa-folder-open） */
#archive-title .fa {
  margin-right: 0.4em;
  font-size: 100%;
  vertical-align: middle;
}

/************************************
** ヘッダー領域の基本設定
************************************/
#header-container {
  height: 160px !important;
  display: flex !important;
  align-items: center !important;
  /* 縦センター */
  margin: 0 auto !important;
  padding: 0 !important;
}

#header-container-in {
  width: 100% !important;
  justify-content: space-between !important;
  /* ロゴ左・メニュー右にする場合 */
  box-sizing: border-box !important;
}


/* ヘッダー内部を中央揃えにする */
#header-in {
  display: flex;
  align-items: center;
}

/* 念のためロゴのmargin調整も入れる */
.logo-header {
  margin: 0 !important;
}

/* ロゴ画像に直接指定 */
img.site-logo-image,
img.header-site-logo-image {
  height: 110px !important;
  width: auto !important;
  max-height: none !important;
  display: block !important;
  transition: height 0.3s ease;
}

/* 親要素の制限を外す */
.logo-header {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.site-name {
  padding: 0 !important;
  margin: 0 !important;
}

#navi {
  background-color: rgba(255, 255, 255, 0.0)
}


/************************************
/*ヘッダー固定
************************************/
body {
  padding-top: 160px;
  /* ヘッダーの初期高さ分を確保 */
}

#header-container.shrink+#container {
  padding-top: 90px;
  /* ヘッダー縮小時に高さを調整（必要であれば調整） */
}

#header-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 160px !important;
  background-color: white;
  z-index: 999;
  transition: all 0.3s ease;
}


@media screen and (max-width: 1023px) {
  #header-container {
    width: 80vw;
  }

  #header-container.shrink img.site-logo-image,
  #header-container.shrink img.header-site-logo-image {
    height: 60px !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 768px) {
  #header-container {
    width: 90vw;
  }

  #header-container.shrink img.site-logo-image,
  #header-container.shrink img.header-site-logo-image {
    height: 60px !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
}

#header-container {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 1);
  /* 通常時 */
}

#header-container.shrink {
  height: 100px !important;
  background-color: rgba(255, 255, 255, 0.8);
  /* 縮小時に少し透過 */
}

#header-container.shadow {
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.2);
  /* 下方向のみの影 */
}

#header-container.at-bottom {
  background-color: rgba(255, 255, 255, 1);
  /* 最下部では透明度戻す */
  box-shadow: none !important;
}

#header-container.shrink img.site-logo-image,
#header-container.shrink img.header-site-logo-image {
  height: 60px !important;
  width: auto !important;
  padding: 0 0.4rem !important;
}

/************************************
** コンテンツ部分の調整
************************************/
#content,
#content-in,
#main,
#list {
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* サムネイルリストをFlexboxレイアウトに */
#list {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  /* ← 左詰め */
  box-sizing: border-box !important;
  gap: 1.33% !important;
  /* カード間の横方向の隙間 */
}

/* 共通の余白リセット */
.entry-card,
.entry-card-thumb,
.entry-card-content,
.entry-card-wrap {
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* サムネイル枠の設定 */
.entry-card-wrap {
  width: 24% !important;
  /* 4列分確保しつつ gap に対応（約23〜24%） */
  margin: 0 0 20px 0 !important;
  box-sizing: border-box !important;
  float: none !important;
  position: static !important;
}

/* サムネイル本文部分の余白リセット */
.entry-card-content {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* タイトルとメタ情報の余白リセット */
.entry-card-title,
.entry-card-meta {
  margin: 0 !important;
  padding: 0 !important;
}


@media screen and (max-width: 1023px) {

  /* サムネイル枠の設定 */
  .entry-card-wrap {
    width: 32.4% !important;
    /* 3列分確保しつつ gap に対応 */
    margin: 0 0 20px 0 !important;
    box-sizing: border-box !important;
    float: none !important;
    position: static !important;
  }
}

@media screen and (max-width: 430px) {

  /* サムネイル枠の設定 */
  .entry-card-wrap {
    width: 49.3% !important;
    /* 2列分確保しつつ gap に対応 */
    margin: 0 0 20px 0 !important;
    box-sizing: border-box !important;
    float: none !important;
    position: static !important;
  }
}


/************************************
** スクロールアニメーション用効果
************************************/
/*スクロールアニメーション用効果*/
.list {
  overflow: hidden;
}

.list-animation {
  animation: list-animation 1.2s cubic-bezier(.4, 0, .2, 1);
}

@keyframes list-animation {
  from {
    opacity: 0;
    transform: scale(1.1) translateY(24px);
  }

  32% {
    opacity: 0;
    transform: scale(1.1) translateY(24px);
  }
}

/************************************
** ローディング用効果
************************************/
/* ローディング全体を画面にフィットさせる */
.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

/* ローディングスピナー本体 */
.loader {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: 0.2em solid rgba(0, 0, 0, 0.2);
  border-left-color: rgb(16, 15, 15);
  animation: loading 1s linear infinite;
  text-indent: -9999em;
}

/* 回転アニメーション */
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/************************************
** グローバルメニュー 調整・リセット
************************************/

/* マウスホバー時の背景色（Cocoonデフォルト）を打ち消す */
#navi .menu-header li a:hover,
#navi .menu-header li.current-menu-item a {
  background: transparent !important;
}

/************************************
** サブメニュー 項目の余白リセット
************************************/
#navi .navi-in ul.sub-menu>li {
  margin: 0 !important;
  padding: 5px !important;
  height: auto !important;
}

#navi .navi-in ul.sub-menu>li>a {
  margin: 0 !important;
  padding: 15px 10px !important;
  height: auto !important;
}

/************************************
** サブメニュー レイアウト調整（修正版）
************************************/

/* サブメニュー全体の調整 */
.navi-in>ul .sub-menu {
  background-color: #fff !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  width: 100px !important;
  min-width: 100px !important;
  height: auto !important;
}

/* サブメニュー内の各リンク */
.navi-in>ul .sub-menu li a {
  display: block !important;
  height: auto !important;
  padding: 20px 12px !important;
  background: transparent !important;
  font-size: 0.8em !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

/* サブメニュー ホバー時 */
.navi-in>ul .sub-menu li:hover {
  background: rgb(16, 15, 15) !important;
}

.navi-in>ul .sub-menu li:hover a {
  color: #fff !important;
}

/************************************
** グローバルメニュー調整
************************************/
/*ナビメニューの文字調整*/
#navi .navi-in>.menu-header .item-label {
  font-weight: 700;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  font-family: 'Urbanist', sans-serif;
  /*google font*/
}

/*ナビメニュー マウスオーバーでアンダーライン*/
#navi .navi-in a:after {
  position: absolute;
  /*線の位置を絶対配置に*/
  content: "";
  /*文字はなし*/
  left: 0px;
  /*線の位置*/
  bottom: 1px;
  /*線の位置*/
  height: 1px;
  /*線の高さ*/
  width: 100%;
  /*幅いっぱいに線を引く*/
  background: rgb(16, 15, 15);
  /*線の色*/
  transform: scale(0, 1);
  /*マウスオーバーの前は線を消す*/
  transition: 0.3s;
  /*線が0→100%になるまでの秒数*/
}

#navi .navi-in a:hover:after {
  transform: scale(1);
  /*マウスオーバー後、線を100%出す*/
}

/*サブメニューのアイコン非表示*/
#menu-main-menu .fa-angle-down {
  display: none;
}

/*サブメニューをふわっと表示*/
.navi-in>ul .sub-menu {
  display: block;
  z-index: -1;
}

.navi-in>ul li>ul {
  opacity: 0.0;
  transition: 0.47s ease-in-out;
}

.navi-in>ul li:hover>ul {
  opacity: 1.0;
  transition: 0.31s ease-in;
  z-index: 999;
}

/************************************
** インデックスページ調整
************************************/
/*インデックスページのカテゴリーを消す*/
.cat-label {
  display: none;
}

/*インデックスページのサムネ上に記事タイトルを表示 擬似的に非表示状態*/
.entry-card .entry-card-title {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 0.75em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(16, 15, 15);
  opacity: 0;
  /*透明度0で非表示状態に*/
  pointer-events: none;
  cursor: default;
  transition-duration: 0.2s;
  /*アニメーションの時間*/
}

@media screen and (max-width: 768px) {
  .entry-card .entry-card-title {
    font-size: 0.6em;
  }
}

/*マウスホバーでサムネの上に記事タイトルを表示*/
.entry-card:hover .entry-card-title {
  padding-top: 10px;
  opacity: 1;
}

/*インデックスページのサムネ マウスホバー効果*/
.entry-card-wrap .entry-card-thumb {
  transition-duration: 0.3s;
  /*アニメーションの時間 イン・アウト共通*/
}

.entry-card-wrap .entry-card-thumb:hover {
  transform: translateY(-6px);
  /*マウスオーバーで上に移動*/
  filter: opacity(0.3) blur(3px);
  /*フィルター透明度下げてぼかし*/
  /*box-shadow: 5px 5px 5px rgba(66,66,66,0.20); /*マウスオーバー時の画像の影*/
}

.entry-card-wrap .entry-card-thumb img {
  /*画像下の隙間を消す*/
  vertical-align: bottom;
}

.a-wrap:hover {
  /*マウスオーバー時の全体の背景色を消す*/
  background: none;
}

/* ===========================
  ページネーション（シンプル・下線アニメーション）
=========================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
  font-family: 'Urbanist', sans-serif;
}

.page-numbers {
  position: relative;
  display: inline-block;
  color: rgb(16, 15, 15);
  text-decoration: none;
  font-size: 0.75em !important;
  font-weight: 700;
  padding: 4px 6px;
  transition: color 0.1s ease;
}

/* 下線のアニメーション（hover） */
.page-numbers::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgb(16, 15, 15);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.page-numbers:hover::after {
  width: 100%;
}

/* 現在のページ */
.pagination .current {
  pointer-events: none;
}

.pagination .current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  font-weight: 700 !important;
  background-color: rgb(16, 15, 15);
  transform: none;
}

/* ドット（…）部分 */
.page-numbers.dots {
  pointer-events: none;
  background: none;
  color: rgb(16, 15, 15);
}

/* ---- Cocoon側の背景や罫線を強制的に打ち消す ---- */
.pagination a,
.pagination .current,
.page-numbers {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.pagination .current {
  background-color: transparent !important;
}


/*「次のページへ」は非表示 */
.pagination-next-link {
  display: none !important;
}


/************************************
** フッター調整
************************************/
/* ナビをインデックス、固定ページ非表示 */
.home .navi-footer-in,
.page .navi-footer-in {
  display: none;
}

/* フッター全体 */
#footer,
#footer-in,
.footer-bottom {
  width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  height: 100px !important;
}

/* フッター内のロゴとコピーライトを上下左右中央に配置 */
.footer-bottom {
  display: flex !important;
  align-items: center !important;
  /* 垂直方向中央揃え */
  justify-content: center !important;
  /* 水平方向中央揃え */
  height: 60px !important;
  box-sizing: border-box !important;
}

/* ナビやロゴがあっても中央寄せしたい場合は不要な要素を非表示に */
.footer-bottom-logo,
.navi-footer {
  display: none !important;
}

/* コピーライトテキスト */
.copyright {
  font-weight: 400;
  font-family: 'Urbanist', sans-serif;
  text-align: center;
  font-size: 0.8em !important;
}


/************************************
** プライバシーポリシーの調整
************************************/
/*領域調整*/
.page-id-962,
.page-id-962 .main,
.page-id-962 .header-container,
.page-id-962 .entry-content,
.page-id-962 .wp-block-heading,
.page-id-962 .footer {
  background-color: rgb(255, 252, 240) !important;
  color: rgb(16, 15, 15) !important;
}

.page-id-962 #navi {
  display: none;
}

.page-id-962 #container,
.page-id-962 .header-container {
  max-width: 800px !important;
  width: 50% !important;
  margin: 0 auto;
}

.page-id-962 .logo {
  pointer-events: none;
}

#post-962 .article-header h1 {
  font-size: 2.0em !important;
  font-family: 'Urbanist', sans-serif;
}

#post-962 .wp-block-heading {
  font-size: 1.5em !important;
  padding: 0 !important;
  margin: 10% 0 5% 0 !important;
}

#post-962 .entry-content p {
  font-size: 1.0em !important;
  line-height: 2.0em !important;
  letter-spacing: 0.05em;
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (max-width: 1023px) {

  .page-id-962 #container,
  .page-id-962 .header-container {
    width: 70% !important;
    margin: 0 auto;
  }

  #post-962 .article-header h1 {
    font-size: 1.6em !important;
  }

  #post-962 .wp-block-heading {
    font-size: 1.3em;
  }

}

@media screen and (max-width: 728px) {

  .page-id-962 #container,
  .page-id-962 .header-container {
    width: 80% !important;
    margin: 0 auto;
  }

  #post-962 .article-header h1 {
    padding: 0 !important;
    margin: 0 !important;
  }

  #post-962 .wp-block-heading {
    font-size: 1.0em;
  }

}


/************************************
** トップに戻るボタン
************************************/
/* Cocoonのトップへ戻るボタンを完全に非表示 */
#go-to-top,
.go-to-top,
.go-to-top-button {
  display: none !important;
  visibility: hidden !important;
}

#custom-go-top {
  position: fixed;
  bottom: 5vh;
  right: 3vw;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#custom-go-top.show {
  opacity: 1;
  pointer-events: auto;
}

.custom-go-top-arrow {
  width: 8px;
  height: 40px;
  border-left: 1px solid rgb(16, 15, 15);
  border-top: 1px solid rgb(16, 15, 15);
  transform: skewY(-135deg);
  margin-bottom: 32px;
  transition: 0.3s ease;
}

.custom-go-top-text {
  transform: rotate(90deg);
  font-size: 0.7em;
  font-weight: 400;
  color: rgb(16, 15, 15);
  letter-spacing: 2px;
}


#custom-go-top:hover .custom-go-top-arrow {
  height: 64px;
}


/************************************
** ハンバーガーメニュー
************************************/
.custom-hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 43px;
  height: 43px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  /* ブレイクポイントで display:block に */
  padding: 0;
  z-index: 2001;
}

.custom-hamburger span {
  position: absolute;
  left: 20%;
  width: 60%;
  height: 2px;
  background: rgb(16, 15, 15);
  transition: all 0.5s;
}

.custom-hamburger span:nth-of-type(1) {
  top: 25%;
}

.custom-hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.custom-hamburger span:nth-of-type(3) {
  bottom: 25%;
}

.custom-hamburger::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43px;
  height: 43px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.custom-hamburger.active::before {
  display: none;
}

.custom-hamburger::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43px;
  height: 43px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.75s;
}

.custom-hamburger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.custom-hamburger.active span:nth-of-type(2) {
  opacity: 0;
  animation: active-btn19-bar02 0.8s forwards;
}

@keyframes active-btn19-bar02 {
  100% {
    height: 0;
  }
}

.custom-hamburger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

.custom-hamburger.active::after {
  animation: active-btn19 0.7s 0.25s forwards;
}

@keyframes active-btn19 {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }

  25% {
    border-color: transparent rgb(16, 15, 15) transparent transparent;
  }

  50% {
    border-color: transparent rgb(16, 15, 15) rgb(16, 15, 15) transparent;
  }

  75% {
    border-color: transparent rgb(16, 15, 15) rgb(16, 15, 15) rgb(16, 15, 15);
  }

  100% {
    border-color: rgb(16, 15, 15);
    transform: rotate(-680deg);
  }
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* ハンバーガー開いたときの背景色 */
.overlay-menu.active {
  transform: translateX(0);
  background-color: rgb(218, 216, 206);
}

/* フォントと全体スタイル */
.menu-container,
.menu-container * {
  font-family: 'Urbanist', sans-serif;
  color: rgb(16, 15, 15);
  text-align: center;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}

/* 全体の幅 */
.menu-container {
  width: 30vw;
}

/* メインメニュー設定 */
.overlay-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.overlay-nav>li {
  margin: 20px 0;
  position: relative;
}

/* メインメニューリンク */
.overlay-nav>li>a {
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

/* サブメニュー設定 */
.overlay-nav .sub-menu {
  display: block;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  width: 100%;
}

.overlay-nav>li>a,
.overlay-nav .sub-menu li a {
  color: rgb(16, 15, 15) !important;
  /* Cocoonの色変化を打ち消す */
}

/* サブメニュー項目 */
.overlay-nav .sub-menu li {
  font-size: 1.0em;
  font-weight: 200;
  padding: 10px 10px;
  position: relative;
}

/* サブメニューリンク共通設定 */
.overlay-nav .sub-menu li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

/*ナビメニュー マウスオーバーでアンダーライン*/
.overlay-nav>li>a::after,
.overlay-nav .sub-menu li a::after {
  position: absolute;
  /*線の位置を絶対配置に*/
  content: "";
  /*文字はなし*/
  left: -15%;
  /*線の位置*/
  bottom: 0px;
  /*線の位置*/
  height: 1px;
  /*線の高さ*/
  width: 130%;
  /*幅いっぱいに線を引く*/
  background: rgb(16, 15, 15);
  /*線の色*/
  transform: scale(0, 1);
  /*マウスオーバーの前は線を消す*/
  transition: 0.3s;
  /*線が0→100%になるまでの秒数*/
}

.overlay-nav>li>a:hover::after,
.overlay-nav .sub-menu li a:hover::after {
  transform: scale(1);
  /*マウスオーバー後、線を100%出す*/
}


@media screen and (max-width: 1023px) {
  .custom-hamburger {
    display: block;
  }

  #navi,
  .menu-header {
    display: none;
  }
}


/************************************
** パスワードロック画面の全体スタイル
************************************/
.works-lock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(16, 15, 15); /* 黒 */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-lock-inner {
    text-align: center;
    color: white;
    font-family: 'Urbanist', sans-serif;
}

.works-lock-logo {
    max-width: 240px;
    margin-bottom: 1rem;
}

.works-lock-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.works-lock-error {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.works-lock-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.works-lock-form-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.works-lock-input {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    padding: 0 40px 0 1rem; /* 右パディングでアイコン確保 */
    border: none;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    background-color: #fff; /* 背景：白 */
    color: #000;
    box-sizing: border-box;
    margin-bottom: 1rem;
    height: 50px; /* 高さ：50px */
    display: flex; /* フレックスボックス */
    align-items: center; /* テキスト上下センター */
    position: relative; /* アイコン位置の基準 */
}

.works-lock-toggle {
    position: absolute;
    right: 10px;
    top: 40%; /* 視覚的センター */
    transform: translateY(-50%); /* 上下センター微調整 */
    font-size: 24px;
    height: 24px;
    cursor: pointer;
}

.works-lock-button {
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
    padding: 0.8rem;
    border-radius: 4px;
    background-color: rgb(32, 94, 166);
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    margin-bottom: 6rem;
    height: 50px; /* 高さ：50px */
    line-height: 1.5;
}

.works-lock-button:hover {
    background-color: rgb(36, 131, 123);
    color: rgb(16, 15, 15);
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .works-lock-form-wrapper {
        max-width: 100%;
    }
    .works-lock-input {
        max-width: 100%;
    }
    .works-lock-button {
        max-width: 100%;
    }
}