@charset "utf-8";
/* CSS Document */
img{
    max-width: 100%; height:auto;
}

h1{
    font-size:32px;
    font-family:"Times New Roman", "Times","BIZ UDPMincho", "Hiragino Mincho ProN", "Yu Mincho";
    letter-spacing: 0.1em;
    line-height: 1.5;

}
h2{
    font-size: 24px;
    font-family: "Times New Roman", "Times","BIZ UDPMincho", "Hiragino Mincho ProN", "Yu Mincho";
    letter-spacing: 0.05em;
}

p{
    font-size: 14px;
    font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese",  "游ゴシック体", "Yu Gothic", ;
    line-height: 30px;
}

a{
    color: #000;
    text-decoration: none;
}

a:hover,
a:active{
    color:#A3D3EB;
    text-decoration: none;
    opacity:0.8;
    transition: 0.3s;
}

#wrapper{
    background-color:#f8f4ef;
}


.hero_container{
    display: flex;
    height: 100vh;
    border-bottom: 1px solid #000;
}

.hero_container .left_box{
    width: 35%;
    background-color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* padding-top: 200px; */
    padding-top: calc((200 / 1920) * 100%);
    /* padding-left: 150px; */
    padding-left: calc((150 / 1920) * 100%);
    border-right:1px solid #000;
}

.hero_container .left_box ul{
    list-style: none;
}

.hero_container .left_box li{
    margin-bottom: 20px;
}

.hero_container .right_box{
    background-image: url(../img/01first_view.png);
    background-size:cover;
    /* height: 100vh; */
    width: 65%;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 50px;
}

/* -------- 下層header ------- */

.kasou_header{
   padding: 20px 50px 20px 0px;
   position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}

.kasou_header nav{
    display: flex;
    justify-content: flex-end;
}

.kasou_header nav ul{
    font-size: 14px;
    font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese",  "游ゴシック体", "Yu Gothic", ;
    display: flex;
    gap: 40px;
    list-style: none;
}

.kasou_header nav ul li a p{
    font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese",  "游ゴシック体", "Yu Gothic", ;
    border-bottom: 0.3px solid #000;
}

.kasou_header.scroll-nav ul li a p{
    /* display: inline; */
  color: #A3D3EB;
    border-bottom:1px solid #A3D3EB;
}

/* --------- footer --------- */

footer{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 20px 100px;
}

footer ul{
    font-size: 14px;
    font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese",  "游ゴシック体", "Yu Gothic", ;
    display: flex;
    gap: 40px;
    list-style: none;
}

/* ---------- 01_top -------------- */

.top{
   width: 100%;
   /* max-width: 1200px; */
   margin: 0 auto;
   padding: 0 2%;
}

/* .top #works{
    width: 100%;
    border-bottom:0.8px solid #000;
} */

.top #works .works_tittle{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0;
}

.top #works .web_sec{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.top #about{
    margin-bottom: 250px;
}

.top #about .about_tittle{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0;
}

.top #about .box{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.top #about .box .img_box{
     width: 50%;
}

.top #about .box .text_box{
    width: 50%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.top #about .box .text_box span{
    font-size: 16px;
    letter-spacing: 0.1em;
}

.top #about .box .text_box .yoshida_button{
    display: flex;
    justify-content: flex-end;
    /* display: flex;
    margin-left: auto; */
    margin-top: 25px;
}

.top #about .box .text_box .yoshida_button .yoshida_button_p{
 border-bottom: 0.5px solid #000;
        margin: 0;
    display: flex;          /* ← h2自体をflexに */
    align-items: center;
}

.top #about .box .text_box .yoshida_button .yoshida_button_p::after{
content: "";
    background-image: url(../img/right.png);
    display: inline-block; /* ← 擬似要素を表示する */
    width: 53px;           /* ← 矢印の横幅 */
    height: 42px;          /* ← 矢印の高さ */
    background-size: contain; /* ← 画像を枠にフィット */
    background-repeat: no-repeat;
    margin-left: 8px; /* 文字との間に余白 */
}

/* --------- 03_about ------------ */

.aboutme{
   width: 100%;
   padding: 5% 5%;
}

.aboutme .aboutme_tittle{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
    /* padding:200px 0; */
    /* border-bottom: 0.5px solid #000; */
}

/* .aboutme .aboutme_tittle h1{
    text-align: center;
} */

.aboutme .first_sec{
    display: flex;
    justify-content: space-around;
    margin-bottom: 200px;
}

/* .aboutme .first_sec .img_box img{
    width: 100%;
    height: auto;
} */

.aboutme .first_sec .text01{
    /* width: 50%; */
    /* border: 1px solid #000; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 50px;
    /* padding-left: 50px; */
    /* gap: 20px; */
}

.aboutme .first_sec .text01 .detail{
    display: flex;
    margin-bottom: 10px;
    /* border: 1px solid #000; */
}

.aboutme .first_sec .text01 .favorite{
    display: flex;
    /* border: 1px solid #000; */
}

.aboutme .first_sec .text01 .favorite img,
.aboutme .first_sec .text01 .favorite p{
    /* border: 1px solid #000; */
    margin: 0;
}

.aboutme .first_sec .text01 .detail img,
.aboutme .first_sec .text01 .favorite img{
    height: 20px;
    margin-top: 5px;
    margin-right: 20px;
    /* display: block; */
}

.aboutme .secound_sec{
    background-image: url(../img/2x/about_background.png);
    background-size: contain;
    background-position: 85% 0;
    background-repeat: no-repeat;
    height:328px ;
    display: flex;
    /* flex-direction: column; */
    /* justify-content: left; */
    align-items: center;
    padding-left: 15%;
    margin-bottom: 200px;
}

/* .aboutme .secound_sec .text_box{
    margin-left: 15%;
} */

.aboutme .secound_sec .text_box img{
    margin-bottom: 20px;
}

.aboutme .third_sec{
    display: flex;
    justify-content: center;
    margin-bottom: 200px;
}

.aboutme .third_sec .skil_tittle{
    height: 20px;
    margin-right: 40px;
}

.aboutme .third_sec .skil_img{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 50px;
}

/* ---------- 04_yubiwa --------------- */

.yubiwa_main{
    width: 100%;
    padding: 5% 5%;

}

.yubiwa_main .tittle{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 100px 0;
}

.yubiwa_main .tittle .yakuwari{
    height: 21px;
    display: flex;
    gap:20px;
}

.yubiwa_main .yubiwa_img{
    max-width: 984px;
    margin: 0 auto;
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    margin-bottom: 100px;
}

/* .yubiwa_main .yubiwa_img{
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
} */

.yubiwa_main .yubiwa_detail{
    max-width: 900px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 100px;
}

.yubiwa_main .yubiwa_detail ul{
    list-style: none;
}

.yubiwa_main .yubiwa_detail img{
    margin-bottom: 10px;
}

.yubiwa_main .syousai{
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.yubiwa_main .syousai ul{
    list-style: square;
    font-size: 14px;
    font-family: "Noto Sans Japanese";
    line-height: 30px;
}

.yubiwa_main .syousai ul li p{
     display: inline; /* ←ブロック→インラインに変更 */
    margin: 0;       /* デフォルトの上下マージンをリセット */
}


/* ----------- 05_isu ----------------- */

.isu_main{
    width: 100%;
    padding: 5% 5%;
}

.isu_main .tittle{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 100px 0;
}

.isu_main .tittle .yakuwari{
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.isu_main .isu_img{
    /* border: 1px solid #000; */
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.isu_main .third_sec{
    height: 700px;
    padding: 0 200px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
}

.isu_main .third_sec .end_img{
    display: flex;
    align-items: flex-end;
}

.isu_main .isu_detail{
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 100px;
}

.isu_main .isu_detail .tittle_img{
    margin-bottom: 10px;
}

.isu_main .isu_detail .box .mozi_iro{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-right: 100px;
}

/* .isu_main .isu_detail .box .mozi_iro .mozi_box{
    row-gap: 20px;
} */

.isu_main .isu_detail .box .mozi_iro .mozi_box .mozi{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    
}

.isu_main .isu_detail .box .mozi_iro .mozi_box .mozi .mozi_img{
    height: 21px;
    margin-right: 20px;
}

.isu_main .syousai{
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.isu_main .syousai ul{
    list-style: square;
    font-size: 14px;
    font-family: "Noto Sans Japanese";
    line-height: 30px;
}

.isu_main .syousai ul li p{
     display: inline; /* ←ブロック→インラインに変更 */
    margin: 0;       /* デフォルトの上下マージンをリセット */
}


/* ------------- 06_seiuka -------------- */

.seiuka_main{
    width: 100%;
    padding: 5% 5%;
}

.seiuka_main span{
    font-size: 24px;
    font-family: "Times New Roman", "Times","BIZ UDPMincho", "Hiragino Mincho ProN", "Yu Mincho";
    letter-spacing: 0.05em;
}

.seiuka_main .tittle{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 100px 0;
}

.seiuka_main .tittle .yakuwari{
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.seiuka_main .seiuka_img{
    max-width: 984px;
    margin: 0 auto;
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    margin-bottom: 100px;
}

.seiuka_main .seiuka_detail{
    max-width: 900px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 100px;
}

.seiuka_main .seiuka_detail ul{
    list-style: none;
}

.seiuka_main .seiuka_detail img{
    margin-bottom: 10px;
}

.seiuka_main .syousai{
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.seiuka_main .syousai ul{
    list-style: square;
    font-size: 14px;
    font-family: "Noto Sans Japanese";
    line-height: 30px;
}

.seiuka_main .syousai ul li p{
     display: inline; /* ←ブロック→インラインに変更 */
    margin: 0;       /* デフォルトの上下マージンをリセット */
}

/* ------------- 07bideri --------------- */

.bideri_main{
    width: 100%;
    padding: 5% 5%;
}

.bideri_main span{
    font-size: 24px;
    font-family: "Times New Roman", "Times","BIZ UDPMincho", "Hiragino Mincho ProN", "Yu Mincho";
    letter-spacing: 0.05em;
}

.bideri_main .tittle{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 100px 0;
}

.bideri_main .tittle .yakuwari{
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.bideri_main .bideri_img{
    max-width: 984px;
    margin: 0 auto;
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    margin-bottom: 100px;
}

.bideri_main .bideri_detail{
    max-width: 900px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 100px;
}

.bideri_main .bideri_detail ul{
    list-style: none;
}

.bideri_main .bideri_detail img{
    margin-bottom: 10px;
}

.bideri_main .syousai{
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.bideri_main .syousai ul{
    list-style: square;
    font-size: 14px;
    font-family: "Noto Sans Japanese";
    line-height: 30px;
}

.bideri_main .syousai ul li p{
     display: inline; /* ←ブロック→インラインに変更 */
    margin: 0;       /* デフォルトの上下マージンをリセット */
}

/* ---------- 08_wine ------------ */

.wine_main{
    width: 100%;
    padding: 5% 5%;
    margin: 0 auto;
}

.wine_main .tittle{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 100px 0;
}

.wine_main .tittle .yakuwari{
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.wine_main .wine_container {
  max-width: 984px;
  margin: 0 auto;
  margin-bottom: 300px;

}

.wine_main .wine_container .bottle {
  position: relative;
  display: inline-block; /* 画像サイズに合わせる */
  position: relative;   /* 重ねるための基準 */
}

.wine_main .wine_container .bottle .bottle_img {
  width: 60%;
  height: auto;
  /* display: block; */
}

.wine_main .wine_container .bottle .label {
    width: 50%;
  height: auto;
  position: absolute;
  top: calc((700 / 1200)*100% );
  left:calc((600 / 1200)*100% );
  /* width: 300px;    ラベル画像の幅  */
}

.wine_main .wine_detail{
    max-width: 900px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 100px;
}

.wine_main .wine_detail ul{
    list-style: none;
}

.wine_main .wine_detail img{
    margin-bottom: 10px;
}

.wine_main .syousai{
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.wine_main .syousai ul{
    list-style: square;
    font-size: 14px;
    font-family: "Noto Sans Japanese";
    line-height: 30px;
}

.wine_main .syousai ul li p{
     display: inline; /* ←ブロック→インラインに変更 */
    margin: 0;       /* デフォルトの上下マージンをリセット */
}

 


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

    h1{
        font-size: 22px;
    }

    h2{
        font-size: 18px;
    }

    p{
        font-size: 12px;
        line-height: 20px;
    }

    footer{
        padding: 20px;
    }

    .syousai ul li{
        /* padding-left: 3%; */
        list-style-position: inside;
    }

    .yubiwa_main .tittle,
    .isu_main .tittle,
    .seiuka_main .tittle,
    .bideri_main .tittle,
    .wine_main .tittle{
        flex-direction: column;
        gap: 10px;
    }

    .yubiwa_main .tittle h1,
    .isu_main .tittle h1,
    .seiuka_main .tittle h1,
    .bideri_main .tittle h1,
    .wine_main .tittle h1{
        margin-right: auto;
    }

    .yubiwa_main .yubiwa_detail,
    .isu_main .isu_detail,
    .seiuka_main .seiuka_detail,
    .bideri_main .bideri_detail,
    .wine_main .wine_detail{
        margin-bottom: 60px;
    }


    /* ---------- 01_TOP ---------- */

    .hero_container .left_box{
    padding-top: calc((200 / 750) * 100%);
    /* padding-left: 150px; */
    padding-left: calc((100 / 750) * 100%);
    }

    .hero_container .right_box{
        padding-left: 50px;
    }

    .top #works .works_tittle,
    .top #about .about_tittle{
        padding-bottom: 50px;
    }

    .top #about .box{
        flex-direction: column;
    }

    .top #about .box .img_box{
        width: 100%;
        padding: 0 2%;
    }

    .top #about .box .text_box{
        width: 100%;
        padding: 0 5%;
    }

    .top #about .box .text_box span{
        font-size: 12px;
    }

    /* --------- 02_about ---------- */

    .aboutme .first_sec{
        flex-direction: column;
        margin-bottom: 120px;
    }

    .aboutme .first_sec .text01{
        padding-left: 5%;
    }

    .aboutme .first_sec .text01 .detail,
    .aboutme .first_sec .text01 .favorite{
        flex-direction: column;
    }

    /* .aboutme .first_sec .text01 p, */
    .aboutme .first_sec .text01 .detail p,
    .aboutme .first_sec .text01 .favorite p{
        margin-left: 10%;
    }

    .aboutme .secound_sec{
        background-position: 50% 10%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 0;
        margin-bottom: 150px;
    }

    .aboutme .secound_sec .text_box{
        margin: 0;
    }

    .aboutme .secound_sec .text_box img{
        margin-bottom: 10px;
    }

    .aboutme .third_sec{
        flex-direction: column;
        gap: 50px;
        margin-bottom: 150px;
    }

    .aboutme .third_sec .skil_img{
        width: 80%;
        margin: 0 auto;
    }


    /* --------- 04_YUBIWA ---------*/

    .yubiwa_main .tittle .yakuwari {
    margin-top: 10px;
  }

  .isu_main .third_sec{
    padding: 0 0.5%;
    margin-bottom: 100px;
  }

  /* ------------- 05_isu ----------- */

  .isu_main .isu_detail{
    gap: 40px;
  }
  
  .isu_main .isu_detail .box .mozi_iro{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }

  .isu_main .isu_detail .box .mozi_iro .sp_width{
    width: 50%;

  }

  /* ------------- 06_seiuka ---------- */

  .seiuka_main span,
  .bideri_main span{
    font-size: 18px;
  }

  /* -------------- 08_wine ----------- */

  .wine_main .wine_container{
    margin-bottom: 150px;
  }

}
