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

img, object, embed, video {max-width:100%;height:auto;}


/*---フォント---*/
.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}


/*------------------------共通--------------------------*/

.h1{
    font-size: 47px;
    color: #4B2D1F;
    font-weight: 400;
}

.h2{
    font-size: 32px;
    color: #4B2D1F;
    font-weight: 400;
}

.h3{
    font-size: 24px;
    color: #4B2D1F;
    font-weight: 400;
}

.p{
    font-size: 16px;
    font-family: "Noto Sans JP";
    font-weight: 300;
    color: #4B2D1F;
}

a{
    text-decoration: none;
}

/*-----------------フッター-------------------*/
.footer-box01{
  width: 100%;
  background-image: url(../img/footer-001.png);
  background-repeat: no-repeat;


  z-index: 2000;
  padding: 100px;

  /* background-color: #EDC2B9;
  border-radius: 65px 65px 0 0; /* 左上 右上 右下 左下 */
}
 
.footer-logo{
    display: flex;
    justify-content: center;
}

.footer-box02{
    display: flex;
    justify-content: space-between;
    gap: 15px;
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 55%;
  left: 20%;

  z-index: 3000;


  /* 必要に応じて画像のサイズを調整 */
}


.footer-nav{
    margin-right: 15px;
}

.footer-p01{
    margin: 40px 0 40px 480px;
    font-size: 13px;
    color: #4D4E96;
}

.footer-p02{
    margin: 40px 0 0 500px;
    font-size: 12px;
    color: #4D4E96;
}

.footer-btn-01{
  width: 115px;
  height: 17px;
}
.footer-btn-02{
  width: 96px;
  height: 17px;
}

.footer-btn-03{
  width: 134px;
  height: 17px;
}

.footer-btn-04{
  width: 76px;
  height: 17px;
}
.footer-btn-05{
  width: 190px;
  height: 17px;
}
.footer-btn-06{
   width: 113px;
  height: 17px;
}







/* バックの背景画像 */
body {
   background-image: url(../img/body.png);
  background-repeat: repeat;
  overflow-x: hidden;
  z-index: 5000;

}

.image-container {
  /* 子要素を重ねるための基準にする */
  position: relative;
  /* 必要に応じて、画像のサイズを調整 */
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.background-img {
  /* 親要素の100%の幅にする */
  width: 100%;
  /* 念のため、表示方法をブロック要素に指定 */
  display: block;
}

.overlay-img {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 70px;
  left: 65px;
  /* 必要に応じて画像のサイズを調整 */
  width: 30%;
} 


.overlay-img-first {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 300px;
  left: 500px;
  /* 必要に応じて画像のサイズを調整 */
  width: 30%;
} 

.overlay-img-first-about {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 250px;
  left:250px;
  /* 必要に応じて画像のサイズを調整 */
  width: 40%;
} 





/*PCベース*/

/* ファーストビュー */
.first-view{
  display: flex;
  justify-content: center;
}

/* ヘッダー */
.header {
  /* background-color: #1a233b; */
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding-right: 100px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* .line {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
} */

/* Optional: To add "MENU" text */
/* .header::before {
  content: "MENU";
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-right: 15px;
} */
/* 既存のCSSはそのまま残します */

/* 新規追加: メニュー項目 */
.menu-items {
  display: none; /* 初期状態では非表示 */
  position: absolute;
  top: 100%; /* ヘッダーのすぐ下に配置 */
  left: 80%;
  width: 20%;
  /* background-color: #2a344d; メニューの背景色 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 5000;
}

.menu-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li a {
  display: block;
  padding: 15px 20px;
  color: #3f3e3e;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
}

.menu-items li a:hover {
  background-color: #ffffff; /* ホバー時の背景色 */
}

/* JavaScriptでメニューを表示する際に適用するクラス (例: .menu-items.is-open) */
.menu-items.is-open {
  display: block; /* メニューが表示された状態 */
}

.hamburger-menu {
  /* 既存のスタイル */
  display: block; /* フレックスボックスにする必要がなくなる場合があります */
  width: 40px; /* 画像の幅に合わせて調整 */
  height: 30px; /* 画像の高さに合わせて調整 */
  background: url(../img/soy.png) no-repeat center center / contain; /* ここに画像パスを指定 */
  border: none;
  cursor: pointer;
  padding: 100px;
  

  /* 元の三本線のスタイルは不要になります */
  /* .line のスタイルも不要 */
}

/* もし画像以外の要素（例: テキスト）をボタン内に表示させない場合は、lineクラスは不要になります */
.line {
  display: none;
}
.image-container {
  position: relative; /* 子要素の配置基準点にする */
}

/* ヘッダー（ハンバーガーメニュー）のスタイル */
.header {
  position: absolute; /* 親要素を基準に配置する */
  top: 30%; /* 上からの位置 */
  left: 0px; /* 左からの位置 */
  z-index: 5000; /* 他の要素より手前に表示する */
  position: fixed;

}



/* メッセージのdiV */
.message-01{
  width: 30%;
  height: 20%;
  padding: 50px;
  padding-top: 50px;
  margin-left: 950px;
}

/* .message-img{
  top:20%;
  left: 50%;
} */


/* キミはいま人生のスタートラインに立っている*/
.image-container-kimi {
  /* 子要素を重ねるための基準にする */
  position: relative;
  /* 必要に応じて、画像のサイズを調整 */
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.background-img-kimi {
  /* 親要素の100%の幅にする */
  width: 100%;
  /* 念のため、表示方法をブロック要素に指定 */
  display: block;
}

.overlay-img-kimi {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 25%;
  left: 22%;
  /* 必要に応じて画像のサイズを調整 */
} 

/* ご挨拶がおくれました、ざらめです*/
.image-container-goaisatsu {
  /* 子要素を重ねるための基準にする */
  position: relative;
  /* 必要に応じて、画像のサイズを調整 */
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.background-img-goaisatsu {
  /* 親要素の100%の幅にする */
  width: 100%;
  /* 念のため、表示方法をブロック要素に指定 */
  display: block;
}
.overlay-img-goaisatsu {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 18%;
  left: 22%;
  /* 必要に応じて画像のサイズを調整 */
} 

/* からいとつらい */
.karai{
  padding: 10px;

}

/* 人生はちょっとしょっぱい、ボタン */
.image-container-choppai {
  /* 子要素を重ねるための基準にする */
  position: relative;
  /* 必要に応じて、画像のサイズを調整 */
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.background-img-choppai {
  /* 親要素の100%の幅にする */
  width: 100%;
  /* 念のため、表示方法をブロック要素に指定 */
  display: block;
  ;
}

/* タイトルとボタンを囲うdiv */
.choppai-box01{
  display: flex;
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 22%;
  left: 5%;
  /* 必要に応じて画像のサイズを調整 */
}
.overlay-img-choppai {
  top:30%;
  left: 1%;
  padding: 100px 50px 200px 50px;
  margin-right: 10%;
} 

/* モット知るボタン */
.btn-01-motto{
  border-radius: 150px;
  background-color: #ebe9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* width: fit-content; */
  width: 120%;
  height: 400px;
  padding: 0 30px;
  box-shadow: 0px 10px 0px 0px #777171;

  top: 40%;
  left: 10%;

  text-decoration: none;
}
.btn-01-motto:hover{
  box-shadow: none;
  transform: translateY(20px);
}  

.motto-btn{
  top: 40%;


}


/* きみの物語の味付けはナニガイイ */
.azitsuke-back-img {
  /* 子要素を重ねるための基準にする */
  position: relative;
  /* 必要に応じて、画像のサイズを調整 */
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.background-img-choppai {
  /* 親要素の100%の幅にする */
  width: 100%;
  /* 念のため、表示方法をブロック要素に指定 */
  display: block;
}
/* タイトルとボタンを囲うdiv */
.azitsuke-box01{
  display: flex;
  justify-content: space-between;
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 38%;
  left: 5%;
  /* 必要に応じて画像のサイズを調整 */
}
.azitsuke-img-01{
  top:30%;
  left: 1%;
  padding: 200px 50px 200px 50px;
  margin-right: 10%;
} 
.overlay-img-kimimono {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 12%;
  left: 8%;
  /* 必要に応じて画像のサイズを調整 */
  width: 500px;
} 

/* あまいボタン */
.btn-amai{
  border-radius: 150px;
  background-color: #ebe9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: fit-content;
  height: 550%;
  padding: 0 30px;
  box-shadow: 0px 10px 0px 0px #777171;
  margin-left: 10px;

  top: 30%;
  left: 10%;

  text-decoration: none;
}
.btn-amai:hover{
  box-shadow: none;
  transform: translateY(20px);
}  

.map{
  margin-top: 23.5%;
  margin-left: 53%;
  z-index: 3100;
}

.access-gaikan{
  display: flex;
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 30%;
  left: 5%;
  /* 必要に応じて画像のサイズを調整 */
}

.zin-ama{
  width: 100%;
  height: 500px;
  padding: 300px 550px 300px 550px;
}
.zin-ama-p{
  padding: 50px;
}

.footer-div{
  display: flex;
}


.overlay-img-footer {
  /* 親要素の左上を基準に、絶対位置で配置する */
  position: absolute;
  /* 重ねる位置を調整する */
  top: 35%;
  left: 38%;
  /* 必要に応じて画像のサイズを調整 */
  

} 


.image-container-choppai {
  position: relative; /* 子要素の絶対配置の基準にする */
}

/* 下層ファーストビュー */
.kasou-first-view{
  width: 100%;
}


/* 下層レシピ */
.recipi-div{
  width: 100%;
  height: 100%;
  padding: 500px;
  display: flex;
  justify-content: center;
  
}

/* 下層調味料 */

.choumiryou-gazou{
  padding: 50px;
}







/* 下層07－お問い合わせ */



form{
    display: grid;
    width: 50%;
    margin: 60px auto;
    padding: 50px;
    grid-template-columns: 100px 1fr;
    row-gap: 20px;
    column-gap: 20px;
    align-items: start;
}
label{
    align-self: start;
    font-size: 16px;
    color: #4B2D1F;
}
input,textarea{
    background-color: rgb(232, 251, 244);
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    caret-color: #1f484b;
}
/* 07-フォーム押したときの枠の色 */
input:focus,textarea:focus{
    outline: none;
    border: 1px solid #1f484b;
}

textarea{
    height: 120px;
    resize: vertical;
}
.contact07-text{
    color: #4B2D1F;
    text-align: center;
}
.contact07-button{
    grid-column: 2/3;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 200px;
}
button{
    background-color: rgb(232, 251, 244);
    color: #4B2D1F;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
}








/* プライバシーポリシー */


.pp-box01{
    width: 100%;
    padding: 100px;
    padding-top: 0px;
        position: relative;
        z-index: 1;
}

.pp-h2{
    font-size: 32px;
    font-family: "Hina Mincho";
    font-weight: 400;
    color: #909397;
    text-align: center;
}
.pp{
    margin: 50px;
}

.pp-p{
    color:#909397;
    line-height: 2;
}

.pp-p1{
    color:#909397;
    line-height: 2;
    margin-bottom: 100px;
}






/*スマホ*/
@media only screen and (max-width:750px){

    /*このなかに書くよ*/

}


/* .btn-01-motto{



}

.btn-amai{
  
} */