﻿
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://test.albion-cosmetics.com/global/
 * File name: module.css
 * Summary:   モジュール用スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    modules
 *
 * ===============================================================
*/

/** =1
 * ========================================
 * modules
 * ========================================
 */

/*
 * nav
 * ----------------------------------
 */

/* [ navHeader ]
  ------------------------------ */
/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  #navHeader {
    border-top: none;
  }
}

/* navSub */
/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .navSub.navSubAbout .l-inner {
    width: auto;
    max-width: 1100px;
  }
}

/* navSiteFooter */
.navSiteFooter {
  padding-top: 25px;
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .navSiteFooter {
    margin-top: 20px;
    padding-top: 0;
  }
}

/*
* modalProductLink
* ----------------------------------
*/
.modalProductLink {
}
.modalProductLinkTitle {
  border-bottom: 1px solid #e3e3e3;
}

.modalProductLink .listCountry {
  /*border: 1px solid #c8c8c8;*/
  border: 1px solid #fff;
}
.modalProductLink .listCountry .itemList {
  margin-bottom: -1px;
  border-bottom: 1px solid #fff;
}
.modalProductLink .listCountry .itemList a {
  display: block;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}
/* webkit系ブラウザで透明度を操作するとき文字がちらつく現象の対策 */
.no-touch .modalProductLink .listCountry * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .modalProductLink {
  }
  .modalProductLinkTitle {
    margin-bottom: 1em;
    padding-bottom: 1em;
  }

  .modalProductLink .listCountry {
    text-align: center;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .modalProductLink {
  }
  .modalProductLinkTitle {
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-size: 20px;
    font-size: 2rem;
  }

  .modalProductLink .listCountry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    -webkit-align-content: stretch;
    align-content: stretch;
  }
  .modalProductLink .listCountry .itemList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    align-content: center;
    width: 33%;
    border-right: 1px solid #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
  }
  .touch .modalProductLink .listCountry .itemList:first-child {
    margin-left: -1px;
  }
  .modalProductLink .listCountry .itemList:nth-child(3n-1) {
    width: 34%;
  }
  .modalProductLink .listCountry .itemList:nth-child(3n) {
    border-right: none;
  }
  .no-flexbox .modalProductLink .listCountry .itemList {
    float: left;
  }
  .modalProductLink .listCountry .itemList a {
    width: 100%;
    padding-right: 1em;
    padding-left: 1em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .modalProductLinkContent {
    margin-bottom: -20px;
  }
}
