/* =====================
共通
===================== */
body main{
	margin: 0;
	padding: 0;
	line-height: 1.8;
	font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", sans-serif;
}
.lp-page {
	width: 100%;
	overflow: hidden;
}
.mincyo{font-family: "Yu Mincho","游明朝","YuMincho","Hiragino Mincho ProN","MS PMincho",serif !important;}
h1, h2, h3, h4, h5 {font-weight: bold;}
h4{border-bottom:0;}
.fc-brown{color: #872900;}
.bg-beige{background-color: #ece5d8;}
.bg-gray{background-color: #efefef;}

.lp-page a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.lp-page a:hover { opacity: 0.7;}

/* スマホ用改行 */
.sp-br {
  display: none;
}
@media (max-width: 768px) {
	.sp-br {
		display: inline;
	}
}
/* =====================
ヘッダー（スライド）
===================== */
.lp-hero-top{
	background-color: #872900;
	color: #fff;
	text-align: center;
	padding: 0.8em 0;
	font-weight: bold;
}
.lp-hero img {
	width: 100%;
	height: 60vh;
	object-fit: cover;
}
/* =====================
ヘッダー 縦書きキャッチコピー
===================== */
.lp-hero {
  position: relative;
}
/* テキスト本体 */
.lp_catchcopy {
  position: absolute;
  right: 5%;
  top: 40%;
  transform: translateY(-40%);
  z-index: 10;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .lp_catchcopy {
    right: 3%;
    font-size: 30px;
  }
}
/* =====================
セクション
===================== */
.lp-section-top {
	color: #872900;
	font-style: italic;
	position: relative;
	display: inline-block;
	padding-bottom: 0.1em;
	font-family: "Yu Mincho","游明朝","YuMincho","Hiragino Mincho ProN","MS PMincho",serif;
}
.lp-section-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 3px;
  background: #872900;
  transform: translateX(-50%);
}
.lp-container {
  max-width: 900px; 
}
@media (max-width: 768px) {
  .lp-container {
    max-width: 100%;
  }
}
/* リンク装飾 */
.arrow-link {
  text-decoration: none;
  color: #872900;
  transition: opacity 0.2s ease;
}
.arrow-link:hover {
  opacity: 0.7;
}
/* 丸矢印 */
.arrow-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #872900;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
}
.arrow-circle-w {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
}
/* LP用 区切り線 */
.lp-hr {
  width: 80%;
  height: 2px; 
  margin: 15px auto; 
  border: none; 
  background-color: #872900; 
  opacity: 1;
}
.lp-box {
  position: relative;
  border: 2px solid #872900;
  padding: 40px 0px 30px 30px;
  margin: 50px 0;
}
.lp-box-title {
  position: absolute;
  top: -1.1em;
  background: #efefef;
  padding: 0 12px;
  color: #872900;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
}
.lp-box-title span {
	font-size: 1.3em;
}
@media (max-width: 768px) {
  .lp-box {
    padding: 35px 20px 25px;
  }
  .lp-box-title {
	left: 16%;
	transform: translateX(-8%);
  }
}
.lp-box2 {
  position: relative;
  border: 2px solid #872900;
  padding: 16px 30px;
  margin: 50px 0;
}
.lp-box-title2 {
  position: absolute;
  top: -0.6em;
  background: #fff;
  padding: 0 12px;
  color: #872900;
  font-weight: 600;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.lp-box-title2::before {
  content: attr(data-bg); 
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.6em;
  color: rgba(135, 41, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  font-family: "Yu Mincho","游明朝","YuMincho","Hiragino Mincho ProN","MS PMincho",serif;
}
@media (max-width: 768px) {
  .lp-box2 {
    padding: 10px 30px;
  }
  .lp-box-title2 {
	left: 50%;
	transform: translateX(-50%);
  }
}
.section-title {
  text-align: center; 
  margin-top: 3em;
  position: relative;
}
.section-title span {
  background: #efefef;  
  padding: 0 12px;  
  color: #872900;
  font-weight: 600;
  position: relative;
  z-index: 1;  
}
/* 左右に線を作る */
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 2px; 
  background: #872900; 
}
.section-title::before {
  left: 0;
}
.section-title::after {
  right: 0;
}
.custom-dot-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.custom-dot-list li {
  display: inline-block; 
  margin-bottom: 1em; 
  border-bottom: 2px dotted #872900; 
  line-height: 2; 
}
.section-bg {
  position: relative;
  background-image: url('https://ishinuki.jp/wp-content/uploads/2026/01/iju2kyo_19.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  color: #fff;
}
.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); 
  z-index: 1;
}
.section-bg > .container {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.btn-style {
  display: block;
  width: 100%;
  background-color: #872900;
  color: #fff;
  padding: 2em 0; 
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
