@charset "utf-8";
/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
html *, ::before, ::after {
  box-sizing: border-box;
}
/* フォント */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  background-image: url("../images/back-image.jpg");
}
/* ベースのリンクカラー */
a {
  text-decoration: none;
}
/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像下のスペースを消す */
}
li {
  list-style: none;
}

@media (max-width: 769px) {
    .br-sp{
        display: block;
    }
}
@media (min-width: 768px) {
    .br-sp{
        display: none;
    }
}

@media (max-width: 769px) {
  .pop-icon {
    display: none;
  }
}
@media (min-width: 768px) {
  .pop-icon {
    position: fixed;
    display: flex;
    flex-flow: column;
    right: 0;
    bottom: 130px;
      z-index: 999;
  }
  .pop-img {
    width: 90px;
    margin: 5px 0 5px 0;
  }
  .pop-img:hover {
    opacity: .5;
  }
}

@media (max-width: 769px){
    main {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
    .br-sp{
        display: block;
    }
}
@media (min-width: 768px) {
  main {
    text-align: center;
  }
    .br-sp{
        display: none;
    }
}
/* モバイル向けボタン */
.navbtn {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-image: url("../images/nav-open-60px.jpg");
  background-repeat: no-repeat;
  background-position: center center;
}
.navbtn.close {
  background-image: url("../images/nav-close-60px.jpg");
}
@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}
/* ヘッダーナビゲーション */
@media (max-width: 769px) {
  #pc-navi {
    display: none;
  }
  #global-nav {
    position: fixed;
    z-index: 999;
    top: 60px;
    width: 100%;
  }
  .header-nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-nav.collapse {
    display: none;
  }
  .menu {
    max-width: 100%;
    text-align: center;
  }
  .menu a {
    display: block;
    padding: 20px 0 20px 0;
    text-decoration: none;
    color: #2e2e2e;
    font-size: 17px;
    background: #fbeff6;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  }
    .single-menu a{
        display: block;
    padding: 30px;
    line-height: 1;
    color: #fff;
    font-size: 18px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #e9a4b7;
    cursor: pointer;
    }
    .single-menu a:hover{
        background: #f3c0ce;
    }
  label {
    display: block;
    padding: 30px;
    line-height: 1;
    color: #fff;
    font-size: 18px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #e9a4b7;
    cursor: pointer;
  }
  label:hover {
    background: #f3c0ce;
  }
  input {
    display: none;
  }
  .menu ul {
    margin: 0;
    padding: 0;
    background: #fbeff6;
    list-style: none;
  }
  .menu li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  #menu_bar00:checked ~ #links00 li, #menu_bar01:checked ~ #links01 li, #menu_bar02:checked ~ #links02 li, #menu_bar03:checked ~ #links03 li, #menu_bar04:checked ~ #links04 li {
    height: 54px;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  #global-nav {
    display: none;
  }

  nav {
    z-index: 9999;
    width: 100%;
    height: 100px;
    position: fixed;
    top: -16px;
    left: 0px;
  }
  ul.ddmenu {
    text-align: center; /* メニューバー外側の余白(ゼロ) */
    background-color: #fff; /* バーの背景色(濃い赤色) */
    box-shadow: 0 2px 10px 0 #a8a8a8;
  }
  /* -------------------------- */
  /* ▼メインメニュー項目の装飾 */
  /* -------------------------- */
  ul.ddmenu li {
    width: 180px; /* メニュー項目の横幅(125px) */
    display: inline-block; /* ★1:横並びに配置する */
    list-style-type: none; /* ★2:リストの先頭記号を消す */
    position: relative; /* ★3:サブメニュー表示の基準位置にする */
  }
  ul.ddmenu a {
    background-color: #fff; /* メニュー項目の背景色(濃い赤色) */
    color: #3a3a3a; /* メニュー項目の文字色(白色) */
    line-height: 50px; /* メニュー項目のリンクの高さ(40px) */
    text-align: center; /* メインメニューの文字列の配置(中央寄せ) */
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 15px;
    text-decoration: none; /* メニュー項目の装飾(下線を消す) */
    display: block; /* ★4:項目内全域をリンク可能にする */
  }
  ul.ddmenu a:hover {
    background-color: #d60079; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
    color: #fff; /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
  }
  /* ▼サブメニューは、とりあえず非表示にしておく */
  ul.ddmenu ul {
    display: none; /* ★5:非表示にする */
  }
  /* -------------------- */
  /* ▼サブメニューの装飾 */
  /* -------------------- */
  ul.ddmenu ul {
    display: none; /* ★1:標準では非表示にする */
    margin: 0px; /* ★2:サブメニュー外側の余白(ゼロ) */
    padding: 0px; /* ★3:サブメニュー内側の余白(ゼロ) */
    position: absolute; /* ★4:絶対配置にする */
  }
  ul.ddmenu ul a {
    display: block;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #fbe9f3;
    color: #3a3a3a;
  }
  ul.ddmenu ul a:hover {
    background: #f8cfe6;
    color: #3a3a3a;
  }
  /* ---------------------------------- */
  /* ▼サブメニューがある場合に開く処理 */ /* ※サブメニューが1階層しか存在しない場合の記述 */
  /* ---------------------------------- */
  ul.ddmenu li:hover ul {
    display: block; /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
  }
  .contact {
    display: inline-block;
    background-color: #d60079;
    color: #fff;
  }
}
/* ヘッダーナビゲーションここまで */


@media (max-width: 769px){
    .offer-illust{
        width: 100%;
        text-align: center;
        margin: 100px auto 60px auto;
    }
    .offer-illust-tiitle{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 0.3rem;
        margin-bottom: 25px;
        border-bottom: 1px solid #d60079;
        padding-bottom: 10px;
    }
    .offer-illust-text{
        display: inline-block;
        width: 90%;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-top: 5px;
    }
    .offer-illust-text2{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.8rem;
        margin-bottom: 25px;
    }
    .offer-illust-text:last-child{
        margin-bottom: 35px;
    }
    .offer-illust-cap{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -8px;
        text-align: left;
    }
    .offer-illust-list{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 16px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-top: 7px;
        margin-bottom: 35px;
    }
    .offer-illust-price-l1{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 18px;
        font-weight: Bold;
        letter-spacing: 1.5px;
    }
    .offer-illust-price-l2{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 22px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .offer-illust-s{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .offer-illust-m{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 18px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .offer-attention{
        display: inline-block;
        width: 90%;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.8rem;
        margin-top: 20px;
        margin-bottom: -10px;
    }
    .attention-line{
        border-bottom: 1px solid #d60079;
    }
    .offer-attention-link a{
        display: inline-block;
        background-color: #d60079;
        color: #fff;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 1px;
        padding: 20px 35px;
        border-radius: 50px;
    }
    .offer-attention-link a:hover{
        background-color: #f3c0ce;
    }
    hr{
        margin: 70px auto 70px auto;
    }
    .onecase-img{
        width: 70%;
    }
    .onecase-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -8px;
        text-align: left;
    }
    .onecase-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.55px;
        line-height: 1.8rem;
        margin-bottom: 25px;
    }
    .onecase-s{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .onecase-m{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .detail-textbox{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-bottom: 25px;
    }
    .process-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        text-align: left;
        margin-bottom: 5px;
    }
    .process-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
    }
    .process-text a{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        border-bottom: solid 1px #d60079;
    }
    .arrow-img{
        width: 15%;
        margin: 7px auto 7px auto;
    }
    .process-li{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        font-weight: Bold;
    }
    .personal{
        display: inline-block;
        border: solid 1px #3a3a3a;
        padding: 10px 20px;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-top: 40px;
    }
    .note{
        text-align: center;
        margin-bottom: 80px;
    }
    .note-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin: 0 auto;
        padding: 0;
    }
    .note-text-li{
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .cancel{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        font-weight: Bold;
    }
    .taste-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -2px;
    }
    .taste-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-bottom: 15px;
    }
    .taste-container{
        display: flex;
    }
    .taste-img{
        width: 95%;
    }
    .taste-cap1{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 1px;
        margin-bottom: -12px;
    }
    .taste-cap2{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
    }
    
    
    
    

 /*=== 画像の表示エリア ================================= */
.slide {
  position   : relative;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width      : 260px;
  height     : 260px;
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
.slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 45s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 5s }
.slide img:nth-of-type(3) { animation-delay: 10s }
.slide img:nth-of-type(4) { animation-delay: 15s }
.slide img:nth-of-type(5) { animation-delay: 20s }
.slide img:nth-of-type(6) { animation-delay: 25s }
.slide img:nth-of-type(7) { animation-delay: 30s }
.slide img:nth-of-type(8) { animation-delay: 35s }
.slide img:nth-of-type(9) { animation-delay: 40s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
   0% { opacity: 0 }
   1% { opacity: 1 }
  11% { opacity: 1 }
  12% { opacity: 0 }
 100% { opacity: 0 }
}
}


@media (min-width: 768px){
    .offer-illust{
        width: 950px;
        text-align: center;
        margin: 110px auto 60px auto;
    }
    .offer-illust-tiitle{
        display: inline-block;
        width: 800px;
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 0.3rem;
        margin-bottom: 25px;
        border-bottom: 1px solid #d60079;
        padding-bottom: 10px;
    }
    .offer-illust-text{
        display: inline-block;
        width: 700px;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-top: 5px;
    }
    .offer-illust-text:last-child{
        margin-bottom: 40px;
    }
    .offer-illust-list{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-top: 7px;
        margin-bottom: 20px;
        text-align: left;
    }
    .offer-illust-price-l1{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 17px;
        font-weight: Bold;
        letter-spacing: 1.5px;
    }
    .offer-illust-price-l2{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 20px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .offer-illust-cap{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -12px;
        text-align: left;
    }
    .offer-illust-box{
        width: 500px;
    }
    .offerportrait-box{
        display: flex;
        width: 1000px;
        max-width: 100%;
        margin: 0 auto;
    }
    .offer-illust-text2{
        display: inline-block;
        width: 500px;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-bottom: -5px;
    }
    .offer-illust-s{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .offer-illust-m{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 16px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .slide{
        width: 400px;
        margin: 0 auto;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 5px;
        row-gap: 5px;
    }
    
    .offer-attention{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.8rem;
        margin-top: 50px;
        margin-bottom: -10px;
    }
    .attention-line{
        border-bottom: 1px solid #d60079;
    }
    .offer-attention-link a{
        display: inline-block;
        background-color: #d60079;
        color: #fff;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 16px;
        font-weight: Bold;
        letter-spacing: 1px;
        padding: 15px 30px;
        border-radius: 50px;
    }
    .offer-attention-link a:hover{
        background-color: #f3c0ce;
    }
    hr{
        width: 1000px;
        margin: 70px auto 70px auto;
    }
    .onecase-container{
        display: flex;
        width: 500px;
        max-width: 100%;
        margin: 20px auto;
    }
    .onecase-img{
        width: 200px;
        margin: 0 auto;
    }
    .onecase-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -8px;
        text-align: left;
    }
    .onecase-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.55px;
        line-height: 1.6rem;
        margin-bottom: 25px;
    }
    .onecase-s{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .onecase-m{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 1px;
    }
    .detail-textbox{
        display: inline-block; 
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-bottom: 5px;
    }
    .process{
        width: 550px;
        margin: 0 auto;
        text-align: center;
    }
    .process-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        text-align: left;
        margin-bottom: 5px;
    }
    .process-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
    }
    .process-text a{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        border-bottom: solid 1px #d60079;
    }
    .arrow-img{
        width: 60px;
        margin: 7px auto 7px auto;
    }
    .process-li{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        font-weight: Bold;
    }
    .personal{
        display: inline-block;
        border: solid 1px #3a3a3a;
        padding: 10px 20px;
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin-top: 40px;
    }
    .note{
        width: 650px;
        margin: 0 auto 80px auto;
        text-align: center;
    }
    .note-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        margin: 0 auto;
        padding: 0;
    }
    .note-text-li{
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .cancel{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
        font-weight: Bold;
    }
    .taste{
        width: 700px;
        text-align: center;
        margin: 0 auto;
    }
    .taste-title{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 15px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -7px;
    }
    .taste-text{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
    }
    .taste-container{
        display: flex;
        width: 450px;
        max-width: 100%;
        margin: 0 auto;
        justify-content: space-between;
    }
    .taste-box{
        width: 200px;
    }
    .taste-cap1{
        color: #d60079;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 14px;
        font-weight: Bold;
        letter-spacing: 0.75px;
        margin-bottom: -13px;
    }
    .taste-cap2{
        color: #3a3a3a;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-size: 13px;
        letter-spacing: 0.75px;
        line-height: 1.5rem;
    }
}



/* 全ページ共通フッター */
@media (max-width: 769px) {
  .page-footer {
    background: #d60079;
    margin-top: 70px;
  }
  .footer-container {
    padding: 2px 5%;
    text-align: center;
  }
  .copyright {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #ffffff;
    font-size: 13px;
  }
}

@media (max-width: 769px){
    .footer-container {
    max-width: 100%;
    padding: 3px 20px;
    background: #d60079;
    margin-top: 70px;
  }
    .copyright {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #ffffff;
    font-size: 12px;
  }
    .footer-logo {
    width: 50%;
    margin: 40px auto 30px auto;
  }
}

@media (min-width: 768px) {
  .footer-container {
    max-width: 100%;
    padding: 3px 20px;
    background: #d60079;
    margin-top: 70px;
  }
  .footer-container {
    padding: 2px 5%;
    text-align: center;
  }
  .copyright {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #ffffff;
    font-size: 13px;
  }
  .footer-logo {
    width: 200px;
    margin: 40px auto 30px auto;
  }
}