@charset "UTF-8";
.sp {
  display: none !important;
}

.pc {
  display: block;
}

header,
footer,
main,
nav,
article,
aside,
section {
  display: block;
}

ul {
	padding: 0;
	list-style: none;
}

.flex {
  display: flex;
}

.flex_around {
  justify-content: space-around;
}

.flex_between {
  justify-content: space-between;
}


.img_center {
	margin: 0 auto;
}

.flex_wrap {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex_center {
  align-items: center;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  max-width: 100%;
  height: auto;
  display: block;
}

#bg {
  background: #eeeeee;
  z-index: -1000;
}

#wrapper {
  font-family: Hiragino Sans, Arial, sans-serif !important;
  font-weight: 500;
  font-size: 28px;
  color: #3e3a39;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.875;
  margin: 0 auto;
  max-width: 750px;
  background: #fff;
}

a {
  transition: 1.5s;
}

a:hover {
  opacity: 0.75;
}

a {
  display: block;
  color: #000;
}

.fc-red {
  color: #dd2323;
}

.fc-blue {
  color: #0047b2;
}

.fc-pink {
  color: #fa57cc;
}

.fc-orenge {
  color: #ff7600;
}

.txt-under {
  text-decoration: underline;
}

.fs-small {
  font-size: 16px;
  vertical-align: baseline;
}

.fs26 {
  font-size: 26px;
}

.fs34 {
  font-size: 34px;
}

.fs51 {
  font-size: 51px;
}

.fs68 {
  font-size: 68px;
}

.ct-note {
  font-size: 8px;
  text-align: right;
  display: block;
  margin-right: 20px;
  line-height: 1.4;
  padding-top: 5px;
}
.ss_btn .ct-note li {
  margin-bottom: 0;
}
.ss_btn .ct-note li:first-child {
  margin-top: 5px;
}

.cv-note {
  text-align: left;
  line-height: 1.4;
  margin-right: 20px;
  font-size: 10px;
  padding: 10px;
  display: block;
  letter-spacing: 0;
}

.ss_btn li {
  margin: 0 30px 15px;
  text-align: center;
}
.ss_btn li:last-child {
  margin-bottom: 0;
}
.ss_btn li a {
  color: #000;
  transition: 0.5s;
  border: 3px solid #000;
  border-radius: 40px;
  padding: 15px;
  font-size: 26px;
  font-weight: bold;
}
.ss_btn li a:hover {
  color: #fff;
  border: 3px solid #f32b04;
  background-color: #f32b04;
}
.ss_btn li a:active {
  transform: scale(1.03);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  .ss_btn li {
    margin-bottom: 0 4vw 2vw;
  }
  .ss_btn li a {
    padding: 4vw 0;
    border: 0.4vw solid #000;
    font-size: 3.385vw;
  }
  .ss_btn li a:hover {
    border: 2vw solid #f32b04;
  }
}
@keyframes fuwafuwaUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.fuwafuwa {
  display: inline-block;
  animation: fuwafuwaUpDown 1s ease-in-out infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation: pulse-animation 2s infinite ease-in-out;
}

@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.blink {
  animation: blink-animation 1s infinite;
}

@keyframes arrow-animation {
  0% {
    top: 40%;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.arrow_first {
  animation: arrow-animation 2s infinite ease-in-out;
}

.arrow_second {
  animation: arrow-animation 2s 1s infinite ease-in-out;
}

.arrow_block {
  position: relative;
  height: 50px;
  margin-top: 1em;
  margin-bottom: 2em;
}
.arrow_block .arrow_cm {
  position: absolute;
  top: 100%;
  left: 45%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  opacity: 0;
}
.arrow_block .arrow_cm::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 3px;
  content: "";
  background: #FF0000;
  transform: rotate(30deg) translateX(-39%);
  transform-origin: top left;
}
.arrow_block .arrow_cm::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 3px;
  content: "";
  background: #FF0000;
  transform: rotate(-30deg) translateX(39%);
  transform-origin: top right;
}

.shake {
  display: inline-block;
  animation: shake 0.2s infinite alternate;
  transform-origin: center;
}

@keyframes shake {
  0% {
    transform: rotate(-0.5deg);
  }
  100% {
    transform: rotate(0.5deg);
  }
}
.footer_nav {
  font-size: 10px;
  margin-bottom: 15px;
}
.footer_nav li {
  display: inline-block;
  padding: 0 5px;
}
.footer_nav li:first-child {
  border-right: 1px solid #a3a3a3;
}
.footer_nav li a {
  color: #000;
  vertical-align: middle;
  line-height: 1.3;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer_nav {
    font-size: 1.333vw;
  }
  .footer_nav li {
    padding: 0 0.6666vw;
  }
}
.bg-gray {
  background: #f7f6f6;
}
.bg-gray img {
  width: 60%;
  margin: 0 auto;
}

.bg_blue {
  background: #e0f4ff;
  padding: 20px;
}

.pd5 {
  padding: 5px 32px;
}

.pd020 {
  padding: 0 32px 20px;
}

.pd200 {
  padding: 20px 32px 0;
}

.pd10 {
  padding: 10px 0;
}

.pd20 {
  padding: 20px 0;
}

.pd40 {
  padding: 40px 32px;
}

.pd040 {
  padding: 0 32px 40px;
}

.pd400 {
  padding: 40px 32px 0;
}

.pd-img {
  padding: 40px 0;
}

.m20 {
  margin: 20px 0;
}

.mb50 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 100px;
}

.txt-bold {
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

.txt-left-note {
  text-align: left;
  padding: 0 32px;
  font-size: 18px;
  color: #727171;
  line-height: 1.35;
}

.txt-left-note02 {
  text-align: left;
  font-size: 18px;
  padding: 0 32px 20px;
  color: #727171;
  line-height: 1.35;
}

.txt-right {
  text-align: right;
  padding: 0 32px;
  font-size: 18px;
}

.txt-right40 {
  text-align: right;
  padding: 0px 32px 40px;
  font-size: 18px;
}

.marker {
  background: linear-gradient(transparent 70%, #ffde20 40%);
}

.marker-blue {
  background: linear-gradient(transparent 70%, #cce0f5 40%);
}

.marker-dark {
  background: linear-gradient(transparent 70%, #dddddb 40%);
}

.marker-yellow {
  background: #ffffcc;
}

.pd200_balloon {
  padding: 20px 60px 0;
}

.cv-btn {
  text-align: center;
}
.cv-btn a {
  display: inline-block;
  margin: 0 20px;
}

.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em auto;
  padding: 17px 10px;
  width: 609px;
  background: #e0f4ff;
  text-align: center;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0f4ff;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}

.title-under {
  border-bottom: solid 3px #ffffff;
  position: relative;
  display: inline-block;
}

.title-under:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #00509e;
  bottom: -2px;
  width: 20%;
}

.title-box {
  background: #00509e;
  color: #ffffff;
  display: inline-block;
  padding: 1.2%;
  border-radius: 10px;
}

.border-middle {
  background: #fff0d9;
  font-size: 38px;
  color: #2d2d2d;
  text-align: center;
  padding: 25px;
  margin: 32px auto;
  border-bottom: solid 3px orange;
}

.border-middle0202 {
  background: #e0f4ff;
  font-size: 38px;
  color: #00509e;
  text-align: center;
  padding: 40px;
}

#fl_btn {
  position: fixed;
  display: none;
  bottom: 0;
  margin: 0 auto 20px;
  right: 0;
  left: 0;
  width: 750px;
  z-index: 2 !important;
}
#fl_btn a {
  width: 719px;
  margin: 0 auto;
}
#fl_btn img {
  width: 100%;
}

.video {
  margin: 0 auto;
}

.responsive {
  width: 708px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  padding: 0 20px;
}

.responsive iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  margin: 0 auto;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
  color: #00509e;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
  color: #00509e;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -14px !important;
}

.swiper-button-next, .swiper-button-prev {
  top: 43%;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 0 !important;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  border-bottom: 20px solid transparent;
  border-right: 30px solid #00509e;
  border-top: 20px solid transparent;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  border-bottom: 20px solid transparent;
  border-left: 30px solid #00509e;
  border-top: 20px solid transparent;
}

.cv {
  padding: 60px 0;
}
.cv_txt_01 {
  width: 500px;
  margin: 0 auto 16px;
}
.cv a {
  width: 719px;
  margin: 0 auto;
  display: block;
}
.cv a img {
  width: 719px;
  margin: 0 auto;
}
#top-countdown {
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        background: #d32f2f; /* Red color */
        color: #fff;
        font-family: "Helvetica Neue", Arial, sans-serif;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
      }
      .countdown-title {
        font-size: 18px;
        font-weight: bold;
        letter-spacing: 1px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
      }
      .countdown-timer-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 16px;
      }
      .countdown-badge {
        background: #fff;
        color: #d32f2f;
        padding: 3px 10px;
        border-radius: 4px;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
      }
      #countdown-text {
        font-weight: bold;
        display: flex;
        align-items: baseline;
      }
      .num {
        font-size: 24px;
        font-weight: bold;
        margin: 0 2px;
        line-height: 1;
      }
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none;
  }
  img {
    width: 100%;
  }
  #bg {
    background: none;
  }
  #wrapper {
    font-size: 4.733vw !important;
    box-shadow: none;
  }
  .fs-small {
    font-size: 2.133vw;
  }
  .fs26 {
    font-size: 4.467vw;
  }
  .fs34 {
    font-size: 5.533vw;
  }
  .fs51 {
    font-size: 7.8vw;
  }
  .fs68 {
    font-size: 10.066vw;
  }
  .pd5 {
    padding: 0.6666vw 4.267vw;
  }
  .pd020 {
    padding: 0 4.267vw 2.667vw;
  }
  .pd200 {
    padding: 2.667vw 4.267vw 0;
  }
  .pd20 {
    padding: 1.333vw 0;
  }
  .pd20 {
    padding: 2.667vw 0;
  }
  .pd40 {
    padding: 5.333vw 4.267vw;
  }
  .pd040 {
    padding: 0 4.267vw 5.333vw;
  }
  .pd400 {
    padding: 5.333vw 4.267vw 0;
  }
  .pd-img {
    padding: 5.333vw 0;
  }
  .m20 {
    margin: 2.667vw 0;
  }
  .mb50 {
    margin-bottom: 6.51vw;
  }
  .mb100 {
    margin-bottom: 13.02vw;
  }
  .txt-left-note {
    padding: 0 4.267vw;
    font-size: 2.4vw;
  }
  .txt-left-note02 {
    font-size: 2.4vw;
    padding: 0 4.267vw 2.667vw;
  }
  .txt-right {
    padding: 0 4.267vw;
    font-size: 2.4vw;
  }
  .txt-right40 {
    padding: 0px 4.267vw 5.333vw;
    font-size: 2.4vw;
  }
  .pd200_balloon {
    padding: 2.667vw 8vw 0;
  }
  .ct-note {
    font-size: 8px;
    margin-right: 2.666vw;
    padding-top: 0.651vw;
  }
  .ss_btn .ct-note li {
    margin: 0;
    text-align: right;
  }
  .ss_btn .ct-note li:first-child {
    margin-top: 5px;
  }
  .cv-note {
    margin-right: 2.666vw;
    font-size: 8px;
    padding: 1.333vw;
  }
  .balloon1 {
    padding: 2.267vw 1.333vw;
    width: 81.2vw;
  }
  .balloon1:before {
    top: 100%;
    left: 50%;
    margin-left: -2vw;
    border: 2vw solid transparent;
    border-top: 2vw solid #e0edff;
  }
  .balloon1 p {
    margin: 0;
    padding: 0;
  }
  .title-under {
    border-bottom: solid 0.4vw #ffffff;
  }
  .title-under:after {
    border-bottom: solid 0.4vw #00509e;
    bottom: -0.267vw;
    width: 20%;
  }
  .title-box {
    padding: 1.2%;
    border-radius: 1.333vw;
  }
  .border-middle {
    font-size: 5.067vw;
    padding: 3.255vw;
    margin: 4.267vw auto;
  }
  .border-middle0202 {
    font-size: 5.067vw;
    padding: 5.333vw;
  }
  #fl_btn {
    margin: 0 auto 20px;
    width: 100vw;
  }
  #fl_btn a {
    width: 95.867vw;
  }
  #fl_btn img {
    width: 100%;
  }
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -8px !important;
  }
  /* 前への矢印カスタマイズ */
  .swiper-button-prev::after {
    border-bottom: 2.667vw solid transparent;
    border-right: 4vw solid #00509e;
    border-top: 2.667vw solid transparent;
  }
  /* 次への矢印カスタマイズ */
  .swiper-button-next::after {
    border-bottom: 2.667vw solid transparent;
    border-left: 4vw solid #00509e;
    border-top: 2.667vw solid transparent;
  }
  .swiper-button-next {
    right: 1px !important;
    left: auto;
  }
  .swiper-button-prev {
    left: 1px !important;
    right: auto;
  }
  .cv {
    padding: 8vw 0;
  }
  .cv_txt_01 {
    width: 66.667vw;
    margin: 0 auto 2.133vw;
  }
  .cv a {
    width: 95.867vw;
  }
  .cv a img {
    width: 95.867vw;
  }
  .video {
    margin: 0 auto;
  }
  .responsive {
    width: 94.4vw;
    padding: 0 2.667vw;
  }
  .responsive iframe {
    border-radius: 4vw;
  }
}
/*# sourceMappingURL=style.css.map */


article.red_ob {
	background:#B70003;


}
article.red_ob p {
	font-size: 18px;
	color: white;
	text-align: center;
	margin: 0;
}
body {
	margin: 0;
}
article.red_ob p span {
	font-size: 24px;
	margin-right: 10px;
	display: inline-block;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .cv-btn a {
    display: inline-block;
    margin: 0 2.666vw;
  }
article.red_ob p span {
    font-size: 18px;
    margin-right: 6px;
    display:block;
    text-decoration: underline;
}
article.red_ob p {
    font-size: 14px;
    color: white;
    text-align: center;
    margin: 0;
}
 #top-countdown {
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0;
        background: #d32f2f; /* Red color */
        color: #fff;
        font-family: "Helvetica Neue", Arial, sans-serif;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
      }
      .countdown-title {
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
      }
      .countdown-timer-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 12px;
      }
      .countdown-badge {
        background: #fff;
        color: #d32f2f;
        padding: 3px 10px;
        border-radius: 4px;
        font-weight: bold;
        font-size: 10px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
      }
      #countdown-text {
        font-weight: bold;
        display: flex;
        align-items: baseline;
      }
      .num {
        font-size: 22px;
        font-weight: bold;
        margin: 0 2px;
        line-height: 1;
      }
}



.accordion {
background: white;
  position: relative;
  width: 100%;
}

.accordion-container {
	background: url("../images/result/ac_bk.png") no-repeat;
	background-size: 110%;
	background-position: center top;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}
.mb0 {
	margin-bottom: 0;
}

.accordion-title {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
	overflow: hidden;
	text-indent: 999%;
	white-space: nowrap;
	background:url("../img/ac_on.png") no-repeat;
	height: 42px;
	background-size: contain;
	margin: 0;
	background-position: center;
}
.accordion-content {
  display: none;
}
.accordion-content p {
  font-size: 13px;
  line-height: 1.5;
}
.js-accordion-title.open {
	background:url("../img/ac_off.png") no-repeat;
	background-size: contain;
	background-position: center;
}


.accordion-content img {
width: 100%;
}
.accordion .fall_txt {
	text-align: center;
	width: 70%;
	margin: 0 auto;
}