@charset "UTF-8";
/*---------------------------------------------

Style CSS

coded by d-spica at 2025-12-02

---------------------------------------------*/
/*---------------------------------------------

Set CSS

coded by d-spica at 2025-12-02
imported to "style.scss"

---------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Reset */
body, header, hgroup, main, section, article, aside, nav, footer, main, figure, figcaption, picture, div,
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, hr,
blockquote, pre, table, caption, th, td, address,
form, fieldset, legend, object {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, pre, table, code, kbd, samp, acronym, time, input, textarea, select {
  font-size: 100%;
}

a, ins, u {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: inherit;
}

address, em, i, b, cite, dfn, var {
  font-style: normal;
}

fieldset {
  border: none;
}

input, textarea {
  font-family: inherit;
  font-weight: normal;
}

input, button {
  margin: 0;
  vertical-align: middle;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture, video {
  display: block;
  vertical-align: bottom;
}

mark {
  background: none;
}

a, input, button, textarea {
  outline: none;
}

[type=text], [type=email], [type=tel], [type=submit], [type=button], select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  font-size: 100%;
}

/* Setting */
ul {
  list-style-position: outside;
  list-style-type: none;
}

ol {
  list-style-position: outside;
}

table {
  border-collapse: collapse;
}

/* Set Var */
:root {
  --sans-font: "Noto Sans JP", sans-serif;
  --font-color: #333;
  --key-color: #013380;
  --point-color: #59C4E1;
  --background-color: #C3E2EA;
  --speed: 0.35s;
  --h-margin: max(6vw, calc(50vw - 30rem));
  /* https://angel-rs.github.io/css-color-filter-generator/ */
}

/*---------------------------------------------

Common CSS

coded by d-spica at 2025-12-02
imported to "style.scss"

---------------------------------------------*/
html {
  background-color: #FFF;
  line-height: 1.4;
  font-family: var(--sans-font);
  font-size: min(20px, 1vw + 10.4px);
  font-weight: 400;
  color: var(--font-color);
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
}

#page {
  position: relative;
  background: url("../img/bg-hero.png") no-repeat 50% -3rem/100% 22rem;
}

hr {
  visibility: hidden;
  height: 0;
  clear: both;
}

a {
  color: inherit;
}

[src*=".svg"] {
  width: 100%;
}

.obp-S,
.obp-M,
.obp-L {
  display: none;
}

header.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  box-sizing: border-box;
  padding: 0 var(--h-margin);
  width: 100%;
  height: 3.5rem;
  transition: background-color var(--speed);
}
header.header .logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--key-color);
}
header.header .logo a {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  transition: opacity var(--speed);
}
header.header .logo a:hover {
  opacity: 0.6;
}
header.header .logo i {
  display: block;
  width: 1.6em;
}
header.header .logo em {
  display: block;
}

nav.nav dt {
  position: fixed;
  top: 0.6em;
  right: calc(var(--h-margin) - 1em);
  z-index: 9;
  width: 2.4em;
  height: 2.4em;
  cursor: ns-resize;
}
nav.nav dt i {
  display: block;
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 10%;
  background-color: var(--key-color);
  width: 80%;
  height: 0.15em;
  transition: transform var(--speed);
}
nav.nav dt i:nth-of-type(1) {
  transform: translateY(-0.8em);
}
nav.nav dt i:nth-of-type(2) {
  transform: translateY(-0.2em);
}
nav.nav dt span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--key-color);
}
nav.nav dd {
  position: fixed;
  top: 3.5rem;
  left: 0;
  z-index: 8;
  overflow-y: auto;
  overscroll-behavior-y: none;
  box-sizing: border-box;
  padding-bottom: 2rem;
  width: 100%;
  height: calc(100dvh - 3.5rem);
  background-color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  color: var(--key-color);
  transform-origin: 0 0;
  transform: scaleY(0);
  transition: transform var(--speed);
}
nav.nav dd::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 1px);
}
nav.nav dd a {
  transition: var(--speed);
}
nav.nav dd a:hover {
  opacity: 0.6;
}
nav.nav dd > ul > li {
  position: relative;
  margin-bottom: 1px;
}
nav.nav dd > ul > li > a {
  display: block;
  position: relative;
  background-color: var(--point-color);
  padding: 0.5em calc(var(--h-margin) + 0.5em);
}
nav.nav dd > ul > li > a i {
  display: none;
}
nav.nav dd > ul > li > button {
  position: absolute;
  top: 0;
  right: calc(var(--h-margin) - 1em);
  width: 2.4em;
  height: 2.4em;
  cursor: ns-resize;
}
nav.nav dd > ul > li > button::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.75px);
  left: 0.9em;
  background-color: var(--key-color);
  width: 0.6em;
  height: 1.5px;
}
nav.nav dd > ul > li > button::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.75px);
  left: 0.9em;
  background-color: var(--key-color);
  width: 0.6em;
  height: 1.5px;
  transform: rotate(90deg);
  transition: var(--speed);
}
nav.nav dd > ul > li.is-opened > button::after {
  transform: rotate(0);
}
nav.nav dd > ul > li > ul {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--speed);
}
nav.nav dd > ul > li > ul li {
  margin-top: 1px;
}
nav.nav dd > ul > li > ul li a {
  display: block;
  position: relative;
  background-color: var(--background-color);
  padding: 0.5em calc(var(--h-margin) + 0.5em);
}
nav.nav dd > ul > li > ul li a::before {
  content: ">";
  display: inline-block;
  margin-right: 0.4em;
  transform: scaleX(0.4);
}
nav.nav dd > ul > li.is-opened > a i::before {
  top: calc(50% - 0.2rem);
  transform: rotate(-135deg);
}
nav.nav dd > ul > li.is-opened > ul {
  max-height: 32rem; /* 要調整 */
}
nav.nav.is-opened dt i:nth-of-type(1) {
  transform: translateY(0) rotate(135deg);
}
nav.nav.is-opened dt i:nth-of-type(2) {
  transform: translateY(0) rotate(-135deg);
}
nav.nav.is-opened dt span {
  transform: scaleX(0);
}
nav.nav.is-opened dd {
  transform: scaleY(1);
}

main {
  margin: 0 var(--h-margin);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  min-height: 20rem;
}

span[id] {
  display: block;
  height: 0;
  transform: translateY(-2rem);
}

footer.footer {
  position: relative;
  margin-top: 8rem;
  background-color: var(--background-color);
  padding: 1.5rem var(--h-margin);
  color: var(--key-color);
}
footer.footer dl {
  line-height: 1.6;
  text-align: center;
}
footer.footer dt {
  font-size: 1.2rem;
  font-weight: 600;
}
footer.footer dd {
  font-size: 0.8rem;
}
footer.footer dd li {
  display: flex;
  gap: 0 1em;
  margin-top: 1em;
}
footer.footer dd li em {
  display: block;
  width: 6em;
}
footer.footer dd li span {
  display: block;
}
footer.footer .sitemap {
  display: none;
}
footer.footer p.copyright {
  margin-top: 1.5em;
  text-align: center;
  font-size: 0.8rem;
}
footer.footer .scrollup {
  position: absolute;
  top: -5rem;
  left: calc(50% - 1.2rem);
  width: 2.4rem;
  filter: opacity(0.3) grayscale(0.1);
  transition: filter var(--speed);
  cursor: n-resize;
}
footer.footer .scrollup:hover {
  filter: opacity(1) grayscale(0);
}

.is-scrolled header.header {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  background-color: #FFF;
}

@media (min-width: 560px) {
  .obp-S {
    display: inline-block;
  }
  .ubp-S {
    display: none;
  }
}
@media (min-width: 800px) {
  #page {
    background-size: 100% 29rem;
  }
  .obp-M {
    display: inline-block;
  }
  .ubp-M {
    display: none;
  }
  header.header {
    position: static;
    height: 4.5rem;
  }
  header.header .logo {
    font-size: 1.5rem;
  }
  nav.nav dt {
    display: none;
  }
  nav.nav dd {
    position: relative;
    top: 0;
    overflow: visible;
    background-color: transparent;
    padding-bottom: 0;
    height: auto;
    transform: scaleY(1);
  }
  nav.nav dd::before {
    display: none;
  }
  nav.nav dd .nav-main {
    display: flex;
    gap: 0 0.25rem;
    margin: 0 var(--h-margin);
  }
  nav.nav dd .nav-main a:hover {
    background-color: var(--background-color);
    opacity: 1;
  }
  nav.nav dd .nav-main > li {
    flex: 1;
    margin-bottom: 0;
  }
  nav.nav dd .nav-main > li > a {
    border: solid 1px var(--key-color);
    border-radius: 0.2rem;
    background-color: #FFF;
    padding: 0.5em;
    text-align: center;
  }
  nav.nav dd .nav-main > li > a i {
    display: block;
  }
  nav.nav dd .nav-main > li > a i img {
    height: 2rem;
    width: auto;
  }
  nav.nav dd .nav-main > li > a em {
    display: block;
    margin-top: 0.5rem;
  }
  nav.nav dd .nav-main > li > button {
    top: 2.8rem;
    right: 0;
    width: 2rem;
    height: 2rem;
  }
  nav.nav dd .nav-main > li [href*="member/"] + button {
    display: none;
  }
  nav.nav dd .nav-main > li > ul {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
  }
  nav.nav dd .nav-main > li > ul li a {
    border: solid 1px var(--key-color);
    border-radius: 0.2rem;
    background-color: #FFF;
    padding: 0.3em 0.5em;
  }
  nav.nav dd .nav-assist {
    display: flex;
    justify-content: end;
    gap: 0 1.5rem;
    position: absolute;
    top: -2.7rem;
    right: var(--h-margin);
    font-size: 0.8rem;
  }
  nav.nav dd .nav-assist li {
    margin-bottom: 0;
  }
  nav.nav dd .nav-assist li:nth-of-type(-n+2) {
    display: none;
  }
  nav.nav dd .nav-assist li a {
    background-color: transparent;
    padding: 0;
  }
  nav.nav dd .nav-assist li a i {
    display: inline-block;
    margin-right: 0.4em;
  }
  nav.nav dd .nav-assist li a i img {
    height: 1.4em;
    width: auto;
  }
  main {
    padding-top: 0;
  }
  footer.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem 6rem;
    position: relative;
    background-color: transparent;
  }
  footer.footer::before {
    content: "";
    display: block;
    position: absolute;
    top: -40%;
    left: calc(50% - 50vw);
    z-index: -1;
    background: url("../img/bg-hero.png") no-repeat 50% 0/auto 130%;
    width: 100vw;
    height: 140%;
    opacity: 0.6;
  }
  footer.footer dl {
    width: -moz-fit-content;
    width: fit-content;
  }
  footer.footer .sitemap {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1em 5.5em;
    margin-top: 0.5em;
    height: 25em;
    line-height: 1.6;
    font-size: 0.8rem;
  }
  footer.footer .sitemap > li {
    width: 6em;
  }
  footer.footer .sitemap > li:nth-of-type(3) {
    width: 13em;
  }
  footer.footer .sitemap > li li a::before {
    content: ">";
    display: inline-block;
    margin-right: 0.4em;
    transform: scaleX(0.4);
  }
  footer.footer p.copyright {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #page {
    background-size: 100% 32rem;
  }
  .obp-L {
    display: inline-block;
  }
  .ubp-L {
    display: none;
  }
  header.header {
    height: 6rem;
  }
  header.header .logo {
    font-size: 1.8rem;
  }
  nav.nav dd .nav-assist {
    top: -3.3rem;
  }
}
/*---------------------------------------------

Top Page Sections CSS

coded by d-spica at 2025-12-05
imported to "style.scss"

---------------------------------------------*/
header.hero {
  margin: 1.5rem 0 3rem;
}
header.hero ul {
  position: relative;
  aspect-ratio: 59/20;
}
header.hero li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity calc(2 * var(--speed));
}
header.hero li.before1 {
  z-index: 1;
}
header.hero li.current {
  z-index: 2;
  opacity: 1;
}
header.hero li.after1 {
  z-index: 1;
}

section.pages {
  margin: 3rem 0;
  max-width: none;
}
section.pages ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem min(6vw, 5.5rem);
}
section.pages li {
  width: 15rem;
  color: var(--key-color);
}
section.pages li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border: solid 2px var(--point-color);
  border-radius: 9999rem;
  background-color: var(--background-color);
  aspect-ratio: 1/1;
  transition: background-color var(--speed);
}
section.pages li a:hover {
  background-color: #FFF;
}
section.pages li a i {
  display: block;
}
section.pages li a i img {
  height: 3.4rem;
  width: auto;
}
section.pages li a em {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}
section.pages li a span {
  display: block;
  width: 85%;
  height: 4.5em;
  line-height: 1.6;
  font-size: 0.9rem;
}
section.pages li a u {
  display: block;
  font-size: 0.9rem;
}

section.news {
  margin: 3rem 0;
  border: solid 1px var(--key-color);
  border-radius: 0.2rem;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}
section.news h2 {
  margin-bottom: 0.6em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--key-color);
}
section.news h2 img {
  margin-right: 1em;
  width: 2em;
  vertical-align: middle;
}
section.news ul {
  overflow-y: auto;
  margin-right: -1.5rem;
  padding-right: 1.5rem;
  height: 10em;
  line-height: 1.6;
}
section.news li {
  display: flex;
  margin-bottom: 0.3em;
}
section.news li time {
  width: 6em;
  color: var(--key-color);
}
section.news li span {
  flex: 1;
}
section.news p {
  margin-top: 0.5em;
  text-align: right;
}
section.news p a {
  transition: opacity var(--speed);
}
section.news p a:hover {
  opacity: 0.6;
}

section.movie {
  position: relative;
  margin: 3rem 0;
  border-radius: 0.2rem;
  aspect-ratio: 16/9;
}
section.movie figure {
  width: 100%;
  aspect-ratio: 16/9;
}
section.movie figure iframe {
  border-radius: 0.2rem;
  width: 100%;
  height: 100%;
}

section.disaster-T {
  margin: 3rem 0;
  max-width: none;
}
section.disaster-T a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  position: relative;
  margin: 1.5rem 0;
  border: solid 2px var(--background-color);
  border-radius: 0.2rem;
  background-color: var(--background-color);
  padding: 1rem 1.5rem;
  max-width: none;
  color: var(--key-color);
  transition: var(--speed);
}
section.disaster-T a:hover {
  background-color: #FFF;
}
section.disaster-T dt {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: min(1.8rem, 6vw);
  font-weight: 900;
}
section.disaster-T dd {
  height: 3.6em;
  line-height: 1.8;
  font-size: 0.9rem;
}
section.disaster-T picture:nth-of-type(1) {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  margin-bottom: 13%;
  width: 27%;
}
section.disaster-T picture:nth-of-type(2) {
  margin-right: auto;
  width: 80%;
}

@media (min-width: 800px) {
  section.disaster-T a {
    padding: 1rem 1.5rem !important;
  }
  section.disaster-T dl {
    width: 100%;
    text-align: center;
  }
  section.disaster-T picture:nth-of-type(1) {
    position: static;
    margin-bottom: 0;
    margin-left: auto;
    width: 8rem;
  }
  section.disaster-T picture:nth-of-type(2) {
    margin-right: auto;
    width: 24rem;
  }
}
@media (min-width: 960px) {
  div.columns {
    display: flex;
    gap: 0 1.5rem;
  }
  section.news {
    margin: 0;
    box-sizing: border-box;
    width: calc(50% - 0.75rem);
  }
  section.movie {
    margin: 0;
    width: calc(50% - 0.75rem);
  }
}
@media (min-width: 1200px) {
  section.disaster-T a {
    align-items: center;
    gap: 0 2rem;
  }
  section.disaster-T dl {
    order: 2;
    width: 22rem;
    text-align: left;
  }
  section.disaster-T picture:nth-of-type(1) {
    order: 1;
    position: static;
    width: 14%;
  }
  section.disaster-T picture:nth-of-type(2) {
    order: 3;
    flex: 1;
  }
}
/*---------------------------------------------

Lower Page Sections CSS

coded by d-spica at 2026-02-06
imported to "style.scss"

---------------------------------------------*/
header.title {
  margin: 1.5rem auto 5rem;
  max-width: 45rem;
}
header.title h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20% 1.5rem;
  height: 12rem;
}
header.title h1 i {
  display: block;
  position: relative;
  border-radius: 9999rem;
  background-color: #FFF;
  width: 6rem;
  aspect-ratio: 1/1;
}
header.title h1 i img {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
header.title h1 span {
  display: block;
  letter-spacing: 0.05em;
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFF;
  -webkit-text-stroke: 0.15rem var(--key-color);
  text-stroke: 0.15rem var(--key-color);
  paint-order: stroke;
}
header.title h1 span::first-letter {
  color: var(--key-color);
}
header.title h1 em {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--key-color);
}
header.title h1 em::after {
  content: "";
  display: block;
  margin-top: 0.2em;
  border-left: solid 2.5rem var(--key-color);
  border-right: solid 2.5rem var(--key-color);
  background-color: var(--point-color);
  height: 0.2rem;
}

header.title-S {
  display: flex;
  align-items: end;
  margin: 1.5rem auto 5rem;
  max-width: 45rem;
  aspect-ratio: 4/1;
}
header.title-S h1 {
  box-sizing: border-box;
  background-color: #FFF;
  padding: 0.3em 1.2em;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--key-color);
}

main > section {
  margin: 5rem auto;
  max-width: 45rem;
  font-size: 1rem;
}
main > section h2.primary {
  margin-bottom: 3rem;
  border: solid;
  border-width: 0.08rem 0.3rem;
  background-color: var(--background-color);
  padding: 0.3em 1.2em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--key-color);
}
main > section h2.secondary {
  margin-bottom: 1.5rem;
  border-left: solid 0.3rem var(--point-color);
  background-color: var(--background-color);
  padding: 0.3em 1.2em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--key-color);
}
main > section h3.secondary {
  margin-bottom: 1.5rem;
  border-left: solid 0.3rem var(--point-color);
  background-color: var(--background-color);
  padding: 0.3em 1.2em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--key-color);
}
main > section p {
  margin-bottom: 2em;
  line-height: 1.8;
}

section:not(.pages, .disaster-T, .dayori) a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--point-color);
  transition: var(--speed);
}
section:not(.pages, .disaster-T, .dayori) a:hover {
  color: var(--point-color);
}
section:not(.pages, .disaster-T, .dayori) a[href*=".pdf"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  background: url("../img/mk-pdf.png") no-repeat 50% 50%/contain;
  width: 1.1em;
  height: 1.3em;
  vertical-align: -0.2em;
}

section.summary figure {
  margin: 0 auto 2em;
  text-align: center;
}
section.summary figcaption {
  margin-top: 0.5em;
}
section.summary figcaption em {
  display: block;
  font-size: 1.3rem;
}
section.summary .signature {
  text-align: right;
}
section.summary ul {
  margin-bottom: 2em;
  line-height: 1.6;
}
section.summary ul li {
  margin-bottom: 0.4em;
}
section.summary ul li em {
  display: block;
  color: var(--key-color);
}
section.summary ul li span {
  display: block;
  padding-left: 1em;
}
section.summary ul.outline li {
  display: flex;
}
section.summary ul.outline li:has(img) {
  margin-top: 2em;
  margin-bottom: 2em;
}
section.summary ul.outline li em {
  width: 5em;
}
section.summary ul.outline li span {
  flex: 1;
  padding-left: 0;
}
section.summary ul.outline li span img {
  margin-top: 0.5em;
}

section.work {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
section.work h2.secondary {
  padding-left: 2.2em;
  text-indent: -2em;
}
section.work ul {
  margin-bottom: 2em;
  line-height: 1.6;
}
section.work ul li {
  position: relative;
  margin-bottom: 0.4em;
  padding-left: 2.5em;
}
section.work ul li i {
  position: absolute;
  top: 0;
  left: 0;
}
section.work figure {
  margin: 0 auto 2em;
  text-align: center;
}

section.dayori ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin: 0 auto;
  max-width: 23rem;
}
section.dayori ul li {
  width: min(10rem, 50% - 1.5rem);
}
section.dayori ul li a {
  display: block;
}
section.dayori ul li i {
  display: block;
  margin: 0 auto 0.6em;
  border: solid 1px #DDD;
  width: 5rem;
}
section.dayori ul li em {
  display: block;
}
section.dayori ul li em::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  background: url("../img/mk-pdf.png") no-repeat 50% 50%/contain;
  width: 1.1em;
  height: 1.3em;
  vertical-align: -0.2em;
}
section.dayori ul li span {
  display: block;
  margin-top: 0.6em;
}

section.backnumber ul {
  margin-bottom: 2em;
  line-height: 1.6;
  font-size: 0.9rem;
}
section.backnumber ul li {
  margin-bottom: 0.8em;
  display: flex;
}
section.backnumber ul li time {
  width: 6em;
  color: var(--key-color);
}
section.backnumber ul li span {
  flex: 1;
}

section.members figure {
  position: relative;
}
section.members figure a {
  display: block;
  position: absolute;
  height: 3.6%;
  text-indent: -9999rem;
  transition: var(--speed);
}
section.members figure a:hover {
  background-color: rgba(255, 193, 51, 0.4);
}
section.members figure [href*=toyama] {
  top: 0;
  left: 3.5%;
  width: 17.4%;
}
section.members figure [href*=takaoka] {
  top: 40.5%;
  left: 1.7%;
  width: 19.2%;
}
section.members figure [href*=himi] {
  top: 26.6%;
  left: 3.4%;
  width: 17.4%;
}
section.members figure [href*=imizu] {
  top: 8.4%;
  left: 1.7%;
  width: 19.2%;
}
section.members figure [href*=kurobe] {
  top: 0;
  left: 80.8%;
  width: 19.2%;
}
section.members figure [href*=kamiichi] {
  top: 48.6%;
  left: 80.8%;
  width: 17.4%;
}
section.members figure [href*=oyabe] {
  top: 49.5%;
  left: 0%;
  width: 20.9%;
}
section.members figure [href*=namerikawa] {
  top: 38.7%;
  left: 80.8%;
  width: 17.4%;
}
section.members figure [href*=tonami] {
  top: 58.3%;
  left: 3.4%;
  width: 17.4%;
}
section.members figure [href*=uozu] {
  top: 33.5%;
  left: 80.8%;
  width: 19.2%;
}
section.members figure [href*=tateyama] {
  top: 53.8%;
  left: 80.8%;
  width: 17.4%;
}
section.members figure [href*=nanto] {
  top: 75.8%;
  left: 1.7%;
  width: 19.2%;
}
section.members figure [href*=nyuzen] {
  top: 8.4%;
  left: 80.8%;
  width: 15.6%;
}
section.members figure [href*=asahi] {
  top: 17.4%;
  left: 80.8%;
  width: 15.6%;
}

section.member figure {
  margin: 0 auto 3rem;
  max-width: 400px;
}
section.member figure picture {
  display: block;
  margin-bottom: 3rem;
}
section.member figure div {
  aspect-ratio: 4/3;
  background-color: #EEE;
}
section.member figure div iframe {
  width: 100%;
  height: 100%;
}
section.member figure.ronchan {
  max-width: 200px;
}
section.member > ul {
  margin-bottom: 2em;
  line-height: 1.6;
}
section.member > ul li {
  display: flex;
  margin-bottom: 0.4em;
}
section.member > ul li em {
  width: 6em;
  color: var(--key-color);
}
section.member > ul li span {
  flex: 1;
}
section.member > ul li:has(.history) {
  display: block;
}
section.member > ul li:has(.history) em {
  display: block;
}
section.member > ul.history {
  flex: 1;
  padding-left: 1em;
}
section.member > ul.history em {
  width: 5em;
  color: inherit;
}

section.gallery {
  margin: 5rem 0;
}
section.gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
  margin: 0 auto 2rem;
  max-width: 280px;
}
section.gallery ul li {
  width: 100%;
}
section.gallery ul li span {
  display: block;
  margin-top: 0.5em;
  text-align: right;
  font-size: 0.6rem;
}

section.access ul {
  margin-bottom: 2rem;
  line-height: 1.6;
}
section.access ul li {
  display: flex;
  margin-bottom: 0.4em;
}
section.access ul li em {
  width: 6em;
  color: var(--key-color);
}
section.access ul li span {
  flex: 1;
}
section.access figure {
  aspect-ratio: 4/3;
}
section.access figure iframe {
  width: 100%;
  height: 100%;
}

section.seminar figure {
  margin: 0 auto 2rem;
  max-width: 600px;
  aspect-ratio: 16/9;
}
section.seminar figure iframe {
  width: 100%;
  height: 100%;
}
section.seminar ul {
  margin: 4rem 0;
  border-top: solid 1px #4A97CB;
  line-height: 1.6;
  font-size: 1rem;
}
section.seminar ul li {
  display: flex;
  gap: 0 1em;
  border-bottom: solid 1px #4A97CB;
  padding: 0.5em 0;
}
section.seminar ul li em {
  width: 6em;
  color: var(--key-color);
}
section.seminar ul li span {
  flex: 1;
}
section.seminar ul li b {
  color: #F00;
}

section.contact ul {
  margin-bottom: 2em;
  line-height: 1.6;
  font-size: 1rem;
}
section.contact ul li {
  display: flex;
  gap: 0 1em;
  margin-bottom: 0.4em;
}
section.contact ul li em {
  width: 5em;
  color: var(--key-color);
}
section.contact ul li span {
  flex: 1;
}

section.benefit dl {
  margin-bottom: 3rem;
}
section.benefit dl dt {
  margin-bottom: 0.5em;
  line-height: 1.6;
  font-size: 1.2rem;
  color: #06F;
}
section.benefit dl dd {
  line-height: 2;
  font-size: 1rem;
}
section.benefit dl:nth-of-type(n+3) dt {
  color: #093;
}
section.benefit dl:nth-of-type(4) dt {
  padding-left: 5em;
  text-indent: -5em;
}

section.supporter h2 {
  margin-bottom: 2rem;
}
section.supporter section {
  margin-bottom: 3rem;
}
section.supporter dl {
  margin-bottom: 2em;
  line-height: 2;
}
section.supporter dl dd p {
  padding-left: 3em;
  text-indent: -3em;
}
section.supporter dl dd ul li:has(i) {
  position: relative;
  padding-left: 2em;
}
section.supporter dl dd ul li:has(i) i {
  position: absolute;
  top: 0;
  left: 0;
}
section.supporter dl dd p + ul {
  margin-top: -2em;
  margin-left: 3em;
}

section.disaster h2.secondary {
  margin-bottom: 2.5rem;
}
section.disaster div.movie {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 4rem;
  margin: 0 auto 2rem;
  max-width: 400px;
}
section.disaster div.movie figure {
  width: 100%;
  aspect-ratio: 16/9;
}
section.disaster section {
  margin-bottom: 3rem;
}
section.disaster section h3 {
  margin: 0 auto 1rem;
  width: 15.5rem;
}
section.disaster section li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--background-color);
  padding: 1.5rem;
}
section.disaster section li span {
  width: 100%;
  line-height: 1.8;
}
section.disaster section li span b {
  font-weight: 600;
}
section.disaster section li i {
  display: block;
  margin: 0 auto;
  max-width: 25rem;
}
section.disaster section:nth-of-type(1) li:nth-of-type(1) i, section.disaster section:nth-of-type(3) li:nth-of-type(2) i {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  max-width: 26.5rem;
}

@media (min-width: 540px) {
  section.summary ul li {
    display: flex;
    gap: 0 1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
  }
  section.summary ul li em {
    width: 9em;
  }
  section.summary ul li span {
    flex: 1;
    padding-left: 0;
  }
  section.summary ul li span img {
    margin-top: 0.5em;
  }
  section.member ul li:has(.history) {
    display: flex;
  }
  section.member ul.history {
    flex: 1;
    padding-left: 0;
  }
  section.seminar ul li {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media (min-width: 720px) {
  section.dayori ul {
    max-width: 36rem;
  }
  section.dayori ul li {
    width: min(10rem, 33.333% - 2rem);
  }
  section.member figure.ronchan {
    margin-right: 0;
    margin-top: -15rem;
  }
  section.gallery ul {
    max-width: calc(560px + 1.5rem);
  }
  section.gallery ul li {
    width: calc(50% - 0.75rem);
  }
}
@media (min-width: 800px) {
  header.title h1 {
    gap: 15% 1.5rem;
    padding-top: 1rem;
    height: 11rem;
  }
  header.title h1 i {
    width: 7rem;
  }
  header.title h1 span {
    font-size: 3.6rem;
  }
  main > section:not(.disaster-T, .disaster) {
    box-sizing: border-box;
    padding: 0 2rem;
  }
  main > section:not(.disaster-T, .disaster) h2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  section.supporter h2 {
    margin-bottom: 2rem;
  }
  section.supporter h3 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  section.work {
    display: grid;
    grid-template-columns: auto 300px;
    grid-template-rows: auto auto auto;
    gap: 0 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  section.work h2 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  section.work figure {
    grid-column: 2/3;
    grid-row: 2/4;
  }
  section.work ul {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  section.work p {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  section.members figure {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  section.member figure:not(.ronchan) {
    display: flex;
    gap: 0 60px;
    margin-left: -1rem;
    margin-right: -1rem;
    max-width: 860px;
  }
  section.member figure:not(.ronchan) picture, section.member figure:not(.ronchan) div {
    margin-bottom: 0;
    width: calc(50% - 1.5rem);
  }
  section.access figure {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  section.disaster div.movie {
    flex-direction: row;
    max-width: none;
  }
  section.disaster section li {
    flex-direction: row;
  }
  section.disaster section li span {
    width: auto;
    flex: 1;
  }
  section.disaster section li i {
    width: 46%;
  }
  section.disaster section:nth-of-type(1) li:nth-of-type(1) i, section.disaster section:nth-of-type(3) li:nth-of-type(2) i {
    width: calc(46% + 1.5rem);
  }
  section.disaster section:nth-of-type(3) li:nth-of-type(2) li {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 960px) {
  section.gallery {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  section.gallery ul {
    max-width: calc(840px + 3rem);
  }
  section.gallery ul li {
    width: calc(33.333% - 1rem);
  }
}/*# sourceMappingURL=style.css.map */