@charset "UTF-8";
/* Variables
****************************************************************************/
/* Media Queries
****************************************************************************/
/* Utilities
****************************************************************************/
/*clearfix*/
/* set some element's line-height to 1em because of adjust text margin */
/*set fontfamily noto 700*/
/*set fontfamily*/
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Basic Elements
****************************************************************************/
html {
  font-size: 62.5%; }

body {
  background: #000;
  font-family: 'Roboto Condensed', こぶりなゴシック W3 JIS2004, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

a:link, a:visited, a.touchend {
  color: #000;
  text-decoration: underline;
  outline: none; }

a:active, a:hover, a.touchstart {
  color: #000;
  text-decoration: none; }

p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
  color: #000;
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

ul {
  margin: 0;
  padding: 0; }

li {
  list-style-type: none; }

img {
  vertical-align: bottom; }

hr {
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #fff; }

/* reset form elements */
input[type=text], input[type=submit], button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

select::-ms-expand {
  display: none; }

/* ==========================================================================
   Layout
   レイアウト用css
   ========================================================================== */
/****************************************************************************/
/* 基本レイアウト要素
****************************************************************************/
/*ページ全体のwrap*/
.page-wrapper {
  position: relative;
  min-width: 320px;
  overflow: hidden;
  /*padding: 60px;*/ }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .page-wrapper {
      min-height: 100vh;
      min-width: 900px; } }

/*幅固定センタリングコンテンツ*/
.fixed-content {
  min-width: 900px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .fixed-content {
      min-width: initial;
      max-width: initial; } }

/*メインエリアのwrap*/
.main-wrapper {
  margin-top: 50px; }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .main-wrapper {
      margin-top: 66px; } }

/*段組み用コンテナ*/
.cnt:after {
  content: "";
  clear: both;
  display: block; }

.list-annotation li {
  font-size: 12px;
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3em;
  margin-bottom: 0.3em; }

.list-disc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em; }

/*画面高さが足らない場合*/
html.min_height {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*ページ全体のwrap*/ }
  html.min_height body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 100vh; }
  html.min_height .page-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%; }
  html.min_height .main-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff; }

/* ヘッダ
****************************************************************************/
header {
  background: #000;
  position: fixed;
  width: 100%;
  z-index: 100; }
  header .head-inner {
    position: relative; }
  header .btn-menu {
    display: none; }
  header hr {
    display: none; }
  header .sp-tit {
    display: none; }
  header .gnav:after {
    content: "";
    clear: both;
    display: block; }
  header .gnav li a:link {
    text-decoration: none; }
  header .gnav li a:hover {
    text-decoration: none; }
  header .gnav li a:visited {
    text-decoration: none; }
  header .gnav li a, header .gnav li p {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff; }
  header .gnav li p.gnav_off {
    color: rgba(255, 255, 255, 0.5);
    cursor: default; }
  header .wrap-share .btn-share {
    display: none; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    header .head-logo img {
      width: auto;
      height: 50px; }
    header .sp-tit {
      display: block;
      text-align: center; }
      header .sp-tit img {
        height: 13px;
        width: auto; }
    header .wrap-nav {
      padding: 30px 0;
      display: none;
      height: calc( 100vh - 50px);
      position: relative;
      box-sizing: border-box;
      overflow-y: scroll; }
      header .wrap-nav.active {
        display: block; }
    header hr {
      display: block;
      width: 100px;
      margin: 28px auto; }
    header .gnav li {
      display: block;
      padding: 10px 50px; }
      header .gnav li a, header .gnav li p {
        background: url(/coffee/assets/img/ic_arrow_a_r.svg) no-repeat left center;
        background-size: 4px auto;
        padding-left: 12px; }
    header .subnav li {
      padding: 10px 0 0 1em; } }
  @media only screen and (min-width: 0px) and (max-width: 767px) and (min-width: 0px) and (max-width: 767px) {
    header .subnav li {
      padding-top: 0.2em; } }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    header .btn-menu {
      display: block;
      width: 40px;
      height: 40px;
      background: url(/coffee/assets/img/ic_sp_menu.svg) no-repeat center center;
      background-size: 25px 14px;
      position: absolute;
      top: 5px;
      right: 10px; }
      header .btn-menu.active {
        background-image: url(/coffee/assets/img/ic_close.svg);
        background-size: 23px 23px; }
    header .list-sns, header .footer .list-sns--transparent, .footer header .list-sns--transparent {
      text-align: center;
      font-size: 0; }
      header .list-sns li, header .footer .list-sns--transparent li, .footer header .list-sns--transparent li {
        display: inline-block;
        margin-right: 15px;
        line-height: 1; }
        header .list-sns li img, header .footer .list-sns--transparent li img, .footer header .list-sns--transparent li img {
          width: 30px;
          height: auto;
          vertical-align: baseline; }
        header .list-sns li:last-child, header .footer .list-sns--transparent li:last-child, .footer header .list-sns--transparent li:last-child {
          margin-right: 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    header:after {
      content: "";
      clear: both;
      display: block; }
    header .head-logo {
      float: left;
      margin-right: 40px; }
      header .head-logo img {
        width: auto;
        height: 66px;
        transition-duration: .2s; }
    header .wrap-nav {
      transition-duration: .2s; }
    header .gnav:after {
      content: "";
      clear: both;
      display: block; }
    header .gnav li {
      float: left;
      margin-right: 50px;
      transition-duration: .2s; }
      header .gnav li a:link {
        text-decoration: none; }
      header .gnav li a:hover {
        text-decoration: none; }
      header .gnav li a:visited {
        text-decoration: none; }
      header .gnav li a, header .gnav li p {
        display: block;
        font-size: 1.2rem;
        color: #fff;
        cursor: pointer;
        padding: 24px 0; }
      header .gnav li a:hover {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }
    header .gnav .subnav {
      position: absolute;
      top: 66px;
      left: calc( 50% - 50vw);
      background-color: rgba(34, 23, 0, 0.9);
      width: 100vw;
      padding: 0 0;
      transition: 0.2s;
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      height: 0;
      overflow: hidden; }
      header .gnav .subnav > ul {
        padding-left: 120px; }
        header .gnav .subnav > ul li a, header .gnav .subnav > ul li p {
          padding: 10px 0; }
    header .gnav > li.is_subnav:hover p {
      opacity: 0.5;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }
    header .gnav > li.is_subnav:hover .subnav {
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      height: 44px; } }

@media screen and (min-width: 768px) and (max-width: 9999px) and (min-width: 768px) and (max-width: 1080px) {
  header .gnav li {
    margin-right: 35px; }
    header .gnav li a {
      font-size: 1.12rem; }
  header .gnav .subnav {
    left: 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    header .wrap-share {
      position: absolute;
      top: 14px;
      right: 10px;
      overflow: hidden;
      height: 35px;
      transition-duration: 0.15s; }
      header .wrap-share .btn-share {
        display: block;
        margin-bottom: 16px; }
      header .wrap-share:hover {
        height: 226px;
        transition-duration: 0.3s; }
        header .wrap-share:hover .list-sns, header .wrap-share:hover .footer .list-sns--transparent, .footer header .wrap-share:hover .list-sns--transparent {
          display: block; }
    header .list-sns li, header .footer .list-sns--transparent li, .footer header .list-sns--transparent li {
      margin-bottom: 10px; }
      header .list-sns li img, header .footer .list-sns--transparent li img, .footer header .list-sns--transparent li img {
        width: 33px;
        height: auto; }
    header.active {
      background: rgba(0, 0, 0, 0.8); }
      header.active .head-logo img {
        height: 44px; }
      header.active .gnav > li a, header.active .gnav > li p {
        padding: 13px 0; }
      header.active .subnav {
        top: 44px; }
        header.active .subnav > ul {
          padding-left: 93px; }
      header.active .wrap-share {
        transition-duration: .2s;
        top: 6px;
        right: 2px;
        height: 40px; }
        header.active .wrap-share .btn-share {
          margin-bottom: 16px; }
          header.active .wrap-share .btn-share img {
            width: 27px; }
        header.active .wrap-share:hover {
          height: 226px;
          transition-duration: 0.3s; }
          header.active .wrap-share:hover .list-sns, header.active .wrap-share:hover .footer .list-sns--transparent, .footer header.active .wrap-share:hover .list-sns--transparent {
            display: block; } }

/* フッタ
****************************************************************************/
.footer {
  background: #000;
  padding-bottom: 25px; }
  .footer .foot-inner {
    position: relative; }
  .footer .list-sns, .footer .list-sns--transparent {
    font-size: 0;
    padding: 20px 0;
    text-align: center;
    background: #fff; }
    .footer .list-sns li, .footer .list-sns--transparent li {
      display: inline-block;
      margin-right: 18px; }
      .footer .list-sns li img, .footer .list-sns--transparent li img {
        width: 30px;
        height: auto; }
      .footer .list-sns li:last-child, .footer .list-sns--transparent li:last-child {
        margin-right: 0; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .footer .list-sns, .footer .list-sns--transparent {
        padding: 15px 0; }
        .footer .list-sns li, .footer .list-sns--transparent li {
          margin-right: 15px; } }
    @media print, screen and (min-width: 768px) and (max-width: 9999px) {
      .footer .list-sns li img, .footer .list-sns--transparent li img {
        width: 36px;
        height: auto; } }
  .footer .list-sns--transparent {
    background: none;
    position: absolute;
    margin-top: -102px;
    width: 100%; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .footer .list-sns--transparent {
        margin-top: -80px; } }
  .footer .pagetop, .footer .pagetop--transparent {
    width: 60px;
    position: absolute;
    right: 60px; }
    .footer .pagetop.toppage, .footer .toppage.pagetop--transparent {
      /*toppageは イレギュラーレイアウト*/
      margin-top: -30px; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .footer .pagetop, .footer .pagetop--transparent {
        width: 40px;
        right: 10px;
        margin-top: 10px; }
        .footer .pagetop.toppage, .footer .toppage.pagetop--transparent {
          margin-top: -20px; } }
    @media print, screen and (min-width: 768px) and (max-width: 9999px) {
      .footer .pagetop, .footer .pagetop--transparent {
        transition-duration: .2s; }
        .footer .pagetop:hover, .footer .pagetop--transparent:hover {
          opacity: 0.5;
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; } }
  .footer .pagetop--transparent {
    top: -105px;
    z-index: 10; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .footer .pagetop--transparent {
        top: -80px; } }
  .footer .foot-link {
    font-size: 0;
    text-align: center;
    margin-top: 30px; }
    .footer .foot-link li {
      display: inline-block;
      font-size: 12px;
      font-size: 1.2rem;
      margin-right: 20px; }
      .footer .foot-link li:last-child {
        margin-right: 0; }
    .footer .foot-link .official {
      transition-duration: .2s; }
      .footer .foot-link .official a:link {
        text-decoration: none; }
      .footer .foot-link .official a:hover {
        text-decoration: none; }
      .footer .foot-link .official a:visited {
        text-decoration: none; }
      .footer .foot-link .official a {
        display: block;
        background: url(/coffee/assets/img/ic_arrow_a_r.svg) no-repeat left center;
        background-size: 4px auto;
        padding-left: 10px;
        color: #fff; }
      .footer .foot-link .official:hover {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }
    .footer .foot-link .member img, .footer .foot-link .online img {
      width: auto;
      height: 25px; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .footer .foot-link {
        margin-top: 20px;
        margin-bottom: 25px; }
        .footer .foot-link .official {
          display: block;
          margin-bottom: 13px; }
          .footer .foot-link .official a {
            display: inline-block; } }
    @media print, screen and (min-width: 768px) and (max-width: 9999px) {
      .footer .foot-link {
        margin-bottom: 30px; } }
  .footer small {
    display: block;
    text-align: center;
    font-size: 10px;
    font-size: 1.0rem;
    color: #fff; }
  .footer #f_nav {
    margin: 40px 0;
    margin: 4.0rem 0;
    text-align: center; }
    @media print, screen and (min-width: 768px) and (max-width: 9999px) {
      .footer #f_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .footer #f_nav li {
      line-height: 1; }
      .footer #f_nav li:nth-child(n+2) {
        margin-top: 1.0em; }
        @media print, screen and (min-width: 768px) and (max-width: 9999px) {
          .footer #f_nav li:nth-child(n+2) {
            margin: 0 0 0 1em;
            padding-left: 1em;
            border-left: 1px solid #fff; }
            #index .footer #f_nav li:nth-child(n+2) {
              border-left-color: #000; } }
      .footer #f_nav li a {
        position: relative;
        padding-right: 1.375em;
        text-decoration: none;
        color: #fff; }
        #index .footer #f_nav li a {
          color: #000; }
        .footer #f_nav li a:before {
          position: absolute;
          display: block;
          content: " ";
          background: url(../img/icon-blank.svg) no-repeat center center/contain;
          width: 0.68182em;
          height: 0.68182em;
          top: 50%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
          right: 0; }
          #index .footer #f_nav li a:before {
            background-image: url(../img/icon-blank-black.svg); }

/* 下層共通パーツ
****************************************************************************/
.subpage__title, .subpage__title--products, .subpage__title--cm, .subpage__title--nf404 {
  padding: 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  font-size: 0; }
  .subpage__title span, .subpage__title--products span, .subpage__title--cm span, .subpage__title--nf404 span {
    display: inline-block;
    color: #fff;
    line-height: 1em; }
  .subpage__title .en, .subpage__title--products .en, .subpage__title--cm .en, .subpage__title--nf404 .en {
    margin-bottom: 10px; }
    .subpage__title .en img, .subpage__title--products .en img, .subpage__title--cm .en img, .subpage__title--nf404 .en img {
      width: auto;
      height: 34px; }
  .subpage__title .en--h img, .subpage__title--products .en--h img, .subpage__title--cm .en--h img, .subpage__title--nf404 .en--h img {
    height: 56px; }
  .subpage__title .jp, .subpage__title--products .jp, .subpage__title--cm .jp, .subpage__title--nf404 .jp {
    margin-top: -14px;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em; }
    .subpage__title .jp img, .subpage__title--products .jp img, .subpage__title--cm .jp img, .subpage__title--nf404 .jp img {
      height: 28px; }
  .subpage__title .jp--def img, .subpage__title--products .jp--def img, .subpage__title--cm .jp--def img, .subpage__title--nf404 .jp--def img {
    height: auto; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage__title, .subpage__title--products, .subpage__title--cm, .subpage__title--nf404 {
      padding: 65px 0; }
      .subpage__title .en img, .subpage__title--products .en img, .subpage__title--cm .en img, .subpage__title--nf404 .en img {
        width: auto;
        height: 25px; }
      .subpage__title .en--h img, .subpage__title--products .en--h img, .subpage__title--cm .en--h img, .subpage__title--nf404 .en--h img {
        height: 27px; }
      .subpage__title .jp, .subpage__title--products .jp, .subpage__title--cm .jp, .subpage__title--nf404 .jp {
        font-size: 1.1rem; }
        .subpage__title .jp img, .subpage__title--products .jp img, .subpage__title--cm .jp img, .subpage__title--nf404 .jp img {
          width: auto;
          height: 24px; } }

.subpage__title--products {
  background-image: url(/coffee/products/img/tit_bg.jpg); }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage__title--products {
      background-image: url(/coffee/products/img/tit_bg_sp.jpg); } }

.subpage__title--cm {
  background-image: url(/coffee/cm/img/tit_bg.jpg);
  /*@include mq-sp {
		background-image: url(/coffee/cm/img/tit_bg_sp.jpg);
	}*/
  padding: 80px; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage__title--cm .en img {
      height: 18px; }
    .subpage__title--cm .jp--def img {
      height: 14px; } }

.subpage__title2 {
  text-align: center;
  margin-bottom: 40px; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage__title2 {
      margin-bottom: 20px; }
      .subpage__title2 img {
        height: 20px;
        width: auto; } }

.subpage__mv img {
  width: 100%; }

.subpage-cbox-container {
  padding: 0 5%; }

.subpage-cbox:after {
  content: "";
  clear: both;
  display: block; }

.subpage-cbox__item {
  background: #000;
  position: relative;
  transition-duration: .4s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  /*	a:hover {
		.cbox-pct {
			transform: translateY(-14px);
		}
	}*/ }
  .subpage-cbox__item .cbox-wrap {
    display: block; }
    .subpage-cbox__item .cbox-wrap:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 74%; }
  .subpage-cbox__item.in {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
    .subpage-cbox__item.in:after {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage-cbox__item .cbox-wrap:before {
      padding-top: 75%; } }
  .subpage-cbox__item .cbox-pct {
    position: absolute;
    width: 34%;
    top: -8%;
    left: 9%;
    transition-duration: .4s; }
    .subpage-cbox__item .cbox-pct img {
      width: 100%;
      vertical-align: top; }
    .subpage-cbox__item .cbox-pct.in {
      -webkit-transform: translateY(40px);
              transform: translateY(40px);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  .subpage-cbox__item .cbox-text {
    position: absolute;
    top: 16%;
    width: 100%;
    padding-left: 50%;
    transition-duration: .3s; }
    .subpage-cbox__item .cbox-text.in {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .subpage-cbox__item .cbox-text {
        top: 18%; } }
  .subpage-cbox__item .cbox-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-duration: .3s; }
    .subpage-cbox__item .cbox-bg.in {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  .subpage-cbox__item .cbox-title {
    margin-bottom: 20px; }
    .subpage-cbox__item .cbox-title img {
      width: 100%;
      max-width: 270px; }
  .subpage-cbox__item .cbox-copy {
    margin-bottom: 20px; }
    .subpage-cbox__item .cbox-copy img {
      width: 100%;
      max-width: 270px; }
  .subpage-cbox__item .cbox-line {
    width: 30px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .subpage-cbox__item .cbox-line {
        margin-bottom: 10px; } }
  .subpage-cbox__item .btn-detail {
    position: absolute;
    bottom: 7%;
    left: calc(50% - 120px);
    transition-duration: .3s; }
    .subpage-cbox__item .btn-detail .btn-a--large {
      width: 240px; }
    .subpage-cbox__item .btn-detail.in {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
  .subpage-cbox__item.new:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: url(/coffee/assets/img/ic_new.png) no-repeat center center;
    background-size: contain;
    transition-duration: .3s;
    transition-delay: .5s; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .subpage-cbox__item.new:after {
        width: 30px;
        height: 30px; } }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage-cbox__item {
      margin-bottom: 40px; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .subpage-cbox__item {
      float: left;
      width: 47.5%;
      margin-right: 5%; }
      .subpage-cbox__item:nth-child(2n) {
        margin-right: 0;
        margin-top: 6%; } }

.subpage__title--nf404 {
  background-color: #efefef; }
  .subpage__title--nf404 .jp {
    color: #000;
    margin-top: 0;
    margin-bottom: -10px;
    font-weight: bold;
    font-size: 24px;
    font-size: 2.4rem; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .subpage__title--nf404 .jp {
      font-size: 1.8rem; } }

.sec-nf404 {
  background: #fff; }
  .sec-nf404 p {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 1em; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .sec-nf404 {
      padding: 40px 0; }
      .sec-nf404 p {
        font-size: 1.3rem; }
      .sec-nf404 .fixed-content {
        width: 90%; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .sec-nf404 {
      padding: 120px 0; }
      .sec-nf404 .fixed-content {
        width: 720px; } }

.maintenance {
  font-size: 4vw;
  font-weight: bold;
  line-height: 2;
  text-align: center; }
  @media only screen and (min-width: 1081px) {
    .maintenance {
      font-size: 20px; } }

/*
	layout products
*/
/*
 商品情報トップのインデックスリスト
********************************************************/
.sec-productsIndex {
  background: #fff; }

/*
 商品情報リスト
********************************************************/
.productList {
  position: relative;
  padding: 40px 4%; }
  .productList:after {
    content: "";
    clear: both;
    display: block; }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .productList {
      padding: 95px 30px; } }

ul#prg-productList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.productList__item {
  position: relative;
  text-align: center;
  margin-bottom: 30px; }
  .productList__item a:link {
    text-decoration: none; }
  .productList__item a:hover {
    text-decoration: none; }
  .productList__item a:visited {
    text-decoration: none; }
  .productList__item a {
    display: block;
    padding-top: 20px;
    height: 100%; }
  .productList__item img {
    width: 100%; }
  .productList__item .ind-pct-wrap {
    display: table;
    width: 100%; }
  .productList__item .ind-pct {
    display: table-cell;
    vertical-align: bottom; }
  .productList__item .ind-name {
    color: #000;
    width: 100%;
    min-height: 54px;
    box-sizing: content-box;
    line-height: 1.2em;
    font-weight: bold;
    padding-top: 0.5em;
    overflow: visible;
    padding-bottom: 45px; }
    .productList__item .ind-name.line3 {
      padding-top: 0; }
  .productList__item .btn-detail {
    position: absolute;
    bottom: 15px;
    left: 50%;
    translate: -50% 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; }
    @media only screen and (min-width: 0px) and (max-width: 767px) {
      .productList__item .btn-detail {
        bottom: 0; } }
    .productList__item .btn-detail > span {
      bottom: 0;
      transition-duration: .2s;
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0; }
    .productList__item .btn-detail .btn-a, .productList__item .btn-detail .btn-a--white, .productList__item .btn-detail .btn-a--large {
      transition-duration: .2s;
      -webkit-transform-origin: 0 0;
              transform-origin: 0 0; }
      .productList__item .btn-detail .btn-a:after, .productList__item .btn-detail .btn-a--white:after, .productList__item .btn-detail .btn-a--large:after {
        transition-duration: .2s;
        transition-delay: .2s;
        -webkit-transform-origin: 0 0;
                transform-origin: 0 0; }
      .productList__item .btn-detail .btn-a > span, .productList__item .btn-detail .btn-a--white > span, .productList__item .btn-detail .btn-a--large > span {
        transition-delay: .2s;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }
    .productList__item .btn-detail.in .btn-a, .productList__item .btn-detail.in .btn-a--white, .productList__item .btn-detail.in .btn-a--large {
      -webkit-transform: scaleX(0);
              transform: scaleX(0); }
      .productList__item .btn-detail.in .btn-a > span, .productList__item .btn-detail.in .btn-a--white > span, .productList__item .btn-detail.in .btn-a--large > span {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
      .productList__item .btn-detail.in .btn-a:after, .productList__item .btn-detail.in .btn-a--white:after, .productList__item .btn-detail.in .btn-a--large:after {
        -webkit-transform: scaleX(0);
                transform: scaleX(0); }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .productList__item {
      width: 48%;
      margin-right: 4%;
      margin-bottom: 20px; }
      .productList__item img {
        width: 72%; }
      .productList__item:nth-child(2n) {
        margin-right: 0; } }
  @media screen and (min-width: 0px) and (max-width: 320px) {
    .productList__item .ind-name {
      font-size: 1.1rem; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .productList__item {
      width: 22%;
      margin-right: 4%;
      transition-duration: .2s;
      box-sizing: border-box;
      position: relative;
      z-index: 10; }
      .productList__item .frame {
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border: 4px solid #000;
        cursor: pointer;
        z-index: 0;
        top: 0;
        left: 0;
        transition-duration: .2s;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
      .productList__item a {
        position: relative;
        z-index: 1; }
      .productList__item img {
        width: 63%; }
      .productList__item .ind-name {
        font-size: 1.5rem; }
      .productList__item:nth-child(4n) {
        margin-right: 0; }
      .productList__item:hover {
        /*.ind-name {
				color: #fff;
			}*/
        /*.btn-detail span {
				background: #fff;
				color: #000;
				&::after {
					background: #000;
				}
			}*/ }
        .productList__item:hover .frame {
          opacity: 1;
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; } }

.productList__item--new:before {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 25px;
  height: 25px;
  background: url(/coffee/assets/img/ic_new.png) no-repeat center center;
  background-size: contain; }

/*
 商品情報詳細
********************************************************/
.sec-productsDetail {
  background: #fff; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .sec-productsDetail {
      padding: 40px 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .sec-productsDetail {
      padding: 45px 0 60px;
      min-height: 600px; } }

.productDetail__product, .productDetail__product--new {
  position: relative; }
  .productDetail__product img, .productDetail__product--new img {
    width: 100%;
    height: auto; }
  .productDetail__product .wrap-product, .productDetail__product--new .wrap-product {
    position: relative;
    margin: 0 auto; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .productDetail__product .wrap-product, .productDetail__product--new .wrap-product {
      position: relative;
      width: 200px; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .productDetail__product, .productDetail__product--new {
      width: 43%;
      float: left;
      padding: 0 10%;
      text-align: center; }
      .productDetail__product .wrap-product, .productDetail__product--new .wrap-product {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        z-index: 1; }
        .productDetail__product .wrap-product img, .productDetail__product--new .wrap-product img {
          width: auto;
          height: auto; } }

.productDetail__product--new .wrap-product:before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 130px;
  top: 37px;
  background: url(/coffee/assets/img/ic_new.png) no-repeat top right;
  background-size: contain;
  z-index: 9; }

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .productDetail__product--new .wrap-product:before {
    width: 30px;
    height: 30px;
    right: -10px;
    top: 25px; } }

.productDetail__text hr.line {
  width: 40px;
  margin: 30px auto 30px 0;
  border-top: 1px solid #000; }

.productDetail__text .btn-back a {
  display: block; }

.productDetail__text .cnt-btmlink .box-online a {
  display: block; }

.productDetail__text .feature-text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.75em;
  margin-bottom: 1.2em; }

.productDetail__text p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.75em;
  margin-bottom: 1.2em; }

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .productDetail__text {
    margin: 0 25px; }
    .productDetail__text .feature-text {
      font-size: 1.2rem; }
    .productDetail__text p {
      font-size: 1.2rem; }
    .productDetail__text hr.line {
      margin: 20px auto; }
    .productDetail__text .btn-back {
      display: block;
      width: 165px;
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto; } }

@media print, screen and (min-width: 768px) and (max-width: 9999px) {
  .productDetail__text {
    position: relative;
    padding-top: 30px;
    padding-right: 60px;
    width: 57%;
    float: right;
    z-index: 2; }
    .productDetail__text .btn-back {
      margin-top: 20px; } }

.productDetail__title {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1em; }
  .productDetail__title .shoulder {
    display: inline-block;
    border: 2px solid #000;
    margin-bottom: 15px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1em;
    padding: 2px 5px; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .productDetail__title {
      font-size: 1.9rem;
      text-align: center;
      margin-right: 25px;
      margin-left: 25px;
      line-height: 1.2em; }
      .productDetail__title .shoulder {
        font-size: 1.1rem;
        margin-bottom: 10px; } }

.productDetail__btmLink {
  position: relative; }
  .productDetail__btmLink .box-online {
    border: 2px solid #000;
    text-align: center; }
  .productDetail__btmLink .box-sns-list {
    font-size: 0;
    text-align: center;
    background: #eee; }
    .productDetail__btmLink .box-sns-list li {
      display: inline-block; }
      .productDetail__btmLink .box-sns-list li:last-child {
        margin-right: 0; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .productDetail__btmLink {
      margin-top: 20px; }
      .productDetail__btmLink .box-online {
        padding: 7px 0; }
        .productDetail__btmLink .box-online img {
          width: 63px; }
      .productDetail__btmLink .box-sns-list {
        margin-top: 10px;
        padding: 7px 0; }
        .productDetail__btmLink .box-sns-list li {
          margin-right: 18px; }
          .productDetail__btmLink .box-sns-list li img {
            width: 30px;
            height: auto; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .productDetail__btmLink {
      margin-top: 30px; }
      .productDetail__btmLink .box-online {
        float: left;
        width: 20%;
        height: 50px;
        padding-top: 10px; }
        .productDetail__btmLink .box-online img {
          width: 63px; }
      .productDetail__btmLink .box-sns-list {
        float: right;
        width: 100%;
        height: 50px;
        padding: 7px 0; }
        .productDetail__btmLink .box-sns-list li {
          margin-right: 18px; }
          .productDetail__btmLink .box-sns-list li img {
            width: 36px;
            height: auto; }
      .productDetail__btmLink .box-online + .box-sns-list {
        width: 78%; } }

/* ==========================================================================
   Object
   再利用パーツやユーティリティ
   ========================================================================== */
/* module
--------------------------------------------------*/
.btn-a, .btn-a--white, .btn-a--large {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  padding: 5px 20px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #000; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .btn-a, .btn-a--white, .btn-a--large {
      padding: 10px 20px; } }
  .btn-a.vec-r:after, .vec-r.btn-a--white:after, .vec-r.btn-a--large:after {
    display: block;
    content: "";
    background: #fff;
    position: absolute;
    width: 15px;
    height: 1px;
    top: 47%;
    right: 0; }

.btn-a--white {
  background: #fff;
  color: #000; }
  .btn-a--white.vec-r:after {
    background: #000; }
  .btn-a--white.vec-r:after {
    width: 20px; }

.btn-a--large {
  padding: 15px 30px; }
  .btn-a--large.vec-r:after {
    width: 20px; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .btn-a--large {
      padding: 10px 20px; }
      .btn-a--large.vec-r:after {
        width: 15px; } }

.btn-back {
  position: relative;
  display: inline-block; }
  .btn-back a:link {
    text-decoration: none; }
  .btn-back a:hover {
    text-decoration: none; }
  .btn-back a:visited {
    text-decoration: none; }
  .btn-back a {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
    padding: 10px 30px;
    letter-spacing: 0.1em;
    border: 2px solid #000; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .btn-back a {
      padding: 10px 20px; } }
  .btn-back:after {
    display: block;
    content: "";
    background: #000;
    position: absolute;
    width: 20px;
    height: 1px;
    top: 47%;
    left: 0; }

.btn-sub span {
  display: inline-block;
  background: url(/coffee/assets/img/ic_arrow_b_r.svg) no-repeat left center;
  background-size: 4px auto;
  padding-left: 10px;
  font-size: 12px;
  font-size: 1.2rem; }

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .btn-sub span {
    font-size: 1.0rem;
    background-size: 3px auto;
    padding-left: 7px; } }

/* ユーティリティ
****************************************************************************/
img.fit {
  width: 100%;
  /*@include mq-default {
		width: auto;
	}*/ }

.ex-spbr {
  display: none; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .ex-spbr {
      display: block; } }

.ex-pcbr {
  display: none; }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .ex-pcbr {
      display: block; } }

.ex-tdbr {
  display: none; }
  @media only screen and (max-width: 768px) {
    .ex-tdbr {
      display: block; } }

.ex-pcblank {
  display: none; }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .ex-pcblank {
      width: 10px;
      display: inline-block; } }

.ex-txtL {
  text-align: left; }

.ex-txtR {
  text-align: right; }

.ex-txtC {
  text-align: center; }

.ex-cf:after {
  content: "";
  clear: both;
  display: block; }

.ex-inlineBlock {
  display: inline-block; }

.video-container {
  position: relative; }

.video-title {
  text-align: center;
  width: 100%;
  position: absolute;
  transition-duration: .2s;
  background: url(/coffee/assets/img/video_play.png) no-repeat center bottom;
  background-size: 75px 53px;
  padding-bottom: 70px;
  top: 33%; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .video-title {
      top: 22%;
      background-size: 40px auto;
      padding-bottom: 40px; }
      .video-title img {
        height: 16px;
        width: auto; } }

.prg-video {
  cursor: pointer; }
  .prg-video:hover {
    opacity: .9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; }

.video-thumb img {
  width: 100%; }

/*--------------------------------------------------
    movie
--------------------------------------------------*/
.movie-bg {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 1; }

.movie-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.movie-bg .close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  width: 35px;
  height: 35px;
  background: url(/coffee/assets/img/ic_close.svg) no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: opacity 0.5s; }

@media screen and (min-width: 641px) {
  .movie-bg .close:hover {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; } }

@media screen and (max-width: 640px) {
  .movie-bg .close {
    width: 35px;
    height: 35px;
    background: url(/coffee/assets/img/ic_close.svg) no-repeat;
    background-size: cover; } }

.playercover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2; }

iframe {
  vertical-align: bottom; }

/*--------------------------------------------------
    pagecover
--------------------------------------------------*/
#page-cover {
  top: 0;
  position: fixed;
  z-index: 99;
  background: #000;
  width: 100%;
  height: 100vh; }

/* ==========================================================================

   m_tab.scss
   タブモジュール

   ========================================================================== */
.m-tab-btn {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0; }
  .m-tab-btn:after {
    content: "";
    clear: both;
    display: block; }

.m-tab-btn__item {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  padding: 15px 20px;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
  margin-right: 20px;
  background: #999999; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .m-tab-btn__item {
      padding: 10px 20px; } }
  .m-tab-btn__item:after {
    display: block;
    content: "";
    background: #fff;
    position: absolute;
    width: 25px;
    height: 1px;
    top: 47%;
    right: 0; }
  .m-tab-btn__item.active {
    background: #000;
    border-bottom: none;
    cursor: default; }
  .m-tab-btn__item:last-child {
    margin-right: 0; }

.m-tab-btn__item:last-child {
  margin-right: 0; }

.m-tab-content__item {
  display: none; }
  .m-tab-content__item.active {
    display: block; }

.m-tab-btn--c2 .m-tab-btn__item {
  width: calc(40% - 20px); }

html {
  overflow: auto;
  height: 100%; }

body.modal {
  overflow: hidden;
  height: 100%; }

.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden; }

.modal-content {
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
  border: 4px solid #000;
  background: #fff;
  width: 65vw;
  height: 84vh;
  min-height: 500px;
  padding: 50px 50px 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition-duration: .5s; }
  .modal-content.active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /*overflow-y: scroll;*/
    /*モーダル全体スクロールの場合コメントアウト*/ }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .modal-content {
      min-height: initial;
      width: 94vw;
      padding: 20px 20px 0; } }

.modal-inner {
  padding: 7vh 0; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .modal-inner {
      padding: 8vh 0; } }

.l-modal.active {
  display: block;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-animation: anim-modal-active 0.5s;
          animation: anim-modal-active 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.l-modal.close {
  -webkit-animation: anim-modal-close 0.5s;
          animation: anim-modal-close 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.btn-close-modal {
  position: absolute;
  width: 43px;
  height: 33px;
  opacity: .4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  z-index: 2000;
  bottom: 2vw;
  left: calc(50% - 21px);
  cursor: pointer;
  background: url(/coffee/assets/img/ic_modal_close.png) no-repeat right top;
  background-size: contain; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .btn-close-modal {
      bottom: 4vw; } }
  @media print, screen and (min-width: 768px) and (max-width: 9999px) {
    .btn-close-modal:hover {
      opacity: 0.5;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; } }

@-webkit-keyframes anim-modal-active {
  0% {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  1% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: block;
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes anim-modal-active {
  0% {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  1% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: block;
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes anim-modal-close {
  0% {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1); }
  99% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: block;
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  100% {
    display: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.9);
            transform: scale(0.9); } }

@keyframes anim-modal-close {
  0% {
    display: block;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1); }
  99% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    display: block;
    -webkit-transform: scale(0.9);
            transform: scale(0.9); }
  100% {
    display: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.9);
            transform: scale(0.9); } }

.modal-title {
  text-align: center;
  margin-bottom: 30px; }
  @media only screen and (min-width: 0px) and (max-width: 767px) {
    .modal-title {
      margin-bottom: 20px; }
      .modal-title img {
        width: auto;
        height: 40px; } }

.modal-main {
  min-height: 200px;
  overflow-y: scroll;
  padding-right: 40px;
  height: 56vh; }

.modal-block {
  margin-bottom: 30px; }

.modal-head1 {
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 10px; }

.modal-lead {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.75em; }

.modal-line {
  border-top: 1px solid #000;
  width: 60px;
  margin: 30px auto; }

.l-modal {
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .l-modal ::-webkit-scrollbar {
    width: 4px;
    background: #e4e3e3; }
  .l-modal ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px; }
  .l-modal ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, 0.4); }

/* effects
--------------------------------------------------*/
.cookie_dialog_box a {
  color: #fff; }

.btn_cookie_accept span {
  font-size: 16px;
  line-height: 1.6; }
