:root {
    --bg-yellow: #f9f5d3;
    --accent-green: #89a478;
    --deep-green: #6b825d;
    --text-dark: #333;
    --white: #ffffff;
    --card-beige: #e5e1c0;
}

video{
	display: block;
	width: 100%;
	height: 100%;
	max-width: 640px;
	min-height: 320px;
	max-height: 480px;
	margin: 1em auto;
	background-color: #ccc;
}

section{
	padding:50px 0 0 0;
}
section .wrap{
padding:30px 20px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 20px;
box-shadow: 5px 5px 5px rgba(217, 203, 156,1);
text-align: center;
}
i{font-size: 12px;}
section.trans .wrap{
background-color: transparent;
box-shadow: none;
padding-bottom: 0;
}

section .wrap h2{
	padding: 5px 1em;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 0.5em;
	color: rgb(114, 94, 29);
	border-radius: 10px;
	background-color: rgba(217, 203, 156,0.5);

}
em{
    font-style: italic;
}
.mv {
	width: 1000px;
	margin: 0 auto;
	display: flex;
  justify-content: center;
  align-items: center;
  line-height:2;
  font-size: 16px;
    -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mv h2{
	font-weight: bold;
	font-size: 42px;
	color:  #829E6D;
}
.mv p.bold{
	font-size: 24px;
}
.mv .cta{
	width: 100%;
	padding: 1em 0;
	-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
  justify-content:flex-start;
  align-items: center;
}

.cta button{
	font-size: 20px;
	color: #fff;
background-color: #829E6D;
border:2px solid #829E6D;
border-radius: 12px;
cursor: pointer;
margin:0 0 0 0;
padding:5px 15px;
}
.cta button:hover,
.cta button.white{
	background-color: #fff;
	color: #829E6D;
}
.cta button.white:hover{
		color: #fff;
background-color: #829E6D;
}
.mv .cta button{
margin: 0 1em 0 0;
}
.final-cta .cta button{
margin: 0 0 1em 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    color: rgb(114, 94, 29);
    margin-bottom: 30px;
    text-align: center;
}
.section-title.green{
    color: #fff;
    background-color: var(--accent-green);
}

/* ヒーロー */
.hero { padding: 100px 0 60px; text-align: center; }
.tagline { font-size: 1.5rem; margin-bottom: 0; }
.main-copy { font-size: 3.5rem; color: var(--accent-green); margin-top: 0; }
.sub-copy { font-size: 1.2rem; font-weight: bold; }
.hero-description { margin: 30px 0; font-size: 1.1rem; }

/* ボタン */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-primary { background: var(--accent-green); color: var(--white); }
.btn-primary:hover { background: var(--deep-green); }

/* ステップ・カード共通 */
.step-grid, .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.step-card, .price-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border:5px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    -webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.steps h3{
    font-weight: bold;
}
.pricing h3,
.step-num { color: var(--accent-green); font-size:20px; font-weight: bold; display: block; margin-bottom: 5px; }

/* 料金 */
.price-card.pro { border:5px solid var(--accent-green); }
.price { font-size: 2rem; font-weight: bold; margin: 20px 0; }
.pro-copy { font-size: 0.9rem; color: #666; font-style: italic; }

/* プレースホルダー */
.placeholder-box {
    background: #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .main-copy { font-size: 2.2rem; }
}