@charset "UTF-8";

/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    color: #42210B;
    line-height: 1.8;
    /* 背景に薄い青の和紙画像を配置 */
    background-color: #f5f5f5;
}

/* オープニング動画のスタイル */
#opening-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff; /* 動画の背景色に合わせる */
    z-index: 9999; /* 最前面に */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 2.0s ease; /* 0.5秒で消える設定 */
}

#opening-video {
    max-width: 100%;
    height: auto;
}

/* 動画が終わった瞬間に、上のレイヤーを「透明」にする */
.loaded #opening-overlay {
    opacity: 0;
    pointer-events: none; /* 透明になり始めたら下のボタン等に触れるようにする */
}

/* 1080px幅の青い背景コンテナ */
.site-wrapper {
   max-width: 1080px;
   margin: 0 auto;
   background-color: #f0f7ff; /* 画像がない場合の予備色 */
  /* background-image: url('../images/bg-blue.jpg');*/
  /* background-repeat: repeat;*/
  /* background-size: 1080px auto;*/ /* 背景画像の幅を固定 */
   /*min-height: 100vh;*/
   box-shadow: 0 0 20px rgba(0,0,0,0.05); /* 境界を分かりやすくする影（任意） */
   overflow:hidden;/* 子要素のはみ出しをガード */
   opacity: 0;
   visibility: hidden; /* transitionを確実に効かせるためのセット */
   transition: opacity 2.0s ease, visibility 2s ease; /* 0.5秒で浮き出る設定 */ 
}

/* クラスがついたら「見える状態」にする */
.loaded .site-wrapper {
    opacity: 1;
    visibility: visible;
}

.loaded #main-content {
    opacity: 1;
}

/* ヘッダー */
.site-header {
    width: 100%;
	max-width: 1080px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
}

.header-inner {
    /*max-width: 1080px;
    margin: 0 auto;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    height: 100px;
	padding-left: 100px;
}

/* ハンバーガーメニュー */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
   /* position: relative;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* --- ドロワーメニュー設定 --- */

/* メニュー本体：初期状態は右側に隠す */
.drawer-menu {
    position: fixed;
    top: 0;
    right: -300px; /* 幅と同じ分だけマイナスにして隠す */
    width: 300px;
    height: 100%;
    background-color: #fff; /* シンプルな白背景 */
    z-index: 200; /* ヘッダー(100)より上に配置 */
    transition: right 0.3s ease; /* スライドのアニメーション */
    padding: 120px 40px 40px; /* 上はヘッダーと被らないよう多めに確保 */
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

/* メニューが開いた状態 */
.drawer-menu.is-active {
    right: 0;
}

/* リストのスタイル */
.drawer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-nav-list li {
    border-bottom: 1px solid #eee; /* シンプルな区切り線 */
}

.drawer-nav-list li a {
    display: block;
    padding: 20px 0;
    color: #42210B; /* 既存のテキストカラーに合わせる */
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.drawer-nav-list li a:hover {
    color: #888; /* ホバー時に少し色を変える */
}

/* 背景オーバーレイ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* メニューが開いている時、背景を暗くしてクリックで閉じられるようにする */
.drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ハンバーガーボタンが開いている時のアニメーション（×印にする場合） */
.hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


/* メインコンテンツ */
.main-content {
  /*  max-width: 1080px;
    margin: 200px auto 60px;*/
    padding: 130px 0 0; /* headerがfixedなので上の余白を確保 */
}

/* タイトルエリア */

.hero-section, .slider-container {
  padding: 0 20px 20px 20px; /* 左右の余白をここで確保 */
  background-color: #f0f7ff;
  background-image: url('../images/bg-blue.jpg');
  background-size: 1080px auto;
  background-repeat: repeat;
}

.top-blue-group{
  padding: 0 40px; /* 左右の余白をここで確保 */
  background-image: url('../images/bg-blue.jpg');
  background-size: 1080px auto;
  background-repeat: repeat;	
}

.hero-section {
    text-align: center;
   /* margin-bottom: 10px;*/
	/*margin-top: 50px;*/
    padding-top: 30px;
}

/*.sub-copy {
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}*/

.main-copy {
    font-size: 2.5rem;
    font-weight: bold;
   /* margin-bottom: 20px;
	margin-top:560px;*/
	/*margin-bottom: 100px 0 20px 0;
    /*border-bottom: 1px solid #333;*/
   /* display: inline-block;*/
    padding-bottom: 10px;
	/*padding-bottom: 550px;*/
}

/* スライダー */
.slider-container {
    margin-bottom: 60px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* 説明セクション (交互配置) */
.intro-container {
    display: flex;
    flex-direction: column;
    gap: 70px; /* アイテム間の縦の隙間 */
}

.intro-item {
    display: flex;
    align-items: center; /* 垂直中央揃え */
    justify-content: space-between;
    gap: 40px;
}

/* 傘のセクションなど、左右を逆にするためのクラス */
.intro-item.reverse {
    flex-direction: row-reverse;
	margin-bottom: 60px
}

.intro-image {
    flex: 0 0 50%; /* 画像の幅を50%に固定 */
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    flex: 1;
    font-size: 2.0rem; /* サイズは適宜調整してください */
    font-weight: bold;
}


/* 説明セクション (2カラム) */
/*.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.intro-item img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 2.0rem;
    margin-bottom: 15px;
	font-weight: bold;
   /* color: #2c3e50;
}*/

/* レスポンシブ (スマホ対応) */
/*@media (max-width: 768px) {
    .main-copy {
        font-size: 1.8rem;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }
}*/

/*２段目　３段目追加*/

/* 共通パーツ：表題とブラシライン */
.section-title {
    text-align: center;
 /*   margin-bottom: 40px;*/
}

.section-title h2 {
    font-size: 3rem;
 /*   margin-bottom: 10px;*/
}

.brush-line {
    display: block;
    margin: 0 auto;
    max-width: 600px; /* 画像サイズに合わせて調整 */
    height: auto;
	margin-bottom: 20px;
}

/* 共通パーツ：ボタン */
.btn-container {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 40px;
    text-decoration: none;
    color: #fff;
	font-size: 1.5em;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* 緑セクション用のボタン（ホバーで色変化） */
.btn-green {
    background-color: #5C3A33; /* 濃い茶*/
}
.btn-green:hover {
    background-color: #AA7F40; /* 少し明るく */
    transform: translateY(-2px);
}

/* 茶セクション用のボタン（ホバーで色変化） */
.btn-brown {
    background-color: #5C3A33; /* 濃い茶 */
}
.btn-brown:hover {
    background-color: #AA7F40; /* 少し明るく */
    transform: translateY(-2px);
}

/* 商品紹介（緑背景） */
/*.products-section {
    padding: 30px 40px;
    background-color: #e8f0e8;*/ /* 薄い緑色 */
  /*  background-image: url('../images/bg-blue.jpg');*/ /* 背景画像がある場合 */
	/*background-size: 1080px auto; *//* 背景画像の幅を固定 */
	/*background-repeat: repeat;
}*/

/* 親要素：背景そのものは透明にし、位置の基準（relative）にする */
.products-section {
    position: relative; /* 擬似要素の基準にする */
    z-index: 0;         /* 重なりの順序をリセット */
    padding: 30px 40px;
    overflow: hidden;   /* 背景がはみ出さないようにする */
}

/* 背景専用の層を擬似要素で作る */
.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 商品や文字（content）より後ろに配置 */
    
    /* 背景の設定をここに移す */
    background-color: #e8f0e8; 
    background-image: url('../images/bg-blue.jpg');
    background-size: 1080px auto;
    background-repeat: repeat;
    
    /* 変化のスピード設定 */
    transition: filter 1.5s ease;
}

/* 半分通過した時に付与されるクラス */
.products-section.is-active::before {
    filter: hue-rotate(-50deg); /* Photoshopの色相-50を再現 */
	/*opacity: 0.7;
	 transition: filter 1.5s ease;*/
  /*transition:filter 1.5s ease;*/
}

/* コンテンツが背景に埋もれないようにする（念のため） */
.section-title, .product-grid {
    position: relative;
    z-index: 1;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.product-item h3 {
    font-size: 2.0rem;
 /*   margin-bottom: 10px;*/
  /*  border-bottom: 1px solid #42210B;*/
    display: inline-block;
}

p1{
 font-size: 1.3rem;	
 font-weight:bold;
 line-height: 1.5;
}


/* 素材・技術・体験（薄茶背景） */
/*.info-section {
    padding: 30px 40px;
    background-color: #f2ede4;*/ /* 薄い茶色 */
   /* background-image: url('../images/bg-blue.jpg');*/ /* 背景画像がある場合 */
	/*background-size: 1080px auto;*/ /* 背景画像の幅を固定 */
	/*background-repeat: repeat;
}*/

/* 親要素：背景そのものは透明にし、位置の基準（relative）にする */
.info-section {
    position: relative; /* 擬似要素の基準にする */
    z-index: 0;         /* 重なりの順序をリセット */
    padding: 30px 40px;
    overflow: hidden;   /* 背景がはみ出さないようにする */
}

/* 背景専用の層を擬似要素で作る */
.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 商品や文字（content）より後ろに配置 */
    
    /* 背景の設定をここに移す */
    background-color: #f2ede4; 
    background-image: url('../images/bg-blue.jpg');
    background-size: 1080px auto;
    background-repeat: repeat;
    
    /* 変化のスピード設定 */
    transition: filter 1.5s ease;
}


/* 半分通過した時に付与されるクラス */
.info-section.is-active::before {
    filter: hue-rotate(-150deg); /* Photoshopの色相-150を再現 */
	/* saturate(0.8) brightness(1.4)*/
	/*opacity: 0.7;
	 transition: filter 1.5s ease;*/
  /*  transition:filter 1.5s ease;*/
}

/* コンテンツが背景に埋もれないようにする（念のため） */
.section-title, .product-grid {
    position: relative;
    z-index: 1;
}

.info-group {
	margin-bottom: 40px;
}

/* 横並びにする設定 */
.info-container{
display: flex;
align-items: center; /* 上下中央揃え */
gap: 40px;           /* 画像とテキストの間の隙間 */
/*margin-bottom: 80px; *//* 段落ごとの下の余白 */
width: 100%;	
}

/* 2段目を左右反転させる設定 */
.info-container.reverse {
  flex-direction: row-reverse;
}


.info-image{
/* width: 500px;
 height:auto;*/
flex: 0 0 45%;
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキストエリア */
.info-box {
 flex: 1;
 /*text-align: left; *//* 基本は左寄せ */
padding: 0 10px;	
}

.info-text p {
 font-size: 1.5rem;	
 font-weight:bold;
 line-height: 1.8;
 margin-bottom: 20px;
}

.btn-container {
    text-align: center; /* ボタンを中央寄せ（完成画像に合わせる） */
}


.brush-line2 {
    display: block;
    margin: 0 auto;
    max-width: 600px; /* 画像サイズに合わせて調整 */
    height: auto;
	/*margin-bottom: 20px;*/
}


/*.info-flex {
    display: flex;
    gap: 60px;
}*/


/* レスポンシブ対応（スマホサイズ） */
/*@media (max-width: 768px) {
    .product-grid, .info-flex {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
*/

/* --- 会社情報セクション（フッター） --- */
.company-footer {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #ffffff; /* 背景白 */
    color: #42210B;
    padding: 60px 40px 20px;
}

.footer-inner {
    width: 100%;
}

/* 店舗写真と情報の横並び設定 */
.footer-main {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
	justify-content: space-between;
}

.footer-shop-image {
    flex: 0 0 30%;
}

.footer-shop-image img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-info-content {
    flex: 1;
	padding: 0 10px;
}

.shop-name-group {
    margin-bottom: 20px;
}

.shop-name-jp {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
	white-space: nowrap; /* 改行を防ぐ */
}

.shop-name-jp span {
    font-size: 1.3rem;
	font-weight: normal;
	vertical-align: 0.25em;
}

/*.shop-name-kana {
    font-size: 1rem;
}*/

.address-group {
    line-height: 1.5;
    margin-bottom: 25px;
	font-size: 1.4rem;
}

.tel {
    font-weight: bold;
}

.url a {
    color: #42210B;
    text-decoration: underline;
}

/* 3. 右側：QR案内画像 */
.footer-qr-guide {
    flex: 0 0 220px; /* QRエリアの幅を固定 */
	padding-top: 40px;
}

/* QR案内画像の設定 */
.footer-qr-guide img {
    max-width: 280px;
    height: auto;
    transition: opacity 0.3s;
}

.footer-qr-guide a:hover img {
    opacity: 0.8;
}

/* リンクメニュー（四角で囲った部分） */
.footer-nav {
    border-top: 1px solid #ddd;
    padding: 30px 0;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav li {
    flex: 0 1 200px;
}

.footer-nav a {
    display: block;
    text-align: center;
    padding: 6px;
    border: 1px solid #42210B;
    text-decoration: none;
    color: #42210B;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* ホバー時の変化 */
.footer-nav a:hover {
    background-color: #42210B; /* 背景を濃い茶色に */
    color: #ffffff;           /* 文字を白に */
    transform: translateY(-3px); /* 少し上に浮く */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ロゴ・コピーライト */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
}

/* ==========================================
   スマートフォン用スタイル (767px以下)
   ========================================== */
@media screen and (max-width: 767px) {
    /* 全体：1080pxの固定幅を解除 */
    .site-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
    }

    /* ② イントロセクション：説明文を縦書きに */
    .intro-item {
        flex-direction: row; /* 横並びを維持 [cite: 486] */
        padding: 0 10px;
    }
    .intro-text {
        writing-mode: vertical-rl; /* 日本語を縦書きに [cite: 504] */
        text-orientation: mixed;
        font-size: 1.4rem; /* 文字サイズをスマホ向けに少し縮小 [cite: 506] */
        padding-left: 15px;
    }
    .intro-image {
        flex: 1; /* 写真の幅を確保 [cite: 496] */
    }

    /* ③ 商品紹介：2列を1列（縦並び）に */
    .product-grid {
        grid-template-columns: 1fr !important; /* 1列に変更 [cite: 627, 629] */
        gap: 30px;
    }

    /* ④ 素材と技術・製作体験：縦並びに */
    .info-container {
        flex-direction: column !important; /* 縦並びに強制  */
        gap: 20px;
    }
    .info-image, .info-box {
        width: 100% !important;
        flex: none !important;
    }

    /* ⑤ フッター：縦並びに */
    .footer-main {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
		gap: 0; /* 項目間の余計な隙間をゼロに */
    }
    .footer-shop-image, .footer-info-content, .footer-qr-guide {
        width: 100% !important;
        flex: none !important;
        margin-bottom: 15px;
    }
	
	/* 住所グループの下の隙間を狭くする */
   .address-group {
    margin-bottom: 10px !important; /* 元の25pxから10pxに */
    }
	
	/* QRコード画像自体の上の余白を消す */
.footer-qr-guide {
    padding-top: 0 !important; /* パソコン版の40pxを解除 */
}
	
.footer-qr-guide img {
    max-width: 200px; /* スマホで見やすいサイズに調整 */
    margin: 0 auto;
}	
	
	/* フッターナビ（リンクメニュー）部分の調整 */
.footer-nav {
    padding: 15px 0 !important; /* 上下の余白を30pxから15pxに */
}
    
    /* フッターナビのボタンを縦に並べる */
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
		gap: 8px !important; /* リンク同士の縦の間隔を狭く */
    }
	
    .footer-nav li {
		/* PC版の 200px 指定を解除し、中身に合わせる設定に変更 */
        flex: none !important;
        width: 100%;
        max-width: 280px;
		margin: 0 auto;        /* 中央寄せ */
		
    }
	
	/* コピーライト部分の調整 */
.footer-bottom {
    padding-top: 10px !important;
}
	
	
}






















