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

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://test.albion-cosmetics.com/
 * File name: base.css
 * Summary:   ベーススタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    html & body
 *     =2    box model styles
 *     =3    text styles
 *     =4    img styles
 *     =5    link styles
 *     =6    list styles
 *     =7    heading styles
 *     =8    table styles
 *     =9    other selectors
 *     =10    general styles
 *       =10-1    float/align
 *       =10-2    margin-bottom
 *       =10-3    padding-top
 *       =10-4    form
 *       =10-5    clearfix
 *
 * ===============================================================
*/

/** =1
 * ========================================
 * html & body
 * ========================================
 */

html {
  height: 100%;
  font-size: 62.5%; /* 基準10px=1em */
}

body {
  height: 100%;
  color: #666;
  font-family: "HelveticaLTPro-Roman", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-size: 15px; /* CSS3未対応ブラウザ対策 */
  font-size: 1.5rem; /* CSS3単位 実質14px */
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  body {
    font-size: 1.3rem; /* CSS3単位 実質12px */
  }

  .itemText {
    overflow: hidden;
  }
}

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

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

/** =2
 * ========================================
 * box model styles
 * ========================================
 */

article {
}

section {
}

/* -- >>> 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) {
}

/** =3
 * ========================================
 * text styles
 * ========================================
 */

span {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

strong,
.fw-bold {
  font-weight: bold;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}
.tdUnderline {
  text-decoration: underline;
}

.fc_black {
  color: #000;
}
.fc_white {
  color: #fff;
}
.fc_red {
  color: #d95555;
}
.fc_blue {
  color: #145096;
}
.fc_green {
  color: #59a529;
}
.fc_gray {
  color: #a0a0a0;
}
.fc_gold {
  color: #cdb55b;
}
.fc_orange {
  color: #e47100;
}
.fc_brown {
  color: #573a27;
}
.fc_magenta {
  color: #bf1d82;
}

.fs10 {
  font-size: 10px;
  font-size: 1rem;
}
.fs11 {
  font-size: 11px;
  font-size: 1.1rem;
}
.fs12 {
  font-size: 12px;
  font-size: 1.2rem;
}
.fs13 {
  font-size: 13px;
  font-size: 1.3rem;
}
.fs16 {
  font-size: 16px;
  font-size: 1.6rem;
}
.fs18 {
  font-size: 18px;
  font-size: 1.8rem;
}
.fs20 {
  font-size: 20px;
  font-size: 2rem;
}
.fs22 {
  font-size: 22px;
  font-size: 2.2rem;
}
.fs30 {
  font-size: 30px;
  font-size: 3rem;
}

.fs50per {
  font-size: 50%;
}
.fs60per {
  font-size: 60%;
}
.fs70per {
  font-size: 70%;
}
.fs80per {
  font-size: 80%;
}
.fs90per {
  font-size: 90%;
}
.fs110per {
  font-size: 110%;
}
.fs120per {
  font-size: 120%;
}
.fs130per {
  font-size: 130%;
}
.fs140per {
  font-size: 140%;
}
.fs150per {
  font-size: 150%;
}

.lh10 {
  line-height: 1;
}
.lh12 {
  line-height: 1.2;
}
.lh14 {
  line-height: 1.4;
}
.lh16 {
  line-height: 1.6;
}
.lh18 {
  line-height: 1.8;
}
.lh20 {
  line-height: 2;
}

.ls0 {
  letter-spacing: 0;
}
.ls05 {
  letter-spacing: 0.05em;
}
.ls10 {
  letter-spacing: 0.1em;
}
.ls20 {
  letter-spacing: 0.2em;
}
.ls-05 {
  letter-spacing: -0.05em;
}
.ls-10 {
  letter-spacing: -0.1em;
}
.ls-20 {
  letter-spacing: -0.2em;
}

.kerningLeft-04 {
  margin-inline-start: -0.4em;
}
.kerningRight-04 {
  margin-inline-end: -0.4em;
}

sup,
.superscript {
  font-size: max(0.8rem, 50%);
  vertical-align: super;
}
sub,
.subscript {
  font-size: max(0.8rem, 50%);
  vertical-align: sub;
}

.ff_sans-serif-en {
  font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
}
.ff_title {
  color: #000;
  font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}
strong.ff_sans-serif-en,
.ff_sans-serif-en.fw-bold,
strong.ff_title,
.ff_title.fw-bold {
  font-family: "OptimaLTPro-Bold", Optima, Calibri, Arial, sans-serif;
  font-weight: bold;
}
#about .sectionAboutIntro .ff_title {
  text-transform: none;
}

/* [ break ]
  ------------------------------ */
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .br_pc {
    display: none;
  }
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .br_sp {
    display: none;
  }
}

/** =4
 * ========================================
 * img styles
 * ========================================
 */

img {
  vertical-align: bottom;
}

/** =5
 * ========================================
 * link styles
 * ========================================
 */

a,
a:link,
a:visited,
a:hover,
a:active {
  color: #666;
  text-decoration: underline;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
}
a:visited {
}
a:hover {
  text-decoration: none;
}
a:active {
}

.no-touch .hoverOpacity,
.no-touch .hoverOpacity40 {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.no-touch .hoverOpacity:hover {
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.no-touch .hoverOpacity40:hover {
  filter: alpha(opacity=40);
  -ms-filter: "alpha(opacity=40)";
  -moz-opacity: 0.4;
  opacity: 0.4;
}

/* webkit系ブラウザでホバー時文字がちらつく現象の対策 */
.no-touch .hoverOpacity,
.no-touch .hoverOpacity *,
.no-touch .hoverOpacity40,
.no-touch .hoverOpacity40 * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/** =6
 * ========================================
 * list styles
 * ========================================
 */

ul li {
  list-style-type: none;
}
ol {
  padding-left: 1em;
}
ol li {
  list-style-type: decimal;
}

ol.lst_custom {
  padding-left: 2.5em;
}
ol.lst_custom li {
  list-style: none;
}
ol.lst_custom li:before {
  display: inline-block;
  width: 2em;
  margin-right: 0.5em;
  margin-left: -2.5em;
  text-align: right;
  content: attr(deta-count) " )";
}

/** =7
 * ========================================
 * heading styles
 * ========================================
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

/** =8
 * ========================================
 * table styles
 * ========================================
 */

table {
  border-collapse: collapse;
}

th {
  font-weight: bold;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

/** =9
 * ========================================
 * other selectors
 * ========================================
 */

hr {
  clear: both;
}

/** =10
 * ========================================
 * general styles
 * ========================================
 */

/** =10-1
   * display
   * ----------------------------------
   */

.displayInlineBlock {
  display: inline-block;
}
.displayInline {
  display: inline;
}
.displayBlock {
  display: block;
}
.displayNone {
  display: none;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .displayPc {
    display: none;
  }
  .displaySp {
    display: inherit;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .displayPc {
    display: inherit;
  }
  .displaySp {
    display: none;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .displayPc {
    display: inherit;
  }
  .displaySp {
    display: none;
  }
}

/** =10-2
   * float/align
   * ----------------------------------
   */
.flo_left {
  float: left;
}
.flo_right {
  float: right;
}
.flo_clear {
  clear: both;
}

.txt_left {
  text-align: left;
}
.txt_center {
  text-align: center;
}
.txt_right {
  text-align: right;
}

/** =10-3
   * margin-bottom
   * ----------------------------------
   */
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb150 {
  margin-bottom: 150px;
}

.mb10em {
  margin-bottom: 1em;
}
.mb15em {
  margin-bottom: 1.5em;
}
.mb20em {
  margin-bottom: 2em;
}

/** =10-4
   * padding-top
   * ----------------------------------
   */
.p-t10 {
  padding-top: 10px;
}
.p-t20 {
  padding-top: 20px;
}
.p-t30 {
  padding-top: 30px;
}
.p-t40 {
  padding-top: 40px;
}
.p-t50 {
  padding-top: 50px;
}
.p-t60 {
  padding-top: 60px;
}
.p-t70 {
  padding-top: 70px;
}
.p-t80 {
  padding-top: 80px;
}

.p-t10em {
  padding-top: 1em;
}
.p-t15em {
  padding-top: 1.5em;
}
.p-t20em {
  padding-top: 2em;
}

/** =10-5
   * form
   * ----------------------------------
   */

.btn {
  cursor: pointer;
}

input,
textarea,
select {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  resize: none;
}
input[type="text"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="text"],
textarea,
.selectWrap {
  display: inline-block;
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #c8c8c8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type="text"]:focus,
textarea:focus,
.selectWrap.is-focus {
  border: 1px solid #000;
  color: #000;
}

input[type="checkbox"].itemCheckbox {
  display: none;
}
input[type="checkbox"].itemCheckbox + .itemCheckboxLabel {
  display: inline-block;
  position: relative;
}
input[type="checkbox"].itemCheckbox + .itemCheckboxLabel:before,
input[type="checkbox"].itemCheckbox + .itemCheckboxLabel:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type="checkbox"].itemCheckbox + .itemCheckboxLabel:before {
  display: inline-block;
  position: relative;
  top: 0.25em;
  width: 1em;
  height: 1em;
  margin-right: 0.75em;
  border: 1px solid #c8c8c8;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  vertical-align: top;
}
input[type="checkbox"].itemCheckbox + .itemCheckboxLabel:after {
  display: block;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  -moz-opacity: 0;
  opacity: 0;
  position: absolute;
  top: 0.35em;
  left: 0.125em;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 0.75em;
  height: 0.5em;
  border-bottom: 2px solid #d95555;
  border-left: 2px solid #d95555;
}
input[type="checkbox"].itemCheckbox:checked + .itemCheckboxLabel:after {
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  -moz-opacity: 1;
  opacity: 1;
}

/* select */
.selectWrap {
  overflow: hidden;
  position: relative;
  padding: 0;
}
.selectWrap:before,
.selectWrap:after {
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1em;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: "";
}
.selectWrap:before {
  margin-top: -3px;
  border-top: 7px solid #c8c8c8;
}
.selectWrap:after {
  margin-top: -5px;
  border-top: 7px solid #fff;
}
.selectWrap select {
  display: inline-block;
  position: relative;
  width: 130%;
  margin: 0;
  padding: 0.5em 0.7em;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: none;
}
.selectWrap select:focus {
  z-index: 3;
  width: 100%;
  outline: none;
}
.selectWrap select > option {
  border: 0;
  padding: 0;
  padding: 0 0.85em;
  color: inherit;
  cursor: pointer;
}

/* placeholder */
::-webkit-input-placeholder {
  opacity: 1;
  color: #a0a0a0;
  line-height: 1.2;
}
.touch ::-webkit-input-placeholder {
  line-height: 1.4;
}
:-moz-placeholder {
  color: #a0a0a0;
}
::-moz-placeholder {
  opacity: 1;
  color: #a0a0a0;
}
:-ms-input-placeholder {
  color: #a0a0a0;
}
.placeholder {
  color: #a0a0a0;
}

/* error */
input.error,
textarea.error,
.selectWrap.error {
  border: 1px solid #d95555;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  input,
  textarea,
  select {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/** =10-6
   * clearfix
   * ----------------------------------
   */

/* For modern browsers */
.clearfix:before,
.clearfix:after,
.cf:before,
.cf:after {
  display: table;
  content: "";
}

.clearfix:after,
.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix,
.cf {
  zoom: 1;
}
