@import url("https://fonts.googleapis.com/css?family=Roboto:700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url(https://fonts.googleapis.com/css?family=Barlow+Condensed&display=swap);
@import url(common.css);
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}
.loading figure {
  -webkit-animation: logoFade 3s ease-in-out forwards;
          animation: logoFade 3s ease-in-out forwards;
  position: relative;
  overflow: hidden;
}
.loading figure::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  -webkit-animation: shine 1.2s ease-in-out 0.5s forwards;
          animation: shine 1.2s ease-in-out 0.5s forwards;
  pointer-events: none;
}
.loading figure img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .loading figure img {
    max-width: 200px;
  }
}
@-webkit-keyframes logoFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logoFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

article.mainv {
  height: calc(92vh - 80px);
  background: #ccc;
  margin-bottom: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadeIn1 1.5s ease-in-out forwards;
          animation: fadeIn1 1.5s ease-in-out forwards;
}
@media screen and (max-width: 960px) {
  article.mainv {
    height: auto;
    aspect-ratio: 4/3;
    margin-bottom: 60px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.mainv {
    aspect-ratio: 16/10;
  }
}
article.mainv h1 {
  position: absolute;
  bottom: 0px;
  right: 60px;
  font-size: 1.8rem;
  color: #0077c8;
  letter-spacing: 5px;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  article.mainv h1 {
    font-size: 1.2rem;
    right: 10px;
    letter-spacing: 1px;
    bottom: 0px;
  }
}
body.fs-large article.mainv h1 {
  font-size: 2.2rem;
}
@media screen and (max-width: 640px) {
  body.fs-large article.mainv h1 {
    font-size: 1.4rem;
  }
}
@-webkit-keyframes fadeIn1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
article.mainv .top_slide {
  height: calc(92vh - 80px);
  width: 100%;
}
@media screen and (max-width: 960px) {
  article.mainv .top_slide {
    height: auto;
  }
}
article.mainv .top_slide .slick-list,
article.mainv .top_slide .slick-track {
  height: calc(92vh - 80px);
}
@media screen and (max-width: 960px) {
  article.mainv .top_slide .slick-list,
article.mainv .top_slide .slick-track {
    height: auto;
  }
}
article.mainv .top_slide .slide {
  width: 100%;
  height: calc(92vh - 80px);
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  article.mainv .top_slide .slide {
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.mainv .top_slide .slide {
    height: auto;
    aspect-ratio: 16/10;
  }
}
article.mainv .top_slide .slide figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
article.mainv .top_slide .slide figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
article.mainv .top_slide .slide h2 {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  font-size: 4.05rem;
  letter-spacing: 7px;
  font-weight: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-feature-settings: "palt";
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.99), 0 4px 20px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0 20px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.mainv .top_slide .slide h2 {
    top: 48%;
  }
}
@media screen and (max-width: 960px) {
  article.mainv .top_slide .slide h2 {
    font-size: 2rem;
    letter-spacing: 3px;
  }
}
article.mainv .top_slide .slide h2 img {
  max-width: 600px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  article.mainv .top_slide .slide h2 img {
    max-width: 120px;
  }
}
article.mainv .top_slide .slide.last h2 {
  width: 400px;
  top: 35%;
  left: 15%;
  transform: translate(0%, -50%);
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.mainv .top_slide .slide.last h2 {
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  article.mainv .top_slide .slide.last h2 {
    width: 280px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
article.mainv .top_slide .add-animation figure {
  -webkit-animation: zoomUp 8s ease-out 0s normal both;
          animation: zoomUp 8s ease-out 0s normal both;
}
@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
article.mainv .slick-dots {
  position: absolute;
  bottom: 130px;
  right: 100px;
  left: auto;
  display: flex !important;
  gap: 7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  pointer-events: none !important;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.mainv .slick-dots {
    bottom: 120px;
    right: 50px;
  }
}
@media screen and (max-width: 640px) {
  article.mainv .slick-dots {
    bottom: 60px;
    right: 20px;
    gap: 5px;
  }
}
article.mainv .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}
@media screen and (max-width: 640px) {
  article.mainv .slick-dots li {
    width: 8px;
    height: 8px;
  }
}
article.mainv .slick-dots li button {
  width: 10px;
  height: 10px;
  text-indent: -999em;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  background: white;
  border: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  article.mainv .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
article.mainv .slick-dots li button:before {
  display: none;
}
@media (hover: hover) {
  article.mainv .slick-dots li button:hover {
    opacity: 0.8;
  }
}
article.mainv .slick-dots li.slick-active button {
  background: #0077c8;
  opacity: 1;
}
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

article.greeting {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  article.greeting {
    margin-bottom: 30px;
  }
}
article.greeting h2.tit01 {
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  article.greeting h2.tit01 {
    margin-bottom: 80px;
  }
}
article.greeting .greeting_body {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.greeting .greeting_body {
    gap: 40px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body {
    flex-direction: column;
    gap: 30px;
  }
}
article.greeting .greeting_body .photo {
  width: 400px;
  position: relative;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.greeting .greeting_body .photo {
    width: 300px;
  }
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .photo {
    width: 100%;
    max-width: 300px;
  }
}
article.greeting .greeting_body .photo p {
  position: absolute;
  top: -2.09em;
  letter-spacing: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  left: 0;
  right: 0;
  color: #c9c9c9;
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: bold;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.greeting .greeting_body .photo p {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .photo p {
    font-size: 3rem;
    top: -2.06em;
    z-index: -1;
  }
}
article.greeting .greeting_body .photo figure {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 16px 11px 1px 0px rgb(244, 248, 251);
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .photo figure {
    box-shadow: 15px 15px 1px 0px rgb(244, 248, 251);
  }
}
article.greeting .greeting_body .text {
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .text {
    padding: 0 20px;
  }
}
article.greeting .greeting_body .text h3 {
  color: #0077c8;
  font-size: 2.2rem;
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.greeting .greeting_body .text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
body.fs-large article.greeting .greeting_body .text h3 {
  font-size: 2.6rem;
}
article.greeting .greeting_body .text .ex p {
  font-size: 1.6rem;
  line-height: 2.2;
  margin-bottom: 1em;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.greeting .greeting_body .text .ex p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .text .ex p {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
body.fs-large article.greeting .greeting_body .text .ex p {
  font-size: 1.9rem;
}
article.greeting .greeting_body .text dl.sign {
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.greeting .greeting_body .text dl.sign {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  article.greeting .greeting_body .text dl.sign {
    font-size: 1.4rem;
  }
}
body.fs-large article.greeting .greeting_body .text dl.sign {
  font-size: 1.9rem;
}
article.greeting .greeting_body .text dl.sign dt {
  margin-bottom: 10px;
}
article.greeting .greeting_body .text dl.sign dd {
  font-weight: bold;
}

article.history {
  background: #0077c8 url("../img/bg_join.png") no-repeat 0% center;
  padding: 170px 0;
  position: relative;
  background-attachment: fixed;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.history {
    padding: 120px 0;
  }
}
@media screen and (max-width: 640px) {
  article.history {
    padding: 80px 0;
    background-size: 100%;
  }
}
article.history .wave.top {
  top: -1px;
}
article.history .wave.bottom {
  bottom: 0;
}
article.history p.sub_text {
  color: #e5f2fb;
}
article.history ul.menu {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.history ul.menu {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  article.history ul.menu {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.history ul.menu {
    padding: 0 30px;
    gap: 2%;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  article.history ul.menu {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
article.history ul.menu li {
  text-align: center;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.history ul.menu li {
    width: 49%;
  }
}
article.history ul.menu li a {
  display: block;
  cursor: pointer;
  border-radius: 12px;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
article.history ul.menu li a figure {
  width: 490px;
  height: 350px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  box-shadow: 1.638px 1.147px 24px 0px rgba(173, 173, 173, 0.42);
  position: relative;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.history ul.menu li a figure {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  article.history ul.menu li a figure {
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
article.history ul.menu li a figure span.img-credit {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 1.2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  article.history ul.menu li a figure span.img-credit {
    font-size: 0.85rem;
    bottom: 6px;
    left: 6px;
    padding: 2px 5px;
  }
}
body.fs-large article.history ul.menu li a figure span.img-credit {
  font-size: 1.4rem;
}
article.history ul.menu li a figure span.arrow {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 640px) {
  article.history ul.menu li a figure span.arrow {
    width: 30px;
    height: 30px;
  }
}
article.history ul.menu li a figure span.arrow:after {
  -webkit-mask-size: 23px;
          mask-size: 23px;
}
@media screen and (max-width: 640px) {
  article.history ul.menu li a figure span.arrow:after {
    -webkit-mask-size: 12px;
            mask-size: 12px;
  }
}
article.history ul.menu li a figure + p {
  font-size: 2.6rem;
  text-align: center;
  color: white;
  font-weight: bold;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.history ul.menu li a figure + p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  article.history ul.menu li a figure + p {
    font-size: 1.7rem;
    position: relative;
  }
  article.history ul.menu li a figure + p:after {
    content: "";
    width: 1px;
    height: 20px;
    background: white;
    position: absolute;
    left: 0;
    right: 0;
    top: -25px;
    margin: auto;
    z-index: 11;
  }
}
@media screen and (max-width: 640px) {
  body.fs-large article.history ul.menu li a figure + p {
    font-size: 1.9rem;
  }
}
@media (hover: hover) {
  article.history ul.menu li a figure:hover {
    box-shadow: 0px 8px 32px 0px rgba(0, 119, 200, 0.4);
    transform: translateY(8px);
  }
}

article.report {
  padding-top: 60px;
  padding-bottom: 120px;
  background: url("../img/bg_line.png") no-repeat 0% bottom;
  background-size: 100%;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.report {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  article.report {
    padding-top: 40px;
    padding-bottom: 60px;
    background-size: 200%;
  }
}
article.report ul.menu {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.report ul.menu {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  article.report ul.menu {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.report ul.menu {
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 30px;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  article.report ul.menu {
    flex-direction: column;
    gap: 30px;
  }
}
article.report ul.menu li {
  text-align: center;
}
article.report ul.menu li a {
  display: block;
  box-shadow: 1.638px 1.147px 24px 0px rgba(173, 173, 173, 0.42);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
article.report ul.menu li a figure {
  width: 242px;
  height: 160px;
  text-decoration: none;
  box-shadow: 1.638px 1.147px 24px 0px rgba(122, 122, 122, 0.8);
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.report ul.menu li a figure {
    width: 220px;
    height: 145px;
  }
}
@media screen and (max-width: 640px) {
  article.report ul.menu li a figure {
    width: 100%;
    height: auto;
  }
  article.report ul.menu li a figure img {
    width: 100%;
  }
}
article.report ul.menu li a figure + p {
  height: 60px;
  background: white;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: #333333;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.report ul.menu li a figure + p {
    font-size: 1.4rem;
    padding: 0 15px;
  }
}
@media screen and (max-width: 640px) {
  article.report ul.menu li a figure + p {
    font-size: 1.6rem;
    height: 55px;
  }
}
body.fs-large article.report ul.menu li a figure + p {
  font-size: 1.9rem;
}
article.report ul.menu li a figure + p span.arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}
@media (hover: hover) {
  article.report ul.menu li a:hover {
    box-shadow: 0px 8px 32px 0px rgba(173, 173, 173, 0.6);
    transform: translateY(8px);
  }
}
@media (hover: hover) {
  article.report ul.menu li a.comingsoon:hover {
    box-shadow: 1.638px 1.147px 24px 0px rgba(173, 173, 173, 0.42);
    transform: translateY(0px);
    cursor: default;
  }
}
article.report ul.menu li a.comingsoon figure {
  position: relative;
}
article.report ul.menu li a.comingsoon figure:before {
  content: "Coming Soon";
  color: white;
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
article.report ul.menu li a.comingsoon figure + p {
  filter: grayscale(1);
  opacity: 0.7;
}

article.base {
  margin-bottom: 150px;
}
@media screen and (max-width: 640px) {
  article.base {
    margin-bottom: 100px;
  }
}
article.base ul.menu {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.base ul.menu {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  article.base ul.menu {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.base ul.menu {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
@media screen and (max-width: 640px) {
  article.base ul.menu {
    flex-direction: column;
    gap: 30px;
  }
}
article.base ul.menu li a {
  display: block;
  box-shadow: 1.638px 1.147px 24px 0px rgba(173, 173, 173, 0.42);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 315px;
  width: 330px;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.base ul.menu li a {
    width: 300px;
    height: 290px;
  }
}
@media screen and (max-width: 640px) {
  article.base ul.menu li a {
    width: 100%;
    height: 280px;
    box-shadow: 1.638px 1.147px 24px 0px rgba(173, 173, 173, 0.82);
  }
  article.base ul.menu li a img {
    width: 100%;
  }
}
article.base ul.menu li a .text {
  height: 125px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  padding-top: 43px;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 40px, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 40px, 100% 100%, 0% 100%);
  background: #0077c8;
  color: white;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.base ul.menu li a .text {
    height: 125px;
    padding: 18px;
    padding-top: 38px;
  }
}
@media screen and (max-width: 640px) {
  article.base ul.menu li a .text {
    height: 120px;
    padding: 15px;
    padding-top: 35px;
  }
}
article.base ul.menu li a .text .tit {
  position: relative;
}
article.base ul.menu li a .text .tit p.jblogo {
  width: 80px;
  height: 17px;
  margin-bottom: 7px;
}
article.base ul.menu li a .text .tit p.jblogo img {
  vertical-align: top;
}
article.base ul.menu li a .text .tit h3 {
  font-size: 1.6rem;
  position: relative;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.base ul.menu li a .text .tit h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  article.base ul.menu li a .text .tit h3 {
    font-size: 1.5rem;
  }
}
body.fs-large article.base ul.menu li a .text .tit h3 {
  font-size: 1.9rem;
}
article.base ul.menu li a .text .tit h3 span.arrow {
  right: 0;
}
article.base ul.menu li a .text span.arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
}
@media (hover: hover) {
  article.base ul.menu li a:hover {
    box-shadow: 0px 8px 32px 0px rgba(173, 173, 173, 0.6);
    transform: translateY(8px);
  }
}
article.base ul.menu li a.comingsoon {
  position: relative;
}
article.base ul.menu li a.comingsoon:before {
  content: "Coming Soon";
  color: white;
  position: absolute;
  display: flex;
  z-index: 1;
  padding-top: 100px;
  font-size: 2rem;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 640px) {
  article.base ul.menu li a.comingsoon:before {
    padding-top: 80px;
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  article.base ul.menu li a.comingsoon:hover {
    box-shadow: 1.638px 1.147px 24px 0px rgba(173, 173, 173, 0.42);
    transform: translateY(0px);
    cursor: default;
  }
}
article.base ul.menu li a.comingsoon .text .jblogo {
  filter: grayscale(1);
  opacity: 0.7;
}
article.base ul.menu li a.comingsoon .text h3 {
  opacity: 0.7;
}
article.base ul.menu li a.comingsoon .text h3 span.arrow {
  filter: grayscale(1);
}
article.base ul.menu li p.credit {
  margin-top: 10px;
  font-size: 1rem;
  margin-left: auto;
  letter-spacing: 0;
  opacity: 0.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  article.base ul.menu li p.credit {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 640px) {
  article.base ul.menu li p.credit {
    font-size: 0.9rem;
    bottom: 8px;
    right: 8px;
  }
}
body.fs-large article.base ul.menu li p.credit {
  font-size: 1.4rem;
}

.kochi_10th {
  position: relative;
}
.kochi_10th .wave {
  position: static;
  width: 100%;
}
.kochi_10th .wave img {
  width: 100%;
}
.kochi_10th .inner {
  background: #0077c8;
  color: white;
}
.kochi_10th .inner .body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 50px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .kochi_10th .inner .body {
    gap: 40px;
  }
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body {
    flex-direction: column-reverse;
    padding: 50px 20px;
    padding-bottom: 60px;
    gap: 30px;
  }
}
.kochi_10th .inner .body .text {
  width: auto;
  flex: 1;
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body .text {
    width: 100%;
  }
}
.kochi_10th .inner .body .text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.kochi_10th .inner .body .text h2:after {
  content: "";
  width: 100px;
  height: 2px;
  background: white;
  opacity: 0.5;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body .text h2:after {
    margin-top: 20px;
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .kochi_10th .inner .body .text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body .text h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
  }
  .kochi_10th .inner .body .text h2:after {
    margin: auto;
    margin-top: 30px;
  }
}
body.fs-large .kochi_10th .inner .body .text h2 {
  font-size: 3rem;
}
@media screen and (max-width: 640px) {
  body.fs-large .kochi_10th .inner .body .text h2 {
    font-size: 2.5rem;
  }
}
.kochi_10th .inner .body .text p.ex {
  font-size: 1.5rem;
  line-height: 2.5;
  letter-spacing: 2px;
  font-weight: normal;
  margin-bottom: 30px;
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .kochi_10th .inner .body .text p.ex {
    font-size: 1.3rem;
    line-height: 2.2;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body .text p.ex {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 25px;
  }
  .kochi_10th .inner .body .text p.ex br {
    display: none;
  }
}
body.fs-large .kochi_10th .inner .body .text p.ex {
  font-size: 1.8rem;
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body .text .btn01 {
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.kochi_10th .inner .body figure {
  width: 200px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 8px 8px 1px 0px rgb(142, 186, 219);
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .kochi_10th .inner .body figure {
    width: 180px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 640px) {
  .kochi_10th .inner .body figure {
    width: 200px;
    margin: auto;
    margin-bottom: 20px;
    box-shadow: 10px 10px 1px 0px rgb(142, 186, 219);
  }
}
/*# sourceMappingURL=index.css.map */