
html {
	scroll-behavior: smooth;
}
body {
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	line-height: 2rem;
	letter-spacing: 0.01rem;
	color: #666;
	background: url("../img/back@2x.png") repeat-y;
	background-size: 40% auto;
	background-position: calc(100% - 100px) ;
}
@media screen and (max-width: 768px) {
	body {
		background: url("../img/back@2x.png") repeat-y;
		background-size: 60% auto;
		background-position:right;
	}
}
p{
	margin-bottom: 20px;
}
p.no-margin{
	margin: 0;
}
/* モバイルでは中央揃え */
@media screen and (max-width: 768px) {
	p.no-margin {
		text-align: center;
	}
}
strong{
	display: inline-block; /* ←これが超重要！ */
	padding: 0.08rem 1rem; /* 文字周りに余白 */
	margin: 30px 0 10px;
	background-color: rgba(208, 107, 84, 0.3);
	color: #666;
	text-decoration: none;
	border-radius: 4px;
}
a {
	color: #d06b54;
	text-decoration: none; /* 下線消す（必要なら） */
	transition: opacity 0.3s ease; /* アニメーションも付けて自然に */
}
a:hover {
	opacity: 0.5; /* ホバー時に70%透明に！ */
}


/* ----------------------------------------------
  文字装飾
---------------------------------------------- */

h2 {
	font-size: 1.7rem;
	color: #666;
	text-underline-offset: 8px;
	margin-bottom: 2rem;
}
h3 {
	font-size: 1.5rem;
	margin: 30px 0;
}
h4 {
	font-size: 1.3rem;
	margin: 20px 0;
}

hr{
	border: none; /* デフォルトの立体感を全部消す！ */
	border-top: 1px solid #d06b54; /* 好きな色でフラットな線を作る */
	margin: 0.5rem 0 2rem; /* 上下の余白 */
}

/* ----------------------------------------------
  ボタン
---------------------------------------------- */

.button {
	display: inline-block;
	text-align: center;
	padding: 0.3rem 1rem;
	border-radius: 5px;
	box-sizing: border-box;
	background: #d06b54;
	color: #FFF;
	text-decoration: none;
	text-align: center;
}

.button-green {
	display: inline-block;
	text-align: center;
	padding: 0.3rem 1.5rem; /* 上下0.5rem、左右1.5remくらい */
	border-radius: 5px;
	box-sizing: border-box;
	background: #94b226;
	color: #FFF;
	text-decoration: none;
	white-space: nowrap; /* ← 文字が改行しないようにする（必要なら） */
}
.button-right {
	text-align: right;
	margin-top: 1rem;
}

.button-center {
	text-align: center;
}
/* ----------------------------------------------
  ページナビゲーション
---------------------------------------------- */

.post-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.prev-post a,
.next-post a {
	text-decoration: none;
}

.prev-post {
	text-align: left;
}

.next-post {
	text-align: right;
}

/* ----------------------------------------------
  パンクズリストの投稿名を非表示
---------------------------------------------- */
.breadcrumb span:last-child {
    display: none;
}

/* ----------------------------------------------
  フォーム
---------------------------------------------- */

p.form-margin{
	margin-bottom: 50px;
}

.form-button-row {
	display: flex;
	justify-content: center;
	gap: 20px; /* ボタン同士のスペースを調整 */
	margin-top: 30px;
}

.form-button-row .form-button {
	padding: 0.5rem 1.2rem;
	background: #d06b54;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button{
	all: unset; /* ← これでまっさら状態にできる（強力！） */
	display: inline-block;
	text-align: center;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	box-sizing: border-box;
	background: #d06b54;
	color: #FFF;
	text-decoration: none;
	text-align: center;
}

button:hover {
	opacity: 0.7; /* ← 透過度：1（不透明）→ 0（完全に透明） */
	cursor: pointer;
}

.req{
	display: inline-block;
	text-align: center;
	font-size: 0.9rem;
	padding: 0.1rem 1rem;
	border-radius: 5px;
	box-sizing: border-box;
	background: #d06b54;
	color: #FFF;
	text-decoration: none;
	text-align: center;
}

.any{
	display: inline-block;
	text-align: center;
	font-size: 0.9rem;
	padding: 0.1rem 1rem;
	border-radius: 5px;
	box-sizing: border-box;
	background: #808080;
	color: #FFF;
	text-decoration: none;
	text-align: center;	
}

.form-h4{
	font-size: 1.2rem;
}
.form-cap{
	font-size: 0.9rem;
	line-height: 1.5rem;
	color: #808080;
}

.mwform-radio-field label {
	display: block;
	margin-bottom: 0; /* 項目ごとの余白調整 */
}
.form-margin{
	line-height:1rem;
}


/* ----------------------------------------------
  ライトボックス
---------------------------------------------- */
/* Lightbox のキャプション */
.lightbox-caption {
	background: rgba(255, 255, 255, 0.9); /* 白背景・少し透過 */
	color: #666; /* 文字色は濃いグレー */
	font-size: 1.1rem; /* 少し大きめに */
	text-align: center;
	padding: 20px;
	max-width: 90%;
	margin: 0 auto;
}
.lb-data .lb-caption {
	font-size: 1rem !important;
	line-height: 2rem;
}


/* ----------------------------------------------
  アニメーション
---------------------------------------------- */
/* スクロールフェードインアニメーション */
.fadein {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-show {
	opacity: 1;
	transform: translateY(0);
}

