@charset "utf-8";
/* ページ遷移時のフェードインアウト */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff; /* 背景カラー */
    z-index: 9999; /* 一番手前に */
    pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0; /* 初期値では非表示 */
    -webkit-transition: opacity .8s ease; /* アニメーション時間は 0.8秒 */
    transition: opacity .8s ease;
  }
  /*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
  body.fade::after {
    opacity: 1;
  }
    
 /* main,footerにフォント指定 */
 main,
 footer {
    font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
 }

 
/* 円弧の設定 */
.shopping-en-wrap {
    position: relative;
    height: 55vw;
    overflow: hidden;
    margin-top: -40vh;
      z-index: -1;
  }
  
  .shopping-shape-en {
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background: #fff;
    margin-top: 40%;
  }
  
  .shopping-en-bk-grn {
    position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
    background: #e8e9de;
    z-index: -1;
  }

    /* タイトル */
    .news-category-title-wrap {
        display: flex;
        align-items: center; 
        margin: 6% 0;        
      }
    
      .news-category-title {
        text-align: center;
      }
    
      .news-category-title-wrap h2 {
        font-family: "Quicksand", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal; 
        font-size: 2em;   
      }
    
      .news-category-title-wrap p {
        font-size: .8em;
      }
      
    .news-category-title-wrap::before,
    .news-category-title-wrap::after {
        content: "";
        height: .5px;
        flex-grow: 1;
        background-color: #b8a39d;
    }
    
    .news-category-title-wrap::before {
        margin-right: 1rem;
    }
    
    .news-category-title-wrap::after {
        margin-left: 1rem
    }
    
  /* main */
  .wrap-1000 {
    max-width: 1000px;
    margin: 0 auto;
  }

.product {
    display: flex;
    justify-content: center;
    align-items: start;
}

.product img {
    width: 400px;
    height: 410px;
    margin-right: 5%;
}
.detail {
    width: 250px;
}

.detail .name {
    font-weight: 400;
    font-size: 1.5em;
    padding-top: 7%;
}

/* .detail .price {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 1.1em;
    padding-bottom: 7%;
} */

.font-small {
    font-size: .7em;
}

.plane {
    line-height: 1.7em;
    padding-top: 7%;
    padding-bottom: 15%;
}

.price {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal; 
    font-size: 1.5em;  
    padding-bottom: 5%; 
}

.receive {
    border-top: .3px solid #b8a39d;
    border-bottom: .3px solid #b8a39d;
    padding: 3%;
    font-size: .8em;
}

.detail .limit {
    border-bottom: .3px solid #b8a39d;
    padding: 3%;
    font-size: .8em;
}

.advice1 {
    padding-top: 10%;
    padding-left: 5%;
}
.advice2 {
    padding-top: 10%;
    padding-left: 5%;
}

