/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 03 2026 | 15:28:00 */
/* 基本リセット */
:root{
  --ink:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
  --soft:#f5f6f7;
  --sand:#f8f5f0;
  --wood:#6b452f;
  --color1:#f6ecd8;
  --color2:#f3f0f0;	
  --border:rgba(0,0,0,.08);
  --radius:18px;
  --max:1120px;
}
body, html {
    height: 100%;
	width: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/*--------------------*/
/* セクション１エリア */
/*--------------------*/
.top-section1 {
    position: relative;
    background: var(--color1);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; から以下に変更 */
    justify-content: flex-start; 
    align-items: center;
    color: #000000;
    text-align: center;
    /* ↓上からの位置をここで調整してください */
    padding-top: 100px; 
    box-sizing: border-box;
}
/* 文字の大きさ */
.s1-title{
	font-size:3rem;
	margin: 10px;
}
.s1-title-sub{
	font-size:3rem;
	margin: 10px;	
}
.s1-lead{
	font-size:2rem;
}


/* スマホ表示時に背景画像を変更 */
@media (max-width: 768px) {
    .top-section1 {
        /* スマホではPCより少し上に詰めたい場合は数値を調整 */
        padding-top: 80px; 
        background:var(--color1);
/*		  
    background-image: url('https://ban-home.com/wp-content/uploads/00top/bgimage/top_1200-1700.jpg');
*/		
        height: 100vh;
    }
    
    .s1-title {
        /* スマホでタイトルが大きすぎる場合はここで調整 */
        font-size: 30px; 
    }
	.s1-lead {
	    font-size: 15px;
    }
	.s1-button-container {
        bottom: 40px; /* 100pxから40pxに減らすことで下に下がります */
        gap: 10px;    /* スマホでは隙間を少し詰めると収まりが良いです */
        width: 95%;   /* 横幅を少し広げて余裕を持たせる */
    }
}	

/* リンクボタンのエリア */
.s1-button-container {
    /* 絶対配置に変更 */
	position: absolute;
    /* ヒーローと同じく底から100px */
	bottom: 100px;
    left: 50%;
    transform: translateX(-50%); /* 中央寄せ */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    z-index: 5;
}

.s1-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 67, 59, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: bold;
    transition: 0.3s;
    box-sizing: border-box;
}

/* ホバーエフェクト */
        .s1-btn:hover {
            background: #fff;
            color: #333;
        }

/* スマホ・PCのレイアウト切り替え */     
/* PC用：横1行 */
@media (min-width: 769px) {
    .s1-btn {
        flex: 1;
        min-width: 150px;
    }
}
/* スマホ用：2列 */
@media (max-width: 768px) {
    .s1-btn {
        width: calc(50% - 10px);
    }
}

/* セクション1内のテキスト（オーバーレイ） */
.s1-menu-item span {
    color: white;
    font-weight: bold;
    z-index: 2;
    background: rgba(0,0,0,0.3); /* 文字を読みやすくするための背景 */
    padding: 5px 15px;
    border-radius: 4px;
}

/* ホバーエフェクト */
.s1-menu-item:hover {
    transform: translateY(-10px);
    filter: brightness(1.2);
}
