@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"),
       url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"),
       url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"),
       url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/*------------------------------------------*/
/*              Common Style                */
/*------------------------------------------*/
body {
    position: relative;
    margin: 0;
    
    /*--- 明朝体 ---*/
    /*
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    */
    
    /*--- ゴシック体 ---*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    
    
    line-height: 1.7;
    letter-spacing: 1.5px;
    font-weight: normal;
    background: #fff;
    overflow-x: hidden;
}

/*--- padding border 依存を外す ---*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/*--- wrapper ---*/
#wrapper {
    display: block;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}
/*
@media (max-width: 480px) {
    #wrapper {
        margin-left: 15px;
        margin-right: 15px;
    }
}
*/


header,
nav,
section,
footer {
    display: table !important;
    width: 100%;
    margin: 0;
    padding: 0;
}


img {
    vertical-align: middle;
    border: none;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}


.nopad {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}

.border-bottom {
    border-bottom: 1px rgba(0,0,0,0.2) solid;
    padding-bottom: 80px;
}
.border-top {
    border-top: 1px rgba(0,0,0,0.2) solid;
}

.bg-gray {
    background: rgba(0,0,0,0.03);
}
.bg-white {
    background: #fff;
}

/*--- ゴシック体 ---*/
.font-gos {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*--- 明朝体 ---*/
.font-min{
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}







a {
    color: #000;
    text-decoration: none;
    opacity: 1;
    
    -webkit-transition: all 0.3s;
    -moz-transition:    all 0.3s;
    -ms-transition:     all 0.3s;
    -o-transition:      all 0.3s;
    transition:         all 0.3s;
}
a:hover {
    /*color: #000;*/
    opacity: 0.8;
    text-decoration: none;
    cursor: pointer;
}




a > img{
    -webkit-transition: all 0.3s;
    -moz-transition:    all 0.3s;
    -ms-transition:     all 0.3s;
    -o-transition:      all 0.3s;
    transition:         all 0.3s;
}
a:hover > img {
    opacity: 0.8;
}






h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: normal;
    margin: 0;
}



p,
#content.index-block2 a {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 2.0;
    
    color: #111;
    font-size: 15px;
    
    /*-- 折返し --*/
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    p,
    #content.index-block2 a {
        font-size: 13px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    p,
    #content.index-block2 a {
        font-size: 12px;
    }
}


ul,
ul li,
ol,
ol li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    
    color: #111;
    font-size: 14px;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    ul,
    ul li,
    ol,
    ol li {
        font-size: 13px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    ul,
    ul li,
    ol,
    ol li {
        font-size: 12px;
    }
}

dl,
dl dt,
dl dd,
table th,
table td {
    margin: 0;
    padding: 0;
    line-height: 1.7;
    
    color: #111;
    font-size: 15px;
    font-weight: normal;
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    dl,
    dl dt,
    dl dd,
    table th,
    table td {
        font-size: 13px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    dl,
    dl dt,
    dl dd,
    table th,
    table td {
        font-size: 12px;
    }
}


/*------------------------------------------*/
/*                  row                     */
/*------------------------------------------*/
.row {
    margin-right: auto;
    margin-left:  auto;
}
/* - - - - - - - - - - - - */
@media (min-width: 768px) {
/* - - - - - - - - - - - - */
    .row {
        width: 680px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1024px) {
/* - - - - - - - - - - - - */
    .row {
        width: 800px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1280px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1024px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1450px) {
/* - - - - - - - - - - - - */
    .row {
        width: 1024px;
    }
}


/*------------------------------------------*/
/*                  row2                    */
/*------------------------------------------*/
.row2 {
    margin-right: auto;
    margin-left:  auto;
}

/* - - - - - - - - - - - - */
@media (min-width: 768px) {
/* - - - - - - - - - - - - */
    .row2 {
        width: 400px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1024px) {
/* - - - - - - - - - - - - */
    .row2 {
        width: 980px;
    }
}
/* - - - - - - - - - - - - */
@media (min-width: 1280px) {
/* - - - - - - - - - - - - */
    .row2 {
        width: 1100px;
    }
}

/* - - - - - - - - - - - - */
@media (max-width: 480px) {
/* - - - - - - - - - - - - */
    .row2 {
        padding: 0 15px;
    }
}
/* - - - - - - - - - - - - */
@media screen and (max-width: 830px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - */
    .row2 {
        width: 400px;
    }
}


/*------------------------------------------*/
/*          col-lg , md , sm , xs           */
/*------------------------------------------*/

/*----- 0px <= col-xs-99 <= 767px ----------*/
/* - - - - - - - - - - - - */
@media (min-width: 0px) {
/* - - - - - - - - - - - - */
    .col-xs-1,
    .col-xs2-1,
    .col-xs-2,
    .col-xs2-2,
    .col-xs-3,
    .col-xs2-3,
    .col-xs-4,
    .col-xs2-4,
    .col-xs-5,
    .col-xs2-5,
    .col-xs-6,
    .col-xs2-6,
    .col-xs-7,
    .col-xs2-7,
    .col-xs-8,
    .col-xs2-8,
    .col-xs-9,
    .col-xs2-9,
    .col-xs-10,
    .col-xs2-10,
    .col-xs-11,
    .col-xs2-11,
    .col-xs-12 {
        float: left;
    }
    .col-xs-1,
    .col-xs2-1 {
        width: 8.33333%;
    }
    .col-xs-2,
    .col-xs2-2 {
        width: 16.66667%;
    }
    .col-xs-3,
    .col-xs2-3 {
        width: 25%;
    }
    .col-xs-4,
    .col-xs2-4 {
        width: 33.33333%;
    }
    .col-xs-5,
    .col-xs2-5 {
        width: 41.66667%;
    }
    .col-xs-6,
    .col-xs2-6 {
        width: 50%;
    }
    .col-xs-7,
    .col-xs2-7 {
        width: 58.33333%;
    }
    .col-xs-8,
    .col-xs2-8 {
        width: 66.66667%;
    }
    .col-xs-9,
    .col-xs2-9 {
        width: 75%;
    }
    .col-xs-10,
    .col-xs2-10 {
        width: 83.33333%;
    }
    .col-xs-11,
    .col-xs2-11 {
        width: 91.66667%;
    }
    .col-xs-12 {
        width: 100%;
    }
}

/*----- 768px <= col-sm-99 <= 991px --------*/
/* - - - - - - - - - - - - */
@media (min-width: 768px) {
/* - - - - - - - - - - - - */
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-1 {
        width: 8.33333%;
    }
    .col-sm-2 {
        width: 16.66667%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33333%;
    }
    .col-sm-5 {
        width: 41.66667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.33333%;
    }
    .col-sm-8 {
        width: 66.66667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.33333%;
    }
    .col-sm-11 {
        width: 91.66667%;
    }
    .col-sm-12 {
        width: 100%;
    }
}

/*----- 992px <= col-md-99 <= 1199px -------*/
/* - - - - - - - - - - - - */
@media (min-width: 992px) {
/* - - - - - - - - - - - - */
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-1 {
        width: 8.33333%;
    }
    .col-md-2 {
        width: 16.66667%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.33333%;
    }
    .col-md-5 {
        width: 41.66667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33333%;
    }
    .col-md-8 {
        width: 66.66667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.33333%;
    }
    .col-md-11 {
        width: 91.66667%;
    }
    .col-md-12 {
        width: 100%;
    }
}

/*----- 1200px <= col-lg-99 ----------------*/
/* - - - - - - - - - - - - */
@media (min-width: 1200px) {
/* - - - - - - - - - - - - */
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-1 {
        width: 8.33333%;
    }
    .col-lg-2 {
        width: 16.66667%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.33333%;
    }
    .col-lg-5 {
        width: 41.66667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.33333%;
    }
    .col-lg-8 {
        width: 66.66667%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.33333%;
    }
    .col-lg-11 {
        width: 91.66667%;
    }
    .col-lg-12 {
        width: 100%;
    }
}


/*----- "col-xx-99" padding ----------------*/
section [class*="col-lg-"],
section [class*="col-md-"],
section [class*="col-sm-"],
section [class*="col-xs-"],
.modal-content [class*="col-lg-"],
.modal-content [class*="col-md-"],
.modal-content [class*="col-sm-"],
.modal-content [class*="col-xs-"] {
    position: relative;
    min-height: 1px;
    padding: 20px;
}

/* - - - - - - - - - - - - */
@media (max-width: 480px) {
/* - - - - - - - - - - - - */
    section [class*="col-lg-"],
    section [class*="col-md-"],
    section [class*="col-sm-"],
    section [class*="col-xs-"] {
        padding-left: 0;
        padding-right: 0;
    }
}


/*----- "col-xx-99" CenterRing -------------*/
.center {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform:    translateX(-50%);
    -ms-transform:     translateX(-50%);
    -o-transform:      translateX(-50%);
    transform:         translateX(-50%);
}


/*----- "col-xs-99" width 100% -------------*/
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    [class*="col-xs2-"] {
        width: 100% !important;
    }
}





/*------------------------------------------*/
/*                 #header                  */
/*------------------------------------------*/
/*----- header common ----------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    height: auto;   /* headerの高さ */
    
    display: block;
    
    background: #fff;
    
    /*overflow: hidden;*/  /*** hidden 必須！ ***/
    z-index: 99;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#header {
    /*height: 80px;*/   /* headerの高さ */
    padding-left:  15px;
    padding-right: 15px;
}
}



/*----- cart icon -------------------------*/
#header .cart img {
    position: absolute;
    top: 50px;
    right: 3%;
    width: auto;
    height: 30px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .cart img {
    height: 25px;
    top: 35px;
    right: 3%;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .cart img {
    top: 37px;
}
}



/*----- logo-block -------------------------*/
#header .logo-block {
    position: relative;
    text-align: left;
    margin: 8px 0 3px 3%;
    
    z-index: 99;
}
#header .logo-block .logo img {
    position: absolute;
    top: 0;
    left: 0;
    
    width: auto;
    height: 125px;
}


#header .logo-block .logo img.sp {
    display: none;
}


/*--- inner ---*/
#header .logo-block .inner {
    display: none;
    position: absolute;
    width: 44%;
    top: 10px;
    right: 16px;
}
#header .logo-block .inner ul {
    display: block;
    width: 100%;
}
#header .logo-block .inner ul li {
    display: block;
    width: 100%;
    margin: 0 4px;
    text-align: center;
}
#header .logo-block .inner ul li:last-of-type {
    margin-top: 3px;
}
#header .logo-block .inner ul li a {
    display: block;
    border: 3px rgba(0,0,0,0.4) double;
    padding: 1px 5px;
    text-transform: uppercase;
    color: #000;
    font-size: 10px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#header {
    height: 68px;
    background: #fff;
}
#header .logo-block {
    margin: 3px 0 8px 0;
}
#header .logo-block .logo img {
    width: auto;
    height: 60px;
    margin-top: 1px;
    left: 50%;
    transform:         translateX(-50%);
    -ms-transform:     translateX(-50%);
    -moz-transform:    translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform:      translateX(-50%);
}
    
#header .logo-block .inner {
    display: block;
    right: 6%;
    width: 150px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block .inner {
    display: block;
    right: 6%;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .logo-block .inner {
    display: block;
    width: 45%;
    right: 16px;
}
#header .logo-block .logo img.pc {
    display: none;
}
#header .logo-block .logo img.sp {
    display: block;
}
}




/*----- stores-llink -------------------------*/
.stores-link {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

/*--- inner-left ---*/
.stores-link .inner-left {
    position: absolute;
    top: 52px;
    left: 3%;
    margin-left: 170px;
}
.stores-link .inner-left ul {
    display: block;
    float: left;
}
.stores-link .inner-left ul li {
    display: inline-block;
    margin-right: 8px;
}
.stores-link .inner-left ul li a {
    display: block;
    border: 3px rgba(0,0,0,0.4) double;
    padding: 1px 5px;
    text-transform: uppercase;
    font-size: 11px;
}

/*--- inner-right ---*/
.stores-link .inner-right {
    position: absolute;
    top: 39px;
    right: 0;
    margin-right: 70px;
    padding: 5px 0;
    border-top: 3px rgba(0,0,0,0.2) double;
    border-bottom: 3px rgba(0,0,0,0.2) double;
}
.stores-link .inner-right ul {
    display: block;
    float: right;
}
.stores-link .inner-right ul li {
    display: inline-block;
    margin-left: 5px;
}
.stores-link .inner-right ul li a {
    display: block;
    /*border: 3px rgba(0,0,0,0.4) double;*/
    border: 0px rgba(0,0,0,0.5) solid;
    background: rgba(0,0,0,0.15);
    
    padding: 2px 7px;
    text-transform: uppercase;
    color: #000;
    font-size: 11px;
}
.stores-link .inner-right ul li.title {
    padding: 2px 18px;
    /*background: #777;*/
    /*border-top: 3px rgba(0,0,0,0.2) double;
    border-bottom: 3px rgba(0,0,0,0.2) double;*/
    color: #000;
    text-transform: uppercase;
    font-size: 11px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#header .stores-link {
    display: none;
}
}






/*----- shop-block -------------------------*/
.shop-block {
    position: relative;
    margin: 0;
    margin-top: 70px;
    padding: 15px 0;
    text-align: center;
    /*border-top:    1px rgba(0,0,0,0.15) solid;
    border-bottom: 1px rgba(0,0,0,0.15) solid;*/
}

/*--- title ---*/
.shop-block .title {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}
/*.shop-block .title a {*/
.shop-block .title p {
    display: inline-block;
    width: 500px;
    max-width: 90%;
    padding: 4px 30px;
    background: #333;
    /*border-top: 3px rgba(0,0,0,0.2) double;
    border-bottom: 3px rgba(0,0,0,0.2) double;*/
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}
/*.shop-block .title a span {*/
.shop-block .title p span {
    display: inline-block;
    margin-left: 9px;
    vertical-align: 0.2em;
    font-size: 10px;
}

/*--- ul li ---*/
.shop-block ul {
    display: block;
    margin: 0 auto;
    padding: 0;
}
.shop-block ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -0.5em;
}
.shop-block ul li a {
    padding: 2px 18px 10px 18px;
    /*border-right: 1px rgba(0,0,0,0.15) solid;*/
    letter-spacing: 1.9px;
    color: #000;
    font-weight: normal;
}
.shop-block ul li:first-of-type a {
    /*border-left: 1px rgba(0,0,0,0.15) solid;*/
}


/*--- navi menu ---*/
.menu {
	position: relative;
	/*width: 100%;
	height: 50px;
	max-width: 1000px;
	margin: 0 auto;*/
}

.menu > li {
	/*float: left;
	width: 25%;
	height: 50px;
	line-height: 50px;*/
	/*background: rgb(29, 33, 19);*/
}

.menu > li a {
	/*display: block;*/
	/*color: #fff;*/
}

.menu > li a:hover {
	/*color: #999;*/
}

.menu__single:hover {
  /*background: #072A24;*/
  /*-webkit-transition: .3s ease;
  transition: .3s ease;*/
    
    -webkit-transition: all 0.6s;
    -moz-transition:    all 0.6s;
    -ms-transition:     all 0.6s;
    -o-transition:      all 0.6s;
    transition:         all 0.6s;
}

.menu__second-level {
    background: #e5e5e5;
}
.menu__second-level li {
    display: block;
    width: 100%;
  /*border-top: 1px solid #111;*/
    white-space: nowrap;
}

.menu__second-level li a:hover {
  /*background: #111;*/
}


.init-bottom:after {
  /*content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;*/
  /*border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;*/
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu:before,
.menu:after {
  content: "";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}


.menu > .menu__single {
  position: relative;
}

.menu__single .menu__second-level {
  position: absolute;
  top: 30px;
    
    left: 50%;
    transform:         translateX(-50%);
    -ms-transform:     translateX(-50%);
    -moz-transform:    translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform:      translateX(-50%);
    
    margin-left: 0.1em;
    
    padding-top: 10px;
    padding-bottom: 10px;
    
  min-width: 200px;
  /*background:0 #072A24;*/
  /*-webkit-transition: .3s ease;
  transition: .2s ease;*/
    
    -webkit-transition: all 0.4s;
    -moz-transition:    all 0.4s;
    -ms-transition:     all 0.4s;
    -o-transition:      all 0.4s;
    transition:         all 0.4s;
    
  visibility: hidden;
  opacity: 0;
}
.menu__single .menu__second-level li {
    margin: 1px 0;
}
.menu__single .menu__second-level li a {
    display: block;
    letter-spacing: 1.3px;
    padding-bottom: 3px;
}

.menu__single:hover > .menu__second-level {
  top: 30px;
  visibility: visible;
  opacity: 1;
}




/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1279px) {
/* - - - - - - - - - - - - - - - - - - */
.shop-block .title p {
    width: auto;
    max-width: 90%;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
#header .shop-block {
    display: none;
}
}




/*------------------------------------------*/
/*             top_nav_stores               */
/*------------------------------------------*/
#top_nav_stores {
    display: none;
}


/*--- title ---*/
#top_nav_stores .title {
    display: block;
    width: 85.5%;
    margin: 0 auto;
    margin-bottom: 7px;
    border-top: 3px rgba(0,0,0,0.2) double;
    /*border-bottom: 3px rgba(0,0,0,0.2) double;*/
    text-align: center;
    padding: 7px 0 0 0;
}
#top_nav_stores .title a {
    display: block;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
}

/*--- outer ---*/
#top_nav_stores .outer {
    display: block;
    width: 85.5%;
    margin: 0 auto;
    /*border-top: 3px rgba(0,0,0,0.2) double;*/
    border-bottom: 3px rgba(0,0,0,0.2) double;
    text-align: center;
    padding: 4px 0 0 0;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
#top_nav_stores {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 90px;
    text-align: center;
}
#top_nav_stores ul {
    display: block;
    width: 100%;
}
#top_nav_stores ul li {
    display: inline-block;
    width: 42.3%;
    margin: 0 1px;
    margin-bottom: 3px;
}
/*#top_nav_stores ul li a {
    display: block;
    border: 3px rgba(0,0,0,0.4) double;
    padding: 1px 5px;
    text-transform: uppercase;
    color: #000;
    font-size: 10px;
}*/
#top_nav_stores ul li a {
    display: block;
    background: rgba(0,0,0,0.2);
    padding: 3px 5px;
    text-transform: uppercase;
    color: #000;
    font-size: 10px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#top_nav_stores {
    margin-bottom: -3px;
}
#top_nav_stores ul li {
    width: 42%;
    margin-bottom: 3px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top_nav_stores {
    margin-bottom: -3px;
}
#top_nav_stores ul li {
    width: 41.9%;
    margin-bottom: 3px;
}
#top_nav_stores .title a {
    font-weight: bold;
}
#top_nav_stores ul li a {
    font-weight: bold;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 330px) {
/* - - - - - - - - - - - - - - - - - - - */
#top_nav_stores ul li {
    width: 41.9%;
    margin: 0 1px;
    margin-bottom: 3px;
}
}
    
    
    


/*--- 2021.08.01 ---------------------------*/
/*------------------------------------------*/
/*                #top_title                */
/*------------------------------------------*/
#top_title {
    display: block;
    width: 100%;
    margin-top: 208px;
    margin-bottom: 55px;
}

#top_title p {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 2.7px;
    font-weight: bold;
    color: #000;
    font-size: 20px;
}
#top_title p strong {
    display: block;
    /*margin-bottom: 5px;*/
    text-transform: capitalize;
    letter-spacing: 4px;
    color: #000;
    font-size: 62px;
    
    font-family: 'Overpass', sans-serif;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#top_title {
    margin-top: 85px;
    margin-bottom: 30px;
}
#top_title p {
    letter-spacing: 2.0px;
    font-size: 15px;
}
#top_title p strong {
    font-size: 45px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px)
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#top_title p {
    letter-spacing: 1.5px;
    font-size: 13px;
}
#top_title p strong {
    font-size: 37px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top_title p {
    letter-spacing: 1px;
    font-size: 14px;
}
#top_title p strong {
    margin-bottom: 0;
    letter-spacing: 2.9px;
    font-weight: bold;
    font-size: 40px;
}
#top_title p span {
    display: block;
    line-height: 1.8;
    margin-bottom: -1.6em;
}
}



/*--- 2021.08.01 ---------------------------*/
/*------------------------------------------*/
/*                 top_img                  */
/*------------------------------------------*/
#top_img {
    margin-top: 0;
    margin-bottom: 120px;
}

#top_img .inner-1 {
    position: relative;
    display: block;
    margin-bottom: 35px;
    width: 100vw;
    height: 80vh;
    padding: 0;
    text-align: center;
    
    background-image: url(../images/top_img_new_2.jpg);
    background-size: cover;
    background-position: top center;
}


#top_img p {
    margin-top: 62px;
    text-align: center;
    font-size: 18px;
}



#top_img img.sp {
    display: none;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#top_img {
    margin-bottom: 0;
}
}
/*--- タテの時 ---*/
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - */
#top_img .inner-1 {
    width: 100vw;
    height: 55vh;
}
/*#top_img .inner-1 {
    background-image: url(../images/top_img_sp.jpg);
}*/
    /*background-position: -120% 0%;*/
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#top_img .inner-1 {
    display: none;
}
#top_img img.sp {
    display: block;
    margin-bottom: 35px;
}
}





/*------------------------------------------*/
/*                  top_nav                 */
/*------------------------------------------*/
#top_nav {
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 5px;
}
#top_nav {
    display: none;
}


/*--- title ---*/
#top_nav .title {
    display: block;
    width: 100%;
    background: #111;
    text-align: center;
    padding: 5px 0;
}
/*#top_nav .title a {*/
#top_nav .title p {
    display: block;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
}


/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - */
#top_nav {
    display: block;
}
#top_nav .shop-block {
    display: block;
    width: 100%;
    margin-top: -1px;
    margin-bottom: 35px;
    padding: 5px 0 0 0;
    /*background: rgba(0,0,0,0.8);*/
}
#top_nav .shop-block ul {
    display: block;
    width: 100%;
    text-align: center;
}
#top_nav .shop-block ul li {
    display: inline-block;
    width: 49.5%;
    margin-left: 0em;
    margin-bottom: 3px;
}
/*#top_nav .shop-block ul li:last-of-type {
    display: block;
    width: 99.6%;
    margin-left: 0.2%;
}*/
#top_nav .shop-block ul li a {
    display: block;
    padding: 2px 15px;
    background: rgba(0,0,0,0.15);
    /*color: rgba(255,255,255,0.95);*/
    color: #000;
    line-height: 2;
    font-weight: bold;
    font-size: 12px;
}
#top_nav .shop-block ul li.br-md {
    display: block;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - */
#top_nav .shop-block ul li a {
    padding: 2px 8px;
    letter-spacing: 0.3px;
}
}
/* - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - */
#top_nav .shop-block ul li.br-md {
    display: none;
}
#top_nav .shop-block ul li.br-xs {
    display: block;
}
#top_nav .shop-block ul li {
    text-align: center;
    display: block;
    width: 100%;
    padding: 1px 0;
}
#top_nav .shop-block ul li:last-of-type {
    display: block;
    width: 100%;
    margin-left: 0;
}
#top_nav .shop-block ul li a {
    padding: 2px 13px;
}
}





/*------------------------------------------*/
/*                   about                  */
/*------------------------------------------*/
#about.top {
    /*margin-top: 117px;*/
    margin-top: 0;
}
#about {
    margin-bottom: 30px;
}

#about .inner-1 {
    position: relative;
    display: block;
    width: 100vw;
    height: 680px;
    max-height: 75vh;
    padding: 0;
    text-align: center;
    
    background-size: cover;
    background-position: center center;
}

#about .inner-1.bg-1 {
    background-image: url(../images/bg_01_2.jpg);
}
#about .inner-1.bg-2 {
    background-image: url(../images/bg_02_2.jpg);
}
#about .inner-1.bg-3 {
    background-image: url(../images/bg_03_2.jpg);
}
#about .inner-1.bg-4 {
    background-image: url(../images/bg_04_2.jpg);
}
#about .inner-1.bg-5 {
    background-image: url(../images/bg_05_2.jpg);
}
#about .inner-1.bg-6 {
    background-image: url(../images/bg_06_2.jpg);
}
#about .inner-1.bg-7 {
    background-image: url(../images/bg_07_2.jpg);
}
#about .inner-1.bg-8 {
    background-image: url(../images/bg_08_2.jpg);
}
#about .inner-1.bg-9 {
    background-image: url(../images/bg_09_2.jpg);
}
#about .inner-1.bg-10 {
    background-image: url(../images/bg_10_2.jpg);
}

#about h2 {
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 60px;
    /*
    position: absolute;
    
    bottom: 15%;
    left: 50%;
    transform:         translate(-50%);
    -ms-transform:     translate(-50%);
    -moz-transform:    translate(-50%);
    -webkit-transform: translate(-50%);
    -o-transform:      translate(-50%);
    
    -webkit-text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    -moz-text-shadow:    2px 2px 5px rgba(0,0,0,0.3);
    -ms-text-shadow:     2px 2px 5px rgba(0,0,0,0.3);
    -o-text-shadow:      2px 2px 5px rgba(0,0,0,0.3);
    text-shadow:         2px 2px 5px rgba(0,0,0,0.3);
    */
    
    text-align: center;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.5;
    font-weight: 500;
    
    font-size: 33px;
}
#about h2 span {
    display: block;
    font-size: 48px;
    
    font-family: 'Overpass', sans-serif;
}

#about p {
    margin-top: 62px;
}

#about img {
    margin-top: 30px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (orientation: portrait) {
/* - - - - - - - - - - - - - - - - - - - */
#about .inner-1.bg-1 {
    background-image: url(../images/bg_01.jpg);
}
#about .inner-1.bg-2 {
    background-image: url(../images/bg_02.jpg);
}
#about .inner-1.bg-3 {
    background-image: url(../images/bg_03.jpg);
}
#about .inner-1.bg-4 {
    background-image: url(../images/bg_04.jpg);
}
#about .inner-1.bg-5 {
    background-image: url(../images/bg_05.jpg);
}
#about .inner-1.bg-6 {
    background-image: url(../images/bg_06.jpg);
}
#about .inner-1.bg-7 {
    background-image: url(../images/bg_07.jpg);
}
#about .inner-1.bg-8 {
    background-image: url(../images/bg_08.jpg);
}
#about .inner-1.bg-9 {
    background-image: url(../images/bg_09.jpg);
}
#about .inner-1.bg-10 {
    background-image: url(../images/bg_10.jpg);
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#about.top {
    margin-top: 0;
}
#about h2 {
    font-size: 30px;
}
#about h2 span {
    font-size: 40px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#about .inner-1 {
    /*height: 70vh;*/
    height: 285px;
}
#about.top .inner-1 {
    height: 270px;
}
    
#about .inner-2 {
    padding: 0 20px;
}
#about h2 {
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 18px;
}
#about h2 span {
    font-size: 28px;
}
}




/*------------------------------------------*/
/*                   press                  */
/*------------------------------------------*/
#press {
    margin-top: 250px;
    margin-bottom: 100px;
}

#press .outer {
    padding: 0;
}

#press h2 {
    display: block;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#press .inner-1 {
    text-align: left;
    padding-bottom: 30px;
}

#press img {
    max-width: 100%;
}

#press h3 {
    display: block;
    text-align: left;
    text-transform: none;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px rgba(0,0,0,0.15) solid;
}

#press h4 {
    display: block;
    text-align: left;
    text-transform: none;
    margin-top: 15px;
}

#press ul li {
    line-height: 2;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
#press {
    margin-top: 0;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#press .outer {
    padding: 0 20px;
}
#press .inner-1.under {
    margin-top: 50px;
}
#press .inner-1 {
    text-align: center;
}
#press h3 {
    text-align: center;
}
}








/*------------------------------------------*/
/*                   movie                  */
/*------------------------------------------*/
#movie {
    padding-top: 63px;
    padding-bottom: 50px;
    text-align: center;
    background: #333;
}

#movie h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 5px;
    font-size: 30px;
}

#movie h3 {
    margin-top: 15px;
    letter-spacing: 0.5px;
    font-weight: 100;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

#movie .sp {
    display: none;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px) {
              /*and (hover: none) 
              and (pointer: coarse) */
/* - - - - - - - - - - - - - - - - - - - */
#movie .pc {
    display: none;
}
#movie .sp {
    display: block;
}
}




/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1279px) {
/* - - - - - - - - - - - - - - - - - - - */
#movie h3 {
    font-size: 11px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 991px) {
/* - - - - - - - - - - - - - - - - - - - */
#movie h3 {
    font-size: 13px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#movie {
    padding-top: 40px;
    padding-bottom: 30px;
}
#movie h2 {
    margin-bottom: 10px;
}
#movie h3 {
    font-size: 12px;
}
}






/*------------------------------------------*/
/*                  bottom                  */
/*------------------------------------------*/
#bottom {
    width: 100vw;
    padding: 0;
    text-align: center;
    /*background: #333;*/
    background: #Fff;
}

/*--- inner ---*/
#bottom .inner {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


/*--- h3 ---*/
#bottom h3 {
    position: relative;
    display: block;
    /*width: 100%;*/
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

/*#bottom h3:before {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    height: 1px;
    width: 100%;
    background-color: rgba(255,255,255,0.3);
}*/

#bottom h3 span {
    display: inline-block;
    /*width: 250px;*/
    width: 100%;
    height: 36px;
    line-height: 36px;
    /*background-color: #333;*/
    background: #202020;
    position: relative;
    z-index: 5;
}


/*--- ul li ---*/
#bottom ul {
    display: block;
    width: 100%;
}
#bottom ul li {
    display: inline-block;
    width: auto;
    padding: 0 9px;
    letter-spacing: 1.5px;
    line-height: 2.5;
}
#bottom ul li a {
    display: block;
    padding: 2px 6px;
    white-space: nowrap;
    /*color: rgba(255,255,255,0.9);*/
    color: #000;
    /*font-size: 13px;*/
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1450px) {
/* - - - - - - - - - - - - - - - - - - - */
/*#bottom h3 span {
    width: 85%;
}*/
#bottom ul li {
    padding: 0 7px;
    font-size: 13px;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
/*#bottom h3 span {
    width: 80%;
}*/
#bottom ul li {
    display: block;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 830px) 
              and (orientation: landscape) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom ul li {
    display: block;
}
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom {
    padding: 0 0 0 0;
    margin-bottom: -5px;
}
#bottom .inner {
    padding-left: 20px;
    padding-right: 20px;
}
#bottom ul li {
    display: block;
    line-height: 2.4;
}
#bottom h3 {
    margin-bottom: 15px;
    font-size: 15px;
}
#bottom h3 span {
    /*width: 180px;*/
    width: 100%;
}
}




/*------------------------------------------*/
/*                  bottom-2                */
/*------------------------------------------*/
#bottom-2 {
    width: 100vw;
    padding: 0;
    text-align: center;
    /*background: #333;*/
    background: #fff;
}

/*--- ul.store ---*/
#bottom-2 ul.store {
    display: block;
    width: 220px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
#bottom-2 ul.store li {
    display: block;
    width: 100%;
    margin: 20px 0;
}
#bottom-2 ul.store li:last-of-type {
    margin-bottom: 60px;
}
#bottom-2 ul.store li a {
    display: block;
    background: #dfdfdf;
    padding: 2px 0;
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
}

/*--- ul.site ---*/
#bottom-2 ul.site {
    display: block;
    width: auto;
    text-align: center;
    margin: 0 auto;
}
#bottom-2 ul.site li {
    display: inline-block;
    width: 220px;
    margin: 0 5px;
}
#bottom-2 ul.site li a {
    display: block;
    border: 3px rgba(0,0,0,0.5) double;
    padding: 2px 0;
    text-transform: uppercase;
    color: #000;
    font-size: 15px;
}


/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#bottom-2 ul.store {
    margin-bottom: 70px;
}
#bottom-2 ul.store li a {
    font-weight: bold;
}
#bottom-2 ul.site {
    display: block;
    width: 220px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
}
#bottom-2 ul.site li {
    display: block;
    width: 100%;
    margin: 16px 0;
}
}



/*------------------------------------------*/
/*                 footer                   */
/*------------------------------------------*/
footer {
    width: 100vw;
    margin-top: 20px;
    padding-top: 60px;
    /*background: #333;*/
    background: #fff;
    text-align: center;
}

footer img.logo {
    width: 200px;
    max-width: 90%;
    height: auto;
    margin-bottom: 45px;
}

footer #copyright {
    /*color: rgba(255,255,255,0.6);*/
    color: #555;
    text-align: center;
    padding: 2em 0;
    font-size: 13px;
 }




