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

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://test.albion-cosmetics.com/
 * File name: store.css
 * Summary:   STORE LISTコンテンツの固有スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    store
 *
 * ===============================================================
*/

/** =1
 * ========================================
 * store
 * ========================================
 */

#store {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
}

/**
	 * navLocalStoreList
	 * ----------------------------------
	 */
.navLocalStoreList {
  padding: 0.7em 1.25em;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  text-align: center;
}
.navLocalStoreListContent {
  font-size: 0;
  letter-spacing: -0.4em;
  word-spacing: -0.4em;
}
.navLocalStoreList .itemNav {
  display: inline-block;
  margin-right: 0.75em;
  margin-left: 0.75em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  word-spacing: 0;
}
.navLocalStoreList .itemNav + .itemNav:before {
  display: inline-block;
  margin-right: 1.5em;
  color: #c8c8c8;
  content: "|";
}
.navLocalStoreList .itemNav a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.6s ease-out;
  -moz-transition: color 0.6s ease-out;
  -o-transition: color 0.6s ease-out;
  transition: color 0.6s ease-out;
}
.no-touch .navLocalStoreList .itemNav a:hover {
  color: #a9a9a9;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .navLocalStoreList {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .navLocalStoreList .itemNav {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .navLocalStoreList {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .navLocalStoreList .itemNav {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/**
	 * sectionStoreList
	 * ----------------------------------
	 */
.sectionStoreList {
  overflow: hidden;
}
.sectionStoreListTitle {
  padding: 0.5em 0;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  background-color: #f2f2f2;
  color: #000;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-weight: bold;
  text-align: center;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionStoreList + .sectionStoreList {
    margin-top: 30px;
  }
  .sectionStoreListTitle {
    font-size: 1.4rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionStoreList + .sectionStoreList {
    margin-top: 60px;
  }
}

/* [ boxStore ]
		------------------------------ */
.boxStore {
  margin-bottom: -1px;
  border-bottom: 1px solid #c8c8c8;
}
.boxStore .itemName {
  margin-bottom: 0.5em;
  color: #000;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-weight: bold;
}
.boxStore dd + dd {
  margin-top: 0.2em;
}
.boxStore .itemAddress,
.boxStore .itemTel,
.boxStore .itemTime {
  letter-spacing: 0.1em;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .boxStore {
    padding: 1em 0;
  }
  .boxStore .itemName {
    font-size: 1.4rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .boxStore {
    float: left;
    width: 50%;
    padding: 1.6em 0;
  }
  .boxStore .itemName,
  .boxStore .itemAddress,
  .boxStore .itemTel,
  .boxStore .itemTime {
    margin-right: 30px;
    margin-left: 30px;
  }
  .boxStore .itemName {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/**
	 * sectionStoreList - has image
	 * ----------------------------------
	 */
.sectionStoreList.hasImage {
}

/* [ boxStore ]
		------------------------------ */
.sectionStoreList.hasImage .boxStore {
  margin-bottom: 0;
  border: 1px solid #c8c8c8;
}

.sectionStoreList.hasImage .itemImage {
  text-align: center;
}
.sectionStoreList.hasImage .itemImage img {
  max-width: 100%;
  height: auto;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionStoreList.hasImage .boxStore {
    padding: 15px;
  }
  .sectionStoreList.hasImage .boxStore + .boxStore {
    margin-top: 15px;
  }

  .sectionStoreList.hasImage .boxStore .itemImage {
    margin-bottom: 1em;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionStoreList.hasImage .boxStore {
    float: none;
    width: auto;
    padding: 30px;
  }
  .sectionStoreList.hasImage .boxStore + .boxStore {
    margin-top: 40px;
  }

  .sectionStoreList.hasImage .boxStore .itemImage {
    float: right;
    width: 37.2%;
    width: -webkit-calc(320/860 * 100%);
    width: calc(320 / 860 * 100%);
  }

  .sectionStoreList.hasImage .boxStore .itemText {
    float: left;
    width: 59.3%;
    width: -webkit-calc(510/860 * 100%);
    width: calc(510 / 860 * 100%);
  }
  .sectionStoreList.hasImage .boxStore .itemName,
  .sectionStoreList.hasImage .boxStore .itemAddress,
  .sectionStoreList.hasImage .boxStore .itemTel,
  .sectionStoreList.hasImage .boxStore .itemTime {
    margin-right: 0;
    margin-left: 0;
  }
}
