/*------------------------------------------------------

 min-width 768px（＝PC用）

 ------------------------------------------------------*/
@media screen and (min-width: 768px){
  .sp-only{
    display: none !important;
  }
  .pc-only{
    display: block !important;
  }
  .pc-wspl{
    white-space: pre-line;
  }
  /* タイトル */
  .tit-style01 {
    font-size: 2em;
    padding-bottom: 80px;
  }
  .tit-style02 {
    font-size: 1.6em;
  }
  .tit-style02 + .line{
    width: 7%;
    margin: 12px 0 20px;
  }
  .tit-style02 + .line + p{
    line-height: 1.8em;
    white-space: pre-line;
  }


  /* 均一に真ん中に整列 */
  .pc-between{
    -webkit-justify-content: space-between;
    justify-content: space-between;
   }
  .pc-item-center{
    -webkit-align-items: center;
    align-items: center;
  }


  /* ぱんくず */

  /* 共通 */

  .topimg{
    width: 100%;
    height: 250px;
    margin-top: 0;
    background-size: contain;
    background-attachment: fixed;
    position: relative;
    border-top: solid 6px rgba(255,255,255,0.3);
    border-bottom: solid 6px rgba(255,255,255,0.3);
  }
  .topimg h1{
    width: 100%;
    position: absolute;
    top: 30%;
    background: rgba(197,0,17,0.7);
    color: #fff;
  }
  .topimg h1 .wrap1000{
    display: block;
    padding: 5px 0 8px;
    font-size: 1.8em;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin: 8px auto;
  }
  .topimg h1 .common{
    font-size: 0.4em;
    opacity: 0.5;
    padding-left: 10px;
    display: block;
  }


  /* -----------------------------------------

   ヘッダー

  ----------------------------------------- */
  header{
    position: relative;
  }
  .red-line{
    background: #64150e;
    color: #fff;
  }
  .red-line h2{
    font-size: 0.8em;
    font-weight: normal;
    padding: 5px 0;

  }
  #header-wrap{
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
  }
  .header-top{
    width: 100%;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display:-webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .header-top .logo{
    width: 200px;
  }
  .logo a {
    width: 190px;
  }
  .header-top .header-info{
    text-align: right;
    width: 320px;
    color: #000;
  }
  .header-info .pc-name span{
    color: #f98100;
    font-size: 1.15em;
    padding-right: 5px;
    text-decoration: underline;
  }
  #gnavi-wrap{
    width: 50%;
  }
  .logo{
    width: 380px;
    margin-right: auto;
    padding: 20px 0;
    float: left;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display:-webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .sub-logo{
    font-size: 0.8em;
  }
  ul.h-gnavi {
    width: 100% !important;
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display:-webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  ul.h-gnavi li{
    width: auto !important;
    padding: 0 !important;
    text-align: center;
  }
  ul.h-gnavi li:last-child{
    padding-right: 0;
  }
  ul.h-gnavi li {
    margin: 0 !important;
  }
  ul.h-gnavi .on{
    border-bottom: 2px solid #fff;
  }
  ul.h-gnavi li a{
    width: 100%;
    display: block;
    border: 0;
    text-align: right;
    background-position: 0 0;
    background-size: auto 200%;
    transition: .3s;
    margin: 0;
    font-size: 1em;
  }

  ul.h-gnavi li a:hover {
    background-position: 0 100%;
  }
  #gnavi-wrap li {
    width: 100%;
    margin: 0;
    padding: 5px 0 !important;
    font-size: 1.05em;
    text-align: right;
  }
  #sp-gnavi-open {
    display: none;
  }
  input[type="checkbox"].on-off + ul{
      height: auto;
      overflow: visible;
  }
  input[type="checkbox"].on-off:checked + ul{
      height: auto;
  }
/* css アニメ(ナビボタンのマウスオーバー時下線を表示) */
 
  ul.h-gnavi li a {
    cursor: pointer;
    display: inline;
    /* padding: 10px; */
    position: relative;
    text-decoration: none;
    z-index: 0;
  }
 
  ul.h-gnavi a::after {
    background: rgba(197,0,17,0.7) none repeat scroll 0 0;
    content: "";
    height: 2px;
    opacity: 0;
    position: absolute;
    width: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  ul.h-gnavi a.on::after {
    background: none;
  }
 
  ul.h-gnavi a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  }
 
  ul.h-gnavi a::before {
    left: 0;
    top: 0;
  }
  ul.h-gnavi a::after {
    bottom: 0;
    right: 0;
  }
  ul.h-gnavi a:hover::before, ul.h-gnavi a:focus::before,
  ul.h-gnavi a:active::before, ul.h-gnavi a:hover::after,
  ul.h-gnavi a:focus::after, ul.h-gnavi a:active::after {
    opacity: 1;
    width: 100%;
  }

  /* -----------------------------------------

   フッター

  ----------------------------------------- */
  footer .wrap1000{
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display:-webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .f-navi{
    width: 20%;
    padding: 15px 0;
  }
  .f-navi li{
    width: 50%;
    text-align: center;
    font-size: 0.9em;
  }
  .f-navi li a{
    background: none;
    margin-bottom: 0;
    text-decoration: underline;
  }
  small{
    width: 80%;
    text-align: right;
  }

  /* -------------------------------------
   
    メイン

  ------------------------------------- */
  section.shoparea-about{
    padding: 80px 0;
  }
  .shoparea-about .img-wrap{
    width: 35.6%;
  }
  .shoparea-about .txt-wrap{
    width: 58% !important;
    text-align: left !important;
  }

  section.shoparea-point{
    padding: 70px 0 100px;
  }
  .point-wrap{
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display:-webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .shoparea-point .point-wrap .txt-wrap{
    width: 50%;
    order: 2;
  }
  .shoparea-point .txt-wrap p {
    padding: 5px 10px 5px 20px;
    line-height: 1.7em;
  }
  .shoparea-point .point-wrap .img-wrap{
    width: 40%;
    order: 1;
  }
  .shoparea-point .point02 .txt-wrap{
    width: 50%;
    order: 1;
  }
  .shoparea-point .point02 .img-wrap{
    width: 40%;
    order: 2;
  }
  section.shoparea-point{
    width: 100%;
    height: auto;
    background-color: #f8f4e1;
    background-image: linear-gradient(45deg, #fbf9ee 25%, transparent 25%, transparent 75%, #fbf9ee 75%, #fbf9ee), linear-gradient(45deg, #fbf9ee 25%, transparent 25%, transparent 75%, #fbf9ee 75%, #fbf9ee);
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
  }

  .shoparea-point .wrap1000{
    background-image: url("../images/shoparea-point-bg_pc.png");
    background-repeat: no-repeat;
    background-position: center 65%;
  }
  .shoparea-point .point02{
    padding: 60px 0;
  }

  section.shoparea-gallery{
    padding: 80px 15px;
  }
  .shoparea-gallery .txt-wrap {
    margin-top: 50px;
  }
  .shoparea-gallery .tit-style02 + .line{
    width: 5%;
    margin: 12px 0 20px;
  }
  section.shoparea-gallery .img-wrap li:nth-child(1),
  .shoparea-gallery .img-wrap li:nth-child(2),
  .shoparea-gallery .img-wrap li:nth-child(3){
    width: 32.5%;
    padding: 0;
  }
  .shoparea-gallery .img-wrap li.big{
    width: 49.4%;
    padding: 1.2% 0;
  }
  .shoparea-gallery .img-wrap li.block{
    width: 49.312%;
    padding: 1.2% 0;
  }
  .shoparea-gallery .img-wrap li.block ul li{
    padding: 0 0 2% !important;
  }
  .attention-wrap{
    line-height: 2em;
    padding: 30px 0;
  }
  .shoparea-gallery .line + ul li{
    padding-bottom: 5px;
  }

}/* min-width: 768px; */

@media all and (min-width: 641px) and (max-width: 1000px) {
  .wrap1000{
    width: 100%;
  }
  header {
    width: 100%;
    height: auto;
    background: #000;
    top: 0;
    z-index: 9999;
  }
 #header-wrap {
    width: 100%;
    margin: 0 auto;
    background: #fff;
  }
  .logo {
    width: 380px;
    padding: 15px 0 15px 14px;
    float: none;

  }
  #gnavi-wrap{
    font-size: 0.92em;
    float: none;
  }

}
@media all and (min-width: 1001px) {
  .wrap1000{
    width: 1030px !important;
    margin: 0 auto;
  }
  section.shoparea-point{
    width: 100%;
    display: block;
  }
}

@media all and (max-width: 1000px) {
  header{
    width: 100%;
  }
  ul.h-gnavi{
    width: 100% !important;
  }
}
@media all and (max-width: 768px) {

}
@media all and (min-width: 769px) and (max-width: 1000px){

}
@media all and (max-width: 520px){

}
@media all and (min-width: 768px) {

}
@media all and (max-width: 500px) {

}
@media all and (max-width: 340px) {

}
