/*weight*/
/* ===============================================
# common
=============================================== */
.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.br_xs {
  display: none;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
  .br_xs {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: none;
  }
  .br_xs {
    display: block;
  }
}
/* ===============================================
# page title
=============================================== */
.history-main {
  padding-bottom: 0;
}

.hero.is-history {
  padding-top: 20rem;
  padding-left: 3rem;
}
@media screen and (max-width: 786px) {
  .hero.is-history {
    height: 30rem;
    padding-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .hero.is-history {
    height: 24rem;
    padding-top: 2rem;
    padding-left: 0px;
  }
}

.is-history .hero__inner {
  padding: 0 0 6rem 0;
}
@media screen and (max-width: 768px) {
  .is-history .hero__inner {
    padding: 4rem 0;
  }
}
.is-history .hero__inner::before {
  display: none;
}
.is-history .hero__inner .box__header {
  padding: 0;
}
.is-history .hero__inner .box__header .content-title.--lv2 small {
  color: inherit;
  font-family: "futura-pt", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 8rem;
}
@media screen and (max-width: 480px) {
  .is-history .hero__inner .box__header .content-title.--lv2 small {
    font-size: 6.2rem;
    width: 200px;
  }
}
@media screen and (max-width: 468px) {
  .is-history .hero__inner .box__header {
    padding: 0 2.4rem 0;
    height: 24rem;
  }
}
.is-history .hero-ttl-obj {
  position: absolute;
  top: 0;
  right: 0;
  width: 103%;
}
@media screen and (max-width: 768px) {
  .is-history .hero-ttl-obj {
    width: 90%;
  }
}

/* ===============================================
# side bar
=============================================== */
.l-sidebar {
  max-width: 180px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 5;
}
@media screen and (max-width: 786px) {
  .l-sidebar {
    display: none;
  }
}

.l-sidebar__accordion {
  overflow: hidden;
}

.l-sidebar__accordion-trigger {
  width: 100%;
  padding: 1.8rem 2px;
  cursor: pointer;
  -webkit-transition: 0.4s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.4s cubic-bezier(0.63, 0.05, 0.17, 1);
}
.l-sidebar__accordion-trigger:hover {
  opacity: 0.6;
}

.l-sidebar__accordion-logo {
  display: block;
}
.l-sidebar__accordion-logo.is-jms {
  max-width: 140px;
}
.l-sidebar__accordion-logo.is-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 4px;
}

.l-sidebar__accordion-content {
  max-height: 0;
  overflow: hidden;
  border-bottom: solid 1px #707070;
  padding-bottom: 14px;
  -webkit-transition: 0.4s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.4s cubic-bezier(0.63, 0.05, 0.17, 1);
  position: relative;
}

.l-sidebar__accordion-content.open {
  max-height: 250px;
}

.l-sidebar__accordion-body {
  padding: 15px 10px 20px;
}

.l-sidebar__accordion-body-item > a {
  display: block;
  color: inherit;
  font-family: "futura-pt", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
}
.l-sidebar__accordion-body-item + .l-sidebar__accordion-body-item {
  margin-top: 10px;
}

.l-sidebar__accordion-icon {
  position: absolute;
  bottom: 4px;
  right: 10px;
  -webkit-transition: 0.3s cubic-bezier(0.63, 0.05, 0.17, 1);
  transition: 0.3s cubic-bezier(0.63, 0.05, 0.17, 1);
}
.l-sidebar__accordion-icon.is-open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ===============================================
# main content
=============================================== */
.l-maincontents {
  width: 100%;
  max-width: 123.4rem;
  margin: 0 auto;
}
.l-maincontents.is-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-maincontents.is-2col .l-maincontents-inner {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .l-maincontents.is-2col .l-maincontents-inner {
    width: 100%;
  }
}
@media screen and (max-width: 1140px) {
  .l-maincontents {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}

.bg-white {
  background-color: var(--white);
  position: relative;
}
.bg-white::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: calc(100vw - 100%);
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(100% - 100vw);
}
.bg-white::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: calc(100vw - 100%);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% - 100vw);
}

.bg-gray {
  background-color: #f4f4f4;
  position: relative;
}
.bg-gray::before {
  content: "";
  display: block;
  background-color: #f4f4f4;
  width: calc(100vw - 100%);
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(100% - 100vw);
}
.bg-gray::after {
  content: "";
  display: block;
  background-color: #f4f4f4;
  width: calc(100vw - 100%);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% - 100vw);
}

.l-historywrap {
  padding: 60px 0;
}
@media screen and (max-width: 1140px) {
  .l-historywrap {
    padding: 40px 0;
  }
}
.l-historywrap.is-top {
  padding: 0 0 60px 0;
}

.l-history-ttl {
  margin-bottom: 2rem;
}
.l-history-ttl.is-jms {
  max-width: 330px;
}
.l-history-ttl.is_txt {
  font-size: 3rem;
  margin-bottom: 4rem;
}

.history-list .history-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.history-list .history-list-item .history-list-item-year {
  font-family: "futura-pt", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 4rem;
  width: 10rem;
  margin-right: 2rem;
}
@media screen and (max-width: 786px) {
  .history-list .history-list-item .history-list-item-year {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-year {
    font-size: 18px;
    margin-right: 1rem;
  }
}
.history-list .history-list-item .history-list-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.8rem;
  padding-top: 6px;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-meta {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
}
.history-list .history-list-item .history-list-item-meta .history-list-item-date {
  font-family: "futura-pt", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 3rem;
}
@media screen and (max-width: 786px) {
  .history-list .history-list-item .history-list-item-meta .history-list-item-date {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-meta .history-list-item-date {
    font-size: 20px;
  }
}
.history-list .history-list-item .history-list-item-meta .history-list-item-place {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding-top: 4px;
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-meta .history-list-item-place {
    margin-left: 0;
    font-size: 16px;
    margin-top: 4px;
  }
}
.history-list .history-list-item .history-list-item-index {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-index {
    margin-bottom: 14px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 375px) {
  .history-list .history-list-item .history-list-item-index {
    font-size: 2rem;
  }
}
.history-list .history-list-item .history-list-item-contentwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-contentwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.history-list .history-list-item .history-list-item-contentwrap .history-list-item-txtwrap {
  width: 80%;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-contentwrap .history-list-item-txtwrap {
    width: 100%;
  }
}
.history-list .history-list-item .history-list-item-contentwrap .history-list-item-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
  padding-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-contentwrap .history-list-item-txt {
    padding-bottom: 14px;
  }
}
.history-list .history-list-item .history-list-item-contentwrap a {
  display: block;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  cursor: pointer;
  width: 20rem;
  margin-left: 2rem;
  -webkit-transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-contentwrap a {
    margin-left: 0;
  }
}
.history-list .history-list-item .history-list-item-contentwrap a .history-list-item-img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 480px) {
  .history-list .history-list-item .history-list-item-contentwrap a .history-list-item-img {
    width: 100%;
    max-width: 120px;
    margin-left: 0;
    padding-bottom: 30px;
  }
}

.has-line {
  position: relative;
  padding-left: 40px;
  max-width: 938px;
}
@media screen and (max-width: 786px) {
  .has-line {
    padding-left: 2.8rem;
    margin-left: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .has-line {
    padding-left: 18px;
    margin-left: 0px;
    width: 640px;
  }
}
@media screen and (max-width: 375px) {
  .has-line {
    padding-left: 14px;
    width: 500px;
  }
}
.has-line::before {
  content: "";
  display: block;
  width: 1px;
  background-color: #000;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 0;
}
@media screen and (max-width: 480px) {
  .has-line::before {
    top: 4px;
  }
}
.has-line::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: -7px;
}
@media screen and (max-width: 480px) {
  .has-line::after {
    top: 4px;
    width: 11px;
    height: 11px;
    left: -5px;
  }
}/*# sourceMappingURL=history.css.map */