/*  Typo
----------------------------------------------- */
/*
a:link, a:visited
{
    text-decoration: underline;
    color:#EC4413;
}
a:active { 	text-decoration: underline; }
a:hover { text-decoration:none; }


h1 { font:bold 18px/140% "Trebuchet MS", Verdana, sans-serif; }
h2 { font:bold 14px/140% "Trebuchet MS", Verdana, sans-serif; }

p {	font: 11px/140% Verdana, Geneva, Arial, Helvetica, sans-serif;}

/*  Layout
----------------------------------------------- */
/*
body {
    background: #333333 url(https://u.jimcdn.com/cms/o/s06d60afe09f16e06/userlayout/img/bg.gif?t=1730968628) no-repeat top left;
    padding:35px 0 0 0;
    margin:0;
    font: 11px/140% Verdana, Geneva, Arial, Helvetica, sans-serif;
}

#container
{
    margin:0 auto;
    width:834px;
    background:white;
}

#header
{
    padding:17px;
}

#header h1,
#header a
{
    padding:0;
    font-family:"Helvetica","Lucida Sans Unicode",Tahoma,Verdana,Arial,Helvetica,sans-serif;
    font-size:30px;
    font-weight:normal;
    text-decoration:none;
    line-height:1.3em;
    color:#666666;
    text-align:right;
}

#header a:hover { text-decoration:none;  }


#navigation
{
    float:left;
    width:220px;
    padding:17px;

}
#sidebar
{
    padding-top:10px;
}

#content
{
    float:right;

    width:530px;
    padding:17px;

}

#footer
{
    clear:both;
    margin-top:10px;
    background:url(https://u.jimcdn.com/cms/o/s06d60afe09f16e06/userlayout/img/footer-bg.gif?t=1730968628) repeat-x top;
    height:65px;
}

#footer .gutter 
{
    height:30px;
    padding:35px 15px 0 90px;
}
*/
/*  Navigation
----------------------------------------------- */
/* 
ul.mainNav1,
ul.mainNav2
{
    margin:0;
    padding: 0;
}


ul.mainNav1 li,
ul.mainNav2 li
{
    display: inline;
    margin: 0;	
    padding: 0;
}


ul.mainNav1 li a,
ul.mainNav2 li a
{
    font:normal 11px/140% Verdana, Geneva, Arial, Helvetica, sans-serif;
    text-decoration: none;
    display: block;
    color:#333;
    border-bottom:1px solid #CCC;
}


ul.mainNav1 li a { padding:4px 4px 4px 4px; }
ul.mainNav2 li a { padding:4px 4px 4px 14px; }
ul.mainNav3 li a { padding:4px 4px 4px 24px; }


ul.mainNav1 a:hover
{
    background:#EEE;
    color:black;
}

ul.mainNav1 a.current { font-weight:bold; }
*/
/*2026 reset 
----------------------------------------------- */
html, body, div, span, h1, h2, h3, h4, h5, p, em, img, strong, b, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, figcaption, footer, header, hgroup, menu, nav, section, summary, video, dt, dd, ul, li{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body{
  line-height: 1;
}
article, figcaption, figure, footer, header, hgroup, menu, nav, section{
  display: block;
}
ul{
  list-style: none;
}
a{
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
table{
  border-collapse: collapse;
  border-spacing: 0;
}
/*2026 css 
----------------------------------------------- */
@media screen and (min-width: 800px) and (max-width: 960px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 799px) {
  .br_pc {
    display: none;
  }
}

body {
  background-color: #FBEAD6;
  font-size: 1rem;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
}
header .header_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 25px;
  margin-inline: auto;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: #7AA4AD;
}
header .header_nav a {
  color: #000;
  text-decoration: none;
}
header .header_nav a:hover {
  opacity: 0.7;
}
header .header_nav a:visited {
  text-decoration: none;
}
@media screen and (max-width: 799px) {
  header .header_nav {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 200px;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    background-color: #7AA4AD;
    transform: translateX(100%);
    transition: 0.5s;
  }
  header .header_nav.active {
    transform: translateX(0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  header .header_nav.active ~ .hamburger span {
    background-color: transparent;
  }
  header .header_nav.active ~ .hamburger span::before, header .header_nav.active ~ .hamburger span::after {
    background-color: #fff;
  }
  header .header_nav.active ~ .hamburger span::before {
    transform: rotate(45deg) translateY(12px) translateX(5px);
  }
  header .header_nav.active ~ .hamburger span::after {
    transform: rotate(-45deg) translateY(-12px) translateX(5px);
  }
  header .header_nav li {
    width: 100px;
    text-align: left;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
  }
  header .header_nav li a {
    color: #fff;
  }
  header .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 60px;
    height: 60px;
    padding: 8px;
  }
  header .hamburger span {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    position: absolute;
    top: 48%;
    background-color: #7AA4AD;
    transition: 0.5s;
  }
  header .hamburger span::before, header .hamburger span::after {
    content: "";
    position: absolute;
    background-color: #7AA4AD;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    transition: 0.5s;
  }
  header .hamburger span::before {
    top: -12px;
  }
  header .hamburger span::after {
    top: 12px;
  }
}

.mainVisual {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14.5833333333vw;
  margin-inline: auto;
}
@media screen and (max-width: 799px) {
  .mainVisual {
    margin-top: 50px;
  }
}
.mainVisual img {
  width: 100%;
  max-width: 1173px;
  height: auto;
}

.flex {
  display: flex;
}

.about_section {
  display: flex;
  flex-flow: column;
  gap: 40px;
  max-width: 1000px;
  margin-inline: auto;
}
.about_section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #2C2C2C;
  font-weight: bold;
}
@media screen and (max-width: 799px) {
  .about_section h2 {
    font-size: 1.875rem;
  }
}
.about_section .accent_text {
  color: #7AA4AD;
}
.about_section .about_text {
  margin-top: 5px;
  font-size: 1.25rem;
  text-align: center;
  color: #2C2C2C;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 799px) {
  .about_section .about_text {
    width: 80vw;
    margin-inline: auto;
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
.about_section .about h1 {
  margin-bottom: 40px;
  font-family: "Roboto Condensed", sans-serif;
  color: #7AA4AD;
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  line-height: 1.5;
}
@media screen and (max-width: 799px) {
  .about_section .about h1 {
    font-size: 3rem;
  }
}
.about_section .about p {
  margin-top: 5px;
  font-family: "Roboto Condensed", sans-serif;
  color: #2C2C2C;
  font-size: 1.8125rem;
  font-weight: bold;
  line-height: 1.3333333333;
}
@media screen and (max-width: 799px) {
  .about_section .about p {
    width: 80vw;
    margin-inline: auto;
    font-size: 20px;
    line-height: 1.75;
  }
}
.about_section .program {
  margin-top: 40px;
}
.about_section .program .day {
  margin-bottom: 30px;
}
.about_section .program .day:last-of-type {
  margin-bottom: 0;
}
.about_section .program .schedule {
  margin-top: 10px;
  text-align: center;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #2C2C2C;
  line-height: 1.2;
}
.about_section .theme_text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
}
@media screen and (max-width: 799px) {
  .about_section .theme_text {
    font-size: 1.875rem;
  }
}
.about_section .theme_text ruby {
  ruby-align: center;
}
.about_section .theme_text rt {
  margin-block: 5px;
}
.about_section .entry_method a {
  color: #7AA4AD;
}
.about_section .bg_blue {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 10px;
  background-color: rgba(122, 164, 173, 0.5);
}
@media screen and (min-width: 800px) and (max-width: 960px) {
  .about_section .bg_blue {
    width: 96%;
  }
}
@media screen and (max-width: 799px) {
  .about_section .bg_blue {
    width: 90.6666666667vw;
    padding-block: 15px;
  }
}
.about_section .fee .flex, .about_section .venue .flex {
  justify-content: center;
  gap: 2.5rem;
}
.about_section .fee .flex p, .about_section .venue .flex p {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #2C2C2C;
  font-weight: bold;
}
@media screen and (max-width: 799px) {
  .about_section .fee .flex p, .about_section .venue .flex p {
    font-size: 1.875rem;
  }
}
.about_section .fee .sub, .about_section .venue .sub {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #2C2C2C;
}
@media screen and (max-width: 799px) {
  .about_section .fee .sub, .about_section .venue .sub {
    font-size: 0.9375rem;
  }
}
.about_section .venue {
  margin-top: 30px;
}
.about_section .venue a {
  text-decoration: underline;
  color: #2C2C2C;
}
@media screen and (max-width: 799px) {
  .about_section .venue .flex {
    display: block;
  }
}
.about_section .access img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 799px) {
  .about_section .access img {
    width: 80vw;
    margin-inline: auto;
  }
}

.guest_navigator_section {
  margin-top: 40px;
  padding-block: 50px;
  background-color: rgba(122, 164, 173, 0.5);
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest, .guest_navigator_section .navigator {
    width: 80vw;
    margin-inline: auto;
  }
}
.guest_navigator_section .guest .name, .guest_navigator_section .navigator .name {
  margin-bottom: 25px;
  color: #2C2C2C;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest .name, .guest_navigator_section .navigator .name {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-right: auto;
    margin-bottom: 5px;
  }
}
.guest_navigator_section .guest img, .guest_navigator_section .navigator img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest img, .guest_navigator_section .navigator img {
    width: 100%;
    height: auto;
  }
}
.guest_navigator_section .guest p, .guest_navigator_section .navigator p {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
  margin-inline: auto;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  color: #2C2C2C;
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest p, .guest_navigator_section .navigator p {
    font-size: 1rem;
    line-height: 27/16;
  }
}
.guest_navigator_section .guest {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest .name {
    order: 2;
    margin-top: 20px;
  }
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest img {
    order: 1;
  }
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .guest p {
    order: 3;
  }
}
.guest_navigator_section .navigator {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .navigator .name {
    order: 2;
    margin-top: 20px;
  }
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .navigator img {
    order: 1;
  }
}
.guest_navigator_section .navigator p {
  margin-bottom: 30px;
}
@media screen and (max-width: 799px) {
  .guest_navigator_section .navigator p {
    order: 3;
  }
}

.archive_section {
  margin-top: 80px;
}
.archive_section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #7AA4AD;
  font-weight: bold;
}
@media screen and (max-width: 799px) {
  .archive_section h2 {
    font-size: 1.875rem;
  }
}
.archive_section .archive_list_box {
  max-width: 980px;
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) and (max-width: 960px) {
  .archive_section .archive_list_box {
    width: 96%;
  }
}
@media screen and (max-width: 799px) {
  .archive_section .archive_list_box {
    width: 90.6666666667vw;
  }
}
.archive_section .archive_list_box li {
  margin-bottom: 40px;
}
.archive_section .archive_list_box li:last-of-type {
  margin-bottom: 0;
}
.archive_section .archive_list_box h3 {
  background-color: rgba(122, 164, 173, 0.5);
  padding: 13px 20px;
  font-size: 1rem;
  color: #2C2C2C;
}
.archive_section .archive_list_box .leaflet {
  margin-top: 20px;
}
.archive_section .archive_list_box .leaflet a {
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.archive_section .archive_list_box .leaflet img {
  display: block;
}
.archive_section .archive_list_box .guest {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-top: 30px;
}
.archive_section .archive_list_box .guest .guest_container, .archive_section .archive_list_box .guest .guest_container > dl {
  display: flex;
  gap: 20px;
}
.archive_section .archive_list_box .guest .guest_container dt, .archive_section .archive_list_box .guest .guest_container > dl dt {
  flex-shrink: 0;
  width: 200px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #7AA4AD;
}
@media screen and (max-width: 799px) {
  .archive_section .archive_list_box .guest .guest_container dt, .archive_section .archive_list_box .guest .guest_container > dl dt {
    width: 120px;
  }
}
.archive_section .archive_list_box .guest .guest_container dt span, .archive_section .archive_list_box .guest .guest_container > dl dt span {
  display: inline-block;
  padding-right: 10px;
}
.archive_section .archive_list_box .guest .guest_container dt span::first-letter, .archive_section .archive_list_box .guest .guest_container > dl dt span::first-letter {
  color: #2C2C2C;
}
.archive_section .archive_list_box .guest .guest_container dd span, .archive_section .archive_list_box .guest .guest_container > dl dd span {
  display: block;
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 1px solid #2C2C2C;
  color: #2C2C2C;
}
.archive_section .archive_list_box .guest .guest_container dd span:last-child, .archive_section .archive_list_box .guest .guest_container > dl dd span:last-child {
  margin-bottom: 0;
}
.archive_section .archive_list_box .border {
  width: 100%;
  height: 1px;
  margin-block: 40px;
  background-color: rgba(122, 164, 173, 0.3);
}
.archive_section .archive_list_box .photo {
  display: flex;
  gap: 20px;
}
.archive_section .archive_list_box .photo img {
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
}

.media_section {
  margin-top: 80px;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) and (max-width: 960px) {
  .media_section {
    width: 96%;
  }
}
@media screen and (max-width: 799px) {
  .media_section {
    width: 90.6666666667vw;
  }
}
.media_section h3 {
  background-color: rgba(122, 164, 173, 0.5);
  padding: 13px 20px;
  font-size: 1rem;
  color: #2C2C2C;
}
.media_section ul {
  display: flex;
  flex-flow: column;
  gap: 15px;
  margin-top: 30px;
}
.media_section dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 799px) {
  .media_section dl {
    gap: 15px;
  }
}
.media_section dt {
  width: 200px;
  flex-shrink: 0;
  padding: 15px 20px;
  background-color: rgba(122, 164, 173, 0.5);
  color: #2C2C2C;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 799px) {
  .media_section dt {
    width: 150px;
    font-size: 0.875rem;
  }
}
.media_section dd {
  font-family: "Roboto Condensed", sans-serif;
}
.media_section dd a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5px;
  color: #7AA4AD;
  font-weight: 500;
  font-size: 1rem;
  word-break: break-all;
}

.privacy_section {
  margin-top: 100px;
}
.privacy_section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #2C2C2C;
  font-weight: bold;
}
@media screen and (max-width: 799px) {
  .privacy_section h2 {
    font-size: 1.875rem;
  }
}
.privacy_section h3 {
  width: 100%;
  max-width: 980px;
  margin-top: 50px;
  margin-inline: auto;
  color: #7AA4AD;
  font-size: 1.375rem;
}
@media screen and (min-width: 800px) and (max-width: 960px) {
  .privacy_section h3 {
    width: 96%;
  }
}
@media screen and (max-width: 799px) {
  .privacy_section h3 {
    width: 90.6666666667vw;
  }
}
.privacy_section .text {
  width: 100%;
  max-width: 980px;
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) and (max-width: 960px) {
  .privacy_section .text {
    width: 96%;
  }
}
@media screen and (max-width: 799px) {
  .privacy_section .text {
    width: 90.6666666667vw;
  }
}
.privacy_section .text p {
  color: #2C2C2C;
  margin-bottom: 1em;
  line-height: 1.4666666667;
}
.privacy_section .text p:last-of-type {
  margin-bottom: 0;
}

footer {
  margin-top: 150px;
  padding-block: 40px;
  background-color: #7AA4AD;
}
footer a, footer a:active, footer a:visited, footer a:link {
  color: #2C2C2C;
}

.footer_box {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 799px) {
  .footer_box {
    flex-flow: column;
    justify-content: flex-start;
    width: 80vw;
    margin-inline: auto;
    gap: 50px;
  }
}
.footer_box li {
  color: #2C2C2C;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.5;
}
.footer_box .left {
  display: flex;
  gap: 5.2083333333vw;
}
@media screen and (max-width: 799px) {
  .footer_box .left {
    flex-flow: column;
  }
}
.footer_box .left ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer_box .right ul {
  display: flex;
  gap: 10px;
}

.container_old {
  display: none;
}/*# sourceMappingURL=style.css.map */