@charset "UTF-8";
/* おこげせんべい　咲く焦がれ */

/*全体の設定*/
*,*::before,*::after{
margin: 0;
padding: 0;
box-sizing: border-box;
/*border: 1px solid #000;*/
}

/*画像の１００％表示*/
img{
max-width: 100%;
height: auto;
/*画像を下につける*/
vertical-align: top center;
}

@media(min-width:768px){
	body{
		min-width: 1180px;
	}
}


body{
max-width: 100%;
font-family: "Shippori Mincho",serif;
/*余白の為に固定*/
padding-top: 80px;
/*背景和紙*/
	background-image: url("../images/back-washi.jpg");
	background-repeat: repeat;

}

/*スマホ版-------------------------------------*/
/*コンテナー設定*/
.container{
/*幅（ブラウザに対して）*/
width: 90%;
/*中央寄せ*/
margin: 0 auto;
}

/*ヘッダー設定 ---------------------------------------------------
----------------------------------------------------------------*/
header{
	/*ヘッダー固定*/
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index: 1000;
	background-image: url("../images/main-bk-wasi.jpg");
	background-repeat: repeat;
	background-color: #FFF;	
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
/*  background-color: aqua*/
}

/* h1 の幅を自動に */
header .container h1 {
  width: auto;
}

/* nav 内の ul をリセットして横並び */
header nav ul {
  display: flex;       /* liを横並びにする */
  margin: 0;           /* デフォルトの余白をリセット */
  padding: 0;
  list-style: none;    /* 黒丸を消す */
}

/* li の間に少し間隔を作る */
header nav ul li {
  margin-left: 20px;   /* 1つ目は0でもOK */
}

/* ロゴ画像サイズ調整（ヘッダーに収まるように） */
header .container h1 img {
  max-width: 150px;    /* 適宜調整 */
  height: auto;
}

header img{
padding-top: 10px;
}

.top_logo{
/*	background-color: brown;*/
}

/*メイン------------------------------------------------------*/
main{
/*background-color: antiquewhite;*/
}


/*ハンバーガーメニュー　----------------------------------------------------------------------------------------------------------------*/
/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #000;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
/*ナビ背景色*/
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

/*ナビリストメニュー*/
.nav-overlay__list {
  display: flex;
  flex-direction: column; /* ← 縦に並べる */
  align-items: center;	
  margin: 0;
  padding: 0;
  list-style: none;
}

/*ナビサブメニュー*/
.sub_links{
	display: flex;
	flex-direction: row; 	/*横に並べる*/
	justify-content: center;
	aligin-items: center;
	margin: 0;
  	padding: 0;
 	list-style: none;
	gap: 50px;
	font-size: 0.8em;
    margin-top: 6.25rem;
}

.sub_links a{
	color: rgba(51,51,51,.75);
}


.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

/*メニューの文字の大きさ*/
.menu_link_en{
	font-size: 14px;
}

.menu_link_ja{
	font-size: 18px;	
}

/*メニューのオンラインショップへのボタン*/
.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  margin-top: 40px;
/*文字色*/
  color: #000;
  border-radius: 9999px;
  font-size: 22px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}


/*ヘッダーのショッピングサイトリンクボタン*/
.top_shop__link{
/*  position: fixed; 固定すると下にきちゃうのはなぜ？*/ 
　top: 0;
  right: 50px;
  display: inline-block;
  padding: 12px 20px 0 20px; 
  margin: 0 25px;
  height: 50px;
  border-radius: 25px;
 	/*文字色*/
  color: #000;
  font-size: 15px;
  text-decoration: none;
  background-color:rgba(255,255,255,.3);
/*  transition: color .3s;*/
}

/*オンラインショップボタンの色*/
.lound_border_btn{
/*	background-color: antiquewhite;*/
	border: 1px solid #c3b296;
}

/*ヘッダーメニューここまで---------------------------------------*/

/*トップ（メインビジュアル）*/
.top{
	width: 100%;
	height: 80vh; 
	background-image: url("../images/main-visual-sp2.jpg");
	background-size: cover;
	background-position: bottom left;
    background-color:darksalmon;
}

/*レスポンシブ*/
@media(min-width:768px){
	.top{
		background-image: url("../images/main-visual-pc.jpg");
	}
}

/*咲く焦がれロゴ画像*/
.logo-area {
  position: relative; /* 基準位置を作る */
}

.saku-logo {
  	position: absolute;
  	top: 10px;
    right: 10px;
    width: 180px;;
}

/* PC用 */
@media (min-width: 768px) {
  .saku-logo {
    top: -20px;   /* 上からの距離 */
  	right: 20%; /* 右からの距離 */
  	width: 280px; /* サイズは好みで調整 */
  }
}

/*おこげせん紹介----------------------------------------------*/
.okoge_sub_img{
	border-radius: 10px;
}

.introcard{
	font-size:16px;
}

.introcard__text h2{
	padding-bottom: 20px;
	line-height:1.8;
}

.introcard__text p{
	line-height: 2;
}

/* PC用 */
@media(min-width:768px){

	.introcard{
		/*横並びを有効化*/
		display: flex;
		justify-content: space-evenly;
		font-size:16px;
	}
	.introcard__image{
		width:50%;
	}

	.introcard__text{
		width:40%;
		padding-left: 20px;
	}

}

	
.okoge_intro{
/*background-color: aquamarine;*/
}

/*intro　ここまで------------------------------------------------*/

/*story おいしさの秘密*/
.story_container_grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  grid-template-rows: 200px 200px;         /* 自動で高さ調整 */
  gap: 10px;                             /* 要素の間隔 */
  max-width: 800px;                      /* お好みで幅制限 */
  margin: 0 auto;                        /* 中央寄せ */
  position: relative
  
}

.story_container_grid > div {
/*  background-color: #f5f5f5;  デバッグ用の背景色 */
  text-align: center;
}

.story_container_grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* お好みで角丸 */
}

.story__item1{

	width: 7em;
	height: auto;
	position: absolute;
	top: -20px;
	left: 10px;

}

.story__item2{

	position:absolute;
	width:200px;
	top:-10px;
	left: 230px;

}

.story__item3{
	position: absolute;
	width:200px;
	top:200px;
	left:20px;
	
}

.story__item4{
	position:absolute;
	top:280px;
	left:280px;
		
}

.story_container_flex{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;	
}

/*おいしさの秘密*/
.story__item5 {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
    /*grid-column: 1 / 3;  /*横2列ぶち抜き*/ 
	/*position: absolute;*/
/*
	top:450px;
	left:95px;
	margin-top: 10px;
*/
}

.story__item6{
	text-align: center;
	margin-bottom: 30px;
/*
	grid-column: 1 / 3;
	position: absolute;
*/
/*
	top:520px;
	left:88px;
*/
}

.story__item7{
	
  	text-align: center;
}

.story__item7 a{
	text-decoration: none;
	color: inherit;
}

.story__item6 p{
	line-height: 2;
}
.story__text__en{
	font-size: 14px;
}
.story__text__slash{
	font-size:28px;
}

.story__text__ja{
	font-size: 28px;
}

.story__btn{
/*background-color: aqua;*/	

  display: inline-block;
  /*text-align: center;*/
  width:200px;
  padding: 10px;
  margin-top: 20px;
/*文字色*/
  color: #000;
  border-radius: 9999px;
  font-size: 16px;
  text-decoration: none;
  transition: color .3s;		
  background-color:rgba(255,255,255,.3);
/*  transition: color .3s;*/
}


/* PC用 */
@media(min-width:768px){
.story_container_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: 200px 200px; 
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
  place-items: center; /* セルの中身を中央寄せ */
}

.story_container_grid img {
  max-width: 100%;
  height: auto;
  display: block;
}


.story__item1{
	width: 10em;
	height: auto;
	position: absolute;
	top: -20px;
	left: -20px;

}

.story__item2{

	position:absolute;
	width:300px;
	top:-10px;
	left: 50%;

}

.story__item3{
	position: absolute;
	width:300px;
	top:200px;
	left: 10%;	
}

.story__item4{
	position:absolute;
	top:320px;
	left:70%;
	width: 200px;
		
}

.story__item5 {
	margin-top: 200px;
    /*grid-column: 1 / 3;  /*横2列ぶち抜き */
	/*position: absolute;*/
	/*top:550px;*/
/*	left:38%;*/
/*	left:100px;*/

}

.story__item6{
	margin-top: 50px;
/*
	grid-column: 1 / 3;
	position: absolute;
	top:630px;
	left:38%;
	
*/
}
	
.story__item6 p{
	line-height: 2.5;
	font-size:18px;
}
.story__text__en{
	font-size: 16px;
}

.story__text__slash{
	font-size:32px;
}
.story__text__ja{
	font-size: 32px;
}

}

/*素材の写真*/
.sozai_visual{
/*background-color: cadetblue;*/
}

/*おいしさの秘密----------------------------------------------------*/
.story__01,
.story__02,
.story__03{
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.story__01 li,.story__02 li,.story__03 li{
	list-style-type: none;
	line-height: 2;
}

.story__01 img,.story__02 img,.story__03 img{
	width: 480px;
	height: 300px;
	border-radius: 8px;
		
}

.okoge-all{
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.okoge-all-img img{
	margin-top: 50px;
	border-radius: 8px;
}

.okoge-all-img-text{
	line-height: 2;
	
}

.okoge-all-img-text h3{
	font-size: 28px;
}


/* PC用 */
@media(min-width:768px){
.story__01,
.story__02,
.story__03{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:50px;
    flex-direction: row;
	margin-top: 50px;
}

.story__01 li,.story__02 li,.story__03 li{
	width: 30%;
	
}


	.okoge-all-img img{
		width:800px;
	}
	
	.okoge-all-img-text{
		margin-top: 50px;
		width: 800px;
		line-height: 2;
	}
	

}



/*story ここまで-------------------------------------------------*/




/*おこげ３種類---------------------------------------------------*/
.okoge_3{
/*	background-color: cornflowerblue;*/
	margin-top: 80px;
}

.okoge_3__container{
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}

.okoge_3 h2{
	text-align: center;
	font-size: 28px;
	margin-bottom: 30px;
}
.okoge_3 img{	
	width:300px;
	height: auto;
/*	position: absolute;*/
}

.okoge_3__item{
　　position: absolute;
}

/*咲く焦がれ（全３種）*/
.okoge_3__01{
	margin-bottom: 50px;
	line-height: 2;
}

/*生姜醤油セクション---------------------------------------------------------------------*/
/*おこげせんべい生姜の写真*/
.okoge_3__02{
	z-index: 99;
/*	margin-top: -300px;*/
}

/*おこげせんべい長岡生姜醤油味（タイトル）*/
.okoge_3__03{
	margin-top: 10px;
	margin-bottom: 20px;
}

/*おこげせんべい長岡醤油味の説明*/
.okoge_3__04{
	width:300px;
}

/*生姜の画像*/
.okoge_3__05{
	margin-top: 10px;
/*	padding-top: -300px;*/
	margin-left: 10px;
	z-index: 1;
	width:250px;
}

/*おこげせんべい生姜醤油味のイラスト*/
.okoge_3_05__02{
	margin-top: -180px;
	margin-left: 250px;
	z-index: 1;
	width: 180px;
	opacity: 0.2;
}
/*生姜醤油セクションここまで---------------------------------------------------------------*/

/*かぐら南蛮セクション-------------------------------------------------------------------*/
/*新潟かぐら南蛮味噌味せんべい画像（写真）*/
.okoge_3__06{
	margin-top: 80px;
	z-index: 99;
}

/*新潟かぐら南蛮味噌味（タイトル）*/
.okoge_3__07{
	margin-top: 20px;
	margin-bottom: 20px;
}

/*かぐら南蛮味噌味説明*/
.okoge_3__08{
	width:300px;
}

/*かぐら南蛮イラスト*/
.okoge_3__09{	
	margin-top: 10px;
/*	padding-top: -300px;*/
	margin-left: -100px;
	z-index: 1;
	width:200px;
}

/*おこげせんべい神楽南蛮イラスト*/
.okoge_3__09__02{
	margin-top: -150px;
	margin-left: 100px;
	z-index: 2;
	width: 180px;
	opacity: 0.2;
}

/*あごだし塩味せんべいセクション------------------------------------------------------------------------------*/
/*あごだし塩味せんべい画像（写真）*/
.okoge_3__10{
	margin-top: 100px;
	z-index: 99;
}

/*佐渡あごだし塩味(タイトル）*/
.okoge_3__11{
	margin-top: 20px;
	margin-bottom: 20px;
}

/*あごだし説明*/
.okoge_3__12{
	width: 300px;
}

/*あごだしイラスト*/
.okoge_3__13{
	margin-top: 10px;
/*	padding-top: -300px;*/
	margin-left: -10px;
	z-index: 2;
	width:250px;
}

/*あごだしせんべいイラスト*/
.okoge_3__13__02{
	margin-top: -150px;
	margin-left: 50px;
	z-index: 1;
	width: 180px;
	opacity: 0.3;
}

/* PC用------------------------------------------------------------------------------------*/

@media(min-width:768px){

	/*おこげ３種類*/
.okoge_3{
	margin-top: 100px;
}	


.okoge_3__container{
	display: flex;
	flex-wrap: wrap;
	
/*	position: relative;*/
/*	flex-direction: row;*/
	justify-content: space-between;
	align-items: center;
}

/*おこげせんべい長岡醤油味の説明--------------------------------------------------------------------*/
.okoge_3__04{
	width:300px;
	margin-bottom: 50px;
}
	
/*生姜のイラスト*/
.okoge_3__05{
	margin-top: -300px;
/*	padding-top: -300px;*/
	margin-left: -600px;
	z-index: 1;
}

/*おこげせんべいのイラスト*/
.okoge_3_05__02{
	margin-top: -400px;
	margin-left: 550px;
	margin-bottom: 200px;
	z-index: 1;
	width: 200px;
	opacity: 0.3;
}

/*---------------------------------------------------------------------------------------------*/

/*新潟かぐら南蛮味噌味せんべい画像（写真）*/
.okoge_3__06{
	margin-top: 80px;
	z-index: 99;
}
/*かぐら南蛮イラスト*/
.okoge_3__09{	
	margin-top: -300px;
/*	padding-top: -300px;*/
	margin-left: -600px;
	z-index: 1;
	width: 200px;
}

/*おこげせんべい神楽南蛮イラスト*/
.okoge_3__09__02{
	margin-top: -300px;
	margin-left: 550px;
	z-index: 1;
	width: 180px;
	opacity: 0.2;
}

/*あごだし塩味せんべいセクション------------------------------------------------------------------------------*/
/*あごだし塩味せんべい画像（写真）*/
.okoge_3__10{
	margin-top: 300px;
	z-index: 99;
}
	
/*あごだしイラスト*/
.okoge_3__13{
	margin-top: -250px;
	margin-left: -600px;
	z-index: 1;
}

/*あごだしせんべいイラスト*/
.okoge_3__13__02{
	margin-top: -300px;
	margin-left: 550px;
	z-index: 1;
	width: 180px;
	opacity: 0.3;
}

/*メディアの締め部分*/
} 


/*ショップ--------------------------------------------------------*/
.online_shop h3{
	text-align: center;
/*	background-color: aqua;*/
	margin-top: 30px;
	margin-bottom: 50px;
}

.shop__en{
	font-size: 16px;
	margin-top: 80px;
}

.shop__ja{
	font-size: 28px;
}

.shop__main{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.shop__9{
	width: 400px;
	margin-bottom: 50px;
	text-align: center;
}

.shop__9 p{
	margin-bottom: 30px;
}

.shop__9 a{
	text-decoration: none;
	color: inherit;
}

.shop__15{
	width: 400px;
	margin-bottom: 50px;
	text-align: center;
}

.shop__15 p{
	margin-bottom: 30px;
}

.shop__15 a{	
	text-decoration: none;
	color: inherit;
}


/* PC用 */
@media(min-width:768px){
	
	.online_shop h3{
	margin-top: 100px;
	margin-bottom: 50px;
}
	
	.shop__en{
	font-size: 16px;
	margin-top: 200px;
}

	.shop__main{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap:50px;
    }

	
}


/*店舗について-----------------------------------------------------*/
.our_shop{
	text-align: center;	
	line-height: 2;
}

.our_shop__list{
	list-style-type:none;
}

.our_shop__text__en{
	font-size: 16px;
}

.our_shop__text__ja{
	font-size: 28px;
}



section{
/*background-color:darkgoldenrod;*/
padding: 50px 0;				/*セクションの周りの余白*/
}

/*フッター*/
footer{
	margin-top: 50px;
	margin-bottom: 100px;

	background-image: url("../images/logo-white.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
/*	background-color: aquamarine;*/
}



footer .container{
/*	height: 500px;*/
}

/*紺色のロゴ*/
footer img{
	width: 200px;
	height: auto;
}

.footer__container{
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer__item{
/*    position: absolute;*/
}

.footer__logo__text{
/*	margin-top: 10px;*/
}

.footer__logo__address{
	text-align: center;

}

/*お問い合わせサイト-------------------------------------------*/
.inquiry__container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.inquiry__h1{
	text-align: center;
	padding-top:10px;
	padding-bottom: 10px;
	background-color: rgb(0,0,0,0.1);
}

.inquiry__text{
	text-align: center;
	padding: 10px 20px 0px 20px;
}

.inquiry__p{
	text-align: left;
	margin-top: 20px;
	margin-left: 30px;
}

.inquiry__line{
	border: 1px solid rgb(0,0,0,0.15) ;
	width: 50vh;
	margin: 20px;
}


.inquiry__btn{
	width: 150px;
	background-color: #1b1464;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-family: "Shippori Mincho",serif;
}

.inquiry__btn:hover{
	opacity: 0.6;
}

/* フォーカスしているとき */
input,textarea{
	background-color: #EEE8E8;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 3px 3px 5px 0 rgb(0,0,0,0.15) inset;
}

textarea{
	width:400px;
	height:200px;
	resize:none;
	resize:vertical;
	min-height: 160px;
	max-height: 420px;
}

input:focus{
/*	backgroud-color: #000;*/
	outline: 2px solid #CCA9AA;
	outline-offset: 1px;
}

textarea:focus{
	outline: 2px solid #CCA9AA;
	outline-offset: 1px;
}

/*属性セレクタ*/

[type="text"]{
	width:320px;
}

[type="tel"],[type="email"]{
	width:400px;
}

/*お問い合わせサイトここまで-----------------------------------*/

/*会社概要*/
.company h3{
	margin: 10px 0;
}

.company__wrapper{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}

.company__table{
	background-color:rgba(255,255,255,.3);
}
.company__table th{
	width:200px;
	height: 60px;
	background-color: antiquewhite;
}

.company__table td{
	padding-left: 10px;
}

/* PC用 */
@media(min-width:768px){

	.company__table td{
		width: 500px;
	}

}

/*フェイドイン -----------------------------------------------------------------*/
.fade-in-img {
  opacity: 0;                  /* 初期は透明 */
  transform: translateY(20px); /* 下に少しずらす */
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-img.visible {
  opacity: 1;
  transform: translateY(0);
}


/*フェイドイン2秒後にでる*/
.fade-in-img-2 {
  opacity: 0;                  /* 初期は透明 */
  transform: translateY(20px); /* 下に少しずらす */
  transition: opacity 2s ease, transform 2s ease;
}

.fade-in-img-2.visible {
  opacity: 1;
  transform: translateY(0);
}

/*フェイドイン3秒後にでる*/
.fade-in-img-3 {
  opacity: 0;                  /* 初期は透明 */
  transform: translateY(20px); /* 下に少しずらす */
  transition: opacity 3s linear, transform 3s linear;
}

.fade-in-img-3.visible {
  opacity: 1;
  transform: translateY(0);
}


/*フェイドイン5秒後にでる*/
.fade-in-img-5 {
  opacity: 0;                  /* 初期は透明 */
  transform: translateY(20px); /* 下に少しずらす */
  transition: opacity 5s ease, transform 5s ease;
}

.fade-in-img-5.visible {
  opacity: 1;
  transform: translateY(0);
}