@charset "UTF-8";
/* ==========================================================
    clamp vw自動算出
========================================================== */
/* ==========================================================
  base style
========================================================== */
:root {
  --blue: #004ea2;
  --orng: #ED663F;
}

/* ==========================================================
  common
========================================================== */
#wrapper {
  letter-spacing: 0.075em;
}

.u-font-B {
  font-weight: 500;
}

/* ==========================================================
  contents
========================================================== */
.mv {
  width: 100%;
  height: 860px;
  background: url(../img/mv_bg.jpg) top left/cover no-repeat;
  background: url(../img/mv_bg.webp) top left/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .mv {
    height: 760px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 550px;
    background: url(../img/mv_bg_sp.jpg) top center/cover no-repeat;
    background: url(../img/mv_bg_sp.webp) top center/cover no-repeat;
  }
}
@media screen and (max-width: 520px) {
  .mv {
    height: 370px;
  }
}
.mv .mv__cont {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .mv .mv__cont {
    top: 47%;
  }
}
.mv .mv__cont .cont-sub {
  font-size: clamp(16px, 16px + 18 * (100vw - 320px) / 880, 34px);
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 6px var(--blue), 0 0 10px var(--blue);
}
.mv .mv__cont .cont-ttl {
  text-align: center;
  margin: clamp(20px, 20px + 30 * (100vw - 320px) / 880, 50px) auto clamp(10px, 10px + 30 * (100vw - 320px) / 880, 40px);
}
.mv .mv__cont .cont-ttl img {
  width: min(90%, 860px);
}
.mv .mv__cont .cont-date {
  text-align: center;
}
.mv .mv__cont .cont-date img {
  width: min(70%, 422px);
}
.mv .mv__deco {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mv .mv__overlay { /* comingsoon */
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-content: center;
}
.mv .mv__overlay p {
  font-size: clamp(60px, 60px + 20 * (100vw - 320px) / 880, 80px);
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 20px;
}

/* アンカーリンク */
.anchor-link {
  background: var(--orng);
}
.anchor-link--fixed { /* floatinh */
  display: none;
}
.anchor-link--fixed.fixed {
  display: block;
  width: 100%;
  position: fixed; /* スクロール後に固定 */
  top: 96px;
  right: 0;
  padding-bottom: calc(1px + env(safe-area-inset-bottom)); /* Safe Area Insets */
  z-index: 100;
  animation: 0.3s linear fadeIn;
}
@media screen and (max-width: 1200px) {
  .anchor-link--fixed.fixed {
    top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .anchor-link--fixed.fixed {
    top: 58px;
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.anchor-link--fixed .anchor-link__list {
  padding: 5px 0 !important;
}
@media screen and (max-width: 768px) {
  .anchor-link--fixed .anchor-link__list {
    padding: 5px !important;
  }
}
.anchor-link--fixed .anchor-link__list .item a span {
  font-size: clamp(10px, 10px + 5 * (100vw - 320px) / 880, 15px) !important;
  margin: 0 0 5px !important;
  min-height: 36px !important;
}
@media screen and (max-width: 768px) {
  .anchor-link--fixed .anchor-link__list .item a span {
    min-height: 50px !important;
  }
}
@media screen and (max-width: 520px) {
  .anchor-link--fixed .anchor-link__list .item a span {
    min-height: 38px !important;
  }
}
.anchor-link .anchor-link__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px);
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .anchor-link .anchor-link__list {
    padding: 5px;
  }
}
.anchor-link .anchor-link__list .item a {
  display: block;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 5px;
}
.anchor-link .anchor-link__list .item a span {
  display: grid;
  place-content: center;
  font-size: clamp(12px, 12px + 6 * (100vw - 320px) / 880, 18px);
  line-height: 1.2;
  min-height: 40px;
  margin: 5px 0 10px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .anchor-link .anchor-link__list .item a span {
    min-height: 50px;
  }
}
@media screen and (max-width: 520px) {
  .anchor-link .anchor-link__list .item a span {
    margin: 0 0 5px;
  }
}
.anchor-link .anchor-link__list .item a span.small {
  font-size: clamp(11px, 11px + 5 * (100vw - 320px) / 880, 16px);
}
.anchor-link .anchor-link__list .item a p {
  display: block;
  width: 100%;
  padding: 5px;
  background: #ED9176;
  display: grid;
  place-content: center;
  position: relative;
}
@media screen and (max-width: 520px) {
  .anchor-link .anchor-link__list .item a p {
    padding: 3px;
  }
}
.anchor-link .anchor-link__list .item a p::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--orng);
  transform: scaleX(0);
  transition: 0.3s;
  transition-property: transform;
}
.anchor-link .anchor-link__list .item a p i {
  display: block;
  width: 15px;
  height: 8px;
  -webkit-mask-image: url(../img/icon_arw.svg);
          mask-image: url(../img/icon_arw.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
}
@media screen and (max-width: 520px) {
  .anchor-link .anchor-link__list .item a p i {
    width: 11px;
    height: 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .anchor-link .anchor-link__list .item a:hover:hover span {
    letter-spacing: 0.17em;
  }
  .anchor-link .anchor-link__list .item a:hover:hover p::before {
    transform: scaleY(1);
  }
}

.anchor-jump-link {
  margin-top: -176px;
  padding-top: 176px;
}
@media screen and (max-width: 1200px) {
  .anchor-jump-link {
    margin-top: -80px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .anchor-jump-link {
    margin-top: -74px;
    padding-top: 74px;
  }
}

/* 共通見出し */
.sec-headline {
  position: relative;
  padding-bottom: 140px;
}
@media screen and (max-width: 520px) {
  .sec-headline {
    padding-bottom: 70px;
  }
}
.sec-headline .bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: hidden;
}
.sec-headline .bg img {
  width: 104%;
  height: auto;
}
.sec-headline .ttl {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 520px) {
  .sec-headline .ttl {
    top: 30px;
  }
}
.sec-headline .ttl img {
  width: auto;
  height: 88px;
}
@media screen and (max-width: 520px) {
  .sec-headline .ttl img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.sec-headline .ttl--sec04 img {
  width: auto;
  height: 114px;
}
@media screen and (max-width: 520px) {
  .sec-headline .ttl--sec04 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

/* sec01 */
#sec01 {
  padding-bottom: clamp(50px, 50px + 50 * (100vw - 320px) / 880, 100px);
}
#sec01 .sec01__cont .sec-bnr01 {
  margin-bottom: clamp(30px, 30px + 30 * (100vw - 320px) / 880, 60px);
}
#sec01 .sec01__cont .sec-bnr02-ttl {
  margin-bottom: clamp(13px, 13px + 7 * (100vw - 320px) / 880, 20px);
  text-align: center;
}
#sec01 .sec01__cont .sec-bnr02-ttl img {
  width: min(30%, 262px);
}
@media screen and (max-width: 960px) {
  #sec01 .sec01__cont .sec-bnr02-ttl img {
    width: 25%;
  }
}
@media screen and (max-width: 520px) {
  #sec01 .sec01__cont .sec-bnr02-ttl img {
    width: 45%;
  }
}
#sec01 .sec01__cont .sec-bnr02 img {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #sec01 .sec01__cont .sec-bnr02:hover:hover img {
    transform: scale(0.98);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  }
}

/* sec02 */
#sec02 {
  padding-bottom: clamp(50px, 50px + 50 * (100vw - 320px) / 880, 100px);
}
#sec02 .sec02__cont .sec-bnr01 {
  margin-bottom: clamp(30px, 30px + 30 * (100vw - 320px) / 880, 60px);
}

/* sec03 */
#sec03 {
  padding-bottom: clamp(50px, 50px + 75 * (100vw - 320px) / 880, 125px);
}
#sec03 #gmap {
  width: min(100%, 1024px);
  margin: clamp(10px, 10px + 20 * (100vw - 320px) / 880, 30px) auto clamp(50px, 50px + 30 * (100vw - 320px) / 880, 80px);
}
#sec03 .sec03__prop-list {
  display: grid;
  grid-template-columns: auto;
  gap: clamp(50px, 50px + 40 * (100vw - 320px) / 880, 90px);
}
#sec03 .sec03__prop-list .list-wrap .area-ttl {
  text-align: center;
  margin-bottom: clamp(15px, 15px + 15 * (100vw - 320px) / 880, 30px);
}
#sec03 .sec03__prop-list .list-wrap .area-ttl span {
  font-size: clamp(22px, 22px + 4 * (100vw - 320px) / 880, 26px);
  line-height: 1.2;
  position: relative;
}
#sec03 .sec03__prop-list .list-wrap .area-ttl span::before {
  content: "";
  background: url(../img/sub-ttl_deco.svg) center/cover no-repeat;
  width: 42px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}
@media screen and (max-width: 520px) {
  #sec03 .sec03__prop-list .list-wrap .area-ttl span::before {
    width: 30px;
    height: 5px;
    left: -50px;
  }
}
#sec03 .sec03__prop-list .list-wrap .area-ttl span::after {
  content: "";
  background: url(../img/sub-ttl_deco.svg) center/cover no-repeat;
  width: 42px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -56px;
  transform: translateY(-50%);
}
@media screen and (max-width: 520px) {
  #sec03 .sec03__prop-list .list-wrap .area-ttl span::after {
    width: 30px;
    height: 5px;
    right: -46px;
  }
}
#sec03 .sec03__prop-list .list-wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #sec03 .sec03__prop-list .list-wrap ul {
    gap: 10px;
  }
}
#sec03 .sec03__prop-list .list-wrap ul li {
  width: calc((100% - 80px) / 3);
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #sec03 .sec03__prop-list .list-wrap ul li {
    width: calc((100% - 10px) / 2);
  }
}
#sec03 .sec03__prop-list .list-wrap ul li .item {
  padding: clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px) clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px) 0;
}
#sec03 .sec03__prop-list .list-wrap ul li .item .item-pic {
  background: #fff;
}
#sec03 .sec03__prop-list .list-wrap ul li .item .item-pic img {
  aspect-ratio: 314/210;
  -o-object-fit: contain;
     object-fit: contain;
}
#sec03 .sec03__prop-list .list-wrap ul li .item .name {
  text-align: center;
  font-size: clamp(13px, 13px + 8 * (100vw - 320px) / 880, 21px);
  line-height: 1.3;
  padding: clamp(10px, 10px + 10 * (100vw - 320px) / 880, 20px) 0;
}
#sec03 .sec03__prop-list .list-wrap ul li .link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px);
  padding: 0 clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px) clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px);
}
@media screen and (max-width: 768px) {
  #sec03 .sec03__prop-list .list-wrap ul li .link {
    padding: 0;
    grid-template-columns: auto;
    gap: 0;
  }
}
#sec03 .sec03__prop-list .list-wrap ul li .link .link-btn {
  height: 44px;
  background: var(--blue);
  border: 1px solid var(--blue);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn {
    height: 35px;
  }
}
#sec03 .sec03__prop-list .list-wrap ul li .link .link-btn::before {
  content: "";
}
#sec03 .sec03__prop-list .list-wrap ul li .link .link-btn span {
  font-size: clamp(12px, 12px + 4 * (100vw - 320px) / 880, 16px);
  text-align: center;
  color: #fff;
  transition: all 0.3s;
}
#sec03 .sec03__prop-list .list-wrap ul li .link .link-btn i {
  justify-self: end;
  margin-right: 10px;
  -webkit-mask-image: url(../img/icon_arw.svg);
          mask-image: url(../img/icon_arw.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
  width: 12px;
  height: 6px;
  transform: rotate(-90deg);
}
@media (hover: hover) and (pointer: fine) {
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn:hover:hover {
    background: #fff;
  }
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn:hover:hover span {
    color: var(--blue);
    letter-spacing: 0.17em;
  }
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn:hover:hover i {
    background: var(--blue);
  }
}
#sec03 .sec03__prop-list .list-wrap ul li .link .link-btn--rsrv {
  background: var(--orng);
  border: 1px solid var(--orng);
  transition: all 0.3s;
}
#sec03 .sec03__prop-list .list-wrap ul li .link .link-btn--rsrv span {
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn--rsrv:hover:hover {
    background: #fff;
  }
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn--rsrv:hover:hover span {
    color: var(--orng);
    letter-spacing: 0.17em;
  }
  #sec03 .sec03__prop-list .list-wrap ul li .link .link-btn--rsrv:hover:hover i {
    background: var(--orng);
  }
}
#sec03 .sec03__prop-list .list-wrap ul li.soldout {
  position: relative;
  filter: grayscale(1);
}
#sec03 .sec03__prop-list .list-wrap ul li.soldout::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#sec03 .sec03__prop-list .list-wrap ul li.soldout .soldout-msg {
  width: 100%;
  text-align: center;
  font-size: clamp(16px, 16px + 4 * (100vw - 320px) / 880, 20px);
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* sec04 */
#sec04 {
  padding-bottom: clamp(70px, 70px + 70 * (100vw - 320px) / 880, 140px);
}
#sec04 .sec04__lead p {
  font-size: clamp(16px, 16px + 2 * (100vw - 320px) / 880, 18px);
  line-height: 1.8;
  text-align: center;
  margin-bottom: clamp(30px, 30px + 40 * (100vw - 320px) / 880, 70px);
}
#sec04 .sec04__desc-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 40px + 60 * (100vw - 320px) / 880, 100px);
}
#sec04 .sec04__desc-wrap .desc-list {
  display: flex;
  gap: 40px;
}
#sec04 .sec04__desc-wrap .desc-list .img-item {
  width: calc((100% - 40px) / 2);
}
#sec04 .sec04__desc-wrap .desc-list .img-item--1st {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  #sec04 .sec04__desc-wrap .desc-list .img-item {
    display: none;
  }
}
#sec04 .sec04__desc-wrap .desc-list .desc-item {
  width: calc((100% - 40px) / 2);
}
#sec04 .sec04__desc-wrap .desc-list .desc-item--1st {
  width: calc((100% - 40px) / 3 * 2);
}
@media screen and (max-width: 768px) {
  #sec04 .sec04__desc-wrap .desc-list .desc-item--1st {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #sec04 .sec04__desc-wrap .desc-list .desc-item {
    width: 100%;
  }
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .desc hgroup {
  display: flex;
  align-items: center;
  gap: clamp(12px, 12px + 8 * (100vw - 320px) / 880, 20px);
  border-bottom: 2px solid var(--blue);
  padding-bottom: clamp(16px, 16px + 4 * (100vw - 320px) / 880, 20px);
  margin-bottom: clamp(20px, 20px + 10 * (100vw - 320px) / 880, 30px);
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .desc hgroup p {
  font-size: clamp(20px, 20px + 10 * (100vw - 320px) / 880, 30px);
  line-height: 1;
  color: #fff;
  background: var(--blue);
  width: clamp(35px, 35px + 10 * (100vw - 320px) / 880, 45px);
  height: clamp(35px, 35px + 10 * (100vw - 320px) / 880, 45px);
  display: grid;
  place-content: center;
  padding-bottom: 4px;
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .desc hgroup h3 {
  font-size: clamp(20px, 20px + 12 * (100vw - 320px) / 880, 32px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #sec04 .sec04__desc-wrap .desc-list .desc-item .desc .desc-sp-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  #sec04 .sec04__desc-wrap .desc-list .desc-item .desc .desc-sp-wrap--1st {
    grid-template-columns: 30% 1fr;
  }
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .desc .desc-sp-wrap .txt {
  font-size: clamp(14px, 14px + 2 * (100vw - 320px) / 880, 16px);
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link {
  margin-top: clamp(25px, 25px + 5 * (100vw - 320px) / 880, 30px);
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px);
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-link-list li a {
  display: grid;
  place-content: center;
  height: clamp(44px, 44px + 16 * (100vw - 320px) / 880, 60px);
  background: var(--orng);
  border: 1px solid var(--orng);
  transition: 0.3s;
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-link-list li a span {
  font-size: clamp(16px, 16px + 4 * (100vw - 320px) / 880, 20px);
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-link-list li a:hover:hover {
    background: #fff;
  }
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-link-list li a:hover:hover span {
    color: var(--orng);
    letter-spacing: 0.17em;
  }
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-GPS-btn {
  display: grid;
  place-content: center;
  height: clamp(44px, 44px + 16 * (100vw - 320px) / 880, 60px);
  background: #fff;
  border: 1px solid var(--orng);
  margin-top: clamp(5px, 5px + 5 * (100vw - 320px) / 880, 10px);
  transition: 0.3s;
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-GPS-btn span {
  font-size: clamp(16px, 16px + 4 * (100vw - 320px) / 880, 20px);
  color: var(--orng);
  text-align: center;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-GPS-btn:hover:hover {
    background: var(--orng);
  }
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .exhibit-GPS-btn:hover:hover span {
    color: #fff;
    letter-spacing: 0.17em;
  }
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: clamp(44px, 44px + 16 * (100vw - 320px) / 880, 60px);
  background: var(--tokyo816primary);
  border: 1px solid var(--tokyo816primary);
  transition: 0.3s;
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn::before {
  content: "";
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn span {
  font-size: clamp(14px, 14px + 4 * (100vw - 320px) / 880, 18px);
  color: #fff;
  transition: 0.3s;
}
#sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn i {
  justify-self: end;
  margin-right: 10px;
  -webkit-mask-image: url(../img/icon_arw.svg);
          mask-image: url(../img/icon_arw.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
  width: 12px;
  height: 6px;
  transform: rotate(-90deg);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn:hover:hover {
    background: #fff;
  }
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn:hover:hover span {
    color: var(--tokyo816primary);
    letter-spacing: 0.17em;
  }
  #sec04 .sec04__desc-wrap .desc-list .desc-item .link .detail-btn:hover:hover i {
    background: var(--tokyo816primary);
  }
}/*# sourceMappingURL=style.css.map */