@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}

@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}

@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}

@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}

/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  overflow-x: hidden !important;
  font-weight: 400;
  color: #333;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  background: url(../images/top/background.png) no-repeat center/cover;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  padding: 0 15px;
  margin: auto;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: 310px;
  height: 110px;
  background: #fff;
  border-radius: 0 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.header .logo {
  width: 220px;
}

@media (max-width: 1024px) {
  .header {
    width: 180px;
    height: 90px;
    border-radius: 0 0 15px 0;
  }
  .header .logo {
    width: 150px;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  padding: 130px 0 25px;
  background: #fff;
}

.footer .logo {
  width: 320px;
  margin: auto;
}

.footer .contact .text {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
}

.footer .contact .tel_btn {
  width: 310px;
  height: 40px;
  border: 2px solid #333;
  border-radius: 50px;
  margin: 15px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.footer .contact .tel_btn .link {
  position: absolute;
  inset: 0;
}

.footer .contact .tel_btn .tel_num {
  font-size: 22px;
  font-weight: 600;
}

.footer .sponsorship {
  font-size: 10px;
  text-align: center;
  line-height: 1.4;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer {
    padding: 90px 0 20px;
  }
  .footer .logo {
    width: 220px;
  }
  .footer .contact .text {
    font-size: 18px;
  }
  .footer .contact .tel_btn {
    width: 280px;
    height: 30px;
    margin: 15px auto 0;
  }
  .footer .contact .tel_btn .tel_num {
    font-size: 18px;
  }
  .footer .sponsorship {
    padding: 0 15px;
  }
}

/* ---------------------------------------------------------
    side_bar
--------------------------------------------------------- */
.side_bar {
  width: 60px;
  padding: 15px 0;
  background: #f29600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
}

.side_bar::before {
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.side_bar .link {
  position: absolute;
  inset: 0;
}

.side_bar .text {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.side_bar .text span {
  font-size: 16px;
}

@media (max-width: 767px) {
  .side_bar {
    width: 100%;
    padding: 20px 0;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
  }
  .side_bar .text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

/* ---------------------------------------------------------
    mainvisual
--------------------------------------------------------- */
.sect_mainVisual {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sect_mainVisual .mainVisual {
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background: url(../images/top/background_mv.png) no-repeat center/cover;
  position: relative;
}

.sect_mainVisual .mainVisual .mainvisual_master {
  width: 95%;
  height: 100%;
}

.sect_mainVisual .mainVisual .mainvisual_master .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.sect_mainVisual .mainVisual .title {
  max-width: 550px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
}

.sect_mainVisual .mainVisual .guest {
  max-width: 310px;
  bottom: 0;
  left: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  z-index: 3;
  display: none;
}

.sect_mainVisual .mainVisual .slider {
  display: contents;
}

.sect_mainVisual .mainVisual .slider .event {
  position: absolute;
}

.sect_mainVisual .mainVisual .slider .event.event_1 {
  max-width: 280px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.sect_mainVisual .mainVisual .slider .event.event_2 {
  max-width: 300px;
  top: 0;
  left: 260px;
  display: none;
}

.sect_mainVisual .mainVisual .slider .event.event_3 {
  max-width: 450px;
  top: 35px;
  right: 6%;
  display: none;
}

.sect_mainVisual .mainVisual .slider .event.event_4 {
  max-width: 310px;
  bottom: 100px;
  right: 9%;
  display: none;
}

.sect_mainVisual .mainVisual .slider .event.event_5 {
  max-width: 360px;
  bottom: -30px;
  right: -30px;
}

.sect_mainVisual .mainVisual .slider .event.event_5 .sp {
  display: none;
}

.sect_mainVisual .mainVisual .scrolldown {
  position: absolute;
  bottom: 1%;
  left: 0;
  -webkit-animation: arrowmove 2s ease-in-out infinite;
          animation: arrowmove 2s ease-in-out infinite;
}

.sect_mainVisual .mainVisual .scrolldown::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: calc(50% + 10px);
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transform: skewX(31deg);
          transform: skewX(31deg);
}

.sect_mainVisual .mainVisual .scrolldown::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: calc(50% + 18px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 140px;
  background: #000;
}

.sect_mainVisual .mainVisual .scrolldown--span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #000;
  font-size: 22px;
  letter-spacing: 0.05em;
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
      writing-mode: sideways-lr;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}

@media (max-width: 1024px) {
  .sect_mainVisual {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
  }
  .sect_mainVisual .mainVisual {
    width: calc(100% - 30px);
    height: 1000px;
    position: relative;
    margin: 15px 0;
  }
  .sect_mainVisual .mainVisual .mainvisual_master {
    display: none;
  }
  .sect_mainVisual .mainVisual .title {
    width: 500px;
    top: 30%;
    display: block;
  }
  .sect_mainVisual .mainVisual .guest {
    display: none;
  }
  .sect_mainVisual .mainVisual .slider {
    display: block;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .sect_mainVisual .mainVisual .slider .event {
    position: static;
    display: inline-block;
    margin-right: 40px;
  }
  .sect_mainVisual .mainVisual .slider .event img {
    width: 100%;
    height: auto;
    display: block;
  }
  .sect_mainVisual .mainVisual .slider .event.event_1 {
    max-width: 280px;
    -webkit-transform: none;
            transform: none;
    display: block;
  }
  .sect_mainVisual .mainVisual .slider .event.event_2 {
    max-width: 380px;
    display: block;
  }
  .sect_mainVisual .mainVisual .slider .event.event_3 {
    max-width: 450px;
    display: block;
  }
  .sect_mainVisual .mainVisual .slider .event.event_4 {
    max-width: 350px;
    display: block;
  }
  .sect_mainVisual .mainVisual .slider .event.event_5 {
    max-width: 360px;
  }
  .sect_mainVisual .mainVisual .slider .event.event_5 .pc {
    display: none;
  }
  .sect_mainVisual .mainVisual .slider .event.event_5 .sp {
    display: block;
  }
  .sect_mainVisual .mainVisual .slider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .sect_mainVisual .mainVisual {
    height: auto;
    position: relative;
    margin: 15px 0;
  }
  .sect_mainVisual .mainVisual .title {
    width: 90%;
    max-width: 500px;
    position: static;
    -webkit-transform: none;
            transform: none;
    margin: 100px auto 0;
  }
  .sect_mainVisual .mainVisual .slider {
    margin-top: 20px;
    position: static;
  }
  .sect_mainVisual .mainVisual .slider .event {
    margin-right: 40px;
  }
  .sect_mainVisual .mainVisual .slider .event.event_1 {
    max-width: 200px;
    -webkit-transform: none;
            transform: none;
  }
  .sect_mainVisual .mainVisual .slider .event.event_2 {
    max-width: 280px;
  }
  .sect_mainVisual .mainVisual .slider .event.event_3 {
    max-width: 350px;
  }
  .sect_mainVisual .mainVisual .slider .event.event_4 {
    max-width: 250px;
  }
  .sect_mainVisual .mainVisual .slider .event.event_5 {
    max-width: 260px;
  }
  .sect_mainVisual .mainVisual .scrolldown {
    left: 46%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: arrowmove 2s ease-in-out infinite;
            animation: arrowmove 2s ease-in-out infinite;
  }
  .sect_mainVisual .mainVisual .scrolldown::before {
    bottom: -25px;
    left: calc(50% + 13px);
    width: 2px;
    height: 15px;
  }
  .sect_mainVisual .mainVisual .scrolldown::after {
    bottom: -25px;
    left: calc(50% + 18px);
    height: 90px;
  }
  .sect_mainVisual .mainVisual .scrolldown--span {
    position: absolute;
    bottom: 5px;
    font-size: 16px;
  }
}

/* ---------------------------------------------------------
    未来応援フェスって何？
--------------------------------------------------------- */
.sect_what {
  padding: 120px 0 110px;
}

.sect_what .inner .what {
  padding: 70px 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  position: relative;
}

.sect_what .inner .what .sect_title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  margin: auto;
}

.sect_what .inner .what .sect_title span {
  font-size: 32px;
}

.sect_what .inner .what .sentence {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 50px;
  text-align: center;
}

.sect_what .inner .what .license {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 50px;
  text-align: center;
}

.sect_what .inner .what .btn {
  width: 400px;
  height: 55px;
  background: #f29600;
  margin: 50px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sect_what .inner .what .btn::before {
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sect_what .inner .what .btn .link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sect_what .inner .what .btn .text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.sect_what .inner .what .btn .text span {
  font-size: 16px;
}

.sect_what .inner .what .what_logo_1 {
  width: 16vw;
  max-width: 255px;
  position: absolute;
  top: -15px;
  left: -40px;
}

.sect_what .inner .what .what_logo_2 {
  width: 14.5vw;
  max-width: 220px;
  position: absolute;
  bottom: -20px;
  right: -35px;
}

@media (max-width: 1024px) {
  .sect_what .inner .what .what_logo_1 {
    min-width: 165px;
    left: 0;
  }
  .sect_what .inner .what .what_logo_2 {
    min-width: 145px;
    right: 0;
  }
}

@media (max-width: 767px) {
  .sect_what {
    padding: 120px 0 75px;
  }
  .sect_what .inner .what {
    padding: 50px 15px 30px;
    border-radius: 15px;
  }
  .sect_what .inner .what .sect_title {
    font-size: 14px;
  }
  .sect_what .inner .what .sect_title span {
    font-size: 24px;
  }
  .sect_what .inner .what .sentence {
    font-size: 14px;
    margin-top: 35px;
  }
  .sect_what .inner .what .license {
    font-size: 14px;
    margin-top: 35px;
  }
  .sect_what .inner .what .btn {
    width: 250px;
    height: 40px;
    margin: 35px auto 0;
  }
  .sect_what .inner .what .btn::before {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }
  .sect_what .inner .what .btn .text {
    font-size: 18px;
  }
  .sect_what .inner .what .btn .text span {
    font-size: 12px;
  }
  .sect_what .inner .what .what_logo_1 {
    top: -60px;
    left: 5px;
  }
  .sect_what .inner .what .what_logo_2 {
    bottom: -30px;
    right: 5px;
  }
}

/* ---------------------------------------------------------
    MIRAI OHEN FESTIVAL
--------------------------------------------------------- */
.flowing_text {
  overflow: hidden;
}

.flowing_text .flows {
  height: 120px;
}

.flowing_text .flows .image {
  width: auto;
  height: 100%;
}

@media (max-width: 767px) {
  .flowing_text .flows {
    height: 85px;
  }
}

/* ---------------------------------------------------------
    セクション スケジュール
--------------------------------------------------------- */
.sect_program {
  margin-top: 90px;
}

.sect_program .inner .program {
  padding: 40px 15px 210px;
  background: #fff;
  border-radius: 20px;
  position: relative;
}

.sect_program .inner .program .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 10PX;
  margin: auto;
  border-bottom: 1px solid #333;
}

.sect_program .inner .program .schedule {
  max-width: 650px;
  margin: 80px auto 50px;
}

.sect_program .inner .program .guest {
  max-width: 650px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 160px 1fr;
      grid-template-columns: 160px 1fr;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.sect_program .inner .program .guest .guest_image {
  width: 100%;
}

.sect_program .inner .program .guest .text_wrap .guest_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: 600;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  margin: auto;
}

.sect_program .inner .program .guest .text_wrap .guest_title span {
  font-size: 40px;
}

.sect_program .inner .program .guest .text_wrap .sentence {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 25px;
}

.sect_program .inner .program .guest .guest_logo {
  width: 220px;
  position: absolute;
  right: -100px;
  bottom: 0;
}

.sect_program .inner .program .btn {
  width: 500px;
  height: 80px;
  background: #f29600;
  margin: 50px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sect_program .inner .program .btn::before {
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sect_program .inner .program .btn .link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sect_program .inner .program .btn .text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.sect_program .inner .program .btn .text span {
  font-size: 16px;
}

.sect_program .inner .program .btn .illust {
  width: 250px;
  position: absolute;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sect_program .inner .program .illust_1 {
  width: 185px;
  position: absolute;
  top: 20%;
  left: -90px;
}

.sect_program .inner .program .illust_2 {
  width: 250px;
  position: absolute;
  top: -2%;
  right: -120px;
}

.sect_program .inner .program .illust_3 {
  width: 210px;
  position: absolute;
  top: 50%;
  right: -80px;
}

@media (max-width: 1279px) {
  .sect_program .inner .program .guest .guest_logo {
    right: 0;
  }
  .sect_program .inner .program .illust_1 {
    width: 140px;
    top: -5%;
    left: 0;
  }
  .sect_program .inner .program .illust_2 {
    width: 180px;
    top: -2%;
    right: -5px;
  }
  .sect_program .inner .program .illust_3 {
    width: 150px;
    top: auto;
    bottom: -30px;
    right: 5px;
  }
}

@media (max-width: 1023px) {
  .sect_program .inner .program .illust_1 {
    display: none;
  }
  .sect_program .inner .program .illust_2 {
    display: none;
  }
  .sect_program .inner .program .illust_3 {
    display: none;
  }
}

@media (max-width: 767px) {
  .sect_program {
    margin-top: 65px;
  }
  .sect_program .inner .program {
    padding: 30px 15px 145px;
    border-radius: 15px;
  }
  .sect_program .inner .program .sect_title {
    font-size: 18px;
  }
  .sect_program .inner .program .schedule {
    max-width: 650px;
    margin: 55px auto 35px;
  }
  .sect_program .inner .program .guest {
    -ms-grid-columns: 120px 1fr;
        grid-template-columns: 120px 1fr;
  }
  .sect_program .inner .program .guest .text_wrap .guest_title {
    font-size: 12px;
  }
  .sect_program .inner .program .guest .text_wrap .guest_title span {
    font-size: 20px;
  }
  .sect_program .inner .program .guest .text_wrap .sentence {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 25px;
  }
  .sect_program .inner .program .guest .guest_logo {
    width: 160px;
    right: 0;
  }
  .sect_program .inner .program .btn {
    width: 300px;
    height: 60px;
    margin: 40px auto 0;
    bottom: -30px;
  }
  .sect_program .inner .program .btn .text {
    color: #fff;
    font-size: 18px;
  }
  .sect_program .inner .program .btn .text span {
    font-size: 14px;
  }
  .sect_program .inner .program .btn .illust {
    width: 180px;
    top: -65px;
  }
}

/* ---------------------------------------------------------
    セクション アクセス
--------------------------------------------------------- */
.sect_access {
  margin: 300px 0 130px;
}

.sect_access .access {
  position: relative;
  margin-bottom: 300px;
}

.sect_access .access .hall_image {
  width: 55%;
}

.sect_access .access .access_content {
  width: 580px;
  padding: 35px 50px 55px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50px;
  left: 50%;
}

.sect_access .access .access_content .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 600;
  padding: 0 50px 10px;
  border-bottom: 1px solid #333;
  margin: auto;
}

.sect_access .access .access_content .address {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 30px;
}

.sect_access .access .access_content .detail {
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.4;
}

.sect_access .access .access_content .detail.first {
  margin-top: 15px;
}

.sect_access .access .access_content .map {
  margin-top: 25px;
  width: 100%;
}

.sect_access .access .access_content .map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 47 / 35;
}

.sect_access .btn {
  width: 500px;
  height: 80px;
  background: #f29600;
  margin: 50px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sect_access .btn::before {
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sect_access .btn .link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sect_access .btn .text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.sect_access .btn .text span {
  font-size: 16px;
}

@media (max-width: 1279px) {
  .sect_access {
    margin: 300px 0 130;
  }
  .sect_access .access {
    position: static;
    margin-bottom: 80px;
  }
  .sect_access .access .hall_image {
    width: 80%;
  }
  .sect_access .access .access_content {
    margin: 30px auto 0;
    position: static;
  }
  .sect_access .access .access_content .sect_title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 32px;
    font-weight: 600;
    padding: 0 50px 10px;
    border-bottom: 1px solid #333;
    margin: auto;
  }
  .sect_access .access .access_content .address {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 30px;
  }
  .sect_access .access .access_content .detail {
    font-size: 16px;
    margin-top: 5px;
    line-height: 1.4;
  }
  .sect_access .access .access_content .detail.first {
    margin-top: 15px;
  }
  .sect_access .access .access_content .map {
    margin-top: 25px;
    width: 100%;
  }
  .sect_access .access .access_content .map iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 47 / 35;
  }
  .sect_access .btn {
    width: 500px;
    height: 80px;
    background: #f29600;
    margin: 50px auto 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sect_access .btn::before {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sect_access .btn .link {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .sect_access .btn .text {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
  }
  .sect_access .btn .text span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .sect_access {
    margin: 210px 0 90px;
  }
  .sect_access .access {
    margin-bottom: 60px;
  }
  .sect_access .access .hall_image {
    width: 90%;
  }
  .sect_access .access .access_content {
    width: calc(100% - 30px);
    margin: 30px auto 0;
    padding: 25px 20px 40px;
  }
  .sect_access .access .access_content .sect_title {
    font-size: 24px;
    padding: 0 20px 10px;
  }
  .sect_access .access .access_content .address {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 20px;
  }
  .sect_access .access .access_content .detail {
    font-size: 14px;
  }
  .sect_access .access .access_content .map {
    margin-top: 25px;
  }
  .sect_access .access .access_content .map iframe {
    aspect-ratio: 3 / 2;
  }
  .sect_access .btn {
    width: 300px;
    height: 60px;
    margin: 40px auto 0;
  }
  .sect_access .btn .text {
    color: #fff;
    font-size: 18px;
  }
  .sect_access .btn .text span {
    font-size: 14px;
  }
}
/*# sourceMappingURL=top.css.map */