@keyframes blur-circle-bounce {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -30px;
  }
  100% {
    margin-top: 0;
  }
}
.aboutnav {
  border-top: 1px solid #D6E5D2;
  background: #F1F5F0;
  padding: 40px 20px;
}
.aboutnav__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aboutnav__item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
}
.aboutnav__item.is-current {
  opacity: 0.2;
}
.aboutnav__itemLink {
  display: grid;
  background: url(../img/arrow-right-black.svg) no-repeat calc(100% - 20px) 50%/8px;
  grid-template-columns: 110px 1fr;
  align-items: center;
  height: 100px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
.aboutnav__item.is-current .aboutnav__itemLink {
  cursor: default;
}
.aboutnav__itemImage {
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutnav__itemTitle {
  text-align: center;
}

#page-about .company {
  padding: 40px 20px;
}
#page-about .company__lead {
  margin-bottom: 40px;
}
#page-about .company__map {
  margin: 40px 0;
}
#page-about .company__ctaBtn {
  font-size: 20px;
}

#page-message .message {
  padding: 40px 20px;
}
#page-message .message__representative {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#page-message .message__container {
  margin: 20px 0 40px;
}
#page-message .message__signature {
  text-align: right;
}
#page-philosophy .philosophy {
  padding-top: 0;
}
#page-philosophy .philosophy__title {
  padding-top: 40px;
  font-weight: var(--font-weight-bold);
  font-size: 30px;
  line-height: 44px;
}
#page-philosophy .philosophy__subtitle {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-regular);
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 25px;
  color: #F2D26E;
}
#page-philosophy .philosophy__content {
  padding-top: 20px;
}
#page-philosophy .philosophy__content:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}
#page-philosophy .philosophy__contentP {
  margin: 0;
}

#page-history .history {
  padding: 80px 20px 0;
}
#page-history .history__decade {
  display: grid;
  grid-template-columns: 100px 1fr;
}
#page-history .history__decadeTitle {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-bold);
  margin-top: -12px;
  color: #6C6B69;
  font-size: 30px;
}
#page-history .history__year {
  position: relative;
  border-left: 1px solid #ccc;
  padding: 0 0 40px 30px;
}
#page-history .history__year::before {
  position: absolute;
  top: -5px;
  left: -6px;
  display: inline-block;
  content: "";
  border-radius: 20px;
  background: #E60012;
  width: 11px;
  height: 11px;
}
#page-history .history__yearTitle {
  font-family: "Outfit", "Noto Sans JP", YuGothic, sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--font-weight-bold);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  border-radius: 100px;
  background: #6C6B69;
  margin-bottom: 20px;
  padding: 7px 20px;
  color: #fff;
  transform: translateY(-17px);
}
#page-history .history__yearWestern {
  font-size: 24px;
  line-height: 1;
}
#page-history .history__yearJapanese {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}
#page-history .history__yearP {
  margin: 0;
  transform: translateY(-17px);
}
#page-history .history__decade:last-child .history__year:last-child {
  border-left: none;
}

/* =============================================
for Mobile
============================================= */
@media screen and (max-width: 599px) {
  #page-about .company__table {
    display: block;
  }
  #page-about .company__tableTbody {
    display: block;
  }
  #page-about .company__tableTr {
    display: block;
    border-top: 1px solid #ccc;
    padding: 20px 0;
  }
  #page-about .company__tableTr:last-child {
    border-bottom: 1px solid #ccc;
  }
  #page-about .company__tableTh, #page-about .company__tableTd {
    display: block;
  }
  #page-about .company__tableTh {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
  }
  #page-about .company__tableTd {
    font-size: 16px;
  }
}
/* =============================================
for PC
============================================= */
@media screen and (min-width: 1025px) {
  .aboutnav {
    padding: 60px 0;
  }
  .aboutnav__items {
    flex-direction: row;
    justify-content: space-between;
    width: var(--width-section);
    margin: 0 auto;
  }
  .aboutnav__item {
    width: 340px;
    height: 385px;
  }
  .aboutnav__itemLink {
    background: none;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 240px 145px;
  }
  .aboutnav__itemImage {
    width: 338px;
    height: 240px;
  }
  .aboutnav__itemTitle::after {
    display: inline-block;
    content: url(../img/arrow-right-black.svg);
    width: 9px;
    height: 16px;
    margin-left: 20px;
    line-height: 16px;
  }
  #page-about .company {
    padding-top: 80px;
  }
  #page-about .company__lead {
    margin-bottom: 60px;
  }
  #page-about .company__container {
    display: flex;
    justify-content: space-between;
  }
  #page-about .company__table {
    width: 520px;
  }
  #page-about .company__tableTr {
    border-bottom: 1px solid #ccc;
  }
  #page-about .company__tableTh, #page-about .company__tableTd {
    padding-top: 13px;
    padding-bottom: 13px;
    padding: 13px 10px;
    line-height: 29px;
    vertical-align: middle;
  }
  #page-about .company__tableTh {
    width: 150px;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
  }
  #page-about .company__tableTd {
    font-size: 18px;
  }
  #page-about .company__map {
    width: 520px;
    margin: 0;
  }
  #page-about .company__mapImage {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #page-about .company__cta {
    margin-top: 60px;
    text-align: center;
  }
  #page-about .company__ctaBtn {
    width: 400px;
    height: 50px;
    padding: 0 20px;
  }
  #page-message .message {
    padding: 80px 0 60px;
  }
  #page-message .message__inner {
    display: grid;
    grid-template-columns: 672px 1fr 336px;
    grid-template-rows: 336px 1fr;
  }
  #page-message .message__representative {
    grid-column: 3/4;
    width: 336px;
    height: 336px;
  }
  #page-message .message__container {
    grid-column: 1/2;
    grid-row: 1/3;
    margin: 0;
  }
  #page-message .message__signature {
    grid-column: 3/4;
    align-self: flex-end;
  }
  #page-philosophy .philosophy {
    padding: 100px 0 80px;
  }
  #page-philosophy .philosophy__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #page-philosophy .philosophy__title {
    width: 370px;
    padding: 0;
  }
  #page-philosophy .philosophy__title:not(:first-child) {
    padding-top: 80px;
  }
  #page-philosophy .philosophy__title:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
  }
  #page-philosophy .philosophy__content {
    width: 710px;
    padding-top: 0;
  }
  #page-philosophy .philosophy__content:not(:first-of-type) {
    padding-top: 80px;
  }
  #page-philosophy .philosophy__content:not(:last-child) {
    padding-bottom: 80px;
  }
  #page-history .history {
    padding-top: 120px;
    padding: 120px 0 40px;
  }
  #page-history .history__decade {
    grid-template-columns: 250px 1fr;
  }
  #page-history .history__decadeTitle {
    margin-top: -12px;
    font-size: 70px;
  }
  #page-history .history__year {
    padding: 0 0 40px 80px;
  }
  #page-history .history__year::before {
    top: 0;
  }
  #page-history .history__yearTitle {
    align-items: center;
  }
  #page-history .history__yearWestern {
    font-size: 30px;
  }
  #page-history .history__yearJapanese {
    font-size: 18px;
    transform: translateY(1px);
  }
  #page-history .history__yearP {
    padding-left: 10px;
  }
}/*# sourceMappingURL=page-about.css.map */