@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Emilys+Candy&family=Katibeh&family=Lora&family=Noto+Serif+JP:wght@200;300&family=Nunito+Sans&family=Peddana&family=Rubik&family=Shippori+Antique+B1&family=Staatliches&family=Zen+Antique&display=swap");

/* Setting */

:root {
  --red-color: #f13a11;
  --sakura-color: #ffc0cb;
  --white-color: #ffffff;
  --dark-color: #171819;
  --about-bg-color: #f9f9f9;

  --gray-color: #909090;
  --link-color: #404040;
  --p-color: black;

  --base-font-family: "Plain", sans-serif;
  --font-weight-bold: bold;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;

  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 20px;
  --h6-font-size: 18px;
  --p-font-size: 16px;
  --s-font-size: 14px;
}

h1 {
  font-size: 34px;
  color: var(--white-color);
}
h2 {
  font-size: 32px;
  color: var(--white-color);
}
h3 {
  font-size: 24px;
  color: var(--white-color);
}
h4 {
  font-size: 20px;
  color: var(--white-color);
}
h5 {
  font-size: 18px;
  color: var(--white-color);
}
h6 {
  font-size: 16px;
  color: var(--white-color);
}
p {
  font-size: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #151510;
  color: white;
  font-family: "Peddana", serif;
}

ul,
li {
  all: unset;
}

a {
  font-size: var(--h5-font-size);
  text-decoration: none;
  color: white;
  transition: 0.2s ease-in;
}

a:hover {
  color: var(--sakura-color);
}

p {
  font-size: var(--h6-font-size);
}

/* ===================== Main ======================= */

/* Hedaer */

.header {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  padding-top: 1%;
}

.navbar_clock {
  width: 20%;
  text-align: center;
  font-size: var(--h3-font-size);
  text-shadow: 2px 2px 2px var(--sakura-color);
}
.navbar_logo {
  text-align: center;
}
.navbar_logo img {
  width: 75%;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 12px;
}
.navbar_logo img:hover {
  opacity: 0.6;
}
.navbar_icons {
  min-width: 20%;
}
.navbar_icons a {
  font-size: var(--h6-font-size);
  padding: 8px 12px;
}
#toggleBtn {
  position: absolute;
  right: 5%;
  display: none;
}

/* Video */
.video {
  width: 100%;
  height: auto;
  position: relative;
  top: 0%;
  left: 0%;
  z-index: -1;
}
.video > video {
  width: 100%;
  height: 100vh;
  pointer-events: none;
  object-fit: fill;
  opacity: 0.7;
}

/* Menu bar */
.menubar {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: absolute;
  top: 10%;
}
.menu li p {
  font-size: var(--h5-font-size);
}
.menu li {
  padding: 8px 24px;
}
.menu li a {
  font-size: var(--h6-font-size);
}

/* Section 1 */
.section1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8%;
}
.news {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 2%;
}
.news img {
  width: 49%;
  padding: 2% 1%;
}
.topics {
  width: 60%;
  padding: 2%;
  font-family: "Noto Serif JP", serif;
}
.topics h1 {
  font-size: 20px;
  padding-bottom: 3%;
  text-align: center;
  border-bottom: 1px solid lightgray;
}
.topics a {
  transition: none;
}
.topics a:hover {
  color: gray;
  opacity: 0.6;
}
.topics div {
  border-bottom: 1px solid lightgray;
  padding: 8px;
  cursor: pointer;
}
.topics div:hover {
  opacity: 0.6;
}
.topics div p {
  font-size: 0.8vw;
}

/* Section2 */
.section2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 8%;
  padding-bottom: 20%;
}

.section2 .title {
  padding: 2%;
}

.section2 .swiper-container {
  width: 100%;
  height: 400px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #101010; /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  box-shadow: 0px 2px 10px 0px #848484;
}

.swiper-pagination {
  width: 100%;
  position: relative;
  top: 110%;
}

/* Section3 */
.section3 {
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 8%;
}
.section3 .title {
  padding-bottom: 2%;
}
.section3 .movies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section3 .movies iframe {
  width: 31%;
  padding: 10px;
}
.section3 .youtube {
  padding: 2%;
}
.section3 .youtube button {
  background: #242400;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.section3 .youtube button:hover {
  opacity: 0.6;
}

/* Footer */
footer {
  width: 100%;
  height: auto;
  padding: 3% 0%;
}
footer .banner {
  text-align: center;
}
footer .banner img {
  width: 40%;
  cursor: pointer;
}
footer .banner img:hover {
  opacity: 0.5;
}
footer .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2% 0%;
}
footer .icons a {
  padding: 8px 20px;
}
footer .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .small {
  text-align: center;
  padding-top: 2%;
  opacity: 0.6;
}

@media screen and (max-width: 1025px) {
  .navbar_icons {
    display: none;
  }
  .topics {
    width: 90%;
  }
  .navbar_clock {
    display: none;
  }
  .swiper-slide img {
    width: 100%;
  }
}

@media screen and (max-width: 769px) {
  .menubar {
    display: none;
  }
  .menu li {
    padding: 12px;
  }
  .menubar.active {
    display: flex;
  }
  #toggleBtn {
    display: block;
  }
  .topics {
    width: 90%;
  }
  .video {
    display: none;
  }
  .header {
    position: relative;
  }
  .menubar {
    position: relative;
    display: none;
  }
  .swiper-slide img {
    width: 100%;
  }
  .movies iframe {
    width: 32%;
    height: auto;
  }
}

@media screen and (max-width: 501px) {
  .menu li {
    padding: 5px;
  }
  .topics {
    width: 90%;
  }
  .topics h1 {
    font-size: 24px;
    padding-bottom: 20px;
  }
  .topics div p {
    font-size: 12px;
  }
  .swiper-slide img {
    width: 100%;
  }
  footer .menu li {
    padding: 8px;
  }
  .section3 .movies iframe {
    display: none;
  }
  #movie {
    display: block;
    width: 350px;
    height: 250px;
  }
}
