html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  border: none;
}


@keyframes scroll {
  0% {
    top: 1.25rem;
  }
  100% {
    top: 1.75rem;
  }
}
.project {
  font-family: "Inter", sans-serif;
  overflow-x: clip;
}
.project .testBtn {
  background-image: url("../images/test.svg");
  width: 144px;
  height: 144px;
  position: fixed;
  right: 20px;
  bottom: 180px;
  z-index: 90;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background-image 0.2s ease;
}
@media (max-width: 1440px) {
  .project .testBtn {
    width: 110px;
    height: 110px;
    right: 15px;
    bottom: 140px;
  }
}
@media (max-width: 980px) {
  .project .testBtn {
    transition: none;
    width: 80px;
    height: 80px;
    right: 12px;
    bottom: 100px;
  }
}
.project .testBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.project .testBtn:hover {
  background-image: url("../images/test-hover.svg");
}
.project .sec_main {
  background-image: url("../images/sec_main_bg.png");
  margin-top: 55px;
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  background-size: contain;
  position: relative;
  background-position: center center;
  background-size: 100% 100%;
  aspect-ratio: 100/54;
  max-height: 54vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scaleLoop {
  0% {
    transform: translateX(0) scale(1);
  }
  100% {
    transform: translateX(0) scale(1.03);
  }
}
.project .sec_main .plane {
  width: 38.3%;
  z-index: 1;
  margin-top: 0.5%;
  animation: slideInLeft 3s cubic-bezier(0.25, 1, 0.5, 1) forwards, scaleLoop 1.2s ease-in-out 3s infinite alternate;
}
.project .sec_main .topic {
  width: 46%;
  margin-top: -4.5%;
  z-index: 2;
}
.project .sec_main .date {
  width: 40%;
  z-index: 2;
  transform: translateY(-46%);
}
.project .sec_main .btn_to_test {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translateY(-9vw);
  max-width: 420px;
  width: 25vw;
  font-size: clamp(18px, 2vw, 32px);
  padding: 16px 10px;
  background: linear-gradient(to bottom, #ffffff, #e9e7e7);
  border-radius: 40px;
  color: #ff0000;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 1440px) {
  .project .sec_main .btn_to_test {
    padding: 10px;
  }
}
.project .sec_main .btn_to_test:hover {
  background: linear-gradient(to bottom, #fff2a0, #ffc800);
}
.project .sec_main .btn_to_test:visited, .project .sec_main .btn_to_test:active {
  color: #ff0000;
}
.project .sec_main .scroll {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1440px) {
  .project .sec_main .scroll {
    font-size: 17px;
    bottom: 6.5%;
  }
}
.project .sec_main .scroll_icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/sec_main_scroll.svg");
  display: inline-block;
  width: 100%;
  height: 3.33vh;
  margin-top: 0.5vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.8));
  animation: 0.6s linear 0s infinite alternate none running scroll;
}
@media (max-width: 1440px) {
  .project .sec_main .scroll_icon {
    height: 2vw;
    margin-top: 0.2vw;
  }
}
@media (max-width: 980px) {
  .project .sec_main {
    background-image: url("../images/sec_main_bg-m.png");
    background-size: contain;
    background-position: center top;
    width: 100%;
    padding-bottom: 194.0104166667%;
    justify-content: flex-start;
    margin-top: 65px;
  }
  .project .sec_main .plane {
    width: 85%;
    margin-top: 10%;
  }
  .project .sec_main .topic {
    width: 90%;
    margin-top: 25%;
  }
  .project .sec_main .date {
    width: 100%;
    transform: translateY(0);
    margin-top: -6%;
  }
  .project .sec_main .btn_to_test {
    max-width: 300px;
    transform: translateY(-8.4vw);
    width: 60%;
  }
  .project .sec_main .scroll {
    font-size: 16px;
    bottom: 13%;
    white-space: nowrap;
  }
}
.project .sec_itinerary {
  background-image: url("../images/sec_itinerary_bg.png");
  min-height: 54vw;
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  background-size: contain;
  position: relative;
  background-position: center center;
  background-size: cover;
  padding-bottom: 3%;
}
@media (max-width: 980px) {
  .project .sec_itinerary {
    background-image: url("../images/sec_info_bg-m.png");
    padding: 10% 0;
  }
}
.project .sec_itinerary .itinerary_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  width: 100%;
}
.project .sec_itinerary .topic {
  width: 33.6%;
  margin-top: 3.9%;
  margin-bottom: 0.5%;
}
@media (max-width: 1440px) {
  .project .sec_itinerary .topic {
    width: 40%;
  }
}
@media (max-width: 980px) {
  .project .sec_itinerary .topic {
    width: 83.3333%;
  }
}
.project .sec_itinerary .area_tabs {
  display: flex;
  width: 60%;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_tabs {
    flex-wrap: wrap;
    width: 92%;
    gap: 10px;
  }
}
.project .sec_itinerary .area_tabs .tab {
  max-width: 210px;
  width: 100%;
  aspect-ratio: 210/80;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1b9481;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  border-radius: 40px;
  border: 3px solid #fff;
}
@media (max-width: 1440px) {
  .project .sec_itinerary .area_tabs .tab {
    font-size: 22px;
  }
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_tabs .tab {
    width: 48%;
    aspect-ratio: 90/25;
    font-size: 16px;
    border-width: 0.5vw;
  }
}
.project .sec_itinerary .area_tabs .tab:hover {
  background-color: #ec6400;
  transition: background 0.5s ease;
}
.project .sec_itinerary .area_tabs .tab.tab-active {
  background-color: #ec6400;
}
.project .sec_itinerary .area_content {
  width: 60%;
}
@media (max-width: 1440px) {
  .project .sec_itinerary .area_content {
    width: 72%;
  }
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_content {
    width: 90%;
  }
}
.project .sec_itinerary .area_content .block {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s;
}
.project .sec_itinerary .area_content .block.block-open {
  height: 100%;
  opacity: 1;
  overflow: visible;
}
.project .sec_itinerary .area_content .block .card_list {
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.project .sec_itinerary .area_content .block .card_list .swiper-wrapper {
  align-items: stretch;
}
.project .sec_itinerary .area_content .block .card_list .card {
  height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
  border-radius: 6.6%;
  border: none;
  position: relative;
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_content .block .card_list .card {
    border-radius: 24px;
  }
}
.project .sec_itinerary .area_content .block .card_list .card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.5vw solid #1b9481;
  border-radius: 6.6%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_content .block .card_list .card::after {
    border-width: 4px;
    border-radius: 24px;
  }
}
.project .sec_itinerary .area_content .block .card_list .card:hover::after {
  opacity: 1;
}
.project .sec_itinerary .area_content .block .card_list .card .card_img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_content .block .card_list .card .card_img {
    aspect-ratio: 80/50;
  }
}
.project .sec_itinerary .area_content .block .card_list .card .card_content {
  padding: 0 6% 8%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project .sec_itinerary .area_content .block .card_list .card .card_content .card_logo {
  width: 50%;
  display: block;
}
.project .sec_itinerary .area_content .block .card_list .card .card_content .card_desc {
  font-size: 20px;
  margin: 6% 0 4%;
  flex: 1 1 auto;
  font-weight: 700;
  color: #333;
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_content .block .card_list .card .card_content .card_desc {
    font-size: 16px;
    margin: 3% 0 5%;
  }
}
.project .sec_itinerary .area_content .block .card_list .card .card_content .card_arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 11%;
  aspect-ratio: 1/1;
  background-image: url("../images/sec_itinerary_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .project .sec_itinerary .area_content .block .card_list .card .card_content .card_arrow {
    width: 15%;
    min-width: 30px;
    margin-right: 3%;
  }
}
.project .sec_itinerary .area_content .block .card_list .card .card_content .card_arrow {
  box-sizing: border-box;
}
.project .sec_itinerary .area_content .block .card_list .card:hover .card_arrow {
  background-image: url("../images/slider_arrow_hover.svg");
  transform: translateX(6px);
}
.project .sec_map {
  background-image: url("../images/sec_map_bg.png");
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  background-size: contain;
  position: relative;
  background-position: center center;
  background-size: cover;
  padding-bottom: 110px;
}
@media (max-width: 980px) {
  .project .sec_map {
    aspect-ratio: auto;
    max-height: none;
    padding: 10% 0;
  }
}
.project .sec_map .map_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  width: 100%;
}
.project .sec_map .map_inner .topic {
  width: 18.2%;
  margin-top: 65px;
}
@media (max-width: 1440px) {
  .project .sec_map .map_inner .topic {
    width: 21%;
  }
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .topic {
    width: 60%;
    margin: unset;
  }
}
.project .sec_map .map_inner .map-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: visible;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container {
    width: 90%;
    margin: 0 auto;
  }
}
.project .sec_map .map_inner .map-container .map-base {
  display: block;
  height: 32vw;
  width: auto;
}
@media (max-width: 1440px) {
  .project .sec_map .map_inner .map-container .map-base {
    height: 38vw;
  }
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .map-base {
    width: 100%;
    height: auto;
  }
}
.project .sec_map .map_inner .map-container .map-plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.project .sec_map .map_inner .map-container .map-overlay {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.project .sec_map .map_inner .map-container .map-overlay.is-active {
  opacity: 1;
}
.project .sec_map .map_inner .map-container .map-sensor-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.project .sec_map .map_inner .map-container .map-sensor-svg.is-locked {
  pointer-events: none;
}
.project .sec_map .map_inner .map-container .map-sensor-svg .sensor-path {
  fill: transparent;
  stroke: none;
  cursor: pointer;
  pointer-events: auto;
}
.project .sec_map .map_inner .map-container .map-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  z-index: 95;
  cursor: pointer;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .map-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.project .sec_map .map_inner .map-container .region-info-popup {
  position: absolute;
  width: 50%;
  background-color: #fff;
  border-radius: 20px;
  border: 3px solid #ff6600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 98;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .region-info-popup {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 85%;
    max-width: 280px;
    max-height: 75vh;
    overflow-y: auto;
    border-radius: 30px;
  }
}
.project .sec_map .map_inner .map-container .region-info-popup .popup-card {
  width: 100%;
}
.project .sec_map .map_inner .map-container .region-info-popup .popup-img {
  width: 94%;
  margin: 3% auto 0;
  height: auto;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .region-info-popup .popup-img {
    max-height: 35vh;
    width: 90%;
    margin: 5% auto 0;
  }
}
.project .sec_map .map_inner .map-container .region-info-popup .popup-content {
  padding: 5px 10px 25px;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .region-info-popup .popup-content {
    padding: 5px 5% 30px;
  }
}
.project .sec_map .map_inner .map-container .region-info-popup .popup-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ff6f0d;
  margin-bottom: 8px;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .region-info-popup .popup-title {
    font-size: 20px;
    margin: 5px 0 7px;
  }
}
.project .sec_map .map_inner .map-container .region-info-popup .popup-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #444444;
  line-height: 1.25;
  text-align: justify;
  pointer-events: none;
}
@media (max-width: 980px) {
  .project .sec_map .map_inner .map-container .region-info-popup .popup-desc {
    font-size: 16px;
  }
}
.project .sec_map .map_inner .map-container .region-info-popup .swiper-pagination {
  bottom: 5px;
}
.project .sec_map .map_inner .map-container .region-info-popup .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #d8d8d8;
  opacity: 1;
  margin: 0 4px !important;
}
.project .sec_map .map_inner .map-container .region-info-popup .swiper-pagination-bullet-active {
  background-color: #4a4a4a;
}
.project .sec_map .map_inner .map-container.region-aso .region-info-popup {
  left: 105%;
  top: 5%;
}
.project .sec_map .map_inner .map-container.region-central .region-info-popup {
  left: 105%;
  top: 35%;
}
.project .sec_map .map_inner .map-container.region-south .region-info-popup {
  left: 90%;
  top: 55%;
}
@media (max-width: 1440px) {
  .project .sec_map .map_inner .map-container.region-south .region-info-popup {
    top: 52%;
  }
}
.project .sec_map .map_inner .map-container.region-north .region-info-popup {
  right: 70%;
  top: 0;
}
.project .sec_map .map_inner .map-container.region-city .region-info-popup {
  right: 70%;
  top: 0;
}
@media (max-width: 1440px) {
  .project .sec_map .map_inner .map-container.region-city .region-info-popup {
    right: 75%;
    top: -2.5%;
  }
}
.project .sec_map .map_inner .map-container.region-amakusa .region-info-popup {
  right: 105%;
  top: 50%;
}
.project .sec_info {
  background-image: url("../images/sec_itinerary_bg.png");
  background-size: contain;
  background-position: center top;
  background-color: #ff6000;
  color: #fff;
  padding: 65px 0;
}
@media (max-width: 980px) {
  .project .sec_info {
    padding: 10% 20px;
    background-image: url("../images/sec_info_bg-m.png");
  }
}
.project .sec_info .container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  row-gap: 24px;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .project .sec_info .container {
    width: 75%;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container {
    row-gap: 10px;
  }
}
.project .sec_info .container .topic {
  width: 31.5%;
}
@media (max-width: 1440px) {
  .project .sec_info .container .topic {
    width: 35%;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .topic {
    width: 100%;
  }
}
.project .sec_info .container .topic img {
  width: 100%;
}
.project .sec_info .container .title {
  font-weight: 800;
  font-style: normal;
  font-size: 48px;
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .project .sec_info .container .title {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .title {
    font-size: 22px;
  }
}
.project .sec_info .container .text {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0.2vw;
}
@media (max-width: 1440px) {
  .project .sec_info .container .text {
    font-size: 36px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .text {
    font-size: 22px;
  }
}
.project .sec_info .container .duration {
  text-align: center;
}
.project .sec_info .container .way {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.project .sec_info .container .way .step_list {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1.5%;
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.project .sec_info .container .way .step_list .step {
  width: 30%;
  background-color: #fff;
  border-radius: 1.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5%;
  color: #333;
  position: relative;
}
.project .sec_info .container .way .step_list .step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.4vw solid #1b9481;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list .step::after {
    border-width: 1vw;
  }
}
.project .sec_info .container .way .step_list .step:hover::after {
  opacity: 0;
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list .step {
    border-radius: 4vw;
    width: 100%;
    padding: 8% 0;
    gap: 10px;
  }
}
.project .sec_info .container .way .step_list .step p {
  margin: 0;
}
.project .sec_info .container .way .step_list .step .step_num {
  color: #2aaa96;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.2vw;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .project .sec_info .container .way .step_list .step .step_num {
    font-size: 36px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list .step .step_num {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0.5vw;
  }
}
.project .sec_info .container .way .step_list .step .step_title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.1vw;
  color: #444444;
}
@media (max-width: 1440px) {
  .project .sec_info .container .way .step_list .step .step_title {
    font-size: 24px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list .step .step_title {
    font-size: 18px;
    letter-spacing: 0.2vw;
  }
}
.project .sec_info .container .way .step_list .step .step_desc {
  font-size: 24px;
  font-weight: 500;
  color: #444444;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .project .sec_info .container .way .step_list .step .step_desc {
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list .step .step_desc {
    font-size: 16px;
  }
}
.project .sec_info .container .way .step_list .step .step_img {
  width: 80%;
}
@media (max-width: 980px) {
  .project .sec_info .container .way .step_list .step .step_img {
    width: 80%;
  }
}
.project .sec_info .container .btn_to_test {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  width: 25vw;
  font-size: clamp(18px, 2vw, 32px);
  padding: 16px 10px;
  background: linear-gradient(to bottom, #ffffff, #e9e7e7);
  border-radius: 40px;
  color: #ff0000;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  margin: 36px 0;
}
@media (max-width: 1440px) {
  .project .sec_info .container .btn_to_test {
    padding: 10px;
  }
}
.project .sec_info .container .btn_to_test:hover {
  background: linear-gradient(to bottom, #fff2a0, #ffc800);
}
.project .sec_info .container .btn_to_test:visited, .project .sec_info .container .btn_to_test:active {
  color: #ff0000;
}
@media (max-width: 980px) {
  .project .sec_info .container .btn_to_test {
    max-width: 300px;
    width: 60vw;
  }
}
.project .sec_info .container .prize {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.project .sec_info .container .prize .list {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
  margin-top: 20px;
  gap: 2%;
}
@media (max-width: 980px) {
  .project .sec_info .container .prize .list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.project .sec_info .container .prize .list .item {
  width: 32%;
  aspect-ratio: 384/652;
}
@media (max-width: 980px) {
  .project .sec_info .container .prize .list .item {
    width: 95%;
  }
}
.project .sec_info .container .prize .list .item .image {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.project .sec_info .container .prize .list .item .image .text {
  position: relative;
  z-index: 2;
}
.project .sec_info .container .prize .list .item .image .frame-border {
  margin-top: -29%;
  border: clamp(4px, 0.5vw, 8px) solid #009874;
  aspect-ratio: 1/1.1;
  border-top-left-radius: 50vw;
  border-top-right-radius: 50vw;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 980px) {
  .project .sec_info .container .prize .list .item .image .frame-border {
    border-width: 4px;
  }
}
.project .sec_info .container .prize .list .item .info {
  text-align: center;
}
.project .sec_info .container .prize .list .item .info .name {
  font-size: 30px;
  font-weight: 800;
}
@media (max-width: 1440px) {
  .project .sec_info .container .prize .list .item .info .name {
    font-size: 24px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .prize .list .item .info .name {
    font-size: 18px;
  }
}
.project .sec_info .container .prize .list .item .info .desc,
.project .sec_info .container .prize .list .item .info .price,
.project .sec_info .container .prize .list .item .info .number {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .project .sec_info .container .prize .list .item .info .desc,
  .project .sec_info .container .prize .list .item .info .price,
  .project .sec_info .container .prize .list .item .info .number {
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .prize .list .item .info .desc,
  .project .sec_info .container .prize .list .item .info .price,
  .project .sec_info .container .prize .list .item .info .number {
    font-size: 16px;
  }
}
.project .sec_info .container .notice {
  width: 100%;
  font-family: "Liter", sans-serif;
}
@media (max-width: 980px) {
  .project .sec_info .container .notice {
    width: 125%;
    margin-left: 5%;
  }
}
.project .sec_info .container .notice .title {
  margin-top: 24px;
}
@media (max-width: 980px) {
  .project .sec_info .container .notice .title {
    margin-top: 10px;
  }
}
.project .sec_info .container .notice ol {
  list-style-type: decimal;
}
@media (max-width: 980px) {
  .project .sec_info .container .notice ol {
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
.project .sec_info .container .notice ol li {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .project .sec_info .container .notice ol li {
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .project .sec_info .container .notice ol li {
    margin-bottom: 1.5%;
    font-size: 16px;
  }
}