@charset "UTF-8";

/* 印刷用 */
@media only print{
  /*
    A4 847 * 595 px
    A3 1191 * 842 px
    B5 729 * 516 px
  */
  body{
    width: 1140px;
    overflow: hidden;
    /*zoom: 0.9;*/
  }
  .container{
    width: 100%;
  }
  .tb{
    display: none;
  }
  .sp{
    display: none;
  }
  
  /* 固定ヘッダーを使用している場合など */
  header .hdr1{
    position: static !important;
  }
  /* animate のフェードインを可視化 */
  [data-animate]{
    opacity:1 !important;
  }
}


@media only screen and (max-width:1160px){
  .container{
    width: 100%;
  }
  
  .pg_purchase .purchase_nav{
    left: 10px;
  }
}

@media only screen and (max-width:1023px){
  
  .gnav li a, .gnav2 li a{
    padding: 0 10px;
  }
  
  footer .ftr1 .ftr_links{
    flex-wrap: wrap;
  }
  footer .ftr1 .ftr_links + .ftr_links{
    margin-top: 0;
  }
  footer .ftr1 .ftr_links li{
    margin-bottom: 10px;
  }
  footer .ftr2 .container{
    flex-wrap: wrap;
  }
  footer .ftr2 .box1,
  footer .ftr2 .box2{
    width: 100%;
  }
  
  .mv a{
    /*height: 500px;*/
    width: 100%;
    height: auto;
  }
  .mv a video{
    width: 100%;
    position: static;
    transform: none;
  }
  
  .pg_header{
    margin-bottom: 30px;
  }
  .pg_header>.container{
    height: 200px;
  }
  
  .pg_header .tt1{
    font-size: 42px;
  }
  
  .home_product_cat{
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_product_cat li{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
  }
  .home_product_cat li .name{
    font-size: 12px;
  }
  
  .product_items .item{
    width: 25%;
  }
  
  .product_imgs .main_img{
    width: 100%;
  }
  .product_imgs .thumb_img{
    width: 100%;
    margin-top: 15px;
  }
  .product_imgs .thumb_img ul{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .product_imgs .thumb_img ul li{
    width: 20%;
    padding-left: 7.5px;
    padding-right: 7.5px;
    margin-bottom: 15px;
  }
  
  .purchase_nav a{
    font-size: 18px;
    line-height: 50px;
  }
  .purchase_nav a:after{
    width: 25px;
    height: 25px;
  }
  
  
  .contact_form th {
    width: 250px;
  }
  .contact_form td .wpcf7-text{
    width: 100%;
  }
  .contact_form td [name="zipcode"]{
    width: 150px;
  }
}

@media only screen and (max-width:767px){
  
  body{
    font-size: 14px;
    padding-bottom: 60px;
  }
  
  header{
    padding: 5px 0;
  }
  header > .container{
    padding: 0 10px;
  }
/*
  header .hdr1 .hdr_logo{
    width: 15%;
  }
*/	
  header .hdr1 .hdr_nav{
    width: 75%;
  }

  header .hdr1 .hdr_nav .info{
    font-size: 12px;
    line-height: 1.4;
    text-align: right;
    color: #00204b;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .hdr1 .hdr_nav .info span{
    color: red;
  }
  header .hdr1 .hdr_nav .info .gnav_open{
    margin-left: 10px;
    background: #00204b;
    padding: 10px;
    color: #FFF;
  }
  header .hdr1 .hdr_nav .info .gnav_open span{
    color: #FFF;
  }
  
  header.fixed {
    position: absolute;
  }
  header.fixed .gnav_sub.sub1{
    margin-top: 0;
    margin-bottom: 0;
  }
  header.fixed .gnav_sub.sub2{
    display: none;
  }
  
  footer .ftr2 .container{
    flex-wrap: wrap;
  }
  footer .ftr2 .box1,
  footer .ftr2 .box2{
    width: 100%;
    text-align: center;
  }
  footer .ftr2 .box2{
    margin-top: 10px;
  }
  .footer_fix{
    display: block;
  }
  
  .footer_slides li{
    width: 50%;
  }
  
  footer .ftr1 .ftr_links{
    flex-wrap: wrap;
  }
  footer .ftr1 .ftr_links li{
    width: 50%;
  }
  footer .ftr1 .ftr_links li:not(:first-child){
    border: 0;
  }
  footer .ftr1 .ftr_links + .ftr_links{
    margin-top: 0;
  }
  
  footer .ftr1 .ftr_links li a{
    display: block;
    padding: 10px 0;
  }
  footer .ftr2 .box2{
    display: none;
  }
  
  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 5;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px dashed #CCC;
  }
  .gnav > ul > li:not(:last-child), .gnav2 > ul > li:not(:last-child){
    border-right: 0;
  }
  .gnav > ul > li a{
    padding: 10px 0;
  }
  
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
  
  .mv a{
    /*height: 200px;*/
  }
  
  .post_items{
    
  }
  .post_items .item{
    flex-wrap: wrap;
  }
  .post_items .item .title{
    width: 100%;
  }
  
  .pagination .nav-posts .page-next a, 
  .pagination .nav-posts .page-prev a,
  .pagination .nav-posts .page-archive a{
    padding: 10px 10px;
    font-size: 11px;
  }
  
  .mv{
    margin-bottom: 50px;
  }
  
  .pg_header > .container{
    height: 150px;
  }
  .pg_header .tt1{
    font-size: 24px;
  }
  .pg_header .tt1 .icon img{
    height: 30px;
  }
  
  .tt2{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .tt2 span{
    font-size: 14px;
  }
  .tt2 i{
    width: 20px;
    height: 20px;
    background-size: contain;
  }
  .tt2.insta img{
    height: 25px;
  }
  
  .pg_purchase .tt2{
    flex-wrap: wrap;
    font-size: 16px;
  }
  .pg_purchase .tt2 span{
    font-size: 12px;
  }
  
  
  .pg_home .section#sec2{
    margin-top: 50px;
  }
  .pg_home .section#sec3{
    margin-top: 50px;
  }
  .pg_home .section#sec4{
    margin-top: 50px;
  }
  .pg_home .section#sec5{
    margin-top: 50px;
  }
  .pg_home .section#sec6{
    margin-top: 50px;
  }
  
  .home_posts .item{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .home_posts .item + .item{
    margin-top: 10px;
  }
  .home_posts .item .img{
    width: 25%;
  }
  .home_posts .item .meta{
    width: 73%;
  }
  .home_posts .item .date{
    margin-top: 0;
    font-size: 10px;
  }
  .home_posts .item .title,
  .home_posts .item .body{
    line-height: 1.4;
  }
  
  .home_product_cat li{
    width: 50%;
    margin-bottom: 20px;
  }
  .home_product_cat li .name{
    font-size: 11px;
  }
  
  /* */
  .search_fields .item.col1{
    width: 50%;
  }
  .search_fields .item.col2{
    width: 100%;
    margin-top: 10px;
  }
  .product_items .item{
    width: 33.333333%;
  }
  
  .product_imgs .thumb_img ul{
    margin-left: -5px;
    margin-right: -5px;
  }
  .product_imgs .thumb_img ul li{
    width: 25%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
 
  /*  */
  
  .purchase_nav{
    margin-left: -5px;
    margin-right: -5px;
  }
  .pg_purchase .purchase_nav{
    width: auto;
    left: 10px;
    right: 10px;
  }
  
  .purchase_nav li{
    width: 50%;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .purchase_nav a{
    font-size: 14px;
    line-height: 40px;
  }
  .purchase_nav a:after{
    width: 20px;
    height: 20px;
  }
  
  .purchase_nav.fixed{
    width: auto;
    left: 10px;
    right: 10px;
  }
  
  .purchase_bar ul{
    justify-content: space-around;
  }
  .purchase_bar ul li{
    width: 32%;
    margin-right: 0;
  }
  .purchase_bar ul li a{
    width: 100%;
    font-size: 12px;
  }
  
  .flow_opener i{
    font-size: 32px;
  }
  
  .flow_items .item + .item{
    margin-top: 30px;
  }
  .flow_items .item .title{
    font-size: 15px;
    margin-bottom: 15px;
  }
  .flow_items .item .qr{
    
  }
  .flow_items .item .qr img{
    margin-right: 15px;
    width: 60px;
  }
  .notice_box1 > .item{
    width: 100%;
  }
  .notice_box1 > .item + .item{
    margin-top: 10px;
  }
  .notice_box1 .item dl dt{
    font-size: 16px;
  }
  
  
  /* ポイント */
  .point_box dl dt{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .point_box dl dd{
    font-size: 14px;
  }
  .notice_box1 .point_items .item{
    width: 100%;
    height: auto;
  }
  .notice_box1 .point_items .item:nth-last-child(1){
    
  } 
  .notice_box1 .point_items .item:nth-last-child(2){
    margin-bottom: 4%;
  }
  .notice_box1 .point_items .item .box1{
    width: 40%;
  }
  .notice_box1 .point_items .item .box2{
    width: 55%;
    padding: 0 5px;
  }
  .notice_box1 .item h5{
    font-size: 14px;
  }
  .notice_box1 .point_items .item .title{
    font-size: 14px;
  }
  .notice_box2 h5{
    font-size: 14px;
  }
  
  /* QA */
  .qa_tt{
    font-size: 16px;
  }
  .qa_tt i{
    font-size: 32px;
  }
  
  .qa_items {
    padding-top: 50px;
    padding-bottom: 25px;
  }
  .qa_items dl{
    font-size: 14px;
  }
  .qa_items dl dt{
    padding-left: 40px;
    margin-left: 25px;
    height: 50px;
    line-height: 1.3;
  }
  .qa_items dl dt:before{
    left: -25px;
    width: 50px;
    height: 50px;
    background-size: contain;
  }
  .qa_items dl dd{
    padding-left: 0;
  }
  
  /**/
  .pg_shop .about{
    font-size: 16px;
  }
  .pg_shop .about th{
    width: 120px;
    
  }
  
  /*  */
  .contact_info{
    padding: 10px;
  }
  .contact_info .box1{
    font-size: 13px;
  }
  .contact_info .box2{
    margin-top: 10px;
  }
  .contact_info .box2 .icon{
    font-size: 15px;
  }
  .contact_info .box2 .tel{
    font-size: 24px;
  }
  .contact_info .box2 .txt{
    width: 100%;
    margin: 10px 0 0 0;
  }
  
  .contact_form th,
  .contact_form td{
    display: block;
    width: 100%;
    padding: 10px 10px;
  }
  .contact_form th{
    /*padding-bottom: 5px;*/
  }
  .contact_form td{
    /*padding-top: 0;*/
  }
  .contact_form td [name="zipcode"]{
    width: 100px;
  }
  .contact_form dl.date dt{
    width: 100%;
  }
  .contact_form dl.date dt.wide{
    width: 100%;
  }
  
  .contact_form td .wpcf7-text,
  .contact_form td .wpcf7-textarea,
  .contact_form td .wpcf7-select{
    width: 100%;
  }
  
  .contact_form_btns input[type="submit"], 
  .contact_form_btns input[type="button"]{
    width: 35%;
  }
  
  .request_txt{
    font-size: 14px;
  }
  
  /* サイトマップ */
  .sitemap_items .item{
    width: 100%;
    margin-bottom: 15px;
  }
  .sitemap_items .item h4 a{
    padding: 10px 10px;
  }
  
  /* プライバシーポリシー */
  .privacy_tt{
    font-size: 18px;
  }
  .privacy_tt br{
    display: inline;
  }
  
  
  
}

@media (max-width:364px){
  header .hdr1 .hdr_nav{
    width: 82%;
  }
  header .hdr1 .hdr_nav .info .gnav_open{
    padding: 10px 5px;
  }
  header .hdr1 .hdr_nav .info .gnav_open span{
    font-size: 10px;
  }
}