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

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 1em;
  line-height: 2;
}
p:last-child {
  margin-bottom: 0;
}

a {
  transition: 0.3s;
}

ul {
  list-style: none;
}

body {
  background: #f7fdff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.language {
  padding: 5px 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.language a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.language a.active {
  opacity: 0.8;
}

header {
  padding: 20px 20px 10px;
}
header .inner {
  display: flex;
  background: #fff;
  padding: clamp(15px, 1.5vw, 20px) clamp(10px, 1.5vw, 20px);
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}
header .inner .logo {
  flex: 1;
  line-height: 0;
}
header .inner .logo img {
  max-width: 300px;
}
@media screen and (max-width: 500px) {
  header .inner .logo img {
    max-width: 200px;
  }
}

footer {
  background: #00b8ee;
  padding: 40px 20px;
}
footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 700px) {
  footer .inner {
    flex-direction: column;
    gap: 20px;
  }
}
footer .inner .logo {
  line-height: 0;
}
footer .inner .logo img {
  width: 300px;
}
footer .inner .contact {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
footer .inner .contact a {
  color: #00b8ee;
  font-weight: 500;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.page_highlights {
  position: relative;
  min-height: 100vh;
  padding: 80px 0 100px;
}
.page_highlights::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/page/oyw2026/bg_pc.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .page_highlights::before {
    background-image: url("../img/page/oyw2026/bg_sp.png");
  }
}
.page_highlights .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}
.page_highlights h1 {
  text-align: center;
  color: #fff;
  font-family: "Sen", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 2em;
}
.page_highlights h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(26px, 2.8vw, 32px);
  margin: 3em 0 0.5em;
}
.page_highlights h2:first-of-type {
  margin-top: 0;
}
.page_highlights .youtube {
  margin-bottom: 40px;
}
.page_highlights .youtube iframe {
  display: block;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 560/315;
}
.page_highlights .photo {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 100px;
}
.page_highlights .photo .item {
  display: block;
  text-decoration: none;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.page_highlights .photo .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .page_highlights .photo {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .page_highlights .photo {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_highlights .report_pdf {
  width: fit-content;
  margin: 0 auto 100px;
}
.page_highlights .report_pdf ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .page_highlights .report_pdf ul {
    flex-direction: column;
  }
}
.page_highlights .report_pdf ul li {
  flex: 1;
}
.page_highlights .report_pdf ul li a {
  display: flex;
  background: #fff;
  color: #00aed8;
  padding: 1em;
  gap: 1em;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
}
.page_highlights .report_pdf ul li a img {
  width: 1.5em;
}
.page_highlights .related {
  padding: 20px 30px 30px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 800px) {
  .page_highlights .related {
    padding: 20px 10px 20px;
  }
}
.page_highlights .related h3 {
  text-align: center;
  margin-bottom: 1em;
  font-weight: 500;
  color: #00aed8;
  font-size: 22px;
}
.page_highlights .related .item {
  padding: 10px 0;
  border-bottom: solid 1px #eee;
}
.page_highlights .related .item a {
  display: flex;
  align-items: center;
  gap: 2em;
  color: #000;
  line-height: 1.6;
  text-decoration: none;
  padding: 1em 0.5em;
  transition: 0.3s;
}
.page_highlights .related .item a:hover {
  opacity: 0.6;
}
.page_highlights .related .item a:hover i {
  transform: translateX(5px);
}
.page_highlights .related .item a span {
  flex: 1;
}
.page_highlights .related .item a i {
  font-size: 0.9em;
  transition: 0.1s;
  color: #00aed8;
}

.archives_news {
  padding: 100px 20px;
}
.archives_news h1 {
  text-align: center;
  font-size: 24px;
  color: #0a7ea0;
  margin-bottom: 0.5em;
}
.archives_news .post {
  max-width: 900px;
  margin: 0 auto 50px;
}
.archives_news .post ul li {
  padding: 10px 0;
}
.archives_news .post ul li a {
  display: block;
  color: #444;
  background: #fff;
  text-decoration: none;
  padding: 20px clamp(40px, 8vw, 100px) 20px 30px;
  border: solid 1px #eee;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 600px) {
  .archives_news .post ul li a {
    padding: 30px 20px;
  }
}
.archives_news .post ul li a:hover {
  border: solid 1px #0a7ea0;
}
.archives_news .post ul li a:hover span.arrow {
  right: 15px;
}
.archives_news .post ul li a span {
  display: block;
  line-height: 1.8;
  transition: 0.3s;
}
.archives_news .post ul li a span.arrow {
  width: 15px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .archives_news .post ul li a span.arrow {
    display: none;
  }
}
.archives_news .post ul li a span.day {
  font-size: 14px;
  margin-bottom: 0.5em;
}
.archives_news .post ul li a span.title {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  color: #0a7ea0;
  margin-bottom: 0.5em;
}
.archives_news .post ul li a span.txt {
  font-size: 14px;
  color: #888;
}
.archives_news .pagination {
  display: flex;
  justify-content: center;
}
.archives_news .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.2em;
}
.archives_news .pagination a {
  width: 1.5em;
  background: transparent;
  text-decoration: none;
  color: #00b8ee;
}
.archives_news .pagination span {
  width: 2em;
  height: 2em;
  background: #0a7ea0;
  color: #fff;
  border-radius: 5px;
}
.archives_news .pagination .dots {
  background: transparent;
  color: #aaa;
  border: none;
}

.single_news .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 10px;
}
.single_news .inner h1 {
  text-align: center;
  color: #0a7ea0;
  font-size: clamp(20px, 2.2vw, 24px);
  padding: 0 10px 1em 10px;
}
@media screen and (max-width: 500px) {
  .single_news .inner h1 {
    text-align: left;
  }
}
.single_news .inner article {
  border-radius: 10px;
  background: #fff;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 6vw, 120px);
  border: solid 1px #eee;
}
.single_news .inner article h2 {
  font-size: clamp(18px, 2vw, 22px);
  padding: 2em 0 1em;
  font-weight: 600;
  color: #0a7ea0;
}
.single_news .inner article h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  padding: 2em 0 1em;
  font-weight: 600;
}
.single_news .inner article .wp-block-image {
  margin-bottom: 30px;
}
.single_news .inner article .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.single_news .inner article .wp-block-image figcaption {
  line-height: 1;
  font-size: 0.8em;
  color: #ccc;
  margin: 0;
  text-align: center;
}
.single_news .inner article p {
  font-size: clamp(15px, 1.5vw, 16px);
}
.single_news .inner article p a {
  color: #00b8ee;
}
.single_news .inner article ul,
.single_news .inner article ol {
  padding-left: 1.5em;
  margin-bottom: 30px;
  font-size: 14px;
}
.single_news .inner article ol {
  list-style-type: decimal;
}
.single_news .inner article ul {
  list-style-type: disc;
}
.single_news .inner article ul ul {
  margin-bottom: 0.5em;
  list-style-type: circle;
}
.single_news .inner article ul ul ul {
  margin-bottom: 0.5em;
  list-style-type: square;
}
.single_news .inner article table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
.single_news .inner article table tr th,
.single_news .inner article table tr td {
  font-size: clamp(13px, 1.3vw, 14px);
  border: solid 1px #eee;
  padding: 0.6em 0.8em;
  min-width: 80px;
  line-height: 1.8;
}
.single_news .inner article table tr th a,
.single_news .inner article table tr td a {
  color: #00b8ee;
}
.single_news .inner .link_top {
  text-align: center;
  padding: 40px 0;
}
.single_news .inner .link_top a {
  display: inline-block;
  border-bottom: solid 1px #00b8ee;
  text-decoration: none;
  color: #00b8ee;
}
.single_news .inner .link_top a:hover {
  opacity: 0.6;
}

.page_top .mainvisual {
  padding-bottom: clamp(80px, 10vw, 140px);
}
.page_top .mainvisual img {
  width: 100%;
}
.page_top .mainvisual img.pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .page_top .mainvisual img.pc {
    display: none;
  }
}
.page_top .mainvisual img.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .page_top .mainvisual img.sp {
    display: block;
  }
}
.page_top .about {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px clamp(15px, 4vw, 80px) clamp(60px, 8vw, 100px);
}
.page_top .about h3 {
  color: #0a7ea0;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
}
.page_top .about .txt p {
  color: #0a7ea0;
  font-size: clamp(14px, 1.6vw, 17px);
  color: #444;
  line-height: 2.2;
}
.page_top .about .txt p a {
  color: #00b8ee;
  font-weight: 500;
}
.page_top .oyw2024 .inner {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.page_top .oyw2024 .inner .thumbnail {
  margin-bottom: 20px;
}
.page_top .oyw2024 .inner .thumbnail a {
  display: block;
  background: #fff;
  border: solid 1px #aaa;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
.page_top .oyw2024 .inner .thumbnail a h2 {
  padding: 10px 30px;
  position: relative;
}
.page_top .oyw2024 .inner .thumbnail a h2::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #00aed8;
  border-left: solid 2px #00aed8;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
.page_top .oyw2024 .inner .thumbnail a h2 span {
  display: block;
  color: #00aed8;
}
.page_top .oyw2024 .inner .thumbnail a h2 span:nth-child(1) {
  font-size: 14px;
  margin-bottom: 0.3em;
}
.page_top .oyw2024 .inner .thumbnail a h2 span:nth-child(2) {
  font-size: 18px;
}
.page_top .oyw2024 .inner .thumbnail_archive a {
  display: flex;
  align-items: center;
  background: #fff;
  border: solid 1px #aaa;
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  overflow: hidden;
}
.page_top .oyw2024 .inner .thumbnail_archive a img {
  width: 22%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .page_top .oyw2024 .inner .thumbnail_archive a img {
    aspect-ratio: 5/6;
    width: 25%;
  }
}
.page_top .oyw2024 .inner .thumbnail_archive a h2 {
  padding: 10px 50px 10px 30px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_top .oyw2024 .inner .thumbnail_archive a h2 {
    padding: 10px 40px 10px 20px;
  }
}
.page_top .oyw2024 .inner .thumbnail_archive a h2::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #aaa;
  border-left: solid 2px #aaa;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
.page_top .oyw2024 .inner .thumbnail_archive a h2 span {
  display: block;
  color: #666;
}
.page_top .oyw2024 .inner .thumbnail_archive a h2 span:nth-child(1) {
  font-size: 14px;
  margin-bottom: 0.3em;
}
.page_top .oyw2024 .inner .thumbnail_archive a h2 span:nth-child(2) {
  font-size: 14px;
}
.page_top .news .inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px clamp(15px, 4vw, 80px) clamp(60px, 8vw, 100px);
}
.page_top .news .inner h2 {
  text-align: center;
  margin-bottom: 0.5em;
  color: #0a7ea0;
  font-weight: 600;
  font-size: 20px;
}
.page_top .news .inner ul li {
  padding: 10px 0;
}
.page_top .news .inner ul li a {
  display: block;
  color: #444;
  background: #fff;
  text-decoration: none;
  padding: 20px clamp(40px, 8vw, 100px) 20px 30px;
  border: solid 1px #eee;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 600px) {
  .page_top .news .inner ul li a {
    padding: 30px 20px;
  }
}
.page_top .news .inner ul li a:hover {
  border: solid 1px #0a7ea0;
}
.page_top .news .inner ul li a:hover span.arrow {
  right: 15px;
}
.page_top .news .inner ul li a span {
  display: block;
  line-height: 1.8;
  transition: 0.3s;
}
.page_top .news .inner ul li a span.arrow {
  width: 15px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .page_top .news .inner ul li a span.arrow {
    display: none;
  }
}
.page_top .news .inner ul li a span.day {
  font-size: 14px;
  margin-bottom: 0.5em;
}
.page_top .news .inner ul li a span.title {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  color: #0a7ea0;
  margin-bottom: 0.5em;
}
.page_top .news .inner ul li a span.txt {
  font-size: 14px;
  color: #888;
}

.annotation_txt {
  padding-top: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.annotation_txt p {
  padding-left: 1em;
  position: relative;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.annotation_txt p::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.bg_2024:before {
  background-image: url("../img/page/oyw2024/bg_pc.png");
}
@media screen and (max-width: 800px) {
  .bg_2024:before {
    background-image: url("../img/page/oyw2024/bg_sp.png");
  }
}

.bg_2025:before {
  background-image: url("../img/page/oyw2025/bg_pc.png");
}
@media screen and (max-width: 800px) {
  .bg_2025:before {
    background-image: url("../img/page/oyw2025/bg_sp.png");
  }
}

.bg_2026:before {
  background-image: url("../img/page/oyw2026/bg_pc.png");
}
@media screen and (max-width: 800px) {
  .bg_2026:before {
    background-image: url("../img/page/oyw2026/bg_sp.png");
  }
}

.list_box {
  width: 700px;
  margin: 0 auto;
}
.list_box .item {
  display: flex;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 15px;
  gap: 1em;
}
.list_box .item .title {
  width: 110px;
  background: #eee;
  text-align: center;
  font-weight: 400;
  padding: 0.4em;
  border-radius: 5px;
}
.list_box .item .txt {
  flex: 1;
  padding-top: 0.5em;
}
.list_box .item .txt a {
  color: #00aed8;
}

.page_oyw:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.page_oyw #sponsor .comment {
  text-align: center;
  padding-top: 3em;
  font-weight: 500;
  text-align: center;
}
.page_oyw .highlights_cta {
  padding: 100px 20px;
  text-align: center;
}
.page_oyw .highlights_cta h2 a {
  color: inherit;
  text-decoration: underline;
  transition: 0.3s;
  color: #fff;
}
.page_oyw .highlights_cta h2 a:hover {
  opacity: 0.9;
}
.page_oyw .highlights_cta .txt {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2em;
}
.page_oyw .highlights_cta .cta_btn a {
  display: inline-block;
  background: #fff;
  color: #00aed8;
  padding: 1em 2em;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}
.page_oyw .highlights_cta .cta_btn a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.page_oyw .highlights {
  padding: 100px 0;
}
.page_oyw .highlights.highlights_page {
  padding-top: 80px;
}
.page_oyw .highlights.highlights_page .back_link {
  text-align: center;
  padding: 60px 20px 40px;
}
.page_oyw .highlights.highlights_page .back_link a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.page_oyw .highlights.highlights_page .back_link a:hover {
  text-decoration: underline;
}
.page_oyw .highlights h3 {
  text-align: center;
  color: #fff;
}
.page_oyw .highlights h2.section_heading span {
  display: block;
}
.page_oyw .highlights h2.section_heading span:nth-child(1) {
  font-size: 26px;
}
.page_oyw .highlights .highlights_slider {
  margin-bottom: 40px;
}
.page_oyw .highlights .highlights_slider div {
  padding: 10px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.page_oyw .highlights .highlights_slider div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_oyw .highlights .highlights_grid,
.page_oyw .highlights .photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.page_oyw .highlights .highlights_grid .item,
.page_oyw .highlights .photo .item {
  display: block;
  text-decoration: none;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.page_oyw .highlights .highlights_grid .item img,
.page_oyw .highlights .photo .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 800px) {
  .page_oyw .highlights .highlights_grid,
  .page_oyw .highlights .photo {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .page_oyw .highlights .highlights_grid,
  .page_oyw .highlights .photo {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.page_oyw .highlights .report_pdf {
  padding: 20px;
}
.page_oyw .highlights .report_pdf ul {
  display: flex;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page_oyw .highlights .report_pdf ul {
    flex-direction: column;
  }
}
.page_oyw .highlights .report_pdf ul li {
  flex: 1;
}
.page_oyw .highlights .report_pdf ul li a {
  display: flex;
  background: #fff;
  color: #00aed8;
  padding: 1em;
  gap: 1em;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
}
.page_oyw .highlights .report_pdf ul li a img {
  width: 1.5em;
}
.page_oyw .highlights .youtube {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 0;
}
.page_oyw .highlights .youtube iframe {
  display: block;
  width: 100%;
  aspect-ratio: 560/315;
}
.page_oyw .highlights .related {
  padding: 60px 20px;
}
.page_oyw .highlights .related .inner {
  margin: 0 auto;
  max-width: 800px;
}
.page_oyw .highlights .related .inner h3 {
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #fff;
  font-size: 22px;
}
.page_oyw .highlights .related .inner ul {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
}
@media screen and (max-width: 800px) {
  .page_oyw .highlights .related .inner ul {
    padding: 20px 10px;
  }
}
.page_oyw .highlights .related .inner ul li {
  padding: 10px 0;
  border-bottom: solid 1px #ccc;
}
.page_oyw .highlights .related .inner ul li:last-child {
  border-bottom: none;
}
.page_oyw .highlights .related .inner ul li a {
  display: flex;
  gap: 2em;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  text-decoration: none;
  padding: 1em;
  transition: 0.3s;
}
.page_oyw .highlights .related .inner ul li a:hover {
  opacity: 0.6;
}
.page_oyw .highlights .related .inner ul li a:hover img {
  transform: translateX(5px);
}
.page_oyw .highlights .related .inner ul li a span {
  flex: 1;
}
.page_oyw .highlights .related .inner ul li a img {
  width: 1.5em;
  transition: 0.1s;
}
.page_oyw #entry .price_txt {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 40px 40px;
}
@media screen and (max-width: 800px) {
  .page_oyw #entry .price_txt {
    flex-direction: column;
    gap: 20px;
  }
}
.page_oyw #entry .price_txt .item {
  text-align: center;
  border-right: solid 1px #ccc;
  padding: 0px 50px;
}
.page_oyw #entry .price_txt .item:last-child {
  border-right: none;
}
@media screen and (max-width: 800px) {
  .page_oyw #entry .price_txt .item {
    border-right: none;
    padding: 0px 0;
  }
}
.page_oyw #entry .price_txt .item h4 {
  font-weight: 500;
  font-size: 16px;
}
.page_oyw #entry .price_txt .item .txt {
  font-size: 34px;
  color: #00aed8;
  font-weight: 700;
}
.page_oyw #entry .conditions {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 40px;
}
.page_oyw #entry .conditions ol {
  padding-left: 2em;
  font-size: 15px;
}
.page_oyw #entry .conditions ol li {
  list-style: disc;
  margin-bottom: 5px;
}
.page_oyw #entry .conditions h4 {
  padding: 1.5em 0 0.5em;
  color: #00aed8;
}
.page_oyw #entry .explanation {
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 2;
  font-size: 15px;
}
.page_oyw #entry h3 {
  text-align: center;
  color: #00aed8;
  font-size: 20px;
  margin: 2em 0 0.5em;
}
.page_oyw #entry h3:first-of-type {
  margin-top: 0;
}
.page_oyw #entry .price_item {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 20px 0;
}
.page_oyw #entry .price_item .clm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 1em;
}
.page_oyw #entry .price_item .clm span {
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 18px);
}
.page_oyw #entry .price_item .clm span.line {
  display: block;
  flex: 1;
  height: 1px;
  background: #aaa;
}
.page_oyw #entry .price_item .clm span:last-child {
  color: #00aed8;
}
.page_oyw #entry .price_item .txt {
  font-size: 14px;
  color: #777;
}
.page_oyw #entry .overseas_entry {
  max-width: 600px;
  margin: 20px auto 0;
  padding: 16px 20px;
  background: #fff;
  border-radius: 10px;
  border: solid 1px #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  box-shadow: 0 2px 10px rgba(0, 174, 216, 0.08);
}
.page_oyw #entry .overseas_entry .label {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}
.page_oyw #entry .overseas_entry .free {
  color: #00aed8;
  font-weight: 700;
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  .page_oyw #entry .overseas_entry {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 15px auto 0;
    padding: 14px 16px;
  }
}
.page_oyw #aboutevent {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #aboutevent .inner {
  max-width: 900px;
  margin: 0 auto;
}
.page_oyw #aboutevent .inner h2 {
  font-size: clamp(28px, 3vw, 34px);
  margin-bottom: 0.5em;
  color: #fff;
}
.page_oyw #aboutevent .inner h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 0.5em;
  color: #fff;
  padding-top: 1.5em;
}
.page_oyw #aboutevent .inner p {
  color: #fff;
  font-size: 15px;
}
.page_oyw #aboutevent .inner p a {
  color: #fff;
}
.page_oyw #aboutevent .inner figure {
  padding: 40px 0 60px;
}
.page_oyw #overview .banner {
  max-width: 700px;
  padding: 20px 20px 100px;
  margin: 0 auto;
}
.page_oyw #overview .banner img {
  width: 100%;
  border-radius: 5px;
}
.page_oyw #overview .section_inner h3 {
  text-align: center;
  color: #00aed8;
  font-size: 28px;
  margin-bottom: 0.5em;
}
.page_oyw #overview .section_inner ul {
  max-width: 600px;
  margin: 0 auto;
}
.page_oyw #overview .section_inner .sponsor {
  max-width: 800px;
  margin: 40px auto 0;
  border-top: solid 1px #ccc;
}
.page_oyw #overview .section_inner .sponsor h4 {
  color: #00aed8;
  padding: 2em 0 0.5em;
}
.page_oyw #overview .section_inner .sponsor .txt {
  font-size: 15px;
  line-height: 2;
}
.page_oyw #program .section_inner h3 {
  text-align: center;
  color: #00aed8;
  font-size: 24px;
  margin-bottom: 0.5em;
}
.page_oyw #program .section_inner figure {
  padding: 40px 0 20px;
  text-align: center;
}
.page_oyw #program .section_inner figure img {
  max-width: 700px;
  border-radius: 10px;
  width: 100%;
}

.page_oyw h2.section_heading {
  text-align: center;
  color: #fff;
  font-family: "Sen", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 0.5em;
}
.page_oyw .section_inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 40px);
}
.page_oyw figure {
  line-height: 1;
}
.page_oyw figure img {
  border-radius: 5px;
}
.page_oyw figure figcaption {
  text-align: right;
  font-size: 13px;
  color: #fff;
  opacity: 0.7;
  padding: 0.2em;
}
.page_oyw .more_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}
.page_oyw .more_content.open {
  max-height: 1000px;
}
.page_oyw .more_btn {
  text-align: center;
  padding-top: 20px;
}
.page_oyw .more_btn span {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 14px;
  color: #444;
  background: #a8e2f0;
  border-radius: 5px;
  cursor: pointer;
}
.page_oyw .more_btn span::before {
  content: "read more";
}
.page_oyw .more_btn.open span::before {
  content: "close";
}
.page_oyw .language {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px 5px;
}
@media screen and (max-width: 1000px) {
  .page_oyw .language {
    display: none;
  }
}
.page_oyw .language ul {
  display: flex;
  justify-content: end;
}
.page_oyw .language ul li a {
  color: #fff;
  padding: 0 0.5em;
  font-size: 14px;
  font-weight: 500;
}
.page_oyw nav.pc {
  width: 100%;
  padding: 0 20px;
  position: sticky;
  font-family: "Sen", sans-serif;
  top: 10px;
  z-index: 50;
}
@media screen and (max-width: 1000px) {
  .page_oyw nav.pc {
    display: none;
  }
}
.page_oyw nav.pc .inner {
  max-width: 1400px;
  display: flex;
  align-items: center;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px -20px rgba(0, 0, 0, 0.5);
  padding: 5px 20px 5px 10px;
}
.page_oyw nav.pc .inner .logo {
  margin-right: auto;
  line-height: 0;
}
.page_oyw nav.pc .inner .logo img {
  width: 340px;
}
.page_oyw nav.pc .inner ul {
  display: flex;
}
.page_oyw nav.pc .inner ul li a {
  font-size: 17px;
  color: #00aed8;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5em;
}
.page_oyw nav.pc .inner .entry {
  padding-left: 10px;
}
.page_oyw nav.pc .inner .entry a {
  font-size: 15px;
  color: #fff;
  background: #00aed8;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4em 1em;
  border-radius: 5px;
}
.page_oyw nav.sp {
  width: 100%;
  height: 60px;
  background: #fff;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 90;
}
@media screen and (min-width: 1000px) {
  .page_oyw nav.sp {
    display: none;
  }
}
.page_oyw nav.sp .logo {
  line-height: 0;
}
.page_oyw nav.sp .logo img {
  width: 220px;
}
.page_oyw nav.sp .drawer_btn {
  font-size: 45px;
  width: 1em;
  height: 1em;
  background: #00aed8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 120;
  border-radius: 5px;
}
.page_oyw nav.sp .drawer_btn span,
.page_oyw nav.sp .drawer_btn span:after,
.page_oyw nav.sp .drawer_btn span:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 3px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
  border-radius: 10em;
}
.page_oyw nav.sp .drawer_btn span:before {
  bottom: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.page_oyw nav.sp .drawer_btn span:after {
  top: 0.2em;
  transition: 0.3s 0.3s, transform 0.3s;
}
.page_oyw nav.sp .drawer_btn span.active {
  background: rgba(255, 255, 255, 0);
}
.page_oyw nav.sp .drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
.page_oyw nav.sp .drawer_btn span.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
.page_oyw nav.sp .drawer_content {
  width: 100vw;
  height: calc(100vh - 60px);
  overflow: scroll;
  display: flex;
  justify-content: end;
  position: fixed;
  top: 60px;
  right: -100vw;
  z-index: 100;
}
.page_oyw nav.sp .drawer_content.active {
  opacity: 1;
  top: 60px;
  right: 0;
}
.page_oyw nav.sp .drawer_content.active .bg {
  backdrop-filter: blur(10px);
  left: 0;
}
.page_oyw nav.sp .drawer_content.active .inner {
  transition: 0.3s;
  right: 0px;
}
.page_oyw nav.sp .drawer_content .bg {
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 60px;
  right: -100vw;
  transition: 0.3s;
}
.page_oyw nav.sp .drawer_content .inner {
  width: 200px;
  position: relative;
  right: -300px;
  overflow: scroll;
  background: #fff;
  padding-top: 40px;
}
.page_oyw nav.sp .drawer_content ul.gnav {
  font-family: "Sen", sans-serif;
  margin-bottom: 10px;
}
.page_oyw nav.sp .drawer_content ul.gnav li a {
  display: block;
  text-decoration: none;
  color: #00aed8;
  font-size: 20px;
  font-weight: 500;
  padding: 0.2em 1em;
}
.page_oyw nav.sp .drawer_content .entry {
  font-family: "Sen", sans-serif;
  padding: 0 20px 20px;
}
.page_oyw nav.sp .drawer_content .entry a {
  background: #00aed8;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 0.5em;
  text-align: center;
  border-radius: 5px;
}
.page_oyw nav.sp .drawer_content ul.language_link {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 10px;
}
.page_oyw nav.sp .drawer_content ul.language_link li a {
  color: #888;
  font-size: 14px;
}
.page_oyw .mainvisual {
  text-align: center;
  padding: 0 40px;
}
.page_oyw .mainvisual h1 img {
  max-width: 500px;
  width: 100%;
}
.page_oyw #introduction {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #introduction h2 {
  font-size: clamp(28px, 3vw, 34px);
  margin: 2em 0 0.5em;
  color: #fff;
}
.page_oyw #introduction h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 2em 0 0.5em;
  color: #fff;
}
.page_oyw #introduction p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2;
  color: #fff;
}
.page_oyw #introduction figure {
  padding: clamp(20px, 3vw, 40px) 0 clamp(20px, 4vw, 60px);
}
.page_oyw #team {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #team .section_inner .txt {
  max-width: 800px;
  margin: 0 auto;
}
.page_oyw #team .section_inner .txt figure {
  width: 300px;
  float: left;
  padding: 10px 30px 0px 0;
}
@media screen and (max-width: 500px) {
  .page_oyw #team .section_inner .txt figure {
    width: 55%;
    padding: 5px 15px 0px 0;
  }
}
.page_oyw #team .section_inner .txt figure figcaption {
  color: #444;
}
.page_oyw #team .section_inner .txt p {
  font-size: 15px;
}
.page_oyw #about {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #about .inner {
  max-width: 800px;
  margin: 0 auto;
}
.page_oyw #about .inner .txt p {
  font-size: 15px;
  line-height: 2;
}
.page_oyw #about .inner .txt p a {
  color: #00aed8;
}
.page_oyw #about .inner .photo {
  display: flex;
  gap: 20px;
  padding: clamp(5px, 1vw, 20px);
}
.page_oyw #about .inner .photo figure {
  flex: 1;
}
.page_oyw #about .inner .photo figure figcaption {
  color: #777;
}
.page_oyw #overview {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #overview .section_inner .logo {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 10px;
}
.page_oyw #overview .section_inner .logo img {
  max-width: 400px;
  width: 100%;
}
.page_oyw #overview .section_inner .schedule {
  max-width: 800px;
  margin: 0 auto 10px;
  border: solid 1px #00aed8;
  padding: 20px clamp(15px, 2vw, 40px);
  border-radius: 10px;
}
.page_oyw #overview .section_inner .schedule h3 {
  text-align: center;
  color: #00aed8;
  margin-bottom: 0.5em;
  font-size: clamp(20px, 2.2vw, 26px);
}
.page_oyw #overview .section_inner .schedule ul {
  max-width: 400px;
  margin: 0 auto;
}
.page_oyw #overview .section_inner .schedule ul li {
  font-size: clamp(14px, 1.4vw, 15px);
  margin-bottom: 0.5em;
  font-weight: 500;
}
.page_oyw #overview .section_inner .data {
  max-width: 800px;
  margin: 0 auto;
}
.page_oyw #overview .section_inner .data ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1em;
  color: #777;
  font-size: 14px;
}
.page_oyw #overview .youtubelive {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 0;
}
.page_oyw #overview .youtubelive a {
  transition: 0.3s;
}
.page_oyw #overview .youtubelive a:hover {
  opacity: 0.6;
}
.page_oyw #overview .youtubelive a img {
  width: 100%;
  border-radius: 10px;
}
.page_oyw #overview .youtubelive .youtubelive_archive iframe {
  display: block;
  width: 100%;
  aspect-ratio: 560/315;
}
.page_oyw #speaker {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #speaker .speaker_list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .page_oyw #speaker .speaker_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .page_oyw #speaker .speaker_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .page_oyw #speaker .speaker_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_oyw #speaker .speaker_list .item {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.page_oyw #speaker .speaker_list .item .thumbnail {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page_oyw #speaker .speaker_list .item .thumbnail .photo {
  width: 100%;
  margin-bottom: 10px;
}
.page_oyw #speaker .speaker_list .item .thumbnail .photo img {
  width: 100%;
  aspect-ratio: 4/6;
  object-fit: cover;
  border-radius: 5px;
}
.page_oyw #speaker .speaker_list .item .thumbnail .name {
  text-align: center;
  color: #00aed8;
  font-weight: 500;
  font-size: 16px;
}
.page_oyw #speaker .speaker_list .item .thumbnail .job {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-bottom: auto;
}
.page_oyw #speaker .speaker_list .item .thumbnail .btn {
  margin-top: 20px;
  background: #00aed8;
  border-radius: 5px;
  text-align: center;
  padding: 0.4em 0.5em;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-right: 1em;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.page_oyw #speaker .speaker_list .item .thumbnail .btn::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  border-radius: 10em;
}
.page_oyw #speaker .speaker_list .item .thumbnail .btn::after {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: #fff;
  position: absolute;
  border-radius: 10em;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.page_oyw #speaker .speaker_list .item .modal {
  width: 100vw;
  height: 100vh;
  padding: clamp(40px, 6vw, 80px) 20px;
  position: fixed;
  top: 0;
  overflow: scroll;
  left: 100vw;
  z-index: 999;
  opacity: 0;
}
.page_oyw #speaker .speaker_list .item .modal.open {
  left: 0;
  opacity: 1;
}
.page_oyw #speaker .speaker_list .item .modal.open .bg {
  left: 0;
  opacity: 1;
}
.page_oyw #speaker .speaker_list .item .modal.open .content {
  transform: translateY(0);
  opacity: 1;
}
.page_oyw #speaker .speaker_list .item .modal .bg {
  overflow: visible;
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: 0;
  opacity: 0;
  cursor: pointer;
}
.page_oyw #speaker .speaker_list .item .modal .profile {
  position: relative;
  width: 100%;
}
.page_oyw #speaker .speaker_list .item .modal .content {
  background: #fff;
  position: relative;
  max-width: 700px;
  padding: 60px clamp(20px, 6vw, 80px);
  margin: 0 auto;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s 0.1s;
  transform: translateY(20px);
}
.page_oyw #speaker .speaker_list .item .modal .content .close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.page_oyw #speaker .speaker_list .item .modal .content .photo img {
  border-radius: 10px;
}
.page_oyw #speaker .speaker_list .item .modal .content .name {
  text-align: center;
  color: #00aed8;
  font-weight: 500;
  font-size: 20px;
}
.page_oyw #speaker .speaker_list .item .modal .content .job {
  text-align: center;
  font-size: 15px;
  color: #999;
  margin-bottom: 40px;
}
.page_oyw #speaker .speaker_list .item .modal .txt p {
  font-size: 15px;
}
.page_oyw #speaker .more_txt {
  text-align: center;
  padding: 2em;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.page_oyw #features {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #features .section_inner ol {
  max-width: 700px;
  margin: 0 auto;
}
.page_oyw #features .section_inner ol li {
  list-style: none;
  margin-bottom: 20px;
}
.page_oyw #features .section_inner ol li h3 {
  display: flex;
  gap: 0.4em;
  color: #00aed8;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 700;
  margin-bottom: 0.3em;
}
.page_oyw #features .section_inner ol li h3 span {
  display: block;
}
.page_oyw #features .section_inner ol li p {
  padding-left: 2em;
  font-size: 15px;
}
.page_oyw #venues {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #venues .section_inner ul {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page_oyw #venues .section_inner ul li {
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: solid 1px #ccc;
  padding: 10px 0 30px;
}
@media screen and (max-width: 900px) {
  .page_oyw #venues .section_inner ul li {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
}
.page_oyw #venues .section_inner ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.page_oyw #venues .section_inner ul li .txt {
  margin-bottom: 20px;
}
.page_oyw #venues .section_inner ul li .txt .forum {
  font-size: 15px;
  margin-bottom: 0.2em;
  font-weight: 500;
}
.page_oyw #venues .section_inner ul li .txt h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: #00aed8;
  margin-bottom: 0.4em;
}
.page_oyw #venues .section_inner ul li .txt .address {
  font-size: 14px;
  color: #777;
}
.page_oyw #venues .section_inner ul li .txt .address a {
  margin-left: 0.5em;
  color: #777;
}
.page_oyw #venues .section_inner ul li .photo {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 850px) {
  .page_oyw #venues .section_inner ul li .photo {
    gap: 20px;
    flex-direction: column;
  }
}
.page_oyw #venues .section_inner ul li .photo figure img {
  width: auto;
  height: 180px;
}
@media screen and (max-width: 850px) {
  .page_oyw #venues .section_inner ul li .photo figure img {
    width: 100%;
    height: auto;
  }
}
.page_oyw #venues .section_inner ul li .photo figure figcaption {
  color: #444;
}
.page_oyw #program {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #program article {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: clamp(20px, 3vw, 40px);
  margin-bottom: 60px;
}
.page_oyw #program article:last-child {
  margin-bottom: 0;
}
.page_oyw #program article .inner {
  max-width: 700px;
  margin: 0 auto;
}
.page_oyw #program article .inner .day {
  text-align: center;
  font-size: 17px;
}
.page_oyw #program article .inner h2 {
  text-align: center;
  color: #00aed8;
  font-size: clamp(24px, 2.6vw, 30px);
  margin-bottom: 1em;
}
.page_oyw #program article .inner h3 {
  color: #00aed8;
  font-size: clamp(18px, 1.9vw, 20px);
  border-bottom: solid 1px #00aed8;
  font-weight: 700;
  padding-top: 2em;
  padding-bottom: 0.4em;
  margin-bottom: 0.5em;
}
.page_oyw #program article .inner p {
  margin-bottom: 1em;
  font-size: clamp(14px, 1.4vw, 15px);
}
.page_oyw #program article .inner ul {
  padding-left: 30px;
}
.page_oyw #program article .inner ul h4 {
  color: #00aed8;
  font-size: clamp(15px, 1.5vw, 16px);
  position: relative;
}
.page_oyw #program article .inner ul h4::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #00aed8;
  border-radius: 10em;
  position: absolute;
  top: 0.6em;
  left: -1em;
}
.page_oyw #program article .inner .clm {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .page_oyw #program article .inner .clm {
    flex-direction: column-reverse;
  }
}
.page_oyw #program article .inner .clm figure {
  width: 200px;
}
@media screen and (max-width: 600px) {
  .page_oyw #program article .inner .clm figure {
    width: 100%;
  }
}
.page_oyw #program article .inner .clm .txt {
  flex: 1;
}
.page_oyw #program article .inner .photo {
  display: flex;
  gap: 20px;
  padding: clamp(5px, 1vw, 20px);
}
.page_oyw #program article .inner .photo figure {
  flex: 1;
}
.page_oyw #program article .inner .photo figure figcaption {
  color: #777;
}
.page_oyw #entry {
  padding: clamp(20px, 3vw, 40px);
}
.page_oyw #entry .section_inner h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  color: #00aed8;
  text-align: center;
  line-height: 1;
  margin-bottom: 1em;
}
.page_oyw #entry .section_inner .price {
  text-align: center;
}
.page_oyw #entry .section_inner .price span {
  display: block;
}
.page_oyw #entry .section_inner .price span:nth-child(1) {
  font-size: clamp(15px, 1.6vw, 18px);
}
.page_oyw #entry .section_inner .price span:nth-child(2) {
  font-size: clamp(20px, 2.4vw, 40px);
  color: #00aed8;
  font-weight: 700;
}
.page_oyw #entry .section_inner .deadline {
  text-align: center;
  font-size: 15px;
  margin-bottom: 1em;
}
.page_oyw #entry .section_inner ul {
  margin-bottom: 20px;
  border: solid 1px #00aed8;
  border-radius: 10px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.page_oyw #entry .section_inner ul li {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  padding: 0.3em 0;
  display: flex;
  gap: 0.5em;
}
.page_oyw #entry .section_inner ul li::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 10em;
  background: #00aed8;
  transform: translateY(0.5em);
}
.page_oyw #entry .section_inner .entry_btn {
  padding: 60px 0 80px;
}
.page_oyw #entry .section_inner .entry_btn a {
  display: block;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
  padding: 1em;
  max-width: 400px;
  border-radius: 10px;
  text-decoration: none;
  background: #00aed8;
  color: #fff;
}
.page_oyw #entry .section_inner .annotation {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: clamp(12px, 1.3vw, 14px);
  color: #777;
  padding: 0.5em;
}
.page_oyw #sponsor {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #sponsor .section_inner h3 {
  text-align: center;
  padding: 3em 0 1em;
  font-size: clamp(16px, 1.8vw, 20px);
}
.page_oyw #sponsor .section_inner ul {
  display: grid;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (max-width: 500px) {
  .page_oyw #sponsor .section_inner ul {
    gap: 5px;
  }
}
.page_oyw #sponsor .section_inner ul.XL {
  grid-template-columns: repeat(2, 1fr);
}
.page_oyw #sponsor .section_inner ul.L {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 500px) {
  .page_oyw #sponsor .section_inner ul.L {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_oyw #sponsor .section_inner ul.M {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 500px) {
  .page_oyw #sponsor .section_inner ul.M {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_oyw #sponsor .section_inner ul.S {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 800px) {
  .page_oyw #sponsor .section_inner ul.S {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .page_oyw #sponsor .section_inner ul.S {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page_oyw #sponsor .section_inner ul.XS {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 600px) {
  .page_oyw #sponsor .section_inner ul.XS {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_oyw #sponsor .section_inner ul li {
  flex: 1;
}
.page_oyw #sponsor .section_inner ul li .logo_none {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_oyw #sponsor .section_inner ul li .logo_none .thumbnail {
  display: none;
}
.page_oyw #sponsor .section_inner ul li .logo_none .name {
  display: block;
}
.page_oyw #sponsor .section_inner ul li a {
  height: 100%;
  display: block;
  border: solid 1px #ddd;
  border-radius: 5px;
  padding: 20px 20px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .page_oyw #sponsor .section_inner ul li a {
    padding: 5px;
  }
}
.page_oyw #sponsor .section_inner ul li a .thumbnail {
  width: 100%;
  line-height: 0;
  aspect-ratio: 5/2;
}
.page_oyw #sponsor .section_inner ul li a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page_oyw #sponsor .section_inner ul li a .name {
  color: #333;
  font-size: 13px;
  display: none;
}
@media screen and (max-width: 600px) {
  .page_oyw #sponsor .section_inner ul li a .name {
    font-size: 10px;
  }
}
.page_oyw #sponsor .section_inner ul li a:hover {
  opacity: 0.6;
}
.page_oyw #crowdfunding {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw #crowdfunding .section_inner h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 18px;
}
.page_oyw #crowdfunding .section_inner .inner {
  max-width: 700px;
  margin: 0 auto;
}
.page_oyw #crowdfunding .section_inner .inner .txt {
  line-height: 2.2;
  font-size: 15px;
}
.page_oyw #crowdfunding .section_inner .inner .comment {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 0.5em;
}
.page_oyw .volunteer {
  padding: clamp(40px, 6vw, 100px) 10px;
}
.page_oyw .volunteer .section_inner h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #00aed8;
  max-width: 800px;
  margin: 0 auto 1em;
  text-align: center;
  margin-bottom: 0.5em;
}
.page_oyw .volunteer .section_inner > p {
  text-align: center;
  font-size: 15px;
  margin: 0 auto 1em;
  max-width: 800px;
  line-height: 1.8;
  margin-bottom: 2em;
}
.page_oyw .volunteer .section_inner h3 {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1em;
  color: #00aed8;
  font-size: clamp(18px, 2vw, 22px);
  margin: 2em auto 0.5em;
}
.page_oyw .volunteer .section_inner h3:first-of-type {
  margin-top: 0;
}
.page_oyw .volunteer .section_inner ul {
  max-width: 800px;
  margin: 0 auto 1em;
  padding-left: 1.5em;
}
.page_oyw .volunteer .section_inner ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0.5em;
  list-style: disc;
}
.page_oyw .volunteer .section_inner > p:last-child {
  max-width: 800px;
  margin: 0 auto 0;
  font-size: 15px;
  text-align: left;
  line-height: 1.8;
}
.page_oyw .footer {
  background: #00b8ee;
  padding: 40px 20px;
}
.page_oyw .footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .page_oyw .footer .inner {
    flex-direction: column;
    gap: 20px;
  }
}
.page_oyw .footer .inner .logo {
  line-height: 0;
}
.page_oyw .footer .inner .logo img {
  width: 300px;
}
.page_oyw .footer .inner .contact {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
.page_oyw .footer .inner .contact a {
  color: #00b8ee;
  font-weight: 500;
}
.page_oyw .footer .copyright {
  text-align: center;
  font-size: 12px;
  color: #fff;
}

#spotlight {
  background: rgba(255, 255, 255, 0.8);
}
#spotlight .spl-next,
#spotlight .spl-prev {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
#spotlight .spl-next::before,
#spotlight .spl-prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 3px #000;
  border-left: solid 3px #000;
  transform: rotate(-45deg);
}
#spotlight .spl-next {
  transform: translateX(0) scaleX(-1);
  right: 10px;
}
#spotlight .spl-prev {
  transform: translateX(0) scaleX(1);
  left: 10px;
}
#spotlight .spl-footer {
  text-align: center;
  background: rgba(255, 255, 255, 0);
}
#spotlight .spl-footer .spl-title {
  font-size: 14px;
  color: #000;
}
#spotlight .spl-header {
  background: rgba(255, 255, 255, 0);
  transform: translateY(0px);
}
#spotlight .spl-header .spl-zoom-in,
#spotlight .spl-header .spl-zoom-out,
#spotlight .spl-header .spl-autofit,
#spotlight .spl-header .spl-fullscreen {
  display: none;
}
#spotlight .spl-header .spl-page {
  display: none;
}
#spotlight .spl-header .spl-close {
  position: relative;
  opacity: 1;
}
#spotlight .spl-header .spl-close::before, #spotlight .spl-header .spl-close::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#spotlight .spl-header .spl-close::after {
  transform: rotate(-45deg);
}
#spotlight .spl-track .spl-pane img {
  max-width: 75%;
  max-height: 80%;
}
