@charset "UTF-8";
@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translate(-80%, 80%);
            transform: translate(-80%, 80%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@keyframes transformLeftRight {
  0% {
    -webkit-transform: translate(-80%, 80%);
            transform: translate(-80%, 80%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(80%, -80%);
            transform: translate(80%, -80%);
    opacity: 0;
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(80%, -80%);
            transform: translate(80%, -80%);
    opacity: 0;
  }
}
/* ==========================================================================//
//
// 会社を知る
//
// ========================================================================== */
/* 扉メニュー
---------------------------------------------------------- */
.sec_com_menu {
  padding: 100px 0;
}
@media all and (max-width: 750px) {
  .sec_com_menu {
    padding: 30px 0 60px;
  }
}
.sec_com_menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media all and (min-width: 751px) {
  .sec_com_menu ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.sec_com_menu ul li a {
  height: 234px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
@media all and (min-width: 751px) {
  .sec_com_menu ul li a {
    height: 302px;
  }
}
.sec_com_menu ul li a img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.sec_com_menu ul li a span {
  position: absolute;
  background-image: url(../../images/company/com_menu_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (min-width: 751px) {
  .sec_com_menu ul li a span {
    font-size: 24px;
    height: 80px;
  }
}
.sec_com_menu ul li a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* 共通フッターComapnyメニュー
---------------------------------------------------------- */
.company_menu {
  padding: 100px 0;
}
@media all and (max-width: 750px) {
  .company_menu {
    padding: 30px 0 40px;
  }
}
.company_menu .company_menu_ttl {
  margin-bottom: 20px;
  position: relative;
}
.company_menu .company_menu_ttl span {
  display: block;
  text-align: center;
}
.company_menu .company_menu_ttl .en {
  font-weight: 200;
  font-size: 22px;
  line-height: 1.08;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-weight: 600;
}
@media screen and (min-width: 1151px) {
  .company_menu .company_menu_ttl .en {
    font-size: 32px;
  }
}
.company_menu .company_menu_ttl .jp {
  font-weight: 400;
  font-size: 12px;
  line-height: 2.15;
  margin-top: 10px;
}
@media screen and (min-width: 1151px) {
  .company_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 1150px) {
  .company_menu ul li {
    margin-bottom: 20px;
  }
}
.company_menu ul li.current {
  display: none;
}
.company_menu ul a {
  text-align: center;
  display: block;
  color: #46D375;
}
.company_menu ul a .company_menu_image {
  border-radius: 10px;
  overflow: hidden;
}
.company_menu ul a .company_menu_image img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.company_menu ul a span {
  display: block;
  margin-top: 10px;
}
.company_menu ul a:hover .company_menu_image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.head_line {
  padding: 20px 0 60px;
  font-size: 16px;
}
@media screen and (min-width: 1151px) {
  .head_line {
    font-size: 20px;
    padding: 60px 0;
  }
}

/* 会社概要
---------------------------------------------------------- */
#pageOutline .page_body {
  padding: 0 0 60px 0;
}
@media all and (min-width: 751px) {
  #pageOutline .page_body {
    padding: 110px 0 0;
  }
}
#pageOutline section {
  background: #fff;
  border-radius: 10px;
  padding: 20px 20px 40px 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1151px) {
  #pageOutline section {
    border-radius: 20px;
    padding: 40px 40px 80px 40px;
  }
}
#pageOutline section .sec_ttl {
  margin-top: 20px;
}
#pageOutline section .sec_ttl .en {
  color: #46D375;
}
@media screen and (min-width: 1151px) {
  #pageOutline section .sec_ttl .en {
    font-size: 46px;
  }
}
#pageOutline section .outline_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
#pageOutline section .outline_list li span {
  width: 23%;
  padding: 15px 0;
  border-bottom: 1px solid #46D375;
}
@media screen and (min-width: 1151px) {
  #pageOutline section .outline_list li span {
    width: 16%;
    padding: 35px 0;
  }
}
#pageOutline section .outline_list li .outline_text {
  width: 77%;
  padding: 15px 0 15px 15px;
  border-bottom: 1px solid #E2E2E2;
  position: unset;
}
@media screen and (min-width: 1151px) {
  #pageOutline section .outline_list li .outline_text {
    width: 84%;
    padding: 35px 0 35px 35px;
  }
  #pageOutline section .outline_list li .outline_text p {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1151px) {
  #pageOutline section .outline_list li.map iframe {
    width: 600px;
    height: 450px;
  }
}
@media screen and (max-width: 1150px) {
  #pageOutline section .outline_list li.map span {
    border-bottom: none;
  }
  #pageOutline section .outline_list li.map .outline_text {
    border-bottom: none;
  }
}
@media screen and (max-width: 1150px) {
  #pageOutline section .outline_list .map_wrap {
    padding: 0 0 10px;
    position: relative;
  }
  #pageOutline section .outline_list .map_wrap iframe {
    width: 100%;
    height: 220px;
  }
  #pageOutline section .outline_list .map_wrap::before, #pageOutline section .outline_list .map_wrap::after {
    position: absolute;
    content: "";
    height: 1px;
    bottom: 0;
  }
  #pageOutline section .outline_list .map_wrap::before {
    width: 23%;
    left: 0;
    background: #46D375;
  }
  #pageOutline section .outline_list .map_wrap::after {
    width: 77%;
    background: #E2E2E2;
    right: 0;
  }
}
#pageOutline section .award_list {
  display: -ms-grid;
  display: grid;
  gap: 40px 20px;
  grid-template-columns: repeat(auto-fit, 250px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#pageOutline section.sec_about {
  margin-top: 30px;
}
#pageOutline section.sec_award {
  margin-bottom: 0px;
}

/* 企業理念
---------------------------------------------------------- */
#pagePhilosophy .sec_ttl {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  #pagePhilosophy .sec_ttl {
    margin-bottom: 40px;
  }
}
#pagePhilosophy section {
  padding-top: 80px;
}
#pagePhilosophy section .over_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#pagePhilosophy .over_container_info {
  margin: 0 auto 40px;
}
#pagePhilosophy .philosophy_list {
  padding: 50px 0 0;
}
@media all and (min-width: 751px) {
  #pagePhilosophy .philosophy_list {
    padding: 100px 0 0;
  }
}
#pagePhilosophy .philosophy_list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#pagePhilosophy .philosophy_list li {
  float: unset;
  height: auto;
  margin: 0 15px;
  position: relative;
}
#pagePhilosophy .philosophy_list li .philosophy_content {
  height: 100%;
  background: #EAFFD3;
  border-radius: 12px;
  padding: 35px 20px 20px 20px;
  margin: 30px 0 0;
}
#pagePhilosophy .philosophy_list li .philosophy_content img {
  width: 50%;
  max-width: 136px;
  margin: 20px auto;
}
#pagePhilosophy .philosophy_list li .philosophy_number {
  position: absolute;
  width: 83px;
  height: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#pagePhilosophy .philosophy_list li .philosophy_text span {
  font-size: 20px;
  display: block;
  margin: 15px 0;
}

/* 事業紹介
---------------------------------------------------------- */
#pageService .sec_service_menu {
  text-align: center;
  padding-top: 20px;
}
@media all and (min-width: 751px) {
  #pageService .sec_service_menu {
    padding-top: 60px;
  }
}
#pageService .sec_service_menu h2 span {
  display: block;
  background: #46D375;
  border-radius: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  padding: 0px 10px;
  margin: 12px auto;
}
@media all and (min-width: 751px) {
  #pageService .sec_service_menu h2 span {
    font-size: 32px;
  }
}
#pageService .sec_service_menu p {
  margin: 20px 0 0;
  display: block;
}
@media all and (min-width: 751px) {
  #pageService .sec_service_menu p {
    margin: 40px 0 0;
  }
}
#pageService .sec_service_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
@media all and (min-width: 751px) {
  #pageService .sec_service_menu ul {
    gap: 10px;
    margin: 60px 0;
  }
}
#pageService .sec_service_menu ul li {
  width: 294px;
}
#pageService .sec_service_menu ul li a {
  text-align: center;
  color: #fff;
  padding: 15px;
  display: block;
  border-radius: 12px;
  font-size: 18px;
  position: relative;
}
@media all and (min-width: 751px) {
  #pageService .sec_service_menu ul li a {
    padding: 20px;
    font-size: 20px;
  }
}
#pageService .sec_service_menu ul li a span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  #pageService .sec_service_menu ul li a span {
    font-size: 37px;
  }
}
#pageService .sec_service_menu ul li a::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  background-size: cover;
  background-repeat: no-repeat;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#pageService .sec_service_menu ul li a:hover::after {
  top: 60%;
}
#pageService .sec_service_menu ul li:nth-child(1) a {
  background: linear-gradient(30deg, #99f4f0, #82adf4);
}
#pageService .sec_service_menu ul li:nth-child(1) a::after {
  background-image: url(../../images/company/service/arrow01.png);
}
#pageService .sec_service_menu ul li:nth-child(2) a {
  background: linear-gradient(30deg, #929de0, #ed69d8);
}
#pageService .sec_service_menu ul li:nth-child(2) a::after {
  background-image: url(../../images/company/service/arrow02.png);
}
#pageService .sec_service_menu ul li:nth-child(3) a {
  background: linear-gradient(30deg, #efde87, #f7a365);
}
#pageService .sec_service_menu ul li:nth-child(3) a::after {
  background-image: url(../../images/company/service/arrow03.png);
}
#pageService .sec_service_menu ul li:nth-child(4) a {
  background: linear-gradient(30deg, #50e2a0, #70eaea);
}
#pageService .sec_service_menu ul li:nth-child(4) a::after {
  background-image: url(../../images/company/service/arrow04.png);
}
#pageService .sec_service_menu ul li:nth-child(5) a {
  background: linear-gradient(30deg, #f7ca56, #f557c8);
}
#pageService .sec_service_menu ul li:nth-child(5) a::after {
  background-image: url(../../images/company/service/arrow05.png);
}
@media all and (min-width: 751px) {
  #pageService .service_wrap {
    margin: 40px 20px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
#pageService .service_wrap .service_image {
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
}
@media all and (min-width: 751px) {
  #pageService .service_wrap .service_image {
    border-radius: 20px;
    width: 434px;
    margin: 0;
  }
}
@media all and (min-width: 751px) {
  #pageService .service_wrap .service_text {
    width: calc(100% - 434px);
  }
}
#pageService .service_wrap .service_text span {
  font-size: 16px;
}
@media all and (min-width: 751px) {
  #pageService .service_wrap .service_text span {
    font-size: 24px;
  }
}
#pageService .service_wrap .service_text p {
  margin: 10px 0 20px;
  line-height: 1.8;
}
@media all and (min-width: 751px) {
  #pageService .service_wrap .service_text p {
    margin: 30px 0 0;
  }
}
#pageService .service_point {
  background: #EAFFD3;
  border-radius: 10px;
  padding: 20px;
  margin: 0 auto 40px;
}
@media all and (min-width: 751px) {
  #pageService .service_point {
    border-radius: 20px;
    margin: 0 auto 60px;
    padding: 40px;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#pageService .service_point span {
  margin: 0 20px 0 0;
}
@media all and (max-width: 750px) {
  #pageService .service_point span {
    border-bottom: 2px solid #c7dbb1;
    margin: 0 auto 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    padding: 6px;
    font-size: 16px;
  }
}
@media all and (min-width: 751px) {
  #pageService .service_point ul {
    border-left: 2px solid #c7dbb1;
  }
}
#pageService .service_point ul li {
  margin: 15px 0;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  #pageService .service_point ul li {
    margin: 0 0 10px 20px;
  }
}
#pageService .service_point ul li::before {
  content: "・";
}
@media all and (min-width: 751px) {
  #pageService .service_point ul li:last-child {
    margin: 0 0 0 20px;
  }
}
#pageService .sec_service05 .service_point {
  margin: 0 auto;
}
#pageService .green_back .service_point {
  background: #fff;
}

/* データで見る
---------------------------------------------------------- */
#pageData section {
  margin-bottom: 58px;
}
@media all and (min-width: 751px) {
  #pageData section {
    margin-bottom: 100px;
  }
}
#pageData .sec_ttl {
  margin-bottom: 44px;
}
@media all and (min-width: 751px) {
  #pageData .sec_ttl {
    margin-bottom: 58px;
  }
}
#pageData .sec_e-demo {
  padding-top: 50px;
}
@media all and (min-width: 751px) {
  #pageData .sec_e-demo {
    padding-top: 110px;
  }
}
#pageData .sec_e-pref {
  margin-bottom: 0;
}
@media all and (min-width: 751px) {
  #pageData .data_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#pageData .data_list li {
  margin: 0 0 20px;
}
@media all and (min-width: 751px) {
  #pageData .data_list li {
    width: calc(50% - 10px);
  }
}
#pageData .data_list li.full_width {
  width: 100%;
}
#pageData .data_list li.full_width.slide {
  overflow: scroll;
  position: relative;
  width: calc(100% + 20px);
}
#pageData .data_list li.full_width.slide .slide_inner {
  display: block;
  min-width: 900px;
}

/* ヒストリー
---------------------------------------------------------- */
#pageHistory .page_body {
  overflow: unset;
}
@media all and (max-width: 750px) {
  #pageHistory .page_body {
    padding: 0 0 20px;
  }
}
@media all and (max-width: 750px) {
  #pageHistory .stone {
    display: none;
  }
}
#pageHistory .histories {
  position: relative;
  padding: 30px 0 0;
}
@media all and (min-width: 751px) {
  #pageHistory .histories {
    padding: 60px 0 0;
  }
}
#pageHistory .histories::after {
  content: "";
  position: absolute;
  background: #4fe8e8;
  height: 0; /* 初期状態 */
  top: 75px;
  left: 40px;
  width: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: height 10s ease;
  transition: height 10s ease;
}
@media all and (min-width: 751px) {
  #pageHistory .histories::after {
    top: 133px;
    left: 50%;
    width: 4px;
  }
}
#pageHistory .histories.animate::after {
  height: calc(100% - 55px);
}
@media all and (min-width: 751px) {
  #pageHistory .histories.animate::after {
    height: calc(90% - 133px);
  }
}
#pageHistory .year {
  width: 81px;
  position: relative;
  padding: 20px 0 20px;
  z-index: 1;
  background: #EAFFD3;
}
@media all and (min-width: 751px) {
  #pageHistory .year {
    width: 169px;
    margin: 0 auto;
    padding: 30px 0 20px;
  }
}
#pageHistory .year::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #4fe8e8;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 20px;
}
@media all and (min-width: 751px) {
  #pageHistory .year::after {
    width: 18px;
    height: 18px;
    bottom: -18px;
  }
}
#pageHistory .year.now {
  padding: 20px 0 20px;
}
@media all and (min-width: 751px) {
  #pageHistory .year.now {
    padding: 30px 0 30px;
  }
}
@media all and (min-width: 751px) {
  #pageHistory .year.now::after {
    content: none;
  }
}
#pageHistory .history_wrap {
  position: relative;
}
@media all and (max-width: 750px) {
  #pageHistory .history_wrap {
    margin: 20px 0 0 auto;
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 751px) {
  #pageHistory .history_wrap {
    margin: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
  #pageHistory .history_wrap.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
}
#pageHistory .history_wrap .history_image {
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}
@media all and (min-width: 751px) {
  #pageHistory .history_wrap .history_image {
    width: 50%;
    border-radius: 20px;
  }
}
#pageHistory .history_wrap .history_text {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 750px) {
  #pageHistory .history_wrap .history_text {
    margin: 20px 0 0;
  }
}
@media all and (min-width: 751px) {
  #pageHistory .history_wrap .history_text {
    width: 50%;
  }
}
#pageHistory .history_wrap .history_text span {
  font-size: 18px;
  margin: 0 0 10px;
  position: relative;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left 18px;
  background-size: 100% 6px;
  display: inline;
}
@media all and (min-width: 751px) {
  #pageHistory .history_wrap .history_text span {
    font-size: 30px;
    background-position: left 38px;
  }
}
#pageHistory .history_wrap .history_text p {
  margin: 10px 0 0;
}
@media all and (min-width: 751px) {
  #pageHistory .history_wrap.now {
    position: relative;
    width: 680px;
    margin: 0px auto;
    display: block;
    z-index: 1;
  }
  #pageHistory .history_wrap.now .history_image {
    width: 100%;
  }
  #pageHistory .history_wrap.now .history_text {
    width: 100%;
  }
  #pageHistory .history_wrap.now .history_text span {
    margin: 30px auto 20px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#pageHistory #year1965 .stone.blue {
  margin: -9% auto auto -9%;
  width: 10.2vw;
  height: 9vw;
}
@media all and (max-width: 750px) {
  #pageHistory #year1965 .stone.blue {
    margin: -14% auto auto -5%;
    width: 24.8vw;
    height: 22vw;
  }
}
#pageHistory #year1965 .stone.blue2 {
  margin: -9% auto auto 87%;
  width: 7.6vw;
  height: 7vw;
}
@media all and (max-width: 750px) {
  #pageHistory #year1965 .stone.blue2 {
    margin: 28% auto auto -20%;
    width: 18.2vw;
    height: 17vw;
  }
}
#pageHistory #year1965 .stone.pink2 {
  margin: 35% auto auto 4%;
  width: 9.6vw;
  height: 9vw;
}
@media all and (max-width: 750px) {
  #pageHistory #year1965 .stone.pink2 {
    margin: 41% auto auto -32%;
    width: 13.6vw;
    height: 13vw;
  }
}
#pageHistory #year1965 .stone.yellow {
  margin: 22% auto auto 85%;
  width: 15.6vw;
  height: 14vw;
}
@media all and (max-width: 750px) {
  #pageHistory #year1965 .stone.yellow {
    margin: 41% auto auto -32%;
    width: 13.6vw;
    height: 13vw;
  }
}
#pageHistory #year1965 .stone.emerald {
  margin: 33% auto auto -6%;
  width: 4.6vw;
  height: 5vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media all and (max-width: 750px) {
  #pageHistory #year1965 .stone.emerald {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1970 .stone.emerald {
  margin: 12% -10% auto auto;
  width: 14.4vw;
  height: 14vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media all and (max-width: 750px) {
  #pageHistory #year1970 .stone.emerald {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1979 .stone.purple {
  margin: -26% auto auto -8%;
  width: 17.4vw;
  height: 16vw;
  opacity: 0.8;
}
@media all and (max-width: 750px) {
  #pageHistory #year1979 .stone.purple {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1994 .stone.blue {
  margin: -34% 4% auto auto;
  width: 9vw;
  height: 8vw;
  -webkit-transform: rotate(163deg);
          transform: rotate(163deg);
}
@media all and (max-width: 750px) {
  #pageHistory #year1994 .stone.blue {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1994 .stone.orange {
  margin: -26% 71% auto auto;
  width: 13vw;
  height: 12vw;
  -webkit-transform: rotate(-141deg);
          transform: rotate(-141deg);
  opacity: 0.6;
}
@media all and (max-width: 750px) {
  #pageHistory #year1994 .stone.orange {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1998 .stone.blue3 {
  margin: -37% auto auto -1%;
  width: 8.65vw;
  height: 8vw;
  -webkit-transform: rotate(187deg);
          transform: rotate(187deg);
}
@media all and (max-width: 750px) {
  #pageHistory #year1998 .stone.blue3 {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1998 .stone.emerald {
  margin: -30% auto auto -9%;
  width: 4.59vw;
  height: 5vw;
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  opacity: 0.6;
}
@media all and (max-width: 750px) {
  #pageHistory #year1998 .stone.emerald {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1998 .stone.pink3 {
  margin: -43% auto auto 80%;
  width: 15.59vw;
  height: 18vw;
  opacity: 0.8;
}
@media all and (max-width: 750px) {
  #pageHistory #year1998 .stone.pink3 {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year1998 .stone.blue {
  margin: 6% auto auto 97%;
  width: 10.2vw;
  height: 9vw;
  -webkit-transform: rotate(-209deg);
          transform: rotate(-209deg);
  opacity: 0.6;
}
@media all and (max-width: 750px) {
  #pageHistory #year1998 .stone.blue {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year2020 .stone.blue {
  margin: -60% auto auto -11%;
  width: 14.7vw;
  height: 13vw;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
}
@media all and (max-width: 750px) {
  #pageHistory #year2020 .stone.blue {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year2020 .stone.pink {
  margin: 2% auto auto -21%;
  width: 8.2vw;
  height: 8vw;
  -webkit-transform: rotate(-11deg);
          transform: rotate(-11deg);
  opacity: 0.6;
}
@media all and (max-width: 750px) {
  #pageHistory #year2020 .stone.pink {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year2020 .stone.purple {
  margin: -2% auto auto 85%;
  width: 20.2vw;
  height: 18vw;
  -webkit-transform: rotate(114deg);
          transform: rotate(114deg);
  opacity: 0.6;
}
@media all and (max-width: 750px) {
  #pageHistory #year2020 .stone.purple {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}
#pageHistory #year2020 .stone.yellow2 {
  margin: -28% auto auto 101%;
  width: 8.2vw;
  height: 9vw;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
@media all and (max-width: 750px) {
  #pageHistory #year2020 .stone.yellow2 {
    margin: -25% auto auto 11%;
    width: 22.6vw;
    height: 22vw;
  }
}