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

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

/** =0
 * ========================================
 * history
 * ========================================
 */

#history {
}
/* #history #main {
  margin-bottom: 0;
} */

.articleHistory {
}
.articleHistoryImage {
  text-align: center;
}
.articleHistoryTitle {
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.articleHistoryImage img {
  width: 100%;
  height: auto;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  #history #main {
    margin-top: 0;
  }

  body[id="history"] .sectionAboutMenu {
    border-top: none;
  }

  .articleHistory {
    position: relative;
    padding-top: 50%;
  }
  .articleHistoryTitle {
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e3e3e3;
    /* text-align: left; */
  }
  .articleHistoryImage {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  #history #main {
    margin-top: 45px;
  }

  .articleHistoryTitle {
    text-align: center;
    margin-bottom: 50px;
  }
  .articleHistoryImage {
  }
}

/**
   * sectionHistory
   * ----------------------------------
   */
.sectionHistory {
}
.sectionHistoryTitle {
  color: #000;
  font-weight: normal;
  text-align: center;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}
.sectionHistoryLead {
  color: #000;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
}

.sectionHistory img {
  max-width: 100%;
  height: auto;
}

.sectionHistory .txt_cap {
  color: #a0a0a0;
}

.sectionHistory .link .btn.ghost {
  padding: 0.8em 0;
  border: 1px solid #e3e3e3;
  font-size: 12px;
  font-size: 1.2rem;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory {
    padding-top: 40px;
  }
  .sectionHistoryTitle {
    margin-bottom: 0.8em;
    font-size: 1.8rem;
  }
  .sectionHistoryLead {
    margin-bottom: 1em;
    font-size: 1.4rem;
  }

  .sectionHistoryContent .itemText .text + .text {
    margin-top: 1em;
  }

  .sectionHistory .txt_cap {
    font-size: 1rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory {
    padding-top: 6.25%;
  }
  .sectionHistoryTitle {
    margin-bottom: 0.8em;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .sectionHistoryLead {
    margin-bottom: 2.5em;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .sectionHistoryContent .itemText .text + .text {
    margin-top: 1.5em;
  }

  .sectionHistory .txt_cap {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/**
   * navLocalHistory
   * ----------------------------------
   */
.navLocalHistory {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}
.navLocalHistory a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.navLocalHistory.black a {
  color: #000;
}
.navLocalHistory a .text {
  position: relative;
  width: 100%;
}
.navLocalHistory a .text::after {
  display: block;
  position: absolute;
  top: 50%;
  content: "";
}
.navLocalHistory a.linkPrev .text::after {
  left: 0;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.navLocalHistory a.linkNext .text::after {
  right: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navLocalHistory a .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.no-touch .navLocalHistory a:hover .image {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.navLocalHistory a .image img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .navLocalHistory {
    margin-top: 60px;
  }
  .navLocalHistory a {
    min-height: 60px;
    padding: 1em 15px;
  }
  .navLocalHistory a .text {
    width: 100%;
  }
  .navLocalHistory a .text::after {
    width: 9px;
    height: 9px;
    margin-top: -5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .navLocalHistory.black a .text::after {
    border-top-color: #000;
    border-right-color: #000;
  }
  .navLocalHistory a .image img {
    width: auto;
    height: 100%;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .navLocalHistory {
    margin-top: 120px;
  }
  .navLocalHistory a {
    height: 120px;
  }
  .navLocalHistory a .text::after {
    width: 18px;
    height: 18px;
    margin-top: -10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .navLocalHistory.black a .text::after {
    border-top-color: #000;
    border-right-color: #000;
  }
}

/* -- >>> styles for medium layout ----- */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .navLocalHistory a {
    padding-right: 5%;
    padding-left: 5%;
  }
}

/* -- >>> styles for wide layout ----- */
@media screen and (min-width: 960px) {
  .navLocalHistory a .text {
    width: 920px;
  }
}

/**
   * sectionLinkRelated
   * ----------------------------------
   */
.sectionLinkRelated {
  background-color: #f2f2f2;
}

.listLinkRelated .itemLink {
  background-color: #fff;
}
.listLinkRelated a {
  display: block;
  text-decoration: none;
}

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

  .listLinkRelated .itemLink + .itemLink {
    margin-top: 5px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionLinkRelated {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .listLinkRelated {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .listLinkRelated .itemLink {
    width: 280px;
    margin-left: 4.347826086956522%;
    margin-left: -webkit-calc(40/920 * 100%);
    margin-left: calc(40 / 920 * 100%);
  }
  .listLinkRelated .itemLink:nth-child(3n + 1) {
    margin-left: 0;
  }
  .listLinkRelated a {
    height: 100%;
  }
}

/* linkHistory */
.listLinkRelated .linkHistory {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.listLinkRelated .linkHistory .itemImage {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.listLinkRelated .linkHistory .itemImage img {
  max-width: 100%;
  height: auto;
}
.listLinkRelated .linkHistory .itemText {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  margin-left: 20px;
  font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
  line-height: 1.2;
  letter-spacing: 0;
}
.listLinkRelated .linkHistory .itemText .title {
  color: #000;
}
.listLinkRelated .linkHistory .itemText .text {
  color: #a0a0a0;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .listLinkRelated .linkHistory .itemImage {
    width: 60px;
  }
  .listLinkRelated .linkHistory .itemText .title {
    font-size: 1.5rem;
  }
  .listLinkRelated .linkHistory .itemText .text {
    font-size: 1rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .listLinkRelated .linkHistory .itemImage {
    width: 80px;
  }
  .listLinkRelated .linkHistory .itemText .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* linkProductsSeries */
.listLinkRelated .linkProductsSeries {
  text-align: center;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .listLinkRelated .linkProductsSeries .itemImage {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .listLinkRelated .linkProductsSeries .itemImage img {
    width: 100px;
    height: auto;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .listLinkRelated .linkProductsSeries {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .listLinkRelated .linkProductsSeries .itemImage {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .listLinkRelated .linkProductsSeries .itemImage img {
    width: 140px;
    height: auto;
  }
}

/**
   * sectionLinkBtnRelated
   * ----------------------------------
   */
.sectionLinkBtnRelated {
  border-bottom: 1px solid #fff;
  background-color: #1e1a34;
  text-align: center;
}
.sectionLinkBtnRelated a.btn.ghost {
  width: auto;
  min-width: 280px;
  padding-right: 1.5em;
  padding-left: 1.5em;
  border-color: #4f4c60;
  border-color: rgba(229, 229, 229, 0.25);
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.075em;
}
.sectionLinkBtnRelated a.btn.ghost:hover {
  border-color: #94939c;
  border-color: rgba(229, 229, 229, 0.6);
  color: #fff;
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionLinkBtnRelated {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sectionLinkBtnRelated a.btn.ghost {
    font-size: 1.4rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionLinkBtnRelated {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/** =2
 * ========================================
 * history - part1
 * ========================================
 */

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  body[id="history"].part01 .articleHistoryImage {
    right: -30%;
    left: -30%;
  }
}

/**
 * sectionHistory
 * ----------------------------------
 */
/* [ historyIntro ]
  ------------------------------ */
.sectionHistory.historyIntro {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyIntro {
    /* margin-bottom: 60px; */
    margin-bottom: 40px;
  }
  .sectionHistory.historyIntro .sectionHistoryTitle,
  .sectionHistory.historyIntro .sectionHistoryLead,
  .sectionHistory.historyIntro .sectionHistoryContent {
    text-align: left;
  }

  .sectionHistory.historyIntro .content01,
  .sectionHistory.historyIntro .content02 .itemImage {
    margin-bottom: 1.5em;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyIntro {
    /* margin-bottom: 9.375%; */
    margin-bottom: 6.25%;
  }
  .sectionHistory.historyIntro .content01 {
    margin-bottom: 8%;
  }
  .sectionHistory.historyIntro .content01 .itemText {
    width: 87%;
    margin-right: auto;
    margin-left: auto;
  }

  .sectionHistory.historyIntro .content02 .itemImage,
  .sectionHistory.historyIntro .content02 .itemText {
    width: 47.82608695652174%;
    width: -webkit-calc(440/920 * 100%);
    width: calc(440 / 920 * 100%);
  }
  .sectionHistory.historyIntro .content02 .itemImage {
    float: left;
  }
  .sectionHistory.historyIntro .content02 .itemText {
    float: right;
  }
}

/* [ historyProfile ]
  ------------------------------ */
.sectionHistory.historyProfile {
  background-color: #f2f2f2;
}
.sectionHistory.historyProfile .sectionHistoryTitle,
.sectionHistory.historyProfile .sectionHistoryLead {
  color: #000;
}
.sectionHistory.historyProfile .sectionHistoryTitle {
  font-weight: normal;
}
.sectionHistory.historyProfile .sectionHistoryLead {
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-weight: bold;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyProfile {
    padding-bottom: 60px;
  }
  .sectionHistory.historyProfile .sectionHistoryLead {
    margin-bottom: 20px;
  }

  .sectionHistory.historyProfile .itemImage {
    width: 55.17241379310345%;
    width: -webkit-calc(320/580 * 100%);
    width: calc(320 / 580 * 100%);
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: center;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyProfile {
    padding-bottom: 6.25%;
  }
  .sectionHistory.historyProfile .l-inner {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .sectionHistory.historyProfile .sectionHistoryTitle,
  .sectionHistory.historyProfile .sectionHistoryLead {
    margin-left: 34.78260869565217%;
    margin-left: -webkit-calc(320/920 * 100%);
    margin-left: calc(320 / 920 * 100%);
    text-align: left;
  }
  .sectionHistory.historyProfile .sectionHistoryTitle {
    margin-bottom: 0.6em;
    padding-top: 1.6em;
    font-family: "HelveticaLTPro-Roman", "Helvetica Neue", Helvetica, Arial,
      sans-serif;
    font-size: 20px;
    font-size: 2rem;
  }
  .sectionHistory.historyProfile .sectionHistoryLead {
    margin-bottom: 0.75em;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .sectionHistory.historyProfile .itemImage {
    float: left;
    width: 30.43478260869565%;
    width: -webkit-calc(280/920 * 100%);
    width: calc(280 / 920 * 100%);
    margin-top: -7em;
  }
  .sectionHistory.historyProfile .itemText {
    margin-left: 34.78260869565217%;
    margin-left: -webkit-calc(320/920 * 100%);
    margin-left: calc(320 / 920 * 100%);
  }
}

/**
* blockTraditionContent
* ----------------------------------
*/
.blockTradition {
  border-top: 1px solid #c8c8c8;
}

.blockTraditionNav {
  background-color: #f2f2f2;
}

.blockTraditionContent {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .blockTradition {
    border-bottom: 1px solid #c8c8c8;
  }

  .blockTraditionNav {
    padding: 15px 0;
  }

  .blockTraditionContent {
    padding-bottom: 50px;
  }
}

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

  .blockTraditionNav {
    padding: 20px 0;
  }
  .blockTraditionNav.navTraditionFooter {
    display: none;
  }

  .blockTraditionContent {
    padding-top: 6.25%;
    padding-bottom: 6.25%;
    /* padding-bottom: 8.6%; 110px */
  }
  .blockTraditionContent .sectionHistory {
    padding-top: 0;
  }
}

/* navTradition */
.navTradition {
}

.navTradition {
  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;
}
.navTradition .itemNav {
  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;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fff;
  text-align: center;
  -webkit-transition: background-color 0.6s ease-out;
  -moz-transition: background-color 0.6s ease-out;
  -o-transition: background-color 0.6s ease-out;
  transition: background-color 0.6s ease-out;
}
.navTradition .itemNav.is-current {
  background-color: #000;
}
.navTradition .itemNav a {
  display: block;
  width: 100%;
  padding: 1em 1.25em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  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 .navTradition .itemNav a:hover {
  /*color: #a9a9a9;*/
  color: #a0a0a0;
}
.navTradition .itemNav.is-current a,
.no-touch .navTradition .itemNav.is-current a:hover {
  color: #fff;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .navTradition .itemNav {
    width: 50%;
    margin-bottom: -1px;
    border-right: 1px solid #e3e3e3;
  }
  .navTradition .itemNav:nth-child(2n + 1) {
    border-left: 1px solid #e3e3e3;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .navTradition .itemNav {
    width: 20%;
    border-left: 1px solid #e3e3e3;
  }
  .navTradition .itemNav:nth-child(5n) {
    border-right: 1px solid #e3e3e3;
  }
}

/* [ sectionHistoryTradition ]
------------------------------ */
.sectionHistory.sectionHistoryTradition {
}

.sectionHistory.sectionHistoryTradition .itemImage {
  text-align: center;
}
.sectionHistory.sectionHistoryTradition .itemImage .image {
}

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

  .sectionHistory.sectionHistoryTradition .itemImage {
    margin-bottom: 20px;
  }
  .sectionHistory.sectionHistoryTradition .itemImage .image {
    width: 48.27586206896552%;
    width: -webkit-calc(280/580 * 100%);
    width: calc(280 / 580 * 100%);
    margin-right: auto;
    margin-left: auto;
  }
  .sectionHistory.sectionHistoryTradition#tradition05 .itemImage .image {
    width: 100%;
  }
  .sectionHistory.sectionHistoryTradition .itemImage .link {
    margin-top: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.sectionHistoryTradition {
    margin-bottom: 30px;
  }

  .sectionHistory.sectionHistoryTradition .itemImage .image {
    margin-bottom: 30px;
  }

  .sectionHistory.sectionHistoryTradition .itemImage {
    float: right;
    width: 30.43478260869565%;
    width: -webkit-calc(280/920 * 100%);
    width: calc(280 / 920 * 100%);
  }
  .sectionHistory.sectionHistoryTradition .itemText {
    float: left;
    width: 65.21739130434783%;
    width: -webkit-calc(600/920 * 100%);
    width: calc(600 / 920 * 100%);
  }

  .sectionHistory.sectionHistoryTradition#tradition05 .itemImage,
  .sectionHistory.sectionHistoryTradition#tradition05 .itemText {
    float: none;
    width: auto;
  }
  .sectionHistory.sectionHistoryTradition#tradition05 .itemImage {
    width: 75%;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
  }
}

/** =2
 * ========================================
 * history - part2
 * ========================================
 */
#history.part02 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  #history.part02 .articleHistory {
    margin-bottom: 60px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  #history.part02 .articleHistory {
    margin-bottom: 120px;
  }
  #history.part02 .sectionHistory + .sectionHistory {
    padding-top: 5.25%;
  }
  #history.part02 .sectionHistoryTitle {
    margin-bottom: 1.4em;
  }
}

/**
 * sectionHistory
 * ----------------------------------
 */
#history.part02 .sectionHistory .sectionHistoryTitle,
#history.part02 .sectionHistory .sectionHistoryLead {
  text-align: left;
}

/* [ historyPart02-01-01 ]
  ------------------------------ */
.sectionHistory.historyPart02-01-01 {
}

.sectionHistory.historyPart02-01-01 .itemTitle {
  color: #000;
  margin-bottom: 0.8em;
}
.sectionHistory.historyPart02-01-01 .itemImage .txt_cap {
  padding-top: 1em;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart02-01-01 .itemText {
    margin-bottom: 1.2em;
  }
  .sectionHistory.historyPart02-01-01 .itemImage .image {
    width: 55%;
    min-width: 160px;
    margin-right: auto;
    margin-left: auto;
  }
  .sectionHistory.historyPart02-01-01 .itemImage .txt_cap {
    font-size: 1rem;
    text-align: center;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart02-01-01 .l-inner {
    position: relative;
  }
  .sectionHistory.historyPart02-01-01 .sectionHistoryTitle,
  .sectionHistory.historyPart02-01-01 .sectionHistoryLead,
  .sectionHistory.historyPart02-01-01 .sectionHistoryContent {
    padding-left: 240px;
  }
  .sectionHistory.historyPart02-01-01 .sectionHistoryTitle {
    margin-bottom: 1em;
  }
  .sectionHistory.historyPart02-01-01 .sectionHistoryLead {
    margin-bottom: 1.8em;
  }
  .sectionHistory.historyPart02-01-01 .itemImage .image {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 200px;
  }
}

/* [ historyPart02-01-02 ]
  ------------------------------ */
.sectionHistory.historyPart02-01-02 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart02-01-02 .itemImage {
    margin-bottom: 20px;
  }
  .sectionHistory.historyPart02-01-02 .itemText .text {
    margin-bottom: 1.25em;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart02-01-02 .itemImage {
    margin-bottom: 35px;
  }
  .sectionHistory.historyPart02-01-02 .itemText .text {
    margin-bottom: 2em;
  }
}

/* [ historyPart02-02-01 ]
  ------------------------------ */
.sectionHistory.historyPart02-02-01 {
}

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

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart02-02-01 {
    padding-top: 4%;
  }
}

/* [ historyPart02-02-03 ]
  ------------------------------ */
.sectionHistory.historyPart02-02-03 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart02-02-03 .l-inner {
    position: relative;
    padding-top: 66.66666666666667%;
    padding-top: -webkit-calc(640/960 * 100%);
    padding-top: calc(640 / 960 * 100%);
  }
  .sectionHistory.historyPart02-02-03 {
    margin-top: 1em;
  }
  .sectionHistory.historyPart02-02-03 .itemImage {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart02-02-03 .itemText,
  .sectionHistory.historyPart02-02-03 .itemImage {
    width: 47.82608695652174%;
    width: -webkit-calc(440/920 * 100%);
    width: calc(440 / 920 * 100%);
  }
  .sectionHistory.historyPart02-02-03 .itemText {
    float: left;
  }
  .sectionHistory.historyPart02-02-03 .itemImage {
    float: right;
  }
}

/** =3
 * ========================================
 * history - part3
 * ========================================
 */

#history.part03 {
}

#history.part03 .sectionHistoryTitle {
  text-align: left;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  #history.part03 .articleHistory {
    padding-top: 0;
  }
}

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

/* boxCommentPhoto */
.boxCommentPhoto {
  display: -webkit-flex;
  display: flex;
}
.boxCommentPhoto .itemImage {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.boxCommentPhoto .itemText {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .boxCommentPhoto {
    -webkit-align-items: center;
    align-items: center;
  }
  .boxCommentPhoto .itemImage {
    width: 60px;
  }
  .boxCommentPhoto .itemText {
    margin-left: 10px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .boxCommentPhoto .itemImage {
    width: 120px;
  }
  .boxCommentPhoto .itemText {
    margin-top: 1em;
    margin-left: 20px;
  }
}

/* boxInterview */
.boxInterview {
}

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

  .boxInterview > .flo_left,
  .boxInterview > .flo_right {
    float: none;
  }

  .boxInterview .itemText,
  .boxInterview .itemImage {
    margin-top: 15px;
  }
  .boxInterview .itemText:first-child,
  .boxInterview .itemImage:first-child {
    margin-top: 0;
  }
  .boxInterview .itemText .detail + .name {
    margin-top: 1em;
  }
}

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

  .boxInterview > .flo_left,
  .boxInterview > .flo_right {
    width: 48%;
  }

  .boxInterview .itemText .detail + .name {
    margin-top: 30px;
  }
}

/* [ historyPart03-01-01 ]
  ------------------------------ */
.sectionHistory.historyPart03-01-01 {
}
.sectionHistory.historyPart03-01-01 .itemText,
.sectionHistory.historyPart03-01-01 .boxGreeting .name {
  color: #000;
}

.sectionHistory.historyPart03-01-01 .boxGreeting {
  border: 1px solid #ddd;
}
.sectionHistory.historyPart03-01-01 .boxGreeting .name {
  margin-bottom: 0.5em;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-weight: bold;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart03-01-01 {
    padding-top: 50%;
    padding-bottom: 30px;
    background: #f7f6f2
      url(../image/img_01-01.jpg) center
      top no-repeat;
    background-size: 100% auto;
  }

  .sectionHistory.historyPart03-01-01 .itemText {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .sectionHistory.historyPart03-01-01 .boxGreeting {
    padding: 1em 1.25em;
  }
  .sectionHistory.historyPart03-01-01 .boxGreeting .name {
    font-size: 1.3rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart03-01-01 {
    padding-top: 13%;
    padding-bottom: 14%;
    background: #f7f6f2
      url(../image/img_01-011.jpg) center
      center no-repeat;
    background-size: cover;
  }

  .sectionHistory.historyPart03-01-01 .itemText,
  .sectionHistory.historyPart03-01-01 .boxGreeting {
    width: 48%;
  }
  .sectionHistory.historyPart03-01-01 .itemText {
    margin-bottom: 30px;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
  .sectionHistory.historyPart03-01-01 .boxGreeting {
    padding: 1.5em 2em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .sectionHistory.historyPart03-01-01 .boxGreeting .name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* [ historyPart03-01-02 ]
  ------------------------------ */
.sectionHistory.historyPart03-01-02 {
}

#history.part03 .sectionHistory.historyPart03-01-02 .sectionHistoryTitle {
  text-align: center;
}

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

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

/* listProfile */
.sectionHistory.historyPart03-01-02 .listProfile {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart03-01-02 .listProfile .boxProfile + .boxProfile {
    margin-top: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart03-01-02 .listProfile .boxProfile {
    float: left;
    width: 48%;
  }
  .sectionHistory.historyPart03-01-02 .listProfile .boxProfile:nth-child(2n) {
    margin-left: 4%;
  }
}

/* [ historyPart03-01-03 ]
  ------------------------------ */
.sectionHistory.historyPart03-01-03 {
}
.sectionHistory.historyPart03-01-03 .sectionHistoryTitle {
  text-align: left;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart03-01-03 .sectionHistoryTitle {
    margin-top: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart03-01-03 .sectionHistoryTitle {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

/* interview01 */
.sectionHistory.historyPart03-01-03
  .boxInterview.interview01
  .itemImage
  .link
  a.btn.ghost {
  background-color: #fff;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart03-01-03
    .boxInterview.interview01
    .itemImage
    .image {
    padding-top: 20px;
  }
  .sectionHistory.historyPart03-01-03
    .boxInterview.interview01
    .itemImage
    .image
    img {
    width: 260px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart03-01-03 .boxInterview.interview01 .itemImage {
    margin-top: -50px;
  }
  .sectionHistory.historyPart03-01-03
    .boxInterview.interview01
    .itemImage
    .link {
    margin-top: -0.5em;
  }
}

/* [ historyPart03-02-01 ]
  ------------------------------ */
.sectionHistory.historyPart03-02-01 {
}

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

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart03-02-01 {
    padding-top: 60px;
    border-top: 1px solid #ddd;
  }
}

/* [ sectionPoudreColor ]
    ------------------------------ */
.sectionPoudreColor {
  border: 1px solid #ddd;
  text-align: center;
}
.sectionPoudreColorTitle,
.sectionPoudreColorIntro {
  color: #000;
}
.sectionPoudreColorTitle {
  font-weight: normal;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionPoudreColor {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 20px;
  }

  .sectionPoudreColorTitle {
    margin-bottom: 0.4em;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .sectionPoudreColorIntro {
    margin-bottom: 1em;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionPoudreColor {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 5.5% 6.5%;
  }

  .sectionPoudreColorTitle {
    margin-bottom: 0.5em;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .sectionPoudreColorIntro {
    margin-bottom: 2em;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* boxPoudreColor */
.sectionPoudreColor .boxPoudreColor {
  border-top: 1px solid #e3e3e3;
}
.sectionPoudreColor .boxPoudreColor .itemTitle {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
  color: #000;
}

.sectionPoudreColor .boxPoudreColor .itemColor {
  float: left;
}
.sectionPoudreColor .boxPoudreColor .itemColor .tag {
  padding: 0.25em 0.5em;
  color: #fff;
}
.sectionPoudreColor .boxPoudreColor .itemColor .tag.bg_black {
  background-color: #000;
}
.sectionPoudreColor .boxPoudreColor .itemColor .tag.bg_gray {
  background-color: #ccc;
}
.sectionPoudreColor .boxPoudreColor .itemColor .tag + .tag {
  margin-top: 2px;
}

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

  .sectionPoudreColor .boxPoudreColor .itemTitle {
    font-size: 1.4rem;
  }

  .sectionPoudreColor .boxPoudreColor .itemColor {
    width: 46%;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor:nth-child(2n) {
    margin-left: 8%;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor .image {
    margin-bottom: 0.5em;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor .image p + p {
    margin-top: 0.5em;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor .image img {
    width: 95px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionPoudreColor .boxPoudreColor {
    float: left;
    width: 47.5%;
  }
  .sectionPoudreColor .boxPoudreColor:nth-child(2n) {
    margin-left: 5%;
  }

  .sectionPoudreColor .boxPoudreColor .itemTitle {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .sectionPoudreColor .boxPoudreColor .itemColor {
    width: 45%;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor:nth-child(2n) {
    margin-left: 10%;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor .image {
    margin-bottom: 1em;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor .image p + p {
    margin-top: 1em;
  }
  .sectionPoudreColor .boxPoudreColor .itemColor .image img {
    width: 150px;
  }
}

/* interview04 */
.sectionHistory.historyPart03-02-01 .boxInterview.interview04 {
}
/*.sectionHistory.historyPart03-02-01 .boxInterview.interview04 .image {
      float: left;
      width: 48%;
    }
    .sectionHistory.historyPart03-02-01 .boxInterview.interview04 .image:nth-child(2n) {
      margin-left: 4%;
    }*/

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart03-02-01 .boxInterview.interview04 .image {
    width: 55%;
    min-width: 160px;
    margin-right: auto;
    margin-left: auto;
  }
  .sectionHistory.historyPart03-02-01
    .boxInterview.interview04
    .image
    figcaption {
    padding-top: 0.75em;
    color: #a0a0a0;
    font-size: 1rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart03-02-01 .boxInterview.interview04 .itemText {
    width: 70%;
  }
  .sectionHistory.historyPart03-02-01 .boxInterview.interview04 .itemImage {
    width: 26%;
  }
  .sectionHistory.historyPart03-02-01
    .boxInterview.interview04
    .image
    figcaption {
    padding-top: 1em;
  }
}

/* [ historyPart03-02-02 ]
  ------------------------------ */
.sectionHistory.historyPart03-02-02 {
}

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

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

/* [ historyPart03-02-03 ]
  ------------------------------ */
.sectionHistory.historyPart03-02-03 {
}

.sectionHistory.historyPart03-02-03
  .blockCommentLast
  .boxComment
  + .boxComment {
  margin-top: 20px;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart03-02-03
    .blockCommentLast
    .boxComment.boxCommentPhoto {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

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

/** =4
 * ========================================
 * history - part4
 * ========================================
 */

#history.part04 {
}

#history.part04 .sectionHistoryTitle {
  text-align: left;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  #history.part04 .articleHistory {
    padding-top: 0;
  }
}

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

/* [ historyPart04-01-01 ]
  ------------------------------ */
.sectionHistory.historyPart04-01-01 {
}
.sectionHistory.historyPart04-01-01 .itemText,
.sectionHistory.historyPart04-01-01 .boxGreeting .name {
  color: #000;
}

.sectionHistory.historyPart04-01-01 .boxGreeting {
  border: 1px solid #ddd;
}
.sectionHistory.historyPart04-01-01 .boxGreeting .name {
  margin-bottom: 0.5em;
  font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-weight: bold;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart04-01-01 {
    padding-top: 50%;
    padding-bottom: 30px;
    background: #f7f6f2
      url(../image/img_01-012.jpg) center
      top no-repeat;
    background-size: 100% auto;
  }

  .sectionHistory.historyPart04-01-01 .itemText {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .sectionHistory.historyPart04-01-01 .boxGreeting {
    padding: 1em 1.25em;
  }
  .sectionHistory.historyPart04-01-01 .boxGreeting .name {
    font-size: 1.3rem;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart04-01-01 {
    padding-top: 13%;
    padding-bottom: 14%;
    background: #f7f6f2
      url(../image/img_01-013.jpg) center
      center no-repeat;
    background-size: cover;
  }

  .sectionHistory.historyPart04-01-01 .itemText,
  .sectionHistory.historyPart04-01-01 .boxGreeting {
    width: 48%;
  }
  .sectionHistory.historyPart04-01-01 .itemText {
    margin-bottom: 30px;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
  .sectionHistory.historyPart04-01-01 .boxGreeting {
    padding: 1.5em 2em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .sectionHistory.historyPart04-01-01 .boxGreeting .name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* [ historyPart04-01-02 ]
  ------------------------------ */
.sectionHistory.historyPart04-01-02 {
}

#history.part04 .sectionHistory.historyPart04-01-02 .sectionHistoryTitle {
  text-align: center;
}

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

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

/* listProfile */
.sectionHistory.historyPart04-01-02 .listProfile {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart04-01-02 .listProfile .boxProfile + .boxProfile {
    margin-top: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart04-01-02 .listProfile .boxProfile {
    float: left;
    width: 48%;
  }
  .sectionHistory.historyPart04-01-02 .listProfile .boxProfile:nth-child(2n) {
    margin-left: 4%;
  }
}

/* [ historyPart04-01-03 ]
  ------------------------------ */
.sectionHistory.historyPart04-01-03 {
}
.sectionHistory.historyPart04-01-03 .sectionHistoryTitle {
  text-align: left;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart04-01-03 .sectionHistoryTitle {
    margin-top: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart04-01-03 .sectionHistoryTitle {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

/* [ historyPart04-02-01 ]
  ------------------------------ */
.sectionHistory.historyPart04-02-01 {
}

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

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart04-02-01 {
    padding-top: 60px;
    border-top: 1px solid #ddd;
  }
}

/* [ sectionProductRecommended ]
    ------------------------------ */
.sectionProductRecommended {
  border: 1px solid #ddd;
  text-align: center;
}
.sectionProductRecommendedTitle {
  color: #000;
  font-weight: normal;
}
.sectionProductRecommendedContent {
  display: flex;
  justify-content: space-between;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionProductRecommended {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 20px;
  }

  .sectionProductRecommendedTitle {
    margin-bottom: 1.5em;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sectionProductRecommendedContent {
    flex-wrap: wrap;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionProductRecommended {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 5.5% 6.5%;
  }

  .sectionProductRecommendedTitle {
    margin-bottom: 1.5em;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

/* boxProductRecommended */
.sectionProductRecommended .boxProductRecommended {
  text-align: center;
}
.sectionProductRecommended .boxProductRecommended a {
  display: block;
  text-decoration: none;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionProductRecommended .boxProductRecommended {
    width: 48.5%;
    width: -webkit-calc(255/525 * 100%);
    width: calc(255 / 525 * 100%);
  }
  .sectionProductRecommended .boxProductRecommended:nth-child(3) {
    width: 100%;
    margin-top: 20px;
  }

  .sectionProductRecommended .boxProductRecommended .itemImage {
    margin-bottom: 10px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionProductRecommended .boxProductRecommended {
    width: 21.25%;
    width: -webkit-calc(170/800 * 100%);
    width: calc(170 / 800 * 100%);
  }
  .sectionProductRecommended .boxProductRecommended:nth-child(3) {
    width: 45%;
    width: -webkit-calc(360/800 * 100%);
    width: calc(360 / 800 * 100%);
  }

  .sectionProductRecommended .boxProductRecommended .itemImage {
    margin-bottom: 20px;
  }
}

/* [ historyPart04-02-02 ]
  ------------------------------ */
.sectionHistory.historyPart04-02-02 {
}

.sectionHistory.historyPart04-02-02
  .blockCommentLast
  .boxComment
  + .boxComment {
  margin-top: 20px;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart04-02-02
    .blockCommentLast
    .boxComment.boxCommentPhoto {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

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

/** =5
 * ========================================
 * history - part5
 * ========================================
 */

#history.part05 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  #history.part05 .articleHistory {
    padding-top: 0;
  }
}

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

/* [ historyPart05-01 ]
  ------------------------------ */
.sectionHistory.historyPart05-01 {
  padding-top: 0;
  background-color: #f2f2f2;
}
.sectionHistory.historyPart05-01 .itemImage {
  text-align: center;
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-01 .itemText {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-01 {
    border-top: 1px solid #ddd;
  }
  .sectionHistory.historyPart05-01 .itemText {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* [ historyPart05-02 ]
  ------------------------------ */
.sectionHistory.historyPart05-02 {
}
.sectionHistory.historyPart05-02 .sectionHistoryLead {
  color: #000;
  text-align: left;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-02 {
    padding-bottom: 60px;
  }
  .sectionHistory.historyPart05-02 .sectionHistoryLead {
    margin-bottom: 40px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 {
    padding-bottom: 120px;
  }
  .sectionHistory.historyPart05-02 .sectionHistoryLead {
    margin-bottom: 60px;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
}

/* FAQ */
.sectionHistory.historyPart05-02 .listFAQ {
}

.sectionHistory.historyPart05-02 .boxFAQ {
  border-top: 1px solid #e3e3e3;
}
.sectionHistory.historyPart05-02 .boxFAQTitle {
  color: #cdb55b;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-02 .boxFAQ {
    margin-top: 40px;
    padding-top: 40px;
  }
  .sectionHistory.historyPart05-02 .boxFAQTitle {
    margin-bottom: 35px;
    font-family: "HelveticaLTPro-Bold", "Helvetica Neue", Helvetica, Arial,
      sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 .boxFAQ {
    margin-top: 60px;
    padding-top: 60px;
  }
  .sectionHistory.historyPart05-02 .boxFAQTitle {
    margin-bottom: 60px;
    font-family: "OptimaLTPro-Roman", Optima, Calibri, Arial, sans-serif;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
}

/* FAQ - Q1 */
.sectionHistory.historyPart05-02 .boxFAQ.que01 {
  margin-top: 0;
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que01 .text {
    float: none;
    /* width: 65.5%;
            width: -webkit-calc( 380/580 * 100% );
            width: calc( 380/580 * 100% ); */
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que01 .image {
    width: 31%;
    width: -webkit-calc(180/580 * 100%);
    width: calc(180 / 580 * 100%);
    margin-bottom: 1em;
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que01 .image.flo_left {
    margin-right: 1.5em;
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que01 .image.flo_right {
    margin-left: 1.5em;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que01 .text {
    width: 80%;
    width: -webkit-calc(730/920 * 100%);
    width: calc(730 / 920 * 100%);
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que01 .image {
    width: 16.5%;
    width: -webkit-calc(152/920 * 100%);
    width: calc(152 / 920 * 100%);
  }
}

/* FAQ - Q2 */
.sectionHistory.historyPart05-02 .boxFAQ.que02 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que02 .itemImage {
    margin-bottom: 20px;
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que02 .itemImage .image + .image {
    margin-top: 15px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que02 .itemImage {
    margin-bottom: 40px;
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que02 .itemImage .image {
    width: 48%;
    width: -webkit-calc(440/920 * 100%);
    width: calc(440 / 920 * 100%);
  }
  .sectionHistory.historyPart05-02
    .boxFAQ.que02
    .itemImage
    .image:nth-child(odd) {
    float: left;
  }
  .sectionHistory.historyPart05-02
    .boxFAQ.que02
    .itemImage
    .image:nth-child(even) {
    float: right;
  }
}

/* FAQ - Q3 */
.sectionHistory.historyPart05-02 .boxFAQ.que03 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que03 .itemImage {
    margin-bottom: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que03 {
    float: left;
    width: 50%;
    padding-right: 2%;
    padding-right: -webkit-calc(20/920 * 100%);
    padding-right: calc(20 / 920 * 100%);
    box-sizing: border-box;
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que03 .itemImage {
    margin-bottom: 35px;
  }
}

/* FAQ - Q4 */
.sectionHistory.historyPart05-02 .boxFAQ.que04 {
}
.sectionHistory.historyPart05-02
  .boxFAQ.que04
  .itemMovie
  .js-modalHandler.open.movie:after {
  border-left-color: rgba(255, 255, 255, 0.75);
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  /* .sectionHistory.historyPart05-02 .boxFAQ.que04 .itemImage {
            margin-bottom: 20px;
          } */
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que04 {
    float: right;
    width: 50%;
    padding-left: 2%;
    padding-left: -webkit-calc(20/920 * 100%);
    padding-left: calc(20 / 920 * 100%);
    box-sizing: border-box;
  }
  /* .sectionHistory.historyPart05-02 .boxFAQ.que04 .itemImage {
            margin-bottom: 35px;
          } */
  .sectionHistory.historyPart05-02
    .boxFAQ.que04
    .itemMovie
    .js-modalHandler.open.movie:after {
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 28px;
  }
}

/* FAQ - Q5 */
.sectionHistory.historyPart05-02 .boxFAQ.que05 {
}

/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que05 .itemImage {
    margin-bottom: 20px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-02 .boxFAQ.que05 {
    position: relative;
    padding-right: 35%;
    padding-right: -webkit-calc(320/920 * 100%);
    padding-right: calc(320 / 920 * 100%);
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que05 .boxFAQTitle {
    margin-bottom: 35px;
  }
  .sectionHistory.historyPart05-02 .boxFAQ.que05 .itemImage {
    position: absolute;
    top: 60px;
    right: 0;
    width: 30%;
    width: -webkit-calc(280/920 * 100%);
    width: calc(280 / 920 * 100%);
  }
}

/* [ historyPart05-03 ]
  ------------------------------ */
.sectionHistory.historyPart05-03 {
  background-color: #f2f2f2;
}
.sectionHistory.historyPart05-03 .itemImage {
  text-align: center;
}
/* -- >>> styles for narrow layout ----- */
@media screen and (max-width: 599px) {
  .sectionHistory.historyPart05-03 {
    padding-bottom: 60px;
  }
  .sectionHistory.historyPart05-03 .sectionHistoryTitle {
    margin-bottom: 20px;
  }
  .sectionHistory.historyPart05-03 .itemImage {
    margin-bottom: 15px;
  }
}

/* -- >>> styles for medium & wide layout ----- */
@media screen and (min-width: 600px) {
  .sectionHistory.historyPart05-03 {
    padding-bottom: 80px;
  }
  .sectionHistory.historyPart05-03 .sectionHistoryTitle {
    margin-bottom: 40px;
  }
  .sectionHistory.historyPart05-03 .itemImage {
    margin-bottom: 30px;
  }
  .sectionHistory.historyPart05-03 .itemText {
  }
}
