@charset "UTF-8";
@keyframes bound {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  8% {
    transform: scale(1.1);
    opacity: 1;
  }
  17% {
    transform: scale(1.332);
    opacity: 1;
  }
  34% {
    scale: 1;
    opacity: 1;
  }
  51% {
    transform: scale(1.2);
    opacity: 1;
  }
  68% {
    transform: scale(1);
    opacity: 1;
  }
  84% {
    transform: scale(1.03525);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  5% {
    opacity: 0.3;
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pop_sp {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pop_02 {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes text_anime_left {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1000% 0;
  }
}
@keyframes text_anime_right {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000% 0;
  }
}
body {
  overflow: hidden;
  background: #000;
}

.header_inner {
  background: #000 !important;
}

footer {
  background: #000 !important;
}
footer .inner::before {
  content: none !important;
}
footer .inner::after {
  content: none !important;
}

.is-active {
  overflow: auto;
}

.is-none {
  animation-name: fadeout;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  z-index: 999;
  position: relative;
}

.is-visible {
  opacity: 1;
}

.is-none02 {
  display: none !important;
}

.is-light {
  opacity: 0 !important;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.js-img, .js-txt {
  opacity: 0;
}

.op-fadeUp {
  animation-name: fadeup;
  animation-duration: 3.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  z-index: 999;
  position: relative;
}

@keyframes fadeup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 9;
  }
}
/* フェードイン*/
.js-fadeUp {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.5s, transform 1.5s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/* ズームイン*/
.js-zoomUp {
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.59, 3.21, 0.28, 1.04), opacity 0.2s linear;
  transform: scale(0.3);
}

.js-zoomUp.is-inview {
  opacity: 1;
  transform: scale(1);
}

@keyframes zoomin {
  0% {
    transform: scale(0.3);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* スポットライト */
.js-light-left {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.js-light-left.is-inview {
  opacity: 1;
  /* 回転の基準点を左上に設定 */
  transform-origin: top left;
  /* アニメーションの適用 */
  animation: half-rotate01 5s ease-in-out forwards infinite;
}
@media only screen and (max-width: 768px) {
  .js-light-left.is-inview {
    animation: half-rotate01-sp 4s ease-in-out forwards infinite;
  }
}

@keyframes half-rotate01 {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes half-rotate01-sp {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
.js-light-right {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.js-light-right.is-inview {
  opacity: 1;
  /* 回転の基準点を左上に設定 */
  transform-origin: top right;
  /* アニメーションの適用 */
  animation: half-rotate02 4s ease-in-out forwards infinite;
}
@media only screen and (max-width: 768px) {
  .js-light-right.is-inview {
    animation: half-rotate02-sp 4s ease-in-out forwards infinite;
  }
}

@keyframes half-rotate02 {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes half-rotate02-sp {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
.js-loader-bg {
  display: block;
  background-image: url(../img/tougenanki/op_bg.png);
  background-size: cover;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  .js-loader-bg {
    background-image: url(../img/tougenanki/op_bg-sp.png);
  }
}
.js-loader-bg02 {
  display: block;
  height: 100vh;
  width: 100vw;
  background: #000;
  opacity: 0.2;
  z-index: 0;
  position: relative;
}
.js-loader-logo {
  opacity: 0;
  width: min(65.234vw, 668px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
}
@media only screen and (max-width: 768px) {
  .js-loader-logo {
    width: 80.769vw;
    top: 40%;
  }
}
.js-loader-light01 {
  opacity: 0;
  width: min(70.215vw, 719px);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform-origin: top right;
}
@media only screen and (max-width: 768px) {
  .js-loader-light01 {
    width: 99.487vw;
  }
}
.js-loader-light02 {
  opacity: 0;
  width: min(91.406vw, 936px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .js-loader-light02 {
    width: 100vw;
  }
}
.js-loader-light03 {
  opacity: 0;
  width: min(86.914vw, 890px);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform-origin: top right;
}
@media only screen and (max-width: 768px) {
  .js-loader-light03 {
    width: 100vw;
  }
}
.js-loader-light04 {
  opacity: 0;
  width: min(80.176vw, 821px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .js-loader-light04 {
    width: 83.333vw;
  }
}
.js-loader-light05 {
  opacity: 0;
  width: min(78.516vw, 804px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform-origin: top left;
}
@media only screen and (max-width: 768px) {
  .js-loader-light05 {
    width: 99.231vw;
    bottom: 12.821vw;
  }
}

#js-pagetop {
  width: min(7.813vw, 80px);
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #js-pagetop {
    width: 17.949vw;
    right: 2.564vw;
    bottom: 5.128vw;
  }
}

main {
  opacity: 0;
  background: #000;
}
main .content.parameter .tougenanki_ttl {
  margin-bottom: min(11.719vw, 120px);
}
@media only screen and (max-width: 768px) {
  main .content.parameter .tougenanki_ttl {
    margin-bottom: 20.513vw;
  }
}
main .bg {
  background: url(../img/tougenanki/bg_01.png);
  background-size: cover;
  background-repeat: no-repeat;
}
main .mainkv {
  position: relative;
  z-index: 2;
}
main .begin .inner {
  max-width: 1440px;
  padding: 0 min(2.93vw, 30px);
  margin: 0 auto;
}
main .begin .inner .tougenanki_wrap_info {
  margin-bottom: min(20.508vw, 210px);
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 768px) {
  main .begin .inner .tougenanki_wrap_info {
    margin-bottom: 23.846vw;
  }
}
main .begin .inner .tougenanki_wrap_info h1 {
  width: min(28.809vw, 295px);
  margin: auto;
  margin-bottom: min(3.906vw, 40px);
}
@media only screen and (max-width: 768px) {
  main .begin .inner .tougenanki_wrap_info h1 {
    width: 52.564vw;
    margin-bottom: 12.051vw;
  }
}
main .begin .inner .tougenanki_wrap_info p {
  color: #fff;
  font-size: min(1.953vw, 20px);
  line-height: 190%;
}
@media only screen and (max-width: 768px) {
  main .begin .inner .tougenanki_wrap_info p {
    font-size: 3.59vw;
    line-height: 214%;
  }
}
main .begin_paint01 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  top: 230px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .begin_paint01 {
    left: 0;
    top: 90px;
    width: 35.385vw;
  }
}
main .begin_paint02 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  top: 130px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .begin_paint02 {
    right: -41px;
    top: -35px;
    width: 30.769vw;
  }
}
main .shoparea {
  position: relative;
}
main .shoparea .box:first-of-type {
  margin-bottom: min(4.883vw, 50px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .box:first-of-type {
    margin-bottom: 6.923vw;
  }
}
main .shoparea .box:last-of-type .frame_04_day {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 768px) {
  main .shoparea .box:last-of-type .frame_04_day {
    margin-bottom: 1.282vw !important;
  }
}
main .shoparea .box:last-of-type .frame_04_day_note {
  font-size: min(1.953vw, 20px);
  font-weight: 500;
  margin-bottom: min(1.953vw, 20px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .box:last-of-type .frame_04_day_note {
    font-size: 3.59vw;
    margin-bottom: 6.41vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .frame {
  border: solid 2px #000;
}
main .shoparea .tougenanki_wrap_blc_inner .frame_ttl {
  position: relative;
  padding: min(0.977vw, 10px) 0;
  line-height: 1.3;
  background: #000;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .frame_ttl {
    padding: 3vw 0;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .frame_ttl p, main .shoparea .tougenanki_wrap_blc_inner .frame_ttl h2 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: min(3.32vw, 34px);
  letter-spacing: 0.1rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .frame_ttl p, main .shoparea .tougenanki_wrap_blc_inner .frame_ttl h2 {
    font-size: 5.128vw;
    line-height: 1.3;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe {
  border: solid 2px #000;
  padding: min(3.711vw, 38px) min(2.148vw, 22px) min(4.883vw, 50px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe {
    padding: 6.154vw 3.333vw 9.744vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area {
  padding: min(0.977vw, 10px);
  background: #F8F8F8;
  margin-bottom: min(1.953vw, 20px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area {
    padding: 6.154vw 3.333vw;
    margin-bottom: 7.692vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex {
    display: block;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_left {
  width: calc(100% - min(21.484vw, 220px));
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_left {
    width: 100%;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_left p.f16 {
  font-size: min(1.563vw, 16px);
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_left p.f16 {
    font-size: 4.103vw;
    text-align: left;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_left p.f12 {
  font-size: min(1.172vw, 12px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_left p.f12 {
    font-size: 3.077vw;
    text-align: left;
    margin: 3vw 0 5vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_right {
  width: min(21.484vw, 220px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_flex_right {
    width: 100%;
    margin-top: 3.846vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_blc {
  position: relative;
  padding-top: min(7.813vw, 80px); /* 4:3 アスペクト比 */
  height: 0;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_blc {
    padding-top: 23.077vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .map_area_blc iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04 {
  padding: min(3.906vw, 40px) min(3.906vw, 40px) min(4.883vw, 50px);
  background: #FBF7EB;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04 {
    padding: 7.692vw 3.846vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day {
  margin-bottom: min(2.93vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day {
    margin-bottom: 8.205vw;
    display: block;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_ttl {
  display: inline-block;
  padding: min(0.488vw, 5px) min(2.441vw, 25px) min(0.488vw, 5px);
  border-radius: 100vh;
  background: #EB1E00;
  font-size: min(1.563vw, 16px);
  letter-spacing: 0.2rem;
  color: #fff;
  margin-right: 10px;
  margin-top: 10px;
  vertical-align: text-bottom;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_ttl {
    width: 100%;
    padding: 1vw 3vw;
    margin-right: 3vw;
    margin-top: 0;
    font-size: 3.59vw;
    margin-bottom: 5.128vw;
    font-weight: 700;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail {
  font-size: min(3.906vw, 40px);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail {
    font-size: 4.615vw;
    text-align: left;
    line-height: 1.3;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.year {
  font-size: min(1.953vw, 20px);
  margin-right: min(-0.488vw, -5px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.year {
    font-size: 5.128vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.f20 {
  font-size: min(1.953vw, 20px);
  vertical-align: middle;
  margin: 0 3px;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.f20 {
    font-size: 5.128vw;
    vertical-align: baseline;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.week {
  display: inline-block;
  vertical-align: middle;
  font-size: min(1.367vw, 14px);
  font-weight: normal;
  line-height: 2.2;
  color: #fff;
  width: min(3.418vw, 35px);
  height: min(3.418vw, 35px);
  margin: 0 5px 3px;
  text-align: center;
  border-radius: 100%;
  background: #EB1E00;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.week {
    font-size: 3.59vw;
    width: 6.154vw;
    height: 6.154vw;
    font-weight: bold;
    margin: 0 1vw 0.5vw;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail span.text_left {
    display: inline-block;
    text-align: left;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail .week02 {
  display: inline-block;
  vertical-align: middle;
  font-size: min(1.367vw, 14px);
  font-weight: normal;
  line-height: 2.2;
  color: #fff;
  width: min(3.418vw, 35px);
  height: min(3.418vw, 35px);
  margin: 0 5px 3px;
  text-align: center;
  border-radius: 100%;
  background: #EB1E00;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_day_detail .week02 {
    font-size: 2.564vw;
    width: 6.154vw;
    height: 6.154vw;
    font-weight: bold;
    margin: 0 1vw 0.5vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_place {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(2.93vw, 30px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_place {
    flex-wrap: wrap;
    margin-bottom: 2.564vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_place_ttl {
  font-size: min(1.758vw, 18px);
  border: solid 2px #000;
  padding: 0 min(1.074vw, 11px);
  margin-right: min(1.953vw, 20px);
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_place_ttl {
    width: 100%;
    font-size: 3.59vw;
    padding: 0.769vw 0;
    margin-right: 0;
    margin-bottom: 2.564vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_place_detail {
  font-size: min(2.539vw, 26px);
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_place_detail {
    font-size: 3.59vw;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_list {
    display: block;
  }
}
main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_list_item {
  display: block;
  width: min(25.391vw, 260px);
}
@media only screen and (max-width: 768px) {
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_list_item {
    width: 100%;
  }
  main .shoparea .tougenanki_wrap_blc_inner .blcframe .frame_04_list_item:not(:last-of-type) {
    margin-bottom: 7.692vw;
  }
}
main .shoparea_paint01 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -120px;
  top: 360px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .shoparea_paint01 {
    width: 20.513vw;
    top: -20px;
    right: -20px;
  }
}
main .shoparea_paint02 {
  width: min(8.594vw, 88px);
  position: absolute;
  left: -150px;
  bottom: -80px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .shoparea_paint02 {
    width: 10.256vw;
    bottom: 920px;
    left: auto;
    right: -10px;
  }
}
main .shoparea_paint03 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -170px;
  bottom: 150px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .shoparea_paint03 {
    width: 23.077vw;
    bottom: -45px;
    left: auto;
    right: -50px;
  }
}
main .shoparea_light01 {
  width: min(140.625vw, 1440px);
  position: absolute;
  right: 0;
  top: -740px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .shoparea_light01 {
    width: 100vw;
    top: -150px;
  }
}
main .shoparea_light02 {
  width: min(140.625vw, 1440px);
  position: absolute;
  left: 0;
  top: -60px;
}
@media only screen and (max-width: 768px) {
  main .shoparea_light02 {
    width: 100vw;
    top: -190px;
  }
}
main .shoparea_light03 {
  width: min(134.961vw, 1382px);
  position: absolute;
  right: 0;
  bottom: -1185px;
}
@media only screen and (max-width: 768px) {
  main .shoparea_light03 {
    width: 100vw;
    top: 80px;
  }
}
main .shoparea_light04 {
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .shoparea_light04 {
    right: 0;
    position: absolute;
    width: 100vw;
    top: 800px;
  }
}
@media only screen and (max-width: 768px) {
  main .shoparea_light05 {
    position: absolute;
    width: 100vw;
    top: 750px;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  main .shoparea_light06 {
    right: 0;
    position: absolute;
    width: 100vw;
    bottom: -400px;
  }
}
main .process {
  position: relative;
}
main .process .tougenanki_wrap_blc_txt {
  font-size: min(1.953vw, 20px);
  font-weight: 500;
  line-height: 170%;
  margin-bottom: min(6.641vw, 68px);
}
@media only screen and (max-width: 768px) {
  main .process .tougenanki_wrap_blc_txt {
    font-size: 3.59vw;
    margin-bottom: 10.256vw;
  }
}
main .process_light01 {
  width: min(140.625vw, 1440px);
  position: absolute;
  right: 0;
  top: 250px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .process_light01 {
    width: 100vw;
    top: 160px;
  }
}
main .process_light02 {
  width: min(134.961vw, 1382px);
  position: absolute;
  left: 0;
  top: 800px;
}
@media only screen and (max-width: 768px) {
  main .process_light02 {
    width: 100vw;
    top: 180px;
  }
}
main .process_light03 {
  width: min(140.625vw, 1440px);
  position: absolute;
  right: 0;
  bottom: -1150px;
}
@media only screen and (max-width: 768px) {
  main .process_light03 {
    width: 100vw;
    top: 400px;
  }
}
main .process_light04 {
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .process_light04 {
    right: 0;
    position: absolute;
    width: 100vw;
    top: 1200px;
  }
}
@media only screen and (max-width: 768px) {
  main .process_light05 {
    left: 0;
    position: absolute;
    width: 100vw;
    top: 1150px;
  }
}
@media only screen and (max-width: 768px) {
  main .process_light06 {
    right: 0;
    position: absolute;
    width: 100vw;
    bottom: 250px;
  }
}
main .process_light07 {
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .process_light07 {
    right: 0;
    position: absolute;
    width: 100vw;
    bottom: -450px;
  }
}
@media only screen and (max-width: 768px) {
  main .process_light08 {
    left: 0;
    position: absolute;
    width: 100vw;
    bottom: -550px;
  }
}
@media only screen and (max-width: 768px) {
  main .process_light09 {
    right: 0;
    position: absolute;
    width: 100vw;
    bottom: -720px;
  }
}
main .process_paint01 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  top: 0px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint01 {
    left: 0;
    top: 90px;
    width: 35.385vw;
  }
}
main .process_paint02 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  top: -130px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint02 {
    right: -20px;
    top: -15px;
    width: 20.513vw;
  }
}
main .process_paint03 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -120px;
  top: 560px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint03 {
    width: 20.513vw;
    top: 350px;
    right: -20px;
  }
}
main .process_paint04 {
  width: min(8.594vw, 88px);
  position: absolute;
  left: -150px;
  bottom: 600px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint04 {
    width: 10.256vw;
    top: 860px;
    left: auto;
    right: -10px;
  }
}
main .process_paint05 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -170px;
  bottom: 900px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint05 {
    left: 5px;
    bottom: auto;
    top: 1000px;
    width: 35.385vw;
  }
}
main .process_paint06 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  bottom: 140px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint06 {
    right: -20px;
    left: auto;
    bottom: auto;
    top: 980px;
    width: 20.513vw;
  }
}
main .process_paint07 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  bottom: 80px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .process_paint07 {
    width: 10.256vw;
    bottom: 850px;
    right: -10px;
  }
}
@media only screen and (max-width: 768px) {
  main .process_paint08 {
    position: absolute;
    right: -20px;
    bottom: 380px;
    width: 20.513vw;
  }
}
@media only screen and (max-width: 768px) {
  main .process_paint09 {
    position: absolute;
    width: 35.385vw;
    bottom: 250px;
    left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  main .process_paint10 {
    position: absolute;
    width: 20.513vw;
    bottom: 10px;
    right: -10px;
  }
}
main .process .table {
  margin-bottom: min(7.813vw, 80px);
}
@media only screen and (max-width: 768px) {
  main .process .table {
    margin-bottom: 20.513vw;
  }
}
main .process .table-box {
  margin-bottom: min(3.906vw, 40px);
}
@media only screen and (max-width: 768px) {
  main .process .table-box {
    margin-bottom: 10.256vw;
  }
}
main .process .table-ttl {
  font-size: min(2.344vw, 24px);
  font-weight: 700;
  border-radius: 80px;
  color: #FFF;
  width: min(28.125vw, 288px);
  background: #000;
  margin: auto;
  padding: min(0.684vw, 7px) 0;
  margin-bottom: min(3.906vw, 40px);
}
@media only screen and (max-width: 768px) {
  main .process .table-ttl {
    font-size: 6.154vw;
    width: 66.154vw;
    margin-bottom: 8.205vw;
  }
}
main .process .table .frame {
  width: 100%;
  border: solid 2px #000;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame {
    width: 100%;
    margin-bottom: 5.128vw;
  }
}
main .process .table .frame_right {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_right {
    width: 100%;
    border: solid 2px #000;
    margin-bottom: 5.128vw;
  }
}
main .process .table .frame_right .frame_ttl {
  border-left: solid 1px #fff;
  background: #000;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_right .frame_ttl {
    border-left: none;
  }
}
main .process .table .frame_right .frame_cnt {
  border-left: solid 1px #000;
  border-right: solid 2px #000;
  height: min(9.766vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_right .frame_cnt {
    padding-bottom: 2.564vw;
    border-left: none;
    border-right: none;
    height: auto;
    padding: 2.564vw 6.154vw 3.59vw;
  }
}
main .process .table .frame_left {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_left {
    width: 100%;
    border: solid 2px #000;
    margin-bottom: 5.128vw;
  }
}
main .process .table .frame_left .frame_ttl {
  border-left: solid 1px #000;
  background: #000;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_left .frame_ttl {
    border-left: none;
  }
}
main .process .table .frame_left .frame_cnt {
  border-left: solid 2px #000;
  height: min(9.766vw, 100px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_left .frame_cnt {
    height: auto;
    border-left: none;
    padding: 2.564vw 6.154vw 3.59vw;
  }
}
main .process .table .frame_ttl {
  background: #000;
  color: #FFF;
}
main .process .table .frame_ttl p {
  font-size: min(2.539vw, 26px);
  letter-spacing: 0.2rem;
  padding: min(1.172vw, 12px) 0;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_ttl p {
    font-size: 5.641vw;
    position: relative;
    padding: 3.846vw 0 4.359vw;
    font-weight: 700;
  }
}
main .process .table .frame_ttl p::before {
  top: 3px;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_ttl p::before {
    top: 0vw;
    bottom: 0;
    margin: auto 0;
    left: -8vw;
  }
}
main .process .table .frame_ttl p::after {
  top: 3px;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_ttl p::after {
    top: 0vw;
    bottom: 0;
    margin: auto 0;
    right: -8vw;
  }
}
main .process .table .frame_ttl p .head_w {
  display: inline-block;
  margin: 0 0 6px 8px;
  letter-spacing: 0.2rem;
  font-size: min(1.563vw, 16px);
  vertical-align: middle;
  color: #008978;
  border-radius: 100vh;
  padding: 0px 15px 2px;
  background: #000;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_ttl p .head_w {
    padding: 1.5vw 3vw;
    vertical-align: top;
    margin: 0 0 0 2vw;
    font-size: 3.846vw;
  }
}
main .process .table .frame_cnt {
  padding: min(1.465vw, 15px);
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt {
    padding: 2.564vw 6.154vw 3.59vw;
  }
}
main .process .table .frame_cnt_ticket_top p {
  font-size: min(2.148vw, 22px);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p {
    font-size: 5.128vw;
    width: 100%;
    text-align: left;
  }
}
main .process .table .frame_cnt_ticket_top p.nowrap {
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p.nowrap {
    white-space: normal;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p.nowrap .sp {
    text-align: center;
    width: 100%;
    display: inline-block;
  }
}
main .process .table .frame_cnt_ticket_top p span.green {
  font-size: min(1.953vw, 20px);
  color: #000;
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p span.green {
    font-size: 5.128vw;
    margin-right: 0vw;
    text-align: center;
    width: 100%;
    display: inline-block;
  }
}
main .process .table .frame_cnt_ticket_top p span.week {
  display: inline-block;
  vertical-align: text-bottom;
  font-size: min(1.367vw, 14px);
  font-weight: normal;
  color: #fff;
  width: min(2.344vw, 24px);
  height: min(2.344vw, 24px);
  margin: 0 5px 3px;
  text-align: center;
  border-radius: 100%;
  background: #EB1E00;
  line-height: 1.58;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p span.week {
    font-size: 3.59vw;
    width: 6.154vw;
    height: 6.154vw;
    font-weight: bold;
    margin: 0 1vw 0.5vw;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p span.text_left {
    display: inline-block;
    text-align: left;
    width: 100%;
  }
}
main .process .table .frame_cnt_ticket_top p span.text_left .week02 {
  display: inline-block;
  vertical-align: text-bottom;
  font-size: min(0.977vw, 10px);
  font-weight: normal;
  color: #fff;
  width: min(2.344vw, 24px);
  height: min(2.344vw, 24px);
  margin: 0 5px 3px;
  text-align: center;
  border-radius: 100%;
  background: #EB1E00;
  letter-spacing: 1px;
  line-height: 230%;
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt_ticket_top p span.text_left .week02 {
    font-size: 2.564vw;
    width: 6.154vw;
    height: 6.154vw;
    font-weight: bold;
    margin: 0 1vw 0.5vw;
  }
}
main .process .table .frame_cnt .note {
  font-size: min(1.563vw, 16px);
}
@media only screen and (max-width: 768px) {
  main .process .table .frame_cnt .note {
    font-size: 3.59vw;
    text-align: center;
  }
}
main .process .table .blc_flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media only screen and (max-width: 768px) {
  main .process .table .blc_flex {
    display: block;
    border: none;
  }
}
main .process .off .frame {
  border: solid 2px #969696;
}
@media only screen and (max-width: 768px) {
  main .process .off .frame_left {
    border: solid #969696 2px;
  }
}
main .process .off .frame_left .frame_ttl {
  background: #969696;
  border-left: solid 2px #969696;
}
@media only screen and (max-width: 768px) {
  main .process .off .frame_left .frame_ttl {
    border-left: none;
  }
}
main .process .off .frame_left .frame_cnt {
  border-left: #969696 solid 2px;
}
@media only screen and (max-width: 768px) {
  main .process .off .frame_left .frame_cnt {
    border-left: none;
    border-right: none;
  }
}
@media only screen and (max-width: 768px) {
  main .process .off .frame_right {
    border: solid #969696 2px;
  }
}
main .process .off .frame_right .frame_ttl {
  background: #969696;
  border-right: solid 2px #969696;
}
@media only screen and (max-width: 768px) {
  main .process .off .frame_right .frame_ttl {
    border-right: none;
  }
}
main .process .off .frame_right .frame_cnt {
  border-right: #969696 solid 2px;
  border-left: #969696 solid 2px;
}
@media only screen and (max-width: 768px) {
  main .process .off .frame_right .frame_cnt {
    border-right: none;
    border-left: none;
  }
}
main .process .off .frame_ttl {
  background: #969696;
}
main .process .off .frame_cnt {
  color: #969696;
}
main .process .off .table-ttl {
  background: #969696;
}
main .process .off h3 {
  color: #969696;
}
main .process .off .aco_block {
  border: solid 1px #969696;
  pointer-events: none;
}
main .process .off .aco_block_ttl {
  background: #969696;
}
main .process .yoyaku-ttl {
  font-size: min(2.344vw, 24px);
  font-weight: 700;
  border-radius: 80px;
  color: #FFF;
  width: min(28.125vw, 288px);
  background: #000;
  margin: auto;
  padding: min(0.684vw, 7px) 0;
  margin-bottom: min(3.906vw, 40px);
}
@media only screen and (max-width: 768px) {
  main .process .yoyaku-ttl {
    font-size: 6.154vw;
    width: 66.154vw;
  }
}
main .process .yoyaku-txt {
  font-size: min(1.953vw, 20px);
  font-weight: 700;
  text-align: center;
  margin-bottom: min(2.93vw, 30px);
}
@media only screen and (max-width: 768px) {
  main .process .yoyaku-txt {
    font-size: 3.59vw;
    margin-bottom: 5.128vw;
    line-height: 214%;
  }
}
main .process .yoyaku-btn {
  width: min(42.773vw, 438px);
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .process .yoyaku-btn {
    width: 61.538vw;
  }
}
main .process .yoyaku-btn a {
  padding: min(0.977vw, 10px) 0;
}
@media only screen and (max-width: 768px) {
  main .process .yoyaku-btn a strong {
    font-size: 3.59vw;
  }
}
main .goods {
  position: relative;
}
main .goods_light01 {
  width: min(140.625vw, 1440px);
  position: absolute;
  right: 0;
  top: 250px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .goods_light01 {
    position: absolute;
    width: 100vw;
    top: auto;
    bottom: -30px;
  }
}
main .goods_light02 {
  width: min(140.625vw, 1440px);
  position: absolute;
  left: 0;
  top: 750px;
}
@media only screen and (max-width: 768px) {
  main .goods_light02 {
    left: 0;
    top: auto;
    position: absolute;
    width: 100vw;
    bottom: -150px;
  }
}
main .goods_light03 {
  width: min(134.961vw, 1382px);
  position: absolute;
  right: 0;
  bottom: 20px;
}
@media only screen and (max-width: 768px) {
  main .goods_light03 {
    right: 0;
    position: absolute;
    width: 100vw;
    bottom: -320px;
  }
}
main .goods_paint01 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -120px;
  top: -70px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .goods_paint01 {
    width: 10.256vw;
    top: 180px;
    right: -10px;
  }
}
main .goods_paint02 {
  width: min(8.594vw, 88px);
  position: absolute;
  left: -150px;
  top: 800px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .goods_paint02 {
    position: absolute;
    width: 20.513vw;
    top: 280px;
    right: -10px;
    left: auto;
  }
}
main .goods_paint03 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -170px;
  top: 400px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .goods_paint03 {
    position: absolute;
    width: 35.385vw;
    top: 400px;
    left: 5px;
  }
}
main .goods_paint04 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  top: 950px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .goods_paint04 {
    position: absolute;
    width: 20.513vw;
    top: 650px;
    right: -10px;
    left: auto;
  }
}
main .goods_paint05 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  top: 800px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .goods_paint05 {
    width: 10.256vw;
    top: auto;
    bottom: 30px;
    right: -10px;
  }
}
main .goods_paint06 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -120px;
  bottom: 1250px;
  z-index: 0;
}
main .goods_paint07 {
  width: min(8.594vw, 88px);
  position: absolute;
  left: -150px;
  bottom: 700px;
  z-index: 0;
}
main .goods_paint08 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -170px;
  bottom: 900px;
  z-index: 0;
}
main .goods_paint09 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  bottom: 200px;
  z-index: 0;
}
main .goods_paint10 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  bottom: 180px;
  z-index: 0;
}
main .present {
  position: relative;
}
main .present_light01 {
  width: min(140.625vw, 1440px);
  position: absolute;
  right: 0;
  top: -740px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .present_light01 {
    position: absolute;
    width: 100vw;
    top: auto;
    bottom: -300px;
  }
}
main .present_light02 {
  width: min(140.625vw, 1440px);
  position: absolute;
  left: 0;
  top: -350px;
}
@media only screen and (max-width: 768px) {
  main .present_light02 {
    position: absolute;
    width: 100vw;
    top: auto;
    left: auto;
    bottom: -350px;
  }
}
main .present_light03 {
  width: min(134.961vw, 1382px);
  position: absolute;
  right: 0;
  bottom: -850px;
}
@media only screen and (max-width: 768px) {
  main .present_light03 {
    position: absolute;
    width: 100vw;
    right: auto;
    bottom: -600px;
  }
}
main .present_paint01 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -120px;
  top: -70px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .present_paint01 {
    width: 20.513vw;
    top: -80px;
    right: -10px;
    left: auto;
  }
}
main .present_paint02 {
  width: min(8.594vw, 88px);
  position: absolute;
  left: -150px;
  top: 800px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .present_paint02 {
    width: 35.385vw;
    top: 0px;
    left: 5px;
  }
}
main .present_paint03 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -170px;
  top: 400px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .present_paint03 {
    width: 20.513vw;
    top: 300px;
    right: -10px;
    left: auto;
  }
}
main .present_paint04 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  top: 950px;
  z-index: 0;
}
main .present_paint05 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  top: 800px;
  z-index: 0;
}
main .image_txt {
  font-size: min(1.953vw, 20px);
  margin-bottom: min(3.906vw, 40px);
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  main .image_txt {
    font-size: 3.59vw;
    margin-bottom: 7.692vw;
  }
}
main .image_paint01 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -120px;
  top: 70px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .image_paint01 {
    width: 10.256vw;
    top: 20px;
    right: -10px;
  }
}
main .image_paint02 {
  width: min(18.262vw, 187px);
  position: absolute;
  right: -170px;
  top: 540px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .image_paint02 {
    position: absolute;
    width: 20.513vw;
    top: 150px;
    right: -10px;
    left: auto;
  }
}
main .image_paint03 {
  position: absolute;
  width: 35.385vw;
  bottom: -80px;
  left: 5px;
}
main .contact {
  position: relative;
}
main .contact .tougenanki_wrap_blc {
  margin-bottom: 0;
}
main .contact_send {
  font-size: min(1.953vw, 20px);
  font-weight: 500;
  line-height: 170%;
  margin-bottom: min(5.859vw, 60px);
}
@media only screen and (max-width: 768px) {
  main .contact_send {
    font-size: 3.59vw;
    margin-bottom: 16.667vw;
  }
}
main .contact_send a {
  text-decoration: underline;
}
main .contact_change {
  font-size: min(1.367vw, 14px);
  font-weight: 500;
  line-height: 170%;
  margin-bottom: min(5.859vw, 60px);
}
@media only screen and (max-width: 768px) {
  main .contact_change {
    font-size: 3.333vw;
    margin-bottom: 16.667vw;
  }
}
main .contact_txt {
  font-size: min(1.953vw, 20px);
  font-weight: 500;
  line-height: 170%;
  margin-bottom: min(2.93vw, 30px);
}
@media only screen and (max-width: 768px) {
  main .contact_txt {
    font-size: 3.59vw;
    margin-bottom: 7.692vw;
  }
}
@media only screen and (max-width: 768px) {
  main .contact .btn_style-01 {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  main .contact .btn_style-01::before {
    right: 5.128vw;
  }
}
main .contact .btn_style-01::after {
  left: min(11.23vw, 115px);
}
@media only screen and (max-width: 768px) {
  main .contact .btn_style-01::after {
    width: 7.179vw;
    height: 7.179vw;
    left: 5.128vw;
  }
}
main .contact .btn_style-01_wrap {
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .contact .btn_style-01_wrap {
    height: 17.436vw;
  }
}
@media only screen and (max-width: 768px) {
  main .contact .btn_style-01 strong {
    font-size: 3.59vw;
  }
}
main .contact_light01 {
  width: min(140.625vw, 1440px);
  position: absolute;
  right: 0;
  top: -700px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  main .contact_light01 {
    position: absolute;
    width: 100vw;
    top: auto;
    bottom: 300px;
  }
}
main .contact_light02 {
  width: min(140.625vw, 1440px);
  position: absolute;
  left: 0;
  top: -300px;
}
@media only screen and (max-width: 768px) {
  main .contact_light02 {
    position: absolute;
    width: 100vw;
    top: auto;
    bottom: 250px;
  }
}
main .contact_light03 {
  width: min(134.961vw, 1382px);
  position: absolute;
  right: 0;
  bottom: -1250px;
}
@media only screen and (max-width: 768px) {
  main .contact_light03 {
    position: absolute;
    width: 100vw;
    right: auto;
    bottom: 350px;
  }
}
@media only screen and (max-width: 768px) {
  main .contact_light04 {
    position: absolute;
    width: 100vw;
    top: auto;
    left: 0;
    bottom: -820px;
  }
}
main .contact_paint01 {
  width: min(8.594vw, 88px);
  position: absolute;
  left: -150px;
  top: 130px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .contact_paint01 {
    position: absolute;
    width: 20.513vw;
    top: 40px;
    right: -10px;
    left: auto;
  }
}
main .contact_paint02 {
  width: min(32.91vw, 337px);
  position: absolute;
  left: -300px;
  bottom: 50px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .contact_paint02 {
    width: 10.256vw;
    top: 500px;
    left: auto;
    right: -10px;
  }
}
main .contact_paint03 {
  width: min(28.613vw, 293px);
  position: absolute;
  right: -240px;
  bottom: 80px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .contact_paint03 {
    position: absolute;
    width: 20.513vw;
    bottom: 120px;
    right: -10px;
    left: auto;
  }
}
main .contact_paint04 {
  position: absolute;
  width: 35.385vw;
  bottom: -20px;
  left: 5px;
}
main .tougenanki {
  position: relative;
  padding: min(0vw, 0px) 0 min(9.766vw, 100px);
}
@media only screen and (max-width: 768px) {
  main .tougenanki {
    padding-bottom: 24.359vw;
  }
}
main .tougenanki .inner {
  max-width: min(103.516vw, 1060px);
  position: relative;
  z-index: 2;
}
main .tougenanki .light-inner {
  position: relative;
  z-index: 1;
}
main .tougenanki_wrap_blc {
  position: relative;
  background: #fff;
  padding: min(11.719vw, 120px) min(4.883vw, 50px) min(5.859vw, 60px);
  margin-bottom: min(16.602vw, 170px);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc {
    padding: 23.077vw 6.667vw 12.821vw;
    margin-bottom: 25.641vw;
  }
}
main .tougenanki_wrap_blc_img {
  margin-bottom: min(5.859vw, 60px);
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc_img {
    margin-bottom: 5.128vw;
  }
}
main .tougenanki_wrap_blc_img:last-of-type {
  margin-bottom: min(8.008vw, 82px);
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc_img:last-of-type {
    margin-bottom: 10.256vw;
  }
}
main .tougenanki_wrap_blc_ttl {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -79px;
  bottom: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(36.621vw, 375px);
  height: min(13.574vw, 139px);
  font-size: min(3.516vw, 36px);
  padding-bottom: min(0.391vw, 4px);
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc_ttl {
    width: 63.077vw;
    outline-offset: -2.051vw;
    height: 15.897vw;
    font-size: 4.615vw;
    top: -8.205vw;
    padding-bottom: 0.5vw;
  }
}
main .tougenanki_wrap_blc .aco_block {
  border: #000 solid 2px;
}
main .tougenanki_wrap_blc .aco_block_ttl {
  background: #000;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .aco_block_ttl {
    padding: 5.128vw 7.692vw 5.128vw 5.128vw;
  }
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .aco_block_ttl_txt p {
    text-align: center;
  }
}
main .tougenanki_wrap_blc .aco_block ul li {
  font-size: min(1.367vw, 14px);
  line-height: 170%;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .aco_block ul li {
    font-size: 3.59vw;
  }
}
main .tougenanki_wrap_blc_head_style01 {
  position: relative;
}
main .tougenanki_wrap_blc_head_style01::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 50%;
  height: 2px;
  left: 0;
  top: 37%;
  background: #DCDCDC;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc_head_style01::before {
    width: 28%;
    top: 37%;
  }
}
main .tougenanki_wrap_blc_head_style01::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 50%;
  height: 2px;
  right: 0;
  top: 37%;
  background: #DCDCDC;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc_head_style01::after {
    width: 28%;
    top: 37%;
  }
}
main .tougenanki_wrap_blc_head_style01 h3 {
  display: inline-block;
  margin: 0 auto min(1.953vw, 20px);
  font-size: min(2.539vw, 26px);
  font-weight: bold;
  color: #000;
  letter-spacing: 0.2rem;
  z-index: 1;
  background: #fff;
  padding: 0 min(2.539vw, 26px);
  position: relative;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc_head_style01 h3 {
    margin-bottom: 5.128vw;
    font-size: 5.641vw;
    letter-spacing: 0.3rem;
    line-height: 130%;
  }
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 {
  width: min(42.773vw, 438px);
  height: min(6.25vw, 64px);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 {
    width: 61.538vw;
    height: 12.821vw;
  }
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 a {
  font-size: min(1.953vw, 20px);
  box-shadow: 4px 4px 0px 0 #000;
  border: solid 2px #000;
  color: #000;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 a {
    font-size: 3.59vw;
  }
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 a:hover {
  box-shadow: 0 0 0 0;
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 a::before {
  width: min(0.684vw, 7px);
  right: min(1.465vw, 15px);
  background: url(../img/icon_arrow02.svg) no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_01 a::before {
    width: 1.795vw;
    height: 2.564vw;
    right: 3.846vw;
  }
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 {
  width: min(23.438vw, 240px);
  height: min(4.883vw, 50px);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 {
    width: 61.538vw;
    height: 12.821vw;
  }
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 a {
  font-size: min(1.367vw, 14px);
  box-shadow: 4px 4px 0px 0 #000;
  border: solid 2px #000;
  color: #000;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 a {
    font-size: 3.59vw;
  }
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 a:hover {
  box-shadow: 0 0 0 0;
}
main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 a::before {
  width: min(0.684vw, 7px);
  right: min(1.465vw, 15px);
  background: url(../img/icon_arrow02.svg) no-repeat center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  main .tougenanki_wrap_blc .btntype01 .btn_style-02_wrap_02 a::before {
    width: 1.795vw;
    height: 2.564vw;
    right: 3.846vw;
  }
}