@charset "UTF-8";
body {
  background: #F8F5F3;
}

.year-wrapper {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

#yearCounter {
  font-size: 160px;
  font-weight: 900;
  letter-spacing: 16px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: opacity 1.2s ease;
}
@media only screen and (max-width: 767px) {
  #yearCounter {
    font-size: 48px;
    letter-spacing: 0.1em;
  }
}

#yearImages .lastImage {
  transform: translate(-50%, -50%);
}

.year-decor {
  position: absolute;
  inset: -120px;
  pointer-events: none;
  z-index: 1;
}

.year-particle {
  position: absolute;
  opacity: 0;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  text-align: center;
  color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  z-index: 3;
}

.scroll-hint span {
  display: block;
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.scroll-hint svg {
  animation: arrowMove 1.6s ease-in-out infinite;
}

@keyframes arrowMove {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}
.next-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 160px;
  font-weight: 900;
  letter-spacing: 16px;
  text-align: center;
  line-height: 0.7;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 3;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  .next-text {
    width: 100%;
    font-size: 48px;
    letter-spacing: 0.1em;
  }
}

.next-text .line2 {
  font-size: 72px;
  letter-spacing: 8px;
}
@media only screen and (max-width: 767px) {
  .next-text .line2 {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}

.next-text.is-visible {
  opacity: 1;
}

/* ===== 弧 ===== */
.arc-clip {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  clip-path: polygon(0% 100%, 0% 100%, 0% 100%, 0% 100%);
}

#arcSvg {
  width: 100%;
  height: 100%;
}

/* ===== フワッと表示 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* // FVここまで*/
.history-lower-inner {
  position: relative;
  width: 100%;
  margin: auto;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 480px;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 10px;
  }
}
.history-lower-inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -480px;
  left: 224px;
  width: 1px;
  height: calc(100% + 480px);
  background: #8C8C8C;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner::before {
    top: 0;
    left: 30px;
    height: calc(100% + 20px);
    background: #D4D4D4;
  }
}
.history-lower-inner.last::before {
  height: calc(100% + 230px);
}
@media only screen and (max-width: 767px) {
  .history-lower-inner.last::before {
    height: calc(100% - 100px);
  }
}
@media only screen and (max-width: 767px) {
  .history-lower-inner figure + p {
    margin-top: 20px;
  }
}

#history1960 .history-lower-inner, #history2000 .history-lower-inner {
  padding-bottom: 300px;
}
@media only screen and (max-width: 767px) {
  #history1960 .history-lower-inner, #history2000 .history-lower-inner {
    padding-bottom: 100px;
  }
}

#history1980 .history-lower-inner, #history2020 .history-lower-inner {
  padding-bottom: 250px;
}
@media only screen and (max-width: 767px) {
  #history1980 .history-lower-inner, #history2020 .history-lower-inner {
    padding-bottom: 100px;
  }
}

#history1990 .history-lower-inner {
  padding-top: 250px;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner {
    padding-top: 0;
  }
}

.history-lower-inner h2 {
  color: #20496B;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner h2 {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
}

.history-lower-inner h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.6px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner h3 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

#history1950 .history-lower-inner h2 {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  #history1950 .history-lower-inner h2 {
    margin-top: 20px;
  }
}

/*年代ごとのpタグに関する記述*/
.history-lower-inner p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner p {
    font-size: 14px;
  }
}
.history-lower-inner p.margintop {
  margin-top: 400px;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner p.margintop {
    margin-top: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .history-lower-inner p.margintop02 {
    margin-top: 100px;
  }
}

#history1970 .history-lower-inner p, #history2010 .history-lower-inner p {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  #history1970 .history-lower-inner p, #history2010 .history-lower-inner p {
    margin-bottom: 0;
  }
}
#history1970 .history-lower-inner p.margintop, #history2010 .history-lower-inner p.margintop {
  margin-top: 100px;
}

#history1950 .history-lower-inner-marginleft, #history1990 .history-lower-inner-marginleft {
  margin-left: 200px;
}
@media only screen and (max-width: 767px) {
  #history1950 .history-lower-inner-marginleft, #history1990 .history-lower-inner-marginleft {
    margin-left: 40px;
  }
}

#history1960 .history-lower-inner-marginleft {
  margin-left: 620px;
}
@media only screen and (max-width: 767px) {
  #history1960 .history-lower-inner-marginleft {
    margin-left: 40px;
  }
}

#history1970 .history-lower-inner-marginleft, #history1980 .history-lower-inner-marginleft, #history2000 .history-lower-inner-marginleft, #history2020 .history-lower-inner-marginleft {
  margin-left: 450px;
}
@media only screen and (max-width: 767px) {
  #history1970 .history-lower-inner-marginleft, #history1980 .history-lower-inner-marginleft, #history2000 .history-lower-inner-marginleft, #history2020 .history-lower-inner-marginleft {
    margin-left: 40px;
  }
}

#history2010 .history-lower-inner-marginleft {
  margin-left: 200px;
}
@media only screen and (max-width: 767px) {
  #history2010 .history-lower-inner-marginleft {
    margin-left: 40px;
  }
}

/* // 年代ごとのpタグに関する記述*/
/*年代タイトルに関するスタイル*/
.history-lower-inner .contentYear {
  display: inline-block;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: 9.6px;
  background-color: #F8F5F3;
  margin-left: 0;
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner .contentYear {
    font-size: 48px;
  }
}

#history1960 .history-lower-inner .contentYear, #history1970 .history-lower-inner .contentYear, #history1980 .history-lower-inner .contentYear, #history2000 .history-lower-inner .contentYear, #history2020 .history-lower-inner .contentYear {
  margin-bottom: -166px;
}
@media only screen and (max-width: 767px) {
  #history1960 .history-lower-inner .contentYear, #history1970 .history-lower-inner .contentYear, #history1980 .history-lower-inner .contentYear, #history2000 .history-lower-inner .contentYear, #history2020 .history-lower-inner .contentYear {
    margin-bottom: 0;
  }
}

#history2010 .history-lower-inner .contentYear {
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  #history2010 .history-lower-inner .contentYear {
    margin-bottom: 0;
  }
}

.history-lower-inner .contentYear span {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.2px;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner .contentYear span {
    font-size: 16px;
  }
}

/* // 年代タイトルに関するスタイル*/
/*1990年 株式会社りゅうせきのテキストスタイル*/
#history1990 .history-lower-inner .history-lower-inner-rename {
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 9.6px;
  margin-left: 450px;
  margin-top: -140px;
  margin-bottom: 450px;
  display: none;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner .history-lower-inner-rename {
    font-size: 36px;
    margin-left: 40px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}

/* // 1990年 株式会社りゅうせきのテキストスタイル*/
/*半透明の各年代ごとの英語タイトルに関する記述*/
.history-lower-inner .history-lower-inner-subject {
  color: rgba(225, 82, 52, 0.3);
  font-family: Cormorant;
  font-size: 240px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 72px;
  position: absolute;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner .history-lower-inner-subject {
    font-size: 64px;
    letter-spacing: 0.1em;
  }
}

#history1950 .history-lower-inner .history-lower-inner-subject {
  bottom: -180px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #history1950 .history-lower-inner .history-lower-inner-subject {
    bottom: 100%;
    left: auto;
    right: 0;
  }
}

#history1960 .history-lower-inner .history-lower-inner-subject {
  bottom: 0;
  right: -75px;
}
@media only screen and (max-width: 767px) {
  #history1960 .history-lower-inner .history-lower-inner-subject {
    right: 0;
    left: 0;
    font-size: 58px;
    letter-spacing: 0.3em;
  }
}

#history1970 .history-lower-inner .history-lower-inner-subject {
  top: 250px;
}
@media only screen and (max-width: 767px) {
  #history1970 .history-lower-inner .history-lower-inner-subject {
    top: 380px;
  }
}

#history1980 .history-lower-inner .history-lower-inner-subject {
  bottom: 0;
  right: -75px;
}
@media only screen and (max-width: 767px) {
  #history1980 .history-lower-inner .history-lower-inner-subject {
    right: 0;
    bottom: 420px;
  }
}

#history1990 .history-lower-inner .history-lower-inner-subject {
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner .history-lower-inner-subject {
    top: -50px;
    letter-spacing: 0.3em;
  }
}

#history2000 .history-lower-inner .history-lower-inner-subject {
  bottom: 0;
  left: 0;
  letter-spacing: 36px;
}
@media only screen and (max-width: 767px) {
  #history2000 .history-lower-inner .history-lower-inner-subject {
    left: unset;
    right: 0;
    font-size: 48px;
    letter-spacing: 0.1em;
  }
}

#history2010 .history-lower-inner .history-lower-inner-subject {
  top: 660px;
  left: 0;
  letter-spacing: 36px;
}
@media only screen and (max-width: 767px) {
  #history2010 .history-lower-inner .history-lower-inner-subject {
    top: 595px;
    font-size: 56px;
    letter-spacing: 0.1em;
  }
}

#history2020 .history-lower-inner .history-lower-inner-subject {
  bottom: 0;
  left: 0;
  right: 0;
  letter-spacing: 36px;
  font-size: 160px;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #history2020 .history-lower-inner .history-lower-inner-subject {
    font-size: 40px;
    letter-spacing: 0.1em;
  }
}

/* // 半透明の各年代ごとの英語タイトルに関する記述*/
/* 各セクションの画像に関する記述*/
.history-lower-inner-img {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner-img {
    position: static;
    margin-top: 20px;
  }
}

.history-lower-inner-img p {
  width: 100%;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .history-lower-inner-img p {
    font-size: 12px;
    text-align: right;
    margin-top: 8px;
    padding: 0 0.25em;
  }
}

#history1950 .history-lower-inner-img {
  right: 0;
  top: -210px;
}
@media only screen and (max-width: 767px) {
  #history1950 .history-lower-inner-img {
    width: 337px;
    margin-right: -16px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  #history1950 .history-lower-inner-img p {
    text-align: left;
  }
}

#history1960 .history-lower-inner-img.firstChild {
  top: 362px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #history1960 .history-lower-inner-img.firstChild {
    width: 310px;
    margin-left: -16px;
  }
}

#history1970 .history-lower-inner-img.firstChild {
  top: 800px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  #history1970 .history-lower-inner-img.firstChild {
    width: 254px;
    margin-left: auto;
    margin-right: -16px;
  }
  #history1970 .history-lower-inner-img.firstChild p {
    text-align: left;
  }
}

#history1970 .history-lower-inner-img.secondChild {
  width: 800px;
  margin-left: 450px;
}
@media only screen and (max-width: 767px) {
  #history1970 .history-lower-inner-img.secondChild {
    width: 321px;
    margin-left: auto;
  }
  #history1970 .history-lower-inner-img.secondChild p {
    text-align: left;
  }
}

#history1980 .history-lower-inner-img {
  left: 5%;
  width: 378px;
}
@media only screen and (max-width: 767px) {
  #history1980 .history-lower-inner-img {
    width: 100%;
    margin: 40px 0;
  }
}

#history1980 .history-lower-inner-img.firstChild {
  top: 260px;
}
@media only screen and (max-width: 767px) {
  #history1980 .history-lower-inner-img.firstChild {
    width: 247px;
    margin-left: -16px;
  }
}

#history1980 .history-lower-inner-img.secondChild {
  top: 620px;
}
@media only screen and (max-width: 767px) {
  #history1980 .history-lower-inner-img.secondChild {
    margin-top: 120px;
    width: 247px;
    margin-right: -16px;
    margin-left: auto;
  }
}

#history1990 .history-lower-inner-img.firstChild {
  top: 1060px;
  left: 0;
  width: 624px;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner-img.firstChild {
    width: 291px;
    margin-left: -16px;
  }
}

#history1990 .history-lower-inner-img.secondChild {
  top: 520px;
  right: 0;
  width: 597px;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner-img.secondChild {
    width: 286px;
    margin-left: auto;
    margin-right: -16px;
  }
}

#history1990 .history-lower-inner-img.thirdChild {
  top: 1080px;
  right: 0;
  width: 500px;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner-img.thirdChild {
    width: 228px;
    margin-left: auto;
    margin-right: -16px;
  }
  #history1990 .history-lower-inner-img.thirdChild p {
    text-align: left;
  }
}

#history1990 .history-lower-inner-img.forthChild {
  margin-left: 13%;
  margin-right: -5.5%;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  #history1990 .history-lower-inner-img.forthChild {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: 0;
    margin-top: 45px;
  }
}

#history2000 .history-lower-inner-img.firstChild {
  top: 260px;
  left: 0;
  width: 467px;
}
@media only screen and (max-width: 767px) {
  #history2000 .history-lower-inner-img.firstChild {
    width: 256px;
    margin-left: -16px;
  }
}

#history2000 .history-lower-inner-img.secondChild {
  top: 520px;
  right: 0;
  width: 624px;
}
@media only screen and (max-width: 767px) {
  #history2000 .history-lower-inner-img.secondChild {
    width: 335px;
    margin-left: auto;
    margin-right: -16px;
  }
  #history2000 .history-lower-inner-img.secondChild p {
    text-align: left;
  }
}

#history2010 .history-lower-inner-img.firstChild {
  top: -360px;
  right: 0;
  width: 940px;
}
@media only screen and (max-width: 767px) {
  #history2010 .history-lower-inner-img.firstChild {
    width: 328px;
    margin-left: auto;
    margin-right: -16px;
  }
  #history2010 .history-lower-inner-img.firstChild p {
    text-align: left;
  }
}

#history2010 .history-lower-inner-img.secondChild {
  top: 940px;
  right: 0;
  width: 600px;
}
@media only screen and (max-width: 767px) {
  #history2010 .history-lower-inner-img.secondChild {
    width: 335px;
    margin-left: auto;
    margin-right: -16px;
  }
  #history2010 .history-lower-inner-img.secondChild p {
    text-align: left;
  }
}

#history2020 .history-lower-inner-img {
  bottom: 230px;
  right: 0;
  width: 600px;
}
@media only screen and (max-width: 767px) {
  #history2020 .history-lower-inner-img {
    width: 257px;
    margin-left: auto;
    margin-right: -16px;
  }
  #history2020 .history-lower-inner-img p {
    text-align: left;
  }
}

#history2020 + #service {
  margin-top: 80px;
  margin-bottom: 150px;
}/*# sourceMappingURL=history.css.map */