@charset "UTF-8";

@media print, screen {
  :root {
    /* ==================== color ==================== */
    --color-key: #2E2E63;
    --color-yellow: #FFF845;
    --color-green: #C9C461;
    --color-blue-2: #9494B1;
  }
}
html {
  scroll-behavior: smooth;
}

/* ================================================================================
display size
================================================================================ */
@media screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mid {
    display: none !important;
  }
  .nsp {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .mid {
    display: none !important;
  }
}
@media print, screen and (min-width: 1201px) {
  main {
    --u: 1px;
  }
}
@media screen and (min-width: 961px) and (max-width: 1200px) {
  main {
    --u: calc(100vw / 1200);
  }
}
@media screen and (max-width: 960px) {
  main {
    --u: calc(100vw / 1200);
  }
}
@media screen and (max-width: 768px) {
  main {
    --u: calc(100vw / 768);
  }
}
/* ================================================================================
bg dot
================================================================================ */
.bg-dot {
  --color1: var(--color-key);
  --color2: transparent;
  --size: 8px;
  --opacity: 0.5;
}
.bg-dot::before {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color1) 0% 25%, transparent 25% 75%, var(--color1) 75% 100%), linear-gradient(45deg, var(--color1) 0% 25%, transparent 25% 75%, var(--color1) 75% 100%);
  background-color: var(--color2);
  background-size: var(--size) var(--size);
  background-position: 0 0, calc(var(--size) / 2) calc(var(--size) / 2);
  opacity: var(--opacity);
}

/* ================================================================================
firstview
================================================================================ */
.firstview {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 960px) {
  .firstview {
    height: 400px;
  }
}
.firstview .section-inner {
  position: relative;
  height: 100%;
}
.firstview .section-inner .bg-dot {
  --color1: var(--color-key);
  --color2: transparent;
  --size: 8px;
  --opacity: 0.5;
}
.firstview .section-inner .section-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-height: auto;
  text-align: center;
}
.firstview .section-inner .section-header::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../../img/history/bg_firstview.jpg") no-repeat center/cover;
  opacity: 1;
}
.firstview .section-inner .section-header .title-block {
  z-index: 2;
  position: relative;
  padding: 70px 3% 0;
}
@media screen and (max-width: 420px) {
  .firstview .section-inner .section-header .title-block {
    padding-top: 5px;
  }
}
.firstview .section-inner .section-header .title-block picture {
  display: block;
}
@media screen and (max-width: 420px) {
  .firstview .section-inner .section-header .title-block picture {
    margin: 0 auto;
    max-width: 320px;
  }
}
.firstview .section-inner .section-header .title-block .text2 {
  margin-top: 50px;
  padding: 0 20px;
  color: white;
  font-size: clamp(14px, 1.125vw + 0.2rem, 18px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 420px) {
  .firstview .section-inner .section-header .title-block .text2 {
    margin-top: 35px;
  }
}

/* ================================================================================
historySection
================================================================================ */
.historiesSection {
  position: relative;
}
.historiesSection .anchorSection {
  z-index: 10;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 80px;
  pointer-events: none;
}
.historiesSection .anchorSection .sec-area {
  height: 100%;
  max-width: 100%;
  padding: 80px 0 40px;
}
.historiesSection .anchorSection .sec-area ul {
  position: sticky;
  top: 0px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.historiesSection .anchorSection .sec-area ul li {
  margin: 0 0 0 auto;
}
.historiesSection .anchorSection .sec-area ul li a {
  text-decoration: none;
  pointer-events: all;
  color: var(--color-key);
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.historiesSection .anchorSection .sec-area ul li a p {
  color: var(--color-key);
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.historiesSection .anchorSection .sec-area ul li a.current {
  text-decoration: underline;
}
@media (hover: hover) {
  .historiesSection .anchorSection .sec-area ul li a:hover {
    text-decoration: underline;
  }
}

.historySection {
  --colorText: rgba(47, 47, 59, 1);
  position: relative;
  background: white;
  padding: 0 80px;
}
@media screen and (max-width: 960px) {
  .historySection {
    padding: 0 16px;
  }
}
.historySection::after {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, var(--color-key)));
  background: linear-gradient(90deg, transparent 0% 50%, var(--color-key) 50% 100%);
}
.historySection.bg-dot {
  --size: 16px;
  --opacity: 1;
}
.historySection.h1960.bg-dot {
  --color1: rgba(240, 240, 245, 1);
  --color2: rgba(243, 243, 248, 1);
}
.historySection.h1970.bg-dot {
  --color1: rgba(246, 245, 234, 1);
  --color2: rgba(250, 249, 239, 1);
}
.historySection.h1980.bg-dot {
  --color1: rgba(244, 239, 246, 1);
  --color2: rgba(248, 243, 250, 1);
}
.historySection.h1990.bg-dot {
  --color1: rgba(227, 242, 251, 1);
  --color2: rgba(232, 247, 255, 1);
}
.historySection.h2000.bg-dot {
  --color1: rgba(234, 246, 251, 1);
  --color2: rgba(236, 250, 255, 1);
}
.historySection.h2010.bg-dot {
  --color1: rgba(251, 244, 232, 1);
  --color2: rgba(255, 247, 237, 1);
}
.historySection .sec-area {
  z-index: 3;
  position: relative;
  max-width: 100%;
  border-bottom: 2px solid var(--color-key);
  border-left: 15px solid var(--color-key);
  border-right: 2px solid white;
  padding: 125px 0 160px;
}
@media screen and (max-width: 420px) {
  .historySection .sec-area {
    padding: 73px 0 105px;
    border-left-width: 8px;
  }
}
.historySection .pointer {
  position: absolute;
  top: 144px;
  left: -27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  aspect-ratio: 1;
  background: white;
  border: 1px solid var(--color-key);
  border-radius: 50%;
}
@media screen and (max-width: 420px) {
  .historySection .pointer {
    width: 20px;
    top: 94px;
    left: -14px;
  }
}
.historySection .pointer::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: var(--color-key);
  border-radius: 50%;
}
@media screen and (max-width: 420px) {
  .historySection .pointer::before {
    width: 10px;
  }
}
.historySection .year {
  z-index: 1;
  position: absolute;
  top: 150px;
  right: 20px;
  width: 629px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .historySection .year {
    width: calc(360 * var(--u));
  }
}
@media screen and (max-width: 420px) {
  .historySection .year {
    top: 77px;
  }
}
.historySection .titleArea {
  z-index: 2;
  position: relative;
  margin: 0 0 180px 55px;
}
@media screen and (max-width: 768px) {
  .historySection .titleArea {
    margin: 0 0 80px 20px;
  }
}
@media screen and (max-width: 420px) {
  .historySection .titleArea {
    margin-bottom: 59px;
  }
}
.historySection .titleArea p {
  margin: 0 0 0.5em;
  color: var(--color-key);
  font-family: "Noto Serif JP";
  font-size: clamp(16px, 1.125vw + 0.2rem, 18px);
  font-weight: 700;
  letter-spacing: 0.9em;
}
@media screen and (max-width: 420px) {
  .historySection .titleArea p {
    margin-bottom: 0.3em;
  }
}
.historySection .titleArea hr {
  width: 85px;
  border-color: var(--color-key);
  border-width: 2px;
  margin: 0 0 50px;
}
.historySection .titleArea h2 {
  color: var(--color-key);
  font-family: "Noto Serif JP";
  font-size: clamp(28px, 2.75vw + 0.2rem, 44px);
  font-weight: 700;
  letter-spacing: 0.25em;
}
.historySection .historySwiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 55px;
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper {
    margin: 0 20px 0 20px;
  }
}
.historySection .historySwiper .swiper {
  width: calc(793 * var(--u));
  aspect-ratio: 1.4418181818;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .swiper {
    width: 100%;
  }
}
.historySection .historySwiper .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
.historySection .historySwiper .controll {
  position: relative;
  width: 50px;
  background: white;
  padding: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .controll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .controll {
    width: 100%;
    height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .controll {
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 420px) {
  .historySection .historySwiper .controll {
    padding-left: 13px;
  }
}
.historySection .historySwiper .controll .buttonPlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid var(--color-key);
  border-radius: 50%;
  margin: 0 auto 10px;
  -webkit-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
  cursor: pointer;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .controll .buttonPlay {
    width: 35px;
    margin: 0 7px 0 0;
  }
}
.historySection .historySwiper .controll .buttonPlay::before {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1;
  background: var(--color-key);
  -webkit-clip-path: polygon(10% 0%, 10% 100%, 100% 50%);
          clip-path: polygon(10% 0%, 10% 100%, 100% 50%);
  -webkit-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
}
@media (hover: hover) {
  .historySection .historySwiper .controll .buttonPlay:hover {
    background: var(--color-key);
  }
  .historySection .historySwiper .controll .buttonPlay:hover::before {
    background: white;
  }
}
.historySection .historySwiper .controll .buttonPause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  aspect-ratio: 1;
  border: 1px solid var(--color-key);
  border-radius: 50%;
  background: var(--color-key);
  margin: 0 auto 200px;
  -webkit-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
  cursor: pointer;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .controll .buttonPause {
    width: 35px;
    margin: 0;
  }
}
.historySection .historySwiper .controll .buttonPause::before {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-left: 2px solid white;
  border-right: 2px solid white;
  -webkit-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
}
@media (hover: hover) {
  .historySection .historySwiper .controll .buttonPause:hover {
    background: white;
  }
  .historySection .historySwiper .controll .buttonPause:hover::before {
    background: var(--color-key);
  }
}
.historySection .historySwiper .controll .pagination .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  background: white;
  margin: 0;
  -webkit-transition: 0.3s ease-in-out 0s;
  transition: 0.3s ease-in-out 0s;
  opacity: 1;
}
.historySection .historySwiper .controll .pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  background: var(--color-key);
  border-radius: 50%;
}
.historySection .historySwiper .controll .pagination .swiper-pagination-bullet[aria-current=true] {
  border: 1px solid var(--color-key);
}
.historySection .historySwiper .controll .swiper-pagination-wrap {
  position: absolute;
  bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .historySection .historySwiper .controll .swiper-pagination-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 20px 0 auto;
    position: relative;
    bottom: 0;
  }
}
@media screen and (max-width: 420px) {
  .historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination {
    text-align: right;
    position: relative;
    bottom: 0;
  }
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination {
  position: relative;
  width: 20px;
  height: 20px;
  height: inherit;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  display: inline-block;
  outline: none;
}
@media screen and (max-width: 420px) {
  .historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination {
    width: 15px;
    height: 15px;
  }
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination .circle-pagination__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination .circle-pagination__inner:before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-key);
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination .circle-pagination__inner svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-150deg);
      -ms-transform: translate(-50%, -50%) rotate(-150deg);
          transform: translate(-50%, -50%) rotate(-150deg);
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination .circle-pagination__inner circle {
  fill: transparent;
  stroke: var(--color-key);
  stroke-width: 1.5;
  -webkit-animation: circle 5s linear forwards;
          animation: circle 5s linear forwards;
}
@media screen and (max-width: 420px) {
  .historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination .circle-pagination__inner circle {
    cx: 7.5px;
    cy: 7.5px;
    r: 6px;
  }
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .circle-pagination__inner {
  color: var(--color-key);
}
.historySection .historySwiper .controll .swiper-pagination-wrap .swiper-pagination .circle-pagination:not(.swiper-pagination-bullet-active) .circle-pagination__inner svg {
  display: none;
}
.historySection .historySwiper.stop .buttonPlay {
  background: var(--color-key);
}
.historySection .historySwiper.stop .buttonPlay::before {
  background: white;
}
.historySection .historySwiper.stop .buttonPause {
  background: white;
}
.historySection .historySwiper.stop .buttonPause::before {
  border-color: var(--color-key);
}
.historySection .descriptions {
  z-index: 3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(10 * var(--u));
  margin: -70px 0 0;
}
@media screen and (max-width: 768px) {
  .historySection .descriptions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .historySection .descriptions {
    margin: 10px 0 0;
  }
}
.historySection .descriptions .chronologyArea {
  padding: 160px 0 0;
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea {
    margin: -100px 0 0;
  }
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .chronologyArea {
    margin-top: -74px;
  }
}
.historySection .descriptions .chronologyArea h3 {
  margin: 0 0 55px -14px;
  color: white;
  font-family: "Noto Serif JP";
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .chronologyArea h3 {
    font-size: 10px;
    margin: 0 0 55px -9px;
  }
}
.historySection .descriptions .chronologyArea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin: 0 0 0 -17px;
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .chronologyArea ul {
    gap: 35px;
    margin-left: -10px;
  }
}
.historySection .descriptions .chronologyArea ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea ul li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.historySection .descriptions .chronologyArea ul li .mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid var(--color-key);
  border-radius: 50%;
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .chronologyArea ul li .mark {
    width: 12px;
    height: 12px;
  }
}
.historySection .descriptions .chronologyArea ul li .mark::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1;
  background: var(--color-key);
  border-radius: 50%;
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .chronologyArea ul li .mark::before {
    width: 6px;
  }
}
.historySection .descriptions .chronologyArea ul li hr {
  width: 20px;
  margin: 10px 25px 0 0;
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .chronologyArea ul li hr {
    width: 24px;
    margin: 5px 15px 0 0;
  }
}
.historySection .descriptions .chronologyArea ul li .text1 {
  width: calc(90 * var(--u));
  color: var(--color-key);
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea ul li .text1 {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea ul li .text1 {
    margin: -10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea ul li .text1 {
    font-size: 18px;
  }
}
.historySection .descriptions .chronologyArea ul li .text2 {
  width: calc(330 * var(--u));
  color: var(--color-key);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .chronologyArea ul li .text2 {
    width: 100%;
    padding: 19px 40px 0 51px;
  }
}
.historySection .descriptions .textArea {
  display: block;
  max-width: 640px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: white;
  padding: 80px calc(120 * var(--u)) 100px;
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .textArea {
    padding: 45px 40px;
  }
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .textArea {
    padding: 38px 30px;
  }
}
@media screen and (max-width: 768px) {
  .historySection .descriptions .textArea {
    margin: 0 20px;
  }
}
.historySection .descriptions .textArea hr {
  width: 30px;
  border-color: var(--colorText);
  margin: 0 0 45px;
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .textArea hr {
    margin-bottom: 28px;
  }
}
.historySection .descriptions .textArea p {
  color: var(--colorText);
  font-size: clamp(14px, 1vw + 0.2rem, 16px);
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 420px) {
  .historySection .descriptions .textArea p {
    line-height: 2;
  }
}

@-webkit-keyframes circle {
  0% {
    stroke-dasharray: 0 69;
  }
  99.9%, to {
    stroke-dasharray: 69 69;
  }
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 69;
  }
  99.9%, to {
    stroke-dasharray: 69 69;
  }
}