@charset "UTF-8";
/*-------------------------------------------
COMPANY
-------------------------------------------*/
.company {
  margin-bottom: 80px;
}
.company .img {
  margin-bottom: 80px;
}
.company .title {
  font-size: 26px;
  color: #404772;
  margin-bottom: 10px;
}
.company .overview-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.company .overview-list dt {
  width: 200px;
  border-top: solid 1px #1f1f1f;
  font-size: 15px;
  padding: 40px 0;
}
.company .overview-list dt:last-of-type {
  border-bottom: solid 1px #1f1f1f;
}
.company .overview-list dd {
  width: calc(100% - 200px);
  border-top: solid 1px #ccc;
  font-size: 15px;
  padding: 40px 0;
  line-height: 1.8;
}
.company .overview-list dd:last-of-type {
  border-bottom: solid 1px #ccc;
}
/* 直営店 */
.store {
  display: flex;
  margin-bottom: 80px;
}
.store .store-kazo {
  width: 48%;
  margin-right: 4%;
}
.store .store-kazo img, .store .store-ageo img {
  width: 100%;
}
.store .store-ageo {
  width: 48%
}
.store .store-kazo .caption, .store .store-ageo .caption {
  text-align: end;
  padding: 10px;
}
/* アクセス */
.google-map {
  width: 100%;
  max-width: 960px;
  height: 360px;
}
.google-map iframe {
  width: 100%;
  height: 100%;
}
/*-------------------------------------------
HISTORY
-------------------------------------------*/
.history {
  margin-bottom: 80px;
}
.history .heading {
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  font-family: serif;
  font-size: 28px;
  color: #404772;
  padding-left: 100px;
}
.history .timeline-item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
}
.history .timeline-title {
  max-width: 150px;
  padding: 1.25rem 2.5rem 1rem 0;
  text-align: right;
}
.history .timeline-content {
  border-left: 5px solid #f8f6f2;
  max-width: 500px;
  padding: 1.5rem 0 1.5rem 2.5rem;
  position: relative;
}
.history .timeline-content::before {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  background: #d0bea2;
  text-align: center;
  padding: .1rem;
  position: absolute;
  top: 1.3rem;
  left: -1.3rem;
  /* Font Awesome */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #d0bea2;
  font-size: 1rem;
}
.icon-file::before {
  content: '\f111';
}
.history .timeline-content .text {
  font-family: Noto Sans JP;
  line-height: 1.8;
  margin-bottom: 10px;
}
.history .timeline-content .img img {
  width: 100%;
  margin-bottom: 20px;
}
.timeline-title .year {
  font-family: serif;
  display: block;
  font-size: 28px;
}
.timeline-title .year-ja {
  display: block;
  font-size: 14px;
}
/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
    /* COMPANY */
  .company {
    margin-bottom: 60px;
  }
  .company .overview-list dt {
    width: 100px;
    padding: 20px 0;
  }
  .company .overview-list dd {
    width: calc(100% - 100px);
    padding: 20px 0;
  }
  /* 直営店 */
  .store {
    flex-direction: column;
  }
  .store .store-kazo, .store .store-ageo {
    width: 100%;
  }
  /* アクセス */
  .google-map {
    height: 240px;
    margin: 0 0 20px;
  }
	/* HISTORY */
  .history .heading {
    display: none;
  }
  .history .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .history .timeline-content {
    border-left: none;
    padding-top: 5px;
  }
  .history .timeline-content::before {
    display: none;
  }
  .history .timeline-content .text {
    text-align: left;
  }
}