@charset "UTF-8";
/* CSS Document */


body{
	background: #000;
	color:#fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align: center;
}

img{
	vertical-align: bottom;
	height: auto;
	
}






/*PCレイアウト*/




		#age-verification-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* 背景を暗く */
            display: flex; /* 初期表示をflexに設定 */
            justify-content: center;
            align-items: center;
            z-index: 1000; /* 他の要素の上に表示 */
        }
        .modal-content {
            background-color: #fff; /* モーダルの背景色 */
			color: #000;
            padding: 40px 100px;
            text-align: center;
			transform: scale(0.5);
    		transform-origin: center center;
        }
		
		
		.modal-content h2{
			font-size: 45px;
			font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
			font-weight: 500;
			font-style: normal;
			line-height: 1.5;
			margin: 30px 0;
		}
		
		.modal-content p{
			font-size: 23px;
			font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
			font-weight: 500;
			font-style: normal;
			line-height: 2;
			margin-bottom: 30px;
		}
		
		
		
       button {
			display: inline-block;
			font-size: 37px;
			font-family: "kozuka-gothic-pro", sans-serif;
			font-weight: 500;
			font-style: normal;
            margin: 20px -10px;
            padding: 10px 70px;
            border: 2px solid;
            cursor: pointer;
			background-color: #fff;
        }
		
		
		
		button:hover{
			background-color: #000;
			border: 2px solid #000;
			color: #fff;
		}







header section{
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;	
}

header .top{
  	background-image: url("../images/topmain.jpg");
	text-align: center;
	background-size: cover;
 	background-position: center;
  	position: relative; /* 必須！ */
  	height: 100vh;      /* ←背景を全画面なら付ける */
}



header .top .top-btn {
    position: absolute;
    right: 0;               /* 画面右端寄せ */
    top: 35%;               
    transform: translateY(-50%); 
    width: 55%;            
    aspect-ratio: 3 / 1;   /* PNGの比率指定用 */
    background: url("../images/26_buy_button.png") no-repeat right center / contain;
    display: block;
    cursor: pointer;
}
#about{
	transform: scale(0.5);
    transform-origin: center center;
}

#about #logo_1 img{
	margin: 200px 0 20px;
	
}

#about hr{
	width: 350px;
	margin-bottom: 100px;
	
}

#about h1{
	font-size: 38px;
	font-family: "kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	margin-bottom: 100px;
}

#about P{
	font-size: 27px;
	font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	margin-bottom: 300px;
}








#product {
	
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 300px;
	
	
}

.movie,.img{
	flex: 1;
}

.movie video{
	width: 100%;
	height: auto;
}

.img img{
	max-width: 100%;
	height: auto;
    margin: 50px 0 10px;
}


#product .img h1{
	font-size: 45px;
	font-family: "Times New Roman", Times, "serif";
	font-weight: 300;
	font-style: normal;
	line-height: 1.5;
	transform: scale(0.6);
    transform-origin: center center;
}

#product .img h2{
	font-size: 38px;
	font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
	font-weight: 300;
	font-style: normal;
	line-height: 0.6;
    margin-bottom: 0;
	transform: scale(0.6);
    transform-origin: center center;
}

#product .img h3{
	font-size: 20px;
	font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	margin: 10px 0 20px;
	transform: scale(0.6);
    transform-origin: center center;
}

#product .img a{
	font-size: 30px;
	font-family:  "Times New Roman", Times, "serif","kozuka-gothic-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	color: #fff;
	padding: 10px 50px;
	border: 1px solid #fff;
	line-height: 1.5;
	transform: scale(0.5);
    transform-origin: center center;
}

#product .img h4{
	font-size: 20px;
	font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	margin-top: 60px;
	margin-bottom: 100px;
	transform: scale(0.6);
    transform-origin: center center;
}

#fadein_logo {
    position: fixed; /* 固定位置 */
    top: 20px; /* 上からの距離 */
    left: 50%; /* 中央揃え */
    transform: translateX(-50%); /* 中央揃え */
    opacity: 0; /* 初期状態で透明 */
    transition: opacity 0.5s ease; /* フェードインのトランジション */
    pointer-events: none; /* クリックを無効化 */
    z-index: 1000; /* 高いz-indexで他の要素の上に表示 */
}

#fadein_logo.show {
    opacity: 1; /* フェードイン時の不透明度 */
}


#fadein_logo img {
    width: 200px; 
    height: auto;
}



#images{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 300px;
	
	
}

.img_1,.img_2{
	flex: 1;
}

.img_1 img,.img_2 img{
	width: 100%;
	height: auto;
	display: block;
}






#about_2{
	background-image: url("../images/brewery.jpg");
	height: 140vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;	
	position: relative;
	
	
}


#about_2 img{
	position: absolute;
	margin-top: 300px;
	
	left:50%;/* 左から中央揃え*/
	transform:translateX(-50%);/*中央揃えのための調整*/
	max-width: 50%;/* 画像の最大幅を設定（必要に応じて調整）*/
	height: auto;/*アスペクト比を維持*/
}

#about_3 {
	
	font-size: 27px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	margin: 10px 0;
	transform: scale(0.5);
    transform-origin: center center;
	
}

#about_3 img{
	margin: 100px 0 150px;
}





#about_4{
	background-image: url("../images/sj_1.jpg");
	height: 140vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;	
	
}

#about_5 p{
	
	font-size: 27px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	margin: 100px 0;
	transform: scale(0.5);
    transform-origin: center center;
	
}

#about_5 img{
	
	margin: 50px 0;
}

#about_5 hr{
	width: 600px;
}

#about_5 #name{
	margin: 0 auto;
	
	
}

#about_5 #name img{
	width: 15%;
	margin-bottom: 300px;
}














footer{
	position: relative;
	background-image: url("../images/gradation.png");
	background-position: center;
	
	background-size: contain;
	background-repeat:repeat-x;
	max-height: 600px;
	
	/*もしくは元画像の縦幅をもう少し短くトリミングして
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 800px;
	*/
	
	padding: 50px;
	height: auto;
	font-size: 10px;
	
	
	
	
}


.footer_content {
    display: flex; /* Flexboxを使用 */
    justify-content: space-between; /* 左右に分ける */
    align-items: flex-end; /* 下に揃える */
    padding: 150px 20px 30px; /* 内側の余白 */
	
}

.footer-logo{
	width: 250px;
	height: auto;
}

.leftside {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: flex-start; /* 左揃え */
	
}

.rightside {
    display: flex; /* 横並びに配置 */
    align-items: center; /* 中央揃え */
	margin-top: 50px;
	line-height: 1.5;
}

.rightside a {
    margin-left: 15px; /* リンクの間隔 */
    color: white; /* リンクの色 */
    text-decoration: none; 
	padding: 0 5px;/* 下線を消す（必要に応じて） */
	font-family:"Times New Roman", Times, "serif";
}

.insta_logo{
	width: 15px;
	height: auto;
}

/* smallタグのスタイル */
.leftside small {
    margin-top: 50px; /* ロゴとの間にマージンを追加 */
    color: white; /* 小さいテキストの色 */
	line-height: 1.5;
	font-family:"Times New Roman", Times, "serif";
}


.for_sp{
	display: none;
}


/*タブレットレイアウト*/


@media screen and (max-width:1024px){
	
	
#fadein_logo {
    position: fixed; /* 固定位置 */
    top: 20px; /* 上からの距離 */
    left: 50%; /* 中央揃え */
    transform: translateX(-50%); /* 中央揃え */
    opacity: 0; /* 初期状態で透明 */
    transition: opacity 0.5s ease; /* フェードインのトランジション */
    pointer-events: none; /* クリックを無効化 */
    z-index: 1000; /* 高いz-indexで他の要素の上に表示 */
}

#fadein_logo.show {
    opacity: 1; /* フェードイン時の不透明度 */
}

header .top{
		background-image: url("../images/sp_topmain_2.jpg");
		text-align: center;
		padding-top: 10vh;
		

}	

	  header .top .top-btn {
    position: absolute;

    /* 中央配置に変更 */
    left: 50%;
    right: auto; 
    transform: translateX(-50%); /* 横方向の中央揃え */

    /* Y軸：画面下から少し上に配置 */
    top: auto;       /* PCの top を無効化 */
    bottom: 15%;      /* "気持ち上" の値。5〜12%で微調整可 */

    /* レスポンシブサイズ */
    width: 100vw;        /* スマホ・タブレットでの横幅（自由に調整可） */
    
    aspect-ratio: 3 / 1;  /* PNGの縦横比 */
    background: url("../images/26_buy_button.png") no-repeat center / contain;

    display: block;
    cursor: pointer;
  }
	
	.img img{
	max-width: 70%;
	height: auto;
	margin-bottom: 50px;
}






	#product .img{
	width: 80%;
	margin: 0 auto;
	}
	
#product .img h1{
	font-size: 27px;
	font-family: "Times New Roman",Times,"serif";
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
}

#product .img h2{
	font-size: 24px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.5;
	margin-bottom: 30px;
}

#product .img h3{
	font-size: 14px;
	font-family: "kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	margin-bottom: 30px;
}

#product .img a{
	font-size: 27px;
	font-family: "kozuka-gothic-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	color: #fff;
	padding: 5px 50px;
	border: 1px solid #fff;
	line-height: 1.5;
}

#product .img h4{
	font-size: 14px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.5;
	margin-top: 30px;
	margin-bottom: 50px;
}


#about_4{
	background-image: url("../images/sj_1.jpg");
	height: 140vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
	
	
#about_5 #name img{
	width: 50%;
	margin-bottom: 10px;
}
	
	
	
	
	
footer {
    width: 100%; /* 幅を100%に設定 */
    padding: 10px; /* 内側の余白を調整 */
    box-sizing: border-box; /* パディングを含めた幅の計算 */
    background-size: contain;
    background-repeat: repeat-x;
    min-height: 200px;
    height: auto;
}


.footer-logo {
    max-width: 100%; /* 最大幅を100%に設定 */
    height: auto; /* 高さは自動でアスペクト比を維持 */
}

.leftside {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: flex-start; /* 左揃え */
}

.rightside {
    display: flex; /* 横並びに配置 */
    align-items: center; /* 中央揃え */

    margin-top: 0; /* 上部のマージンをゼロに設定 */
	margin-bottom: 27px;
    line-height: 1.5;
}

.rightside a {
	font-size: 12px;
    margin-left: 5px; /* リンクの間隔 */
    color: white; /* リンクの色 */
    text-decoration: none; 
    padding: 0 5px; /* 下線を消す（必要に応じて） */
	white-space: nowrap;
}

.insta_logo {
    width: 15px;
    height: auto;
}

/* smallタグのスタイル */
.leftside small {
	font-size: 12px;
	text-align: left;
    margin: 20px 0 30px; /* ロゴとの間にマージンを追加 */
    color: white; /* 小さいテキストの色 */
    line-height: 1.5;
}

}


/*スマホレイアウト*/


@media screen and (max-width:480px){


	
	
		#age-verification-modal {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%; /* 幅を100%に設定 */
			height: 100%; /* 高さを100%に設定 */
			background-color: rgba(0, 0, 0, 0.4); /* 背景を暗く（透明度40%） */
			display: flex; /* フレックスボックスを使用 */
			justify-content: center; /* 水平方向に中央揃え */
			align-items: center; /* 垂直方向に中央揃え */
			z-index: 1000; /* 他の要素の上に表示 */
			
		}

		.modal-content {
			background-color: #fff; /* モーダルの背景色 */
			padding: 40px ; /* 内側の余白 */
			max-width: 90%; /* 最大幅を90%に設定 */
			width: 100%; /* 幅を設定 */
			text-align: center; /* テキストを中央揃え */
			position: relative;
		
		}

		.modal-content h2 {
			font-size: 25px;
			font-family: "kozuka-mincho-pro", serif;
			font-weight: 500;
			font-style: normal;
			line-height: 1.5;
			margin: 30px 0;
		}

		.modal-content p {
			font-size: 16px;
			font-family: "kozuka-mincho-pro", serif;
			font-weight: 500;
			font-style: normal;
			line-height: 2;
			margin-bottom: 30px;
		}

		button {
			display: inline-block;
			font-size: 24px;
			font-family: "kozuka-gothic-pro", sans-serif;
			color: #000;
			font-weight: 500;
			font-style: normal;
			margin: 10px -10px;
			padding: 10px 70px;
			border: 2px solid #000;
			cursor: pointer;
			background-color: #fff;
			
		}

		button:hover {
			background-color: #000;
			border: 2px solid #000;
			color: #fff;
		}

	
	

	
	
header .top{
		background-image: url("../images/sp_topmain_3.jpg");
		text-align: center;
		padding-top: 10vh;


}

	header .top .top-btn{
		bottom: 25%;
		
	}
	
#about{
		width: 80%;
		margin: 0 auto;
		transform: none;
	}
	
#about #logo_1 img{
	max-width: 60%;
	height: auto;
	margin: 100px 0 20px;
	
}

#about hr{
	width: 200px;
	margin-bottom: 60px;
	
	
}

#about h1{
	font-size: 14px;
	font-family: "kozuka-mincho-pro", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 2;
	margin-bottom: 50px;
	
}
	


#about P{
	font-size: 11px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	margin-bottom: 150px;
	
}
	

	
	
	
	
#product {
	
	display: block;
	width: 100%;
	margin-bottom: 200px;
	
	
}
	

.movie video{
	margin-bottom: 150px;
}

.img img{
	max-width: 70%;
	height: auto;
	margin-bottom: 20px;
}

#product .img{
	width: 100%;
	margin: 0 auto;
	}
	
#product .img h1{
	font-size: 27px;
	font-family:"Times New Roman", Times, "serif";
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	transform: none;
}

#product .img h2{
	font-size: 24px;
	font-family: "Times New Roman", Times, "serif","kozuka-mincho-pro", serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.5;
	transform: none;
}

#product .img h3{
	font-size: 11px;
	font-family: "kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	margin-bottom: 40px;
	margin-top: 10px;
	transform: none;
}

#product .img a{
	font-size: 20px;
	font-family: "kozuka-gothic-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	color: #fff;
	padding: 10px 50px;
	border: 1px solid #fff;
	line-height: 1.5;
	transform: none;
}

#product .img h4{
	font-size: 14px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	margin-top: 60px;
	transform: none;
}
	
	
	
	
		#fadein_logo {
			position: fixed; /* 固定位置 */
			top: 20px; /* 上からの距離 */
			left: 50%; /* 中央揃え */
			transform: translateX(-50%); /* 中央揃え */
			opacity: 0; /* 初期状態で透明 */
			transition: opacity 0.5s ease; /* フェードインのトランジション */
			pointer-events: none; /* クリックを無効化 */
			z-index: 900; /* 高いz-indexで他の要素の上に表示 */
			max-width: 40%; /* 最大幅を80%に設定 */
			width: auto; /* 幅を自動に設定 */
		}

		#fadein_logo.show {
			opacity: 1; /* フェードイン時の不透明度 */
		}

		#fadein_logo img {
			width: 100%; /* 幅を100%に設定 */
			height: auto; /* 高さは自動でアスペクト比を保持 */
		}

	
	
	
	
	
	
	#images{
	display: block;
	margin-bottom: 50px;
	
	
}


	
	
	#about_2{
	background-image: url("../images/sp_brewery.jpg");
	width: 100%;
	height: 80vh;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;	
	position: relative;
}


#about_2 img{
	position: absolute;
	margin-top: 200px;
	top:50px;
	left:50%;/* 左から中央揃え*/
	transform:translateX(-50%);/*中央揃えのための調整*/
	max-width: 50%;/* 画像の最大幅を設定（必要に応じて調整）*/
	height: auto;/*アスペクト比を維持*/
}

#about_3 {
	width: 80%;
	margin: 0 auto;
	font-size: 11px;
	font-family: "kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	transform: none;
	
}


	
#about_3 img{
	margin: 50px 0 30px;
	width: 30px;
}





#about_4{
	background-image: url("../images/sp_sj_1.jpg");
	width: 100%;
	height: 80vh;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;	
	position: relative;
}

#about_5 p{
	
	width: 80%;
	margin: 0 auto;
	font-size: 11px;
	font-family: "Times New Roman",Times,"serif","kozuka-mincho-pro", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	transform: none;
	
}
	


#about_5 img{
	width: 150px;
	margin: 50px 0;
}

#about_5 hr{
	width: 300px;
}

#about_5 #name{
	margin: 0 auto;
	
	
}

#about_5 #name img{
	width: 50%;
	margin-bottom: 30px;
}
	
	
	
	
	
	
/* -------------  
フッター全体  
--------------*/
footer {
    width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
    background-size: contain;
    background-repeat: repeat-x;
    min-height: 200px;
    height: auto;
	
}

	
	.footer-logo {
    width: 48%;
    height: auto;
    margin: 0;             /* ← これが最重要：中央寄りの原因を消す */
    padding: 15px 0;
    display: block;        /* 左揃えしやすくする */
}
/* 
  左右を横並びにする（ベース）
  左：leftside  
  右：rightside 
*/
.footer_content {
    display: flex;               /* 横並び */
    flex-direction: row;
    justify-content: space-between; /* 左右に配置 */
    align-items: flex-end;          /* 右側を下寄せ */
    width: 100%;
    margin-top: 100px;
	margin-bottom: 30px;
    padding: 0;
}


/* -------------  
左ブロック（ロゴ＋コピーライト）
--------------*/
.leftside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* ← 左揃えを確実にする */
    justify-content: flex-start;
    width: auto;
    margin: 0;
	
}


.leftside small {
    font-size: 8px;
    margin: 5px 0 2px 0;         /* コピーライトとの距離調整 */
    text-align: left;
}


.rightside {
    display: flex;
    flex-direction: row;     /* 横並び */
    align-items: center;     /* ← 縦方向ど真ん中 */
    justify-content: flex-end; /* 右端寄せは維持 */
    gap: 15px;
    height: 100%;            /* ← これを入れると上下方向が揃いやすい */
    margin: 0;
    padding: 0;
}

/* CONTACT US */
.rightside a {
    font-size: 8px;
    color: white;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    line-height: 1;          /* ← 余白でズレないよう固定 */
}

/* アイコン */
.insta_logo {
    width: 12px;
    height: auto;
    display: block;          /* ← 画像の縦揃えが安定する */
}

/* -------------  
SP時に使っていた要素は非表示でOK  
--------------*/
.managed {
    display: none;
}

.for_sp {
    display: block;
    font-size: 8px;
    color: white;
    margin: 5px 0 0 0;
    text-align: left;          /* ← 左に合わせる */
	font-family: "Times New Roman",Times,"serif";
	
}
	
footer .leftside a .for_sp {
    text-decoration: none !important;
}
	
}





	
	
	

	
	
	
	
	
	
	