@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
}

body{
    overflow-x: hidden; /*スクロールバーを隠す*/
}
a{
    display: block;
    text-decoration: none;
}

li{
    text-decoration: none;
}

body{
    font-family: "游明朝", YuMincho,serif;
    font-size:16px;
    line-height: 1.7;
    letter-spacing: .1rem;
    color:rgba(51,51,51,1);
}

@media screen and (max-width: 480px){
body{
    line-height: 1.5;
    letter-spacing: 0;
}
}



/*-------ヘッダーナビゲーション---------*/
.he_top{
    background-image: url(./image/top.jpg);
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.top-color{
   font-size: 2.2rem;

}

.conA{
   position: absolute;
   padding-top: 0;    
   margin: 0 auto;
   top: 50%;
   left: 50%;
   transform: translateY(-50%) translateX(-50%);
   -webkit- transform: translateY(-50%) translateX(-50%);
   color: rgba(255,255,255,1);
   text-shadow:2px 2px 2px rgb(27, 24, 24);
   font-size: 1.2rem;
  
   /*padding: 0.5em 1em;
   margin: 2em 0;
   border: double 5px #ffffff;*/
}

header{
    background-image: url(./image/top.jpg);
    width: 100vw;
    height: 40vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.wrapper{
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.19);
}

.area01{
    display: grid;
    grid-template-columns: 200px 1fr;
    width: 90vw;
    margin: 0 auto;
    column-gap: 10px;
    align-items: center; /*センター揃え*/

}

h1{
    text-align: center;
    width: 80%;
}

h1 img{
    display: block;
    margin: 0 auto;
}

nav ul{
    width: 80%;
    margin:0px auto;
    display: grid;
    grid-auto-flow: column;/*均等ではなく文字の長さごとに*/
    list-style-type: none;
    font-weight: bold;
    text-align: right; 
}

nav ul li a{
    color:rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    position: relative;
    display: inline-block;
}

nav ul li a:hover{
    color: rgb(255, 255, 255);
}

nav ul li a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 1.3px;
    background: rgb(255, 255, 255);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

nav ul li a:hover::after {
    transform: scale(1.5, 1);
}

.wrapper02 h2{
    text-align: center;
    margin-top: 80px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 2rem;
    text-shadow: 2px 2px 2px #0e0101;
    }

/*-------ヘッダーレスポンシブ----------------------------------------------*/
@media screen and (max-width: 896px){
    .area01{
         width: 100vw;
         grid-template-columns: 1fr;
        }
    nav{
        padding-top: 20px;
    }
    nav ul{
        width: 100%;
        grid-auto-flow: row;
        text-align: center;
    }

    .main-nav{
        width: 90vw;
    }
    nav ul li{
        margin: 10px 0;
    }  
    nav ul li a::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 0;
        height: 0;
        background: rgb(255, 255, 255);
        transform: none;
        transform-origin: center top;
        transition: none;
      }
    nav ul li a:hover::after {
        transform: none;
    }
}


/*-------ヘッダーレスポンシブボタン入れ込み-----------*/
@media screen and (max-width: 896px){
header .main-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
h1 img{
    display: block;
    margin-left: 10%;
}
.bu01{
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}
.bu01:hover{
    opacity: 0.3;
}
nav{
    display: none;
}

/*------------------------------0506追記----------------------------------*/
nav ul li{
    margin: 3px 0;
}  

nav ul li a{
    display: block;
    padding: 5px;
}
/*-------------------------------0518追記-----------------------------------------*/

nav ul li a:hover{
    background-color: rgba(255, 255, 255, 0.3);
}

.wrapper{
    background-color:rgba(143, 201, 125,0.95);
}

header{
    position: relative;
}

.wrapper{
    position: absolute;
    z-index: 100;
}

.wrapper02{
    position: absolute;
    margin-top: 0;/*全画面の時のものが残ってしまうので調整*/
    top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);

}

.wrapper02 h2{
    margin-top: 30px;
    font-size: 1.8rem;
    }
}


@media screen and (max-width: 480px){
    .wrapper02 h2{
        margin-top: 80px;
        width: 230px;
        }
}





/*-------トグルボタン非表示----------------------------------------------*/
@media screen and (min-width: 896px){
    .bu01{
        display: none;
    }
    nav{
        display: block !important;
    }
}

/*-------------------ご挨拶----------------------------*/

.greeting01{
    margin: 0 auto;
    padding: 80px 10px 100px 10px;
    text-align: center;
    background-image: url(./image/bg01.png), url(./image/bg02.png);
	background-position: right 18% bottom 5%, left 23% top 17%;
	background-size: 18% auto, 15% auto;
	background-repeat: no-repeat, no-repeat;
}
h2{
    margin-top: 30px;    
}
.greeting p{
    font-size: 1.1rem;
}
.greeting01 .p01,.greeting01 .p02,.greeting01 .p03{
    text-align: center;
}

.br-sp {
    display: none;
  }
  

/*-------ご挨拶レスポンシブ------------------------------------------------*/

@media screen and (max-width: 896px){
    .greeting01{
        width: 95VW;
        background-image: url(./image/bg01.png), url(./image/bg02.png);
        background-position: right 18% bottom 3%, left 20% top 10%;
        background-size: 35% auto, 25% auto;
        background-repeat: no-repeat, no-repeat;
    }
    .greeting01 .sp01{
        font-size: 1.2rem;
    }
    .greeting01 p{
        font-size: 1rem;
    }
}
@media screen and (max-width: 480px){
    .greeting01{
        width: 95VW;
        background-image: url(./image/bg01.png), url(./image/bg02.png);
        background-position: right 18% bottom 3%, left 20% top 10%;
        background-size: 35% auto, 25% auto;
        background-repeat: no-repeat, no-repeat;
    }
    .greeting01 p{
        font-size: 1rem;
    }
    .br-sp {
        display: block;
      }
      
    .greeting01 .p01,.greeting01 .p02,.greeting01 .p03{
        text-align: center;
    }

    .greeting01 .p03{
        margin-bottom: 30px;
    }

    .conA{
        width: 290px;
        padding: 0.5em 0;
        margin: 2em 0;
        border: double 5px #ffffff;
        font-size: 1.08rem;
    }
}

/*------------iframe部分----------------*/

.text{
    /*max-width: 1300px;*/
    width: 80vw;
    margin: 0 auto;
}
iframe{
    width: 100%;
}

@media screen and (max-width: 480px){
    .text{
        margin-top: 30px;
    }
}

h2{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.sp01{
    letter-spacing:5px;
}
h3{
    text-align: center;
    margin: 20px 0;
}


/*------------３つのこだわり部分----------------*/

section .inner01{
    width: 70vw;
    margin: 0 auto;
}
.sp02{
    letter-spacing:2px;
}
section .inner01 span{
    color: rgb(161, 12, 154);
    font-size: 2.5rem;
}
section .inner01 .box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 30px;
    text-align: center;
    padding-bottom: 30px;
}
section .inner01 .box figure{
    /*border: 1px solid #666;*/
    padding: 30px;
}
section .inner01 .box figure img{
    max-width: 60%;
}
section .inner01 .box figure figcaption{
    text-align: center;
    font-family: sans-serif;
    font-size: 0.9rem;    
}

h4{
    margin: 5px 0 15px 0;
    padding: 10px 0;
    border-top: 2px solid rgb(161, 12, 154);
    border-bottom: 2px solid rgb(161, 12, 154);
    color: rgb(161, 12, 154);
    font-family: "小塚ゴシック Pr6N";
    font-weight: bold;
    font-size: 1.1rem;
}

.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
  }

/*-------3つのこだわりレスポンシブ------------------------------------------------*/

@media screen and (max-width: 896px){
    section .inner01 .box{
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 896px){
    .br01{
        display: none;
    }
}

/*-------------プロフィール----------------*/

section div{
    margin: 0 auto;
}

.greeting{
    text-align: left;
    padding: 80px 0 100px 0;
    width: 80vw;
    background-image: url(./image/bg01.png), url(./image/bg02.png);
	background-position: right 18% bottom 5%, left 3% top 15%;
	background-size: 18% auto, 15% auto;
    background-repeat: no-repeat, no-repeat;  
}

.greeting h3,.greeting p{
    text-align: left;
    margin-left: 18%;
    text-shadow: 2px 2px 2px #ffffff;
}

h3{
    margin-top: 15px;
}

.indent-2 {
    padding-left:4em;

    }
.p01,.p02,.p03,.p04,.p05{
        margin-top: 10px;
        font-size: 1em;
        margin-left: 0;
        text-align: left;
    }

    .p05{
        margin-bottom: 5px;
    }




@keyframes Animation {
    0% {
       opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.effect-fade {
    animation-duration: 2.5s;/* アニメーション時間 */
    animation-name: Animation; /* アニメーション名 */
}

/*-------プロフィールレスポンシブ------------------------------------------------*/

@media screen and (max-width: 896px){
    .greeting{
        width: 85VW;
        background-image: url(./image/bg01.png), url(./image/bg02.png);
        background-position: right 18% bottom 3%, left 20% top 10%;
        background-size: 35% auto, 25% auto;
        background-repeat: no-repeat, no-repeat;
    }
    .greeting .sp01{
        font-size: 1.2rem;
    }
    .greeting p{
        font-size: 0.9rem;
    }

    .greeting h3,.greeting p{
        margin-left: 8%;
        text-shadow: 2px 2px 2px #ffffff;
    }
    
    h3{
        margin-top: 15px;
    }
    
    .greeting p.indent-1 {
        padding-left:4em;
         }
}

@media screen and (max-width: 480px){
    .greeting{
        width: 90W;
        background-image: url(./image/bg01.png), url(./image/bg02.png);
        background-position: right 18% bottom 3%, left 10% top 6%;
        background-size: 35% auto, 18% auto;
        background-repeat: no-repeat, no-repeat;
    }
    .greeting p{
        font-size: 0.85rem;
    }

    .greeting h3,.greeting p{
        margin-left: 0;
        text-shadow: 2px 2px 2px #ffffff;
    }
    /*
   .p01,.p02,.p03,.p04,.p05{
        margin-top: 10px;
        font-size: 1em;
        margin-left: 0;
        text-align: left;
    }

    .p05{
        margin-bottom: 5px;
    }
    */
    .greeting p.indent-1 {
        padding-left:4em;
         }
}

/*------------MAPページ------------------------*/

.bg-01{
    background-color: rgb(255, 255, 255);
    padding: 50px 0;/*marginではなくpadding 上下の余白*/
}

figure{
    text-align: center;
}

.grape{
    width: 70%;
}

section .inner-a{
    width: 80vw;
    margin: 0 auto;/* 画面の中央へ */
}

section .inner-a h3{
    text-align: center;
    font-size: 1.4rem;
}

section .inner-a .text01{
    margin-top: 20px;
    text-align: center;
}

.map{
    max-width: 65%;
    margin: 0 auto;
}

.map img{
    padding: 10px 0;
    width: 100%;
}

.map-bg p{
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}
.map a{
    text-align: right;
    margin-bottom: 10px;
    font-family: sans-serif;
    font-weight: bold;

    
}
.goo{
    padding: 5px;
    border: solid 2px #6091d3;/*線*/
    border-radius: 5px;/*角の丸み*/
    background-color: rgba(150, 190, 201, 0.5)
}

section .inner{
    width: 80vw;
    margin: 0 auto;/* 画面の中央へ */
}
section .inner h2{
    text-align: center;
    font-size: 1.1rem;
}
section .inner div{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 20px;
}

section .inner div figure{
    border: 1.8px solid rgba(43, 168, 240, 0.2);
    padding: 30px;
    text-align: center;
    background-color:rgba(141, 228, 235, 0.2)
}

section .inner div figure img{
    max-width: 100%;
}

section .inner h3{
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

section .inner div figure figcaption{
    text-align: left;
}

h4{
    margin: 5px 0 15px 0;
    padding: 10px 0;
    border-top: 2px solid rgb(161, 12, 154);
    border-bottom: 2px solid rgb(161, 12, 154);
    color: rgb(161, 12, 154);
    font-family: "小塚ゴシック Pr6N";
    font-weight: bold;
    font-size: 1.1rem;
}

.indent-1{
    padding-left:1em;
    text-indent:-1em;
    /*border-top: 1.8px solid rgba(43, 168, 240, 0.2);*/
    margin-top: 10px;
}

.br-sp{
    display: none;
}

@keyframes Animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.effect-fade {
    animation-duration: 2.5s;/* アニメーション時間 */
    animation-name: Animation; /* アニメーション名 */
    }

.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 0.5s;
    }
    
/*--------------MAPページレスポンシブ----------------------------------------------------------*/

@media(max-width:896px){
    section .inner div{
        grid-template-columns: repeat(2,1fr);
        grid-row-gap: 30px;
    }
}
@media(max-width:480px){
    section .inner div{
        grid-template-columns: 1fr;
    }
   
    .grape{
        width: 85%;
    }
    .map{
        max-width: 85%;
        margin: 0 auto;
    }
    .br-sp{
        display: block;
    }
}

/*-------------葡萄物語ページ----------------*/

.koshu{
    text-align: center;
    margin-top: 20px;
}

.koshu02{
   padding: 10px 0 30px 0;
}

.inner04 .st_04{
    text-align: center;
    padding: 50px 0 30px 0;
    border-top: none;
    border-bottom: none; 
    font-family: "游明朝", YuMincho,serif;
    color:rgba(51,51,51,1);
    margin-top: 0;
    margin-bottom: 0;
}

.bg-01{
    background-color: rgb(255, 255, 255);
    padding: 50px 0;/*marginではなくpadding 上下の余白*/
}

figure{
    text-align: center;
}

.grape{
    width: 70%;
}

section .inner04{
    width: 80vw;
    margin: 0 auto;/* 画面の中央へ */
}
section .inner04 h2{
    text-align: center;
    font-size: 1.1rem;
}

section .inner04 div{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 30px;
}
section .inner04 div figure{
    border: 1.8px solid rgba(161, 12, 154, 0.2);
    padding: 30px;
    text-align: center;
    background-color:rgba(247, 186, 231, 0.1)
}

section .inner04 div figure img{
    max-width: 100%;
}

section .inner04 h3{
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 8px;
}

section .inner04 div figure figcaption{
    text-align: left;
}

.inner04 p{
    text-align: right;
    font-size: 0.8rem;
}

.br-sp {
    display: none;
}

.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 0.5s;
}

@keyframes Animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.effect-fade {
    animation-duration: 2.5s;/* アニメーション時間 */
    animation-name: Animation; /* アニメーション名 */
}

.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
}
.sp_st{
    display: none;
}
/*--------------葡萄物語レスポンシブ----------------------------------------------------------*/

@media(max-width:896px){
    section .inner04 div{
        grid-template-columns: repeat(2,1fr);
        grid-row-gap: 30px;}
}
@media(max-width:480px){
    section .inner04 div{
        grid-template-columns: 1fr;
    }
    .inner04 p{
        text-align: center;
        font-size: 0.8rem;
    }
}

@media(max-width:480px){
    .br-sp {
    display: block;
  }
  .grape{
    width: 85%;
}
 .koshu03{
    width: 50%;
}
.st_04{
    font-size: 1rem;
    font-weight: bold;
}
section .inner04 h3{
    text-align: center;
    width: 93%;
    margin: 0 auto;
    padding-bottom: 8px;
    font-size: 1rem;
}
.sp_st{
    display: block;
}
}

/*-------------環境保全ページ------------------------*/

.bg-01{
    background-color: rgb(255, 255, 255);
    padding: 50px 0;/*marginではなくpadding 上下の余白*/
}

figure{
    text-align: center;
}

.grape{
    width: 70%;
}
section .inner05{
    width: 80vw;
    margin: 0 auto;/* 画面の中央へ */
}

section .inner05 h2{
    text-align: center;
    font-size: 1.1rem;
}

section .inner05 div{
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 30px;
}

section .inner05 div figure{
    border: 1.8px solid rgba(161, 12, 154, 0.2);
    text-align: center;
    background-color:rgba(247, 186, 231, 0.1);
    padding: 30px;
}

section .inner05 div figure img{
    max-width: 100%;
}

section .inner05 h3{
    text-align: center;
    margin-top: 0;
}


section .inner05 h4{
    text-align: center;
    padding-bottom: 10px;
    width: 80%;
    font-weight: bold;
    margin: 0 auto;
    font-size: 1.1rem;
    border-top: none;
    border-bottom: none;
    padding-top: 0;
    font-family: "游明朝", YuMincho,serif;
    color:rgba(51,51,51,1);
}

section .inner05 div figure figcaption{
    text-align: left;
}

@keyframes Animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    }

.effect-fade {
    animation-duration: 2.5s;/* アニメーション時間 */
    animation-name: Animation; /* アニメーション名 */
    }

    .fadein {
        opacity : 0;
        transform: translateY(20px);
        transition: all 1s;
      }

 
/*--------------環境保全ページレスポンシブ----------------------------------------------------------*/

@media(max-width:896px){/*タブレットの設定*/

    section .inner05 div{
        grid-template-columns: repeat(2,1fr);
        grid-row-gap: 30px;/*縦の余白*/
    }
}
@media(max-width:480px){/*スマホの設定*/

    section .inner05 div{
        grid-template-columns: 1fr;
    }
    .grape{
        width: 85%;
    }
    .sp_en{
        font-size: 1rem;

    }
}
/*-----------------------------フッター-----------------------*/
footer section{
    background-color:rgb(143, 201, 125);
}
section .inner02{
    width: 70vw;
    margin: 0 auto;    
}
section .inner02 .box02{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 30px;
    padding: 30px;
} 

h5{
    text-align: left;
}

section .inner02 .box02 .box03 .box04{
    margin-left: 100px;
}

section .inner02 .box03 .box04{
    margin: 40px 0;
}

.name{
    margin-left: 50px;
    text-indent: -6em;
    font-weight: bold;
}

.name p{
    margin-top: 15px;
    margin-left: 80px;
    font-size: 1.1rem;
}

footer .box04 .add a{
    display: inline;
    color: black;
}

/*-------フッターレスポンシブ------------------------------------------------*/
@media screen and (max-width: 896px){
    section .inner02 .box02{
        grid-template-columns: 1fr;
        grid-column-gap: 0px;
        padding: 0px;
    } 

    h5{
        text-align: center;
    }
    .name{
      margin: 0 auto;

    }
    .name p{
      text-align: center;
    }

    .box04 .add{
        text-align: center;
        font-size: 0.9rem;
    }

    section .inner02 .box03{
        margin: 30px 0;
    }

    section .inner02 .box04{
        margin-bottom: 30px;
    }
  
}


@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
      }

      footer .box04 .add a:hover{
          
          color: rgb(255, 255, 255);
          font-size: bold;
      }
}
