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

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://test.albion-cosmetics.com/
 * File name: layout.css
 * Summary:   レイアウト用スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    structures
 *       =1-1    header
 *       =1-2    contents
 *                 - main contents
 *                 - navigation
 *       =1-3    footer
 *
 * ===============================================================
*/

/** =1
 * ========================================
 * structures
 * ========================================
 */

.l-container {
  position: relative;
  height: auto;
  min-height: 100%;
  width: 100%;
  margin: 0 auto;
}

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

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

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

.l-inner {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-inner {
    margin: 0 15px;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-inner {
    margin: 0 5%;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .l-inner {
    width: 920px;
    margin: 0 auto;
  }
}

/** =1-1
   * header
   * ----------------------------------
   */

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background-color: #1e1a34;
}
.l-header .l-inner {
  position: relative;
}

.title_site {
  width: 220px;
  margin: 0 auto;
  padding: 65px 0 25px;
}
#error.not-found .title_site {
  padding-top: 25px;
}
.title_site .logo_albion {
  display: block;
  width: 100%;
  height: 60px;
  background-image: url(../image/logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

#navHandlerOpen {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  text-indent: -9999px;
}
#navHandlerOpen:before {
  display: block;
  position: absolute;
  top: 15px;
  left: 4px;
  width: 24px;
  height: 2px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 0 #fff, 0 -8px 0 #fff;
  -moz-box-shadow: 0 8px 0 #fff, 0 -8px 0 #fff;
  box-shadow: 0 8px 0 #fff, 0 -8px 0 #fff;
  content: "";
}

/* -- >>> styles for medium layout ----- */
@media screen and (max-width: 959px) {
  .desc_site {
    display: none;
  }
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .title_site {
    width: 100px;
    padding: 18px 0;
  }
  .title_site .logo_albion {
    height: 24px;
    background-image: url(../image/logo1.png);
  }

  #navHandlerOpen {
    width: 28px;
    height: 28px;
    margin-top: -14px;
  }
  #navHandlerOpen:before {
    top: 13px;
    width: 20px;
    -webkit-box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
    -moz-box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
    box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .title_site {
    padding: 30px 0;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .title_site,
  .title_site .logo_albion {
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  .is-scrolled .title_site {
    width: 130px;
    padding: 10px 0;
  }
  .is-scrolled .title_site .logo_albion {
    height: 40px;
  }

  .desc_site {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 20px;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  .is-scrolled .desc_site {
    opacity: 0;
  }
}

/** =1-2
   * contents
   * ----------------------------------
   */

.l-contents {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-contents {
    padding-top: 60px;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-contents {
    padding-top: 120px;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .l-contents {
    padding-top: 200px;
    padding-bottom: 310px;
    -webkit-transition: padding-top 0.25s ease-out;
    -moz-transition: padding-top 0.25s ease-out;
    -o-transition: padding-top 0.25s ease-out;
    transition: padding-top 0.25s ease-out;
  }
  .is-scrolled .l-contents,
  #error.not-found .l-contents {
    padding-top: 110px;
  }
}

/* [ main contents ]
    ------------------------------ */
.l-main {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-main {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .has-sidebar .l-main {
    float: left;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-main {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .has-sidebar .l-main {
    width: 75%;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .l-main {
    margin-top: 60px;
    margin-bottom: 120px;
  }
  .has-sidebar .l-main {
    width: 680px;
  }
}

/* [ side contents ]
    ------------------------------ */
.l-side {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-side {
    margin-right: -15px;
    margin-left: -15px;
    padding-top: 35px;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid #000;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .l-side {
    float: right;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .l-side {
    margin-top: 40px;
    margin-bottom: 80px;
    width: 20%;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .l-side {
    margin-top: 60px;
    margin-bottom: 120px;
    width: 180px;
  }
}

/** =1-3
   * footer
   * ----------------------------------
   */

.l-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #1e1a34;
  font-size: 11px;
  font-size: 1.1rem;
}
.l-footer a {
  color: #646464;
  text-decoration: none;
  -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;
}
.l-footer a:hover {
  color: #999;
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-footer {
    position: relative;
    padding-bottom: 30px;
  }
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .l-footer {
    padding-bottom: 40px;
  }
}

.sectionFooter {
  position: relative;
  border-top: 1px solid #413f4c;
}
.sectionFooter:first-child {
  border-top: none;
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionFooter {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
  }
  .sectionFooter .navSiteFooter {
    flex-shrink: 0;
  }
}

.boxSocial {
  margin: 20px 0;
  text-align: center;
}
.boxSocial .itemBtn {
  display: inline-block;
  margin: 0 3px;
}
.boxSocial .itemBtn a {
  display: block;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
}
.boxSocial .itemBtn a:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .boxSocial .itemBtn a {
    width: 40px;
    height: 40px;
  }
  .boxSocial .itemBtn a.btn_twitter {
    background-image: url(../image/twitter.png);
  }
  .boxSocial .itemBtn a.btn_facebook {
    background-image: url(../image/facebook.png);
  }
  .boxSocial .itemBtn a.btn_instagram {
    background-image: url(../image/instagram.png);
  }
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .boxSocial .itemBtn a {
    width: 30px;
    height: 30px;
  }
  .boxSocial .itemBtn a.btn_twitter {
    background-image: url(../image/twitter1.png);
  }
  .boxSocial .itemBtn a.btn_facebook {
    background-image: url(../image/facebook1.png);
  }
  .boxSocial .itemBtn a.btn_instagram {
    background-image: url(../image/instagram1.png);
  }
}

.l-footer .logoLoveYourRealBeauty {
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-footer .logoLoveYourRealBeauty {
    width: fit-content;
    margin: 10px auto 20px;
  }
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .l-footer .logoLoveYourRealBeauty {
    position: absolute;
    right: 0;
    bottom: 20px;
  }
}

.l-footer .copyright {
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .l-footer .copyright {
    margin-top: 0.5em;
    font-size: 0.9rem;
    text-align: center;
  }
  #error.not-found .l-footer .copyright {
    margin-top: 15px;
  }
}
/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .l-footer .copyright {
    /* float: right; */
    /* width: 50%; */
    margin-top: 1em;
    font-size: 10px;
    font-size: 1rem;
    text-align: right;
  }
  #error.not-found .l-footer .copyright {
    float: none;
    width: auto;
    margin-top: 40px;
    text-align: center;
  }
}
