@charset "UTF-8";
/* ==========================================================
  カラー変数
========================================================== */
/* ==========================================================
  フォント
========================================================== */
/* ==========================================================
  FONT SIZES (rem)
========================================================== */
/* ===================================================================
CSS information
 file name  :top.scss
 style info :トップのスタイル
=================================================================== */
#visual {
  position: relative;
  overflow: hidden;
  background: #fff;
}
#visual .visualLoader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #262626;
  border-radius: 50%;
  -webkit-animation: visualSpin 0.8s linear infinite;
          animation: visualSpin 0.8s linear infinite;
  z-index: 1;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#visual.is-loaded .visualLoader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#visual .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  overflow: hidden;
}
#visual .slide.active {
  opacity: 1;
}
#visual .slide:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 0;
  -webkit-transform: scale(1) translateZ(0);
          transform: scale(1) translateZ(0);
  -webkit-transition: -webkit-transform 5s linear;
  transition: -webkit-transform 5s linear;
  transition: transform 5s linear;
  transition: transform 5s linear, -webkit-transform 5s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
#visual .slide:before {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(50%, transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.25)), color-stop(50%, transparent));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 50%, transparent 50%), linear-gradient(rgba(0, 0, 0, 0.25) 50%, transparent 50%);
  background-size: 2px 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #visual .slide {
    aspect-ratio: 2880/1944;
  }
}
@media screen and (max-width: 767px) {
  #visual .slide {
    aspect-ratio: 750/900;
  }
}
#visual .slide01 {
  position: relative;
}
@media screen and (min-width: 768px) {
  #visual .slide01:after {
    background-image: url(../img/top/img_main_fukuoka_pc.jpg);
    background-image: url(../img/top/img_main_fukuoka_pc.webp);
  }
}
@media screen and (max-width: 767px) {
  #visual .slide01:after {
    background-image: url(../img/top/img_main_fukuoka_sp.jpg);
    background-image: url(../img/top/img_main_fukuoka_sp.webp);
  }
}
@media screen and (min-width: 768px) {
  #visual .slide02:after {
    background-image: url(../img/top/img_main_osaka_pc.jpg);
    background-image: url(../img/top/img_main_osaka_pc.webp);
  }
}
@media screen and (max-width: 767px) {
  #visual .slide02:after {
    background-image: url(../img/top/img_main_osaka_sp.jpg);
    background-image: url(../img/top/img_main_osaka_sp.webp);
  }
}
#visual .slideIndicator {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  #visual .slideIndicator {
    bottom: 2vw;
  }
}
@media screen and (max-width: 767px) {
  #visual .slideIndicator {
    bottom: 4vw;
  }
}
#visual .slideIndicator button {
  display: block;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  #visual .slideIndicator button {
    width: 5rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  #visual .slideIndicator button {
    width: 10vw;
    height: 1vw;
  }
}
#visual .slideIndicator button.active {
  background: #fff;
}
#visual h1 {
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.2rem black);
          filter: drop-shadow(0.1rem 0.1rem 0.2rem black);
  position: absolute;
  left: 4vw;
  z-index: 2;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #visual h1 {
    font-size: 4vw;
    top: 10vw;
  }
}
@media screen and (max-width: 767px) {
  #visual h1 {
    font-size: 9vw;
    top: 22vw;
  }
}
#visual .txtBox {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #262626;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #visual .txtBox {
    top: 31vw;
    left: -2vw;
    padding: 0.5vw 4vw 0.5vw 6.2vw;
  }
}
@media screen and (max-width: 767px) {
  #visual .txtBox {
    top: 56vw;
    left: -4vw;
    padding: 1vw 4vw 1vw 8.4vw;
  }
}
#visual .txtBox p {
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}
@media screen and (min-width: 768px) {
  #visual .txtBox p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  #visual .txtBox p {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  #visual .txtBox p span {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  #visual .txtBox p span {
    font-size: 2.2vw;
  }
}
#visual .txtBox p.fukuoka {
  color: #11b9c3;
}
#visual .txtBox p.osaka {
  color: #f4942c;
}
#visual .mainBnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #visual .mainBnr {
    position: absolute;
    left: 14vw;
    z-index: 1;
    bottom: 14vw;
    width: 71vw;
  }
  #visual .mainBnr li {
    width: 34.5vw;
  }
}
@media screen and (max-width: 767px) {
  #visual .mainBnr {
    display: none;
  }
}
#visual.is-loaded h1 {
  -webkit-animation: fadeInUpH1 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
          animation: fadeInUpH1 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}
#visual.is-loaded .txtBox {
  -webkit-animation: fadeInUpTxtBox 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
          animation: fadeInUpTxtBox 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
}

.content:before {
  display: block;
  content: "";
  background: url(../img/shared/bg_v.png) no-repeat top right -20vw/auto 100%;
  position: sticky;
  top: 0;
  right: 0;
  z-index: -1;
  width: auto;
  height: 60vw;
}
.content .inner {
  margin-top: -58vw;
}
@media screen and (max-width: 767px) {
  .content .inner {
    padding-top: 2rem;
  }
}
.content .inner .sec {
  padding: 4rem 0;
}
.content .inner .sec h2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 1rem;
}
.content .inner .sec h2 .jaTxt {
  position: relative;
  display: inline-block;
  color: #262626;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .content .inner .sec h2 .jaTxt {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec h2 .jaTxt {
    font-size: 6.4vw;
    margin-bottom: 1vw;
  }
}
.content .inner .sec h2 .jaTxt:before {
  display: block;
  content: "";
  background: #ccc;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .content .inner .sec h2 .jaTxt:before {
    height: 0.15rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec h2 .jaTxt:before {
    height: 0.3vw;
  }
}
.content .inner .sec h2 .jaTxt:after {
  display: block;
  content: "";
  width: 3rem;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.5rem);
  background: #262626;
}
@media screen and (min-width: 768px) {
  .content .inner .sec h2 .jaTxt:after {
    height: 0.15rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec h2 .jaTxt:after {
    height: 0.3vw;
  }
}
.content .inner .sec h2 .enTxt {
  display: block;
  color: #ccc;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .content .inner .sec h2 .enTxt {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec h2 .enTxt {
    font-size: 3vw;
  }
}
.content .inner .sec#news h2 {
  margin-bottom: 2rem;
}
.content .inner .sec#news .box {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .content .inner .sec#news .box {
    background: rgba(255, 255, 255, 0.6);
    width: min(96%, 1000px);
    padding: 4rem 2rem;
  }
}
@media screen and (min-width: 1921px) {
  .content .inner .sec#news .box {
    width: 60%;
  }
}
.content .inner .sec#news .box p {
  color: #262626;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.content .inner .sec#news .box dl {
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: solid 1px #ccc;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .content .inner .sec#news .box dl {
    width: min(96%, 700px);
  }
}
@media screen and (min-width: 1921px) {
  .content .inner .sec#news .box dl {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec#news .box dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 90%;
  }
}
.content .inner .sec#news .box dl dt {
  color: #fff;
  background: #262626;
}
@media screen and (min-width: 768px) {
  .content .inner .sec#news .box dl dt {
    width: 6em;
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec#news .box dl dt {
    padding: 0.5rem 1rem;
  }
}
.content .inner .sec#news .box dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .content .inner .sec#news .box dl dd {
    width: calc(100% - 6em);
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec#news .box dl dd {
    padding: 0.5rem 1rem;
  }
}
.content .inner .sec#news .box dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .content .inner .sec#news .box dl dd ul {
    gap: 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .sec#news .box dl dd ul {
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.content .inner .sec#news .box dl dd ul li.fukuoka {
  color: #11b9c3;
}
.content .inner .sec#news .box dl dd ul li.osaka {
  color: #f4942c;
}
.content .inner .sec#news .box .txtNote {
  color: #262626;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
}
.content .inner .mainBnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .content .inner .mainBnr {
    width: min(92%, 960px);
  }
  .content .inner .mainBnr li {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 1921px) {
  .content .inner .mainBnr {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .mainBnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 1rem 0;
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .content .inner .bnrArea {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .bnrArea {
    padding: 6vw 0;
  }
}
.content .inner .bnrArea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .content .inner .bnrArea ul {
    width: min(96%, 1280px);
  }
}
@media screen and (min-width: 1921px) {
  .content .inner .bnrArea ul {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .content .inner .bnrArea ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .content .inner .bnrArea ul li {
    width: calc((100% - 2rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  .content .inner .bnrArea ul li {
    width: 100%;
  }
}

@-webkit-keyframes slideZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@keyframes slideZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
@-webkit-keyframes fadeInUpH1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUpH1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUpTxtBox {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-45deg) translateY(30px);
            transform: skewX(-45deg) translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-45deg) translateY(0);
            transform: skewX(-45deg) translateY(0);
  }
}
@keyframes fadeInUpTxtBox {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-45deg) translateY(30px);
            transform: skewX(-45deg) translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-45deg) translateY(0);
            transform: skewX(-45deg) translateY(0);
  }
}
@-webkit-keyframes visualSpin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes visualSpin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}