@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #197171;
  min-height: 100vh;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}

.gradient_bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  image-rendering: auto;
}

.grunge_overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 250px 250px;
  opacity: 0.3;
  mix-blend-mode: overlay;
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sp_show {
  display: none;
}

.sp_clear {
  display: block;
}

.middle_show {
  display: none;
}

.middle_clear {
  display: block;
}

@media (max-width: 768px) {
  .middle_show {
    display: block;
  }
  .middle_clear {
    display: none;
  }
}
@media (max-width: 480px) {
  .sp_show {
    display: block;
  }
  .sp_clear {
    display: none;
  }
}
.img_placeholder {
  background-color: #d9d9d9;
  width: 100%;
  height: 100%;
  display: block;
}

.animate_target {
  opacity: 0;
  transform: translateY(2.8rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate_target.is_inview {
  opacity: 1;
  transform: translateY(0);
}

.contact_heading_lines, .shrine_heading_lines, .sponsors_heading_lines, .sponsor_heading_lines, .sns_heading_lines, .vision_heading_lines, .about_heading_lines, .highlight_heading_lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.contact_heading_lines::before, .shrine_heading_lines::before, .sponsors_heading_lines::before, .sponsor_heading_lines::before, .sns_heading_lines::before, .vision_heading_lines::before, .about_heading_lines::before, .highlight_heading_lines::before, .contact_heading_lines::after, .shrine_heading_lines::after, .sponsors_heading_lines::after, .sponsor_heading_lines::after, .sns_heading_lines::after, .vision_heading_lines::after, .about_heading_lines::after, .highlight_heading_lines::after {
  content: "";
  flex: 1 1 0;
  display: block;
  height: 1px;
  max-width: 37.8rem;
  background-color: #fff;
}

.contact_heading_title, .shrine_heading_title, .sponsors_heading_title, .sponsor_heading_title, .sns_heading_title, .vision_heading_title, .about_heading_title, .highlight_heading_title {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.4rem;
  color: #fff;
  transform: scaleY(1.2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 3rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.header.is_visible {
  transform: translateY(0);
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
  padding: 0 3rem;
  max-width: 150rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100vw;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s, border-color 0.3s;
}
.header_logo {
  display: flex;
  align-items: center;
  height: 3.6rem;
}
.header_logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header_logo_white {
  display: block;
}
.header_logo_color {
  display: none;
}
.header_nav_list {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  list-style: none;
}
.header_nav_item {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.07rem;
  white-space: nowrap;
  transition: color 0.3s, opacity 0.2s;
}
.header_nav_item:hover {
  opacity: 0.7;
}
.header_hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100vw;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.3s, border-color 0.3s;
}
.header_hamburger_bar {
  display: block;
  width: 2.2rem;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.header_hamburger.is_open {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: rgba(25, 113, 113, 0.3);
}
.header_hamburger.is_open .header_hamburger_bar {
  background-color: #197171;
}
.header_hamburger.is_open .header_hamburger_bar:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.header_hamburger.is_open .header_hamburger_bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header_hamburger.is_open .header_hamburger_bar:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
.header_drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: background-color 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.header_drawer.is_open {
  opacity: 1;
  visibility: visible;
}
.header_drawer.is_open .header_drawer_panel {
  transform: translateX(0);
}
.header_drawer_panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 36rem;
  max-width: 85vw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10rem 3rem 5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: auto;
}
.header_drawer_logo {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 5rem;
  flex-shrink: 0;
}
.header_drawer_logo img {
  width: 100%;
  height: auto;
}
.header_drawer_list {
  list-style: none;
  border-top: 1px solid rgba(25, 113, 113, 0.25);
}
.header_drawer_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0.5rem;
  border-bottom: 1px solid rgba(25, 113, 113, 0.25);
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #197171;
  letter-spacing: 0.11rem;
  transition: opacity 0.2s;
}
.header_drawer_item::after {
  content: "›";
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(25, 113, 113, 0.45);
  flex-shrink: 0;
}
.header_drawer_item:hover {
  opacity: 0.6;
}
@media (max-width: 480px) {
  .header_drawer_panel {
    padding: 8rem 2.5rem 4rem;
  }
  .header_drawer_logo {
    max-width: 18rem;
    margin-bottom: 3.5rem;
  }
  .header_drawer_item {
    font-size: 1.9rem;
    padding: 2rem 0.5rem;
  }
}
.header.is_light_bg .header_inner {
  background-color: rgba(255, 255, 255, 0.55);
  border-color: rgba(25, 113, 113, 0.3);
}
.header.is_light_bg .header_nav_item {
  color: #197171;
}
.header.is_light_bg .header_logo_white {
  display: none;
}
.header.is_light_bg .header_logo_color {
  display: block;
}
@media (max-width: 1280px) {
  .header.is_light_bg .header_inner {
    background-color: transparent;
    border-color: transparent;
  }
  .header.is_light_bg .header_logo {
    background-color: rgba(255, 255, 255, 0.55);
    border-color: rgba(25, 113, 113, 0.3);
  }
  .header.is_light_bg .header_hamburger {
    background-color: rgba(255, 255, 255, 0.55);
    border-color: rgba(25, 113, 113, 0.3);
  }
  .header.is_light_bg .header_hamburger .header_hamburger_bar {
    background-color: #197171;
  }
}
@media (max-width: 1280px) {
  .header.is_drawer_open .header_logo {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(25, 113, 113, 0.3);
  }
  .header.is_drawer_open .header_logo .header_logo_white {
    display: none;
  }
  .header.is_drawer_open .header_logo .header_logo_color {
    display: block;
  }
}
@media (max-width: 480px) {
  .header.is_drawer_open .header_logo {
    display: none;
  }
  .header.is_drawer_open .header_hamburger {
    margin-left: auto;
  }
}
@media (max-width: 1280px) {
  .header {
    padding: 1.5rem 2rem;
  }
  .header_inner {
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: auto;
    padding: 0;
  }
  .header_logo {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100vw;
    padding: 1rem 2.5rem;
    height: 7rem;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .header_logo img {
    height: 3.6rem;
  }
  .header_nav {
    display: none;
  }
  .header_hamburger {
    display: flex;
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 1.5rem 2rem;
  }
  .header_logo {
    padding: 1rem 2.5rem;
  }
  .header_logo img {
    height: 3.6rem;
  }
  .header_hamburger {
    width: 7rem;
    height: 7rem;
  }
}

.hero {
  width: 100%;
  background-color: #000;
}
.hero_img {
  position: relative;
  width: 100%;
  max-width: 180rem;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero_img img,
.hero_img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero_img video {
  filter: blur(2px);
  transform: scale(1.02);
}
.hero_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  pointer-events: none;
}
.hero_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 1px, transparent 1px), linear-gradient(135deg, rgba(0, 0, 0, 0.6) 1px, transparent 1px);
  background-size: 15px 15px;
  z-index: 2;
  pointer-events: none;
}
.hero_content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.hero_logo {
  width: clamp(20rem, 28vw, 42rem);
  margin-top: 1rem;
}
.hero_logo img {
  width: 100%;
  height: auto;
}
.hero_subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.6rem, 2.5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 3rem;
}
.hero_info {
  display: flex;
  align-items: flex-start;
  margin-top: 7rem;
  font-family: "Noto Sans JP", sans-serif;
}
.hero_info_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36rem;
}
.hero_info_divider {
  width: 1px;
  align-self: stretch;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0.5rem 6rem;
  flex-shrink: 0;
}
.hero_info_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 0 3rem;
  background-color: #fff;
  border-radius: 100vw;
  font-size: clamp(1.4rem, 1.4vw, 2.2rem);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
}
.hero_info_date {
  font-size: clamp(1.6rem, 1.9vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
.hero_info_date_num {
  font-size: clamp(1.8rem, 2.7vw, 4rem);
}
.hero_info_platform {
  font-size: clamp(1.8rem, 2.7vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
.hero_info_note {
  font-size: clamp(1.4rem, 1.4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.hero_info_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.2rem;
  padding: 0 3rem;
  background-color: #ff0033;
  border-radius: 100vw;
  font-size: clamp(1.4rem, 1.4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  transition: opacity 0.2s;
}
.hero_info_btn:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .hero_img {
    aspect-ratio: auto;
  }
  .hero_img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero_content {
    position: relative;
    inset: auto;
    padding: 8rem 4rem;
  }
  .hero_info {
    margin-top: 3rem;
  }
  .hero_info_divider {
    margin: 0.5rem 3rem;
  }
  .hero_info_col {
    width: 24rem;
  }
}
@media (max-width: 480px) {
  .hero_content {
    padding: 6rem 2rem;
  }
  .hero_info {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
  }
  .hero_info_divider {
    display: none;
  }
  .hero_info_col {
    width: 100%;
  }
  .hero_info_badge {
    height: 3rem;
    padding: 0 2rem;
  }
  .hero_info_btn {
    height: 3.6rem;
    padding: 0 2rem;
  }
  .hero_info_date {
    margin-top: 0.5rem;
  }
  .hero_info_platform {
    margin-top: 0.5rem;
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ticker_track {
  display: flex;
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  animation: ticker-scroll 55s linear infinite;
  will-change: transform;
}
.ticker_item {
  flex-shrink: 0;
  height: 18rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ticker_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .ticker_item {
    height: 12rem;
  }
}

.highlight {
  padding: 8rem 0 10rem;
}
.highlight_heading {
  text-align: center;
  margin-bottom: 6rem;
}
.highlight_heading_title {
  white-space: nowrap;
}
.highlight_media {
  max-width: 100rem;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.highlight_media iframe,
.highlight_media img,
.highlight_media video {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .highlight {
    padding: 5rem 5rem 6rem;
  }
  .highlight_heading {
    margin-bottom: 4rem;
  }
  .highlight_media {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .highlight {
    padding: 4rem 1.6rem 5rem;
  }
  .highlight_heading_title {
    white-space: normal;
    line-height: 1.2;
  }
}

.about {
  padding: 8rem 0 4rem;
}
.about_heading {
  text-align: center;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .about {
    padding: 5rem 0 2rem;
  }
  .about_heading {
    margin-bottom: 5rem;
  }
}

.point {
  position: relative;
  margin-bottom: 10rem;
  overflow: hidden;
}
.point_bar {
  position: relative;
  height: 13rem;
  width: min(131.3rem, 87vw);
  background-color: #fff;
  border-radius: 0 300px 300px 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.point_bar_label_wrap {
  position: absolute;
  left: calc(6vw + 10rem);
  top: 0;
  width: 5rem;
  height: 100%;
  background-color: #197171;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
}
.point_bar_label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.16rem;
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
}
.point_bar_num {
  position: absolute;
  left: calc(6vw + 13rem);
  top: 50%;
  transform: translateY(-50%);
  font-size: 15.8rem;
  font-weight: 800;
  color: #197171;
  letter-spacing: -1.3rem;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.point_bar_text {
  margin-left: calc(6vw + 35rem);
  padding-right: 4rem;
  flex: 1;
  min-width: 0;
  transform: scaleY(1.15);
}
.point_bar_title {
  font-size: 3.8rem;
  font-weight: 800;
  color: #197171;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.point_bar_desc {
  font-size: 2.2rem;
  font-weight: 700;
  color: #197171;
  line-height: 1.3;
}
.point_slider {
  position: relative;
  overflow: hidden;
  height: 28.125vw;
  margin-top: 2rem;
}
.point_slider_track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.point_slider_item {
  flex-shrink: 0;
  width: 50vw;
  height: 28.125vw;
  overflow: hidden;
  transform: scale(0.88);
  filter: brightness(0.5) drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
  transition: transform 0.6s ease, filter 0.6s ease;
}
.point_slider_item.is_active {
  transform: scale(1);
  filter: brightness(1) drop-shadow(0 0 28px rgba(255, 255, 255, 0.45));
}
.point_slider_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1280px) {
  .point_bar {
    height: 11rem;
  }
  .point_bar_label_wrap {
    left: calc(3vw + 6rem);
  }
  .point_bar_num {
    left: calc(3vw + 9rem);
    font-size: 12rem;
  }
  .point_bar_text {
    margin-left: calc(3vw + 26rem);
  }
  .point_bar_title {
    font-size: 2.8rem;
  }
  .point_bar_desc {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .point_bar {
    width: 100%;
    height: auto;
    min-height: 10rem;
    padding: 2rem 3rem 2rem 0;
    border-radius: 0 100rem 100rem 0;
  }
  .point_bar_label_wrap {
    left: 0;
    width: 5rem;
  }
  .point_bar_num {
    left: 5rem;
    font-size: 10rem;
  }
  .point_bar_text {
    margin-left: 20rem;
  }
  .point_bar_title {
    font-size: 2.4rem;
  }
  .point_bar_desc {
    font-size: 1.6rem;
  }
  .point_slider {
    height: 56.25vw;
  }
  .point_slider_item {
    width: 100vw;
    height: 56.25vw;
  }
}
@media (max-width: 768px) {
  .point {
    overflow: visible;
    margin-bottom: 6rem;
  }
  .point_bar {
    min-height: 6.5rem;
    padding-top: 0;
    padding-bottom: 0;
    width: 95%;
    padding-right: 2.5rem;
  }
  .point_bar_label_wrap {
    overflow: hidden;
    width: 3rem;
    justify-content: end;
  }
  .point_bar_label {
    font-size: 1.8rem;
    letter-spacing: -0.01rem;
  }
  .point_bar_num {
    font-size: 5.5rem;
    letter-spacing: -0.3rem;
    left: 2rem;
  }
  .point_bar_text {
    margin-left: 10.5rem;
    transform: none;
    padding-right: 0;
  }
  .point_bar_title {
    font-size: 2.6rem;
    margin-bottom: 0;
  }
  .point_bar_desc {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    padding: 1.5rem 1rem;
    width: 100vw;
  }
  .point_slider {
    margin-top: 9rem;
  }
}
@media (max-width: 480px) {
  .point {
    overflow: visible;
    margin-bottom: 6rem;
  }
  .point_bar {
    min-height: 5rem;
    padding-top: 0;
    padding-bottom: 0;
    width: 95%;
    padding-right: 2.5rem;
  }
  .point_bar_label_wrap {
    overflow: hidden;
    width: 3rem;
    justify-content: end;
  }
  .point_bar_label {
    font-size: 1.4rem;
    letter-spacing: -0.01rem;
  }
  .point_bar_num {
    font-size: 4rem;
    letter-spacing: -0.3rem;
    left: 2rem;
  }
  .point_bar_text {
    margin-left: 8rem;
    transform: none;
    padding-right: 0;
  }
  .point_bar_title {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .point_bar_desc {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 1.5rem 1rem;
    width: 100vw;
  }
  .point_slider {
    margin-top: 7rem;
  }
}

.vision {
  padding: 8rem 0 10rem;
}
.vision_heading {
  text-align: center;
  margin-bottom: 6rem;
}
.vision_profile {
  max-width: 100rem;
  margin: 0 auto 8rem;
  padding: 0 156px;
}
.vision_profile_head {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.vision_profile_img {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border-radius: 1rem;
}
.vision_profile_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vision_profile_meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vision_profile_role {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.vision_profile_name {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.vision_profile_bio {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.07rem;
}
.vision_profile_sns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}
.vision_profile_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transition: opacity 0.2s;
}
.vision_profile_sns_link:hover {
  opacity: 0.7;
}
.vision_profile_sns_link img {
  width: 2rem;
  height: 2rem;
}
.vision_cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100rem;
  margin: 0 auto 5rem;
  padding: 0 156px;
}
.vision_card {
  position: relative;
  background-color: #fff;
  border-radius: 0.7rem;
  height: 10rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vision_card_num_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 7.7rem;
  height: 6.1rem;
  background-color: #A6700F;
  border-radius: 0.7rem 0 0.7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision_card_num {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.24rem;
  line-height: 1;
}
.vision_card_text {
  padding: 0 2.5rem 0 10.2rem;
}
.vision_card_title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #A6700F;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .vision_cards {
    padding: 0 5rem;
  }
  .vision_profile {
    padding: 0 5rem;
  }
}
@media (max-width: 480px) {
  .vision {
    padding: 5rem 0;
  }
  .vision_heading {
    margin-bottom: 4rem;
  }
  .vision_cards {
    padding: 0 1.6rem;
  }
  .vision_profile {
    padding: 0 1.6rem;
  }
  .vision_profile_head {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .vision_profile_img {
    width: 6.4rem;
    height: 6.4rem;
  }
  .vision_profile_sns {
    margin-left: 0;
  }
  .vision_profile_sns_link {
    width: 3.8rem;
    height: 3.8rem;
  }
  .vision_profile_sns_link img {
    width: 1.7rem;
    height: 1.7rem;
  }
  .vision_profile_role {
    font-size: 1.4rem;
  }
  .vision_profile_name {
    font-size: 2.4rem;
  }
  .vision_profile_bio {
    font-size: 1.3rem;
  }
  .vision_card {
    height: auto;
    min-height: 7rem;
    padding: 1.5rem 0;
  }
  .vision_card_num_wrap {
    width: 6.2rem;
    height: 5rem;
  }
  .vision_card_num {
    font-size: 3.6rem;
  }
  .vision_card_text {
    padding: 0 2rem 0 8.2rem;
  }
  .vision_card_title {
    font-size: 1.7rem;
  }
}

.sns {
  padding: 8rem 0 10rem;
}
.sns_heading {
  text-align: center;
  margin-bottom: 6rem;
}
.sns_list {
  display: grid;
  grid-template-columns: repeat(2, 35rem);
  justify-content: center;
  gap: 3rem;
  padding: 0 156px;
  list-style: none;
}
.sns_item {
  border: 3px solid #fff;
  border-radius: 2rem;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sns_item_img {
  height: 7rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
.sns_item_img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sns_item_handle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.09rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sns_item_btn {
  background-color: #fff;
  border-radius: 100vw;
  height: 4.4rem;
  width: 27.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #197171;
  letter-spacing: -0.1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sns_item_btn:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .sns_list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5rem;
  }
}
@media (max-width: 768px) {
  .sns_list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.6rem;
    justify-items: center;
  }
  .sns_item {
    padding: 2.5rem 2rem;
    border-width: 2px;
    width: 40rem;
  }
}
@media (max-width: 480px) {
  .sns {
    padding: 5rem 0 6rem;
  }
  .sns_heading {
    margin-bottom: 4rem;
  }
  .sns_item {
    padding: 2.5rem 2rem;
    border-width: 2px;
  }
  .sns_item_img {
    height: 4.5rem;
    margin-bottom: 1.5rem;
  }
  .sns_item_handle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .sns_item_btn {
    width: 100%;
    max-width: 100%;
    font-size: 1.6rem;
    height: 3.8rem;
  }
}

.sponsor {
  padding: 8rem 0 10rem;
}
.sponsor_heading {
  text-align: center;
  margin-bottom: 4rem;
}
.sponsor_inner {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  max-width: 110.8rem;
  margin: 0 auto;
  padding: 5rem 4rem 6rem;
}
.sponsor_intro {
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.12rem;
  margin-bottom: 4rem;
}
.sponsor_merit_title {
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #A6700F;
  text-align: center;
  margin-bottom: 3rem;
}
.sponsor_merits {
  background-color: rgba(25, 113, 113, 0.1);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.sponsor_merit_card {
  background-color: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sponsor_merit_card_img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #888;
}
.sponsor_merit_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sponsor_merit_card_label {
  padding: 1.8rem 2rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #A6700F;
  background-color: #fff;
  line-height: 1.4;
}
.sponsor_contact {
  padding: 3rem 2rem;
  text-align: center;
}
.sponsor_contact_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #A6700F;
  border-radius: 100vw;
  padding: 0 5rem;
  height: 6rem;
  transition: opacity 0.2s;
}
.sponsor_contact_btn:hover {
  opacity: 0.8;
}
@media (max-width: 1280px) {
  .sponsor_inner {
    margin: 0 5rem;
  }
}
@media (max-width: 1024px) {
  .sponsor_inner {
    margin: 0 5rem;
  }
  .sponsor_merits {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .sponsor_inner {
    margin: 0 2.5rem;
  }
  .sponsor_intro {
    font-size: 2rem;
  }
  .sponsor_contact_btn {
    font-size: 1.8rem;
    padding: 0 3rem;
    height: 5.4rem;
    line-height: 1.1;
  }
}
@media (max-width: 480px) {
  .sponsor_inner {
    margin: 0 1.6rem;
    padding: 3rem 2rem 4rem;
  }
  .sponsor_intro {
    font-size: 1.5rem;
  }
  .sponsor_merit_title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .sponsor_merits {
    padding: 2rem;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .sponsor_merit_card {
    height: auto;
  }
  .sponsor_merit_card_label {
    font-size: 1.6rem;
    padding: 1.4rem 1.5rem;
  }
  .sponsor_contact {
    padding: 1rem;
  }
}

.sponsors {
  padding: 8rem 0 10rem;
}
.sponsors_heading {
  text-align: center;
  margin-bottom: 4rem;
}
.sponsors_inner {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  max-width: 110.8rem;
  margin: 0 auto;
  padding: 5rem 6rem;
}
.sponsors_logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}
.sponsors_logo_item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  flex: 0 0 calc(25% - 2.25rem);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #197171;
  line-height: 1.5;
}
.sponsors_logo_item img {
  width: 100%;
  max-width: 16rem;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .sponsors_inner {
    margin: 0 5rem;
  }
}
@media (max-width: 1024px) {
  .sponsors_inner {
    margin: 0 5rem;
    padding: 4rem 5rem;
  }
  .sponsors_logo_item {
    flex: 0 0 calc(50% - 1.5rem);
  }
}
@media (max-width: 768px) {
  .sponsors_inner {
    margin: 0 2.5rem;
  }
}
@media (max-width: 480px) {
  .sponsors_inner {
    margin: 0 1.6rem;
    padding: 3rem 2rem;
  }
  .sponsors_logos {
    gap: 1.5rem;
  }
  .sponsors_logo_item {
    flex: 0 0 calc(50% - 0.75rem);
    font-size: 1.8rem;
  }
}

.shrine {
  padding: 8rem 0 10rem;
}
.shrine_heading {
  text-align: center;
  margin-bottom: 6rem;
}
.shrine_intro {
  max-width: 120rem;
  margin: 0 auto 6rem;
  padding: 0 156px;
  text-align: center;
}
.shrine_intro_text {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}
.shrine_poems {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.shrine_poem {
  border: 1px solid #fff;
  border-radius: 1rem;
  padding: 2rem 3.5rem;
  flex: 1;
  max-width: 64rem;
  width: 100%;
}
.shrine_poem_num {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
}
.shrine_poem_verse {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.shrine_media {
  max-width: 100rem;
  margin: 0 auto 6rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
}
.shrine_media .img_placeholder {
  aspect-ratio: 16/9;
  height: auto;
}
.shrine_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shrine_body {
  display: flex;
  gap: 4rem;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 156px;
  align-items: flex-start;
}
.shrine_info {
  flex: 1;
  min-width: 0;
}
.shrine_info_text {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  margin-bottom: 3rem;
}
.shrine_info_text li {
  list-style: disc;
  margin-left: 3.6rem;
}
.shrine_info_map_link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
  transition: opacity 0.2s;
}
.shrine_info_map_link:hover {
  opacity: 0.7;
}
.shrine_instagram {
  flex-shrink: 0;
}
.shrine_instagram .instagram-media {
  margin: 0 auto !important;
}
.shrine_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 200px;
  height: 6.4rem;
  width: 100%;
  font-size: 2.6rem;
  font-weight: 700;
  color: #197171;
  letter-spacing: 0.1rem;
  transition: opacity 0.2s;
}
.shrine_btn:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .shrine_intro {
    padding: 0 5rem;
  }
  .shrine_media {
    max-width: 70rem;
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .shrine_body {
    padding: 0 5rem;
  }
  .shrine_btn {
    height: 5rem;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .shrine_intro_text {
    font-size: 1.8rem;
  }
  .shrine_poem_verse {
    font-size: 2rem;
  }
  .shrine_body {
    flex-direction: column;
    padding: 0 1.6rem;
    gap: 4rem;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .shrine_intro {
    padding: 0 1.6rem;
  }
  .shrine_intro_text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .shrine_poem {
    padding: 2rem 2.5rem;
  }
  .shrine_poem_num {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .shrine_poem_verse {
    font-size: 1.6rem;
  }
  .shrine_media {
    margin: 0 1.6rem 4rem;
    max-width: 100%;
  }
  .shrine_body {
    gap: 2rem;
  }
  .shrine_instagram {
    width: 100%;
  }
  .shrine_info_text {
    font-size: 1.6rem;
  }
  .shrine_btn {
    font-size: 2rem;
    height: 5.6rem;
  }
}

.contact {
  padding: 8rem 0 12rem;
}
.contact_heading {
  text-align: center;
  margin-bottom: 6rem;
}
.contact_inner {
  background-color: #fff;
  border-radius: 2rem;
  max-width: 96.5rem;
  margin: 0 auto;
  padding: 5rem 4rem;
  display: flex;
  align-items: stretch;
}
.contact_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem 2rem 2rem;
  border-right: 1px solid #197171;
}
.contact_logo {
  width: 24rem;
  height: 15.4rem;
}
.contact_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact_right {
  flex: 1;
  padding: 2rem 2rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact_org {
  font-size: 2.2rem;
  font-weight: 700;
  color: #197171;
  text-align: center;
  margin-bottom: 0.6rem;
  letter-spacing: 0.11rem;
}
.contact_rep {
  font-size: 1.8rem;
  font-weight: 600;
  color: #197171;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.09rem;
}
.contact_list {
  list-style: disc;
  padding-left: 2.7rem;
  margin-bottom: 3rem;
}
.contact_list li {
  font-size: 1.8rem;
  font-weight: 600;
  color: #197171;
  letter-spacing: 0.09rem;
  line-height: 1.8;
}
.contact_email {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #197171;
  text-align: center;
}
.contact_email:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .contact_inner {
    flex-direction: column;
    align-items: center;
    margin: 0 5rem;
  }
  .contact_left {
    border-right: none;
    border-bottom: 1px solid #197171;
    width: 100%;
    padding: 2rem 5rem 3rem;
  }
  .contact_right {
    padding: 3rem 5rem 2rem;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 5rem 0 8rem;
  }
  .contact_inner {
    margin: 0 1.6rem;
    padding: 3rem 2rem;
  }
  .contact_left {
    padding: 3rem 5rem 4rem;
  }
  .contact_logo {
    width: 16rem;
    height: auto;
  }
  .contact_right {
    padding: 3rem 1rem 2rem;
  }
  .contact_org {
    font-size: 1.8rem;
  }
  .contact_list li {
    font-size: 1.6rem;
  }
  .contact_email {
    font-size: 2rem;
    word-break: break-all;
  }
}/*# sourceMappingURL=style.css.map */