@charset "UTF-8";
html {
  height: 100%;
  overflow-y: scroll;
}

body {
  height: 100%;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #edba00;
}
body.en {
  font-family: "Libre Baskerville", serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

header.header {
  display: flex;
  aspect-ratio: 5/6;
  background-image: url(../images/main_sp.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
@media (min-width: 768px) {
  header.header {
    aspect-ratio: auto;
    padding: 520px 0 0 0;
    background-image: url(../images/main_pc.webp);
  }
}

main.main {
  margin-bottom: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

article.en a {
  text-decoration: underline;
  color: #003edb;
}
article section:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  article.index {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  article.info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  article.info section {
    width: 100%;
  }
  article.info section:nth-last-child(2) {
    margin-bottom: 0;
  }
  article.info section:nth-child(3), article.info section:nth-child(4) {
    width: calc(50% - 0.5rem);
  }
  article.comp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  article.comp section {
    width: 100%;
  }
  article.comp section:not(:first-child) {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0.5rem);
  }
  article.comp section:not(:first-child) p:last-child:not(.text-only) {
    margin-top: auto;
  }
  article.comp section .landscape {
    display: flex;
  }
  article.comp section .landscape .text {
    width: 50%;
    padding-right: 0.25rem;
  }
  article.comp section .landscape .image {
    display: flex;
    width: 50%;
  }
  article.comp section .landscape .image img {
    margin-left: auto;
  }
  article.en {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  article.en section.introduction {
    width: 100%;
    margin-bottom: 1rem;
  }
  article.en section.section {
    width: calc(50% - 0.5rem);
    margin-bottom: 0;
  }
  article.en section.section.summary {
    width: 100%;
    margin-bottom: 1rem;
  }
}

nav.nav {
  margin: auto 0 0.5rem auto;
}
nav.nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav.nav ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
nav.nav ul li a {
  display: flex;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid #41210f;
  border-radius: 4rem;
  background-color: rgba(248, 238, 151, 0.8);
  color: #41210f;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}
nav.nav ul li a::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0 0.3125rem;
  background-image: url(icon/bird.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
nav.nav ul li a.active {
  pointer-events: none;
  background-color: rgba(65, 33, 15, 0.8);
  color: #fff;
  cursor: inherit;
}
nav.nav ul li a.active::before {
  background-image: url(icon/bird_white.svg);
}
@media (min-width: 576px) {
  nav.nav {
    width: 100%;
    margin: auto 0 1rem 0;
  }
  nav.nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  nav.nav ul li:not(:last-child) {
    margin-bottom: 0;
  }
  nav.nav ul li a {
    background-color: #f8ee97;
  }
  nav.nav ul li a.active {
    background-color: #41210f;
  }
}
@media (min-width: 768px) {
  nav.nav ul li a {
    font-size: 1.25rem;
    padding: 8px 10px;
  }
  nav.nav ul li a::before {
    width: 1rem;
    height: 1rem;
  }
  nav.nav ul li a.active span {
    text-shadow: none;
  }
}
@media (min-width: 992px) {
  nav.nav ul li a {
    font-size: 1.5rem;
  }
  nav.nav ul li a::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

section.introduction {
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  border: 1px solid #41210f;
  border-radius: 0.625rem;
  background-color: #fff;
}
section.introduction p:last-child {
  margin-bottom: 0;
}
section.header {
  margin-bottom: 1rem;
}
section.header h2 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.5rem 0;
  border: 1px solid #41210f;
  border-radius: 1rem 4rem 4rem 1rem;
  background-color: #fff;
  color: #41210f;
  font-size: 1.125rem;
}
section.header h2::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0.3125rem;
  background-image: url(icon/inversion.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
section.section {
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  border: 1px solid #41210f;
  border-radius: 0.625rem;
  background-color: #fff;
}
section.section h3 {
  display: flex;
  margin: 0.5rem 0 1rem 0;
  padding: 0.5rem;
  border-radius: 1rem 4rem 4rem 1rem;
  background-color: #edba00;
  color: #41210f;
}
section.section h3::before {
  content: "";
  display: inline-block;
  width: 5px;
  background-color: #41210f;
  border-radius: 1rem;
  margin: 0 0.5rem 0 0.25rem;
}
section.section h4 {
  color: #41210f;
}
section.map p {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
section.map p:first-child {
  margin: 0.5rem 0;
}
section.map img {
  width: 100%;
  max-width: 100%;
  border: 1px solid #666;
  border-radius: 0.625rem;
}
@media (min-width: 768px) {
  section.introduction {
    padding: 0.625rem;
  }
  section.header h2 {
    font-size: 1.5rem;
  }
  section.header h2::before {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.5rem;
  }
  section.section {
    padding: 0.625rem;
  }
  section.section.comp {
    margin-bottom: 0;
  }
}

.info-dl {
  margin: 0.5rem 0;
}
.info-dl dt, .info-dl dd {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #41210f;
  border-bottom-width: 0;
}
.info-dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8ee97;
  color: #41210f;
}
.info-dl dd:last-child {
  border-bottom-width: 1px;
}
@media (min-width: 768px) {
  .info-dl:not(.en) {
    display: flex;
    flex-wrap: wrap;
  }
  .info-dl:not(.en) dt {
    width: 20%;
    border-right-width: 0;
  }
  .info-dl:not(.en) dt:not(.w-max):nth-last-child(2) {
    border-bottom-width: 1px;
  }
  .info-dl:not(.en) dd {
    width: 80%;
  }
}
.info-dl dt:first-child {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}
.info-dl dd:last-child {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}
@media (min-width: 768px) {
  .info-dl.no-w100 dt:first-child {
    border-top-right-radius: 0;
  }
  .info-dl.no-w100 dd:nth-child(2) {
    border-top-right-radius: 0.625rem;
  }
  .info-dl:not(.en) dt.w-max {
    width: 100%;
    border-right-width: 1px;
  }
  .info-dl:not(.en) dt:not(:first-child):nth-last-child(2) {
    border-bottom-left-radius: 0.625rem;
  }
  .info-dl:not(.en) dd.w-max {
    width: 100%;
  }
  .info-dl:not(.en) dd:not(.w-max):last-child {
    border-bottom-left-radius: 0;
  }
}

.info-ticket {
  margin: 0.5rem 0;
}
.info-ticket dt, .info-ticket dd {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #41210f;
  border-bottom-width: 0;
}
.info-ticket dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8ee97;
  color: #41210f;
}
.info-ticket dd:last-child {
  border-bottom-width: 1px;
}
@media (min-width: 768px) {
  .info-ticket:not(.en) {
    display: flex;
    flex-wrap: wrap;
  }
  .info-ticket:not(.en) dt {
    width: 20%;
    border-right-width: 0;
  }
  .info-ticket:not(.en) dt:not(.w-max):nth-last-child(2) {
    border-bottom-width: 1px;
  }
  .info-ticket:not(.en) dd {
    width: 80%;
  }
}
.info-ticket dt:first-child {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}
.info-ticket dd {
  display: flex;
  width: 100% !important;
  padding: 0;
  border-bottom-left-radius: 0.625rem !important;
  border-bottom-right-radius: 0.625rem !important;
}
.info-ticket dd p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 12px 10px;
  background-color: #f8ee97;
  font-weight: 600;
  border-right: 1px solid;
  border-bottom-left-radius: 0.625rem;
}
.info-ticket dd ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex-grow: 1;
}
.info-ticket dd ul li {
  display: flex;
}
.info-ticket dd ul li:first-child {
  border-bottom: 1px solid;
}
.info-ticket dd ul li span {
  padding: 12px 10px;
}
.info-ticket dd ul li span:first-child {
  flex-grow: 1;
}
.info-ticket dd ul li span:last-child {
  border-left: 1px solid;
  width: 60%;
}
@media (min-width: 768px) {
  .info-ticket.no-w100 dt:first-child {
    border-top-right-radius: 0;
  }
  .info-ticket.no-w100 dd:nth-child(2) {
    border-top-right-radius: 0.625rem;
  }
  .info-ticket:not(.en) dt.w-max {
    width: 100%;
    border-right-width: 1px;
  }
  .info-ticket:not(.en) dt:not(:first-child):nth-last-child(2) {
    border-bottom-left-radius: 0.625rem;
  }
  .info-ticket:not(.en) dd.w-max {
    width: 100%;
  }
  .info-ticket:not(.en) dd:not(.w-max):last-child {
    border-bottom-left-radius: 0;
  }
}

.info-ticket-en {
  display: flex;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.info-ticket-en dt, .info-ticket-en dd {
  margin: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #41210f;
  border-bottom-width: 0;
}
.info-ticket-en dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8ee97;
  color: #41210f;
}
.info-ticket-en dd:last-child {
  border-bottom-width: 1px;
}
@media (min-width: 768px) {
  .info-ticket-en:not(.en) {
    display: flex;
    flex-wrap: wrap;
  }
  .info-ticket-en:not(.en) dt {
    width: 20%;
    border-right-width: 0;
  }
  .info-ticket-en:not(.en) dt:not(.w-max):nth-last-child(2) {
    border-bottom-width: 1px;
  }
  .info-ticket-en:not(.en) dd {
    width: 80%;
  }
}
.info-ticket-en dt {
  width: 100%;
}
.info-ticket-en dt:first-child {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}
.info-ticket-en dd {
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 0;
}
.info-ticket-en dd:nth-child(2) {
  border-right-width: 0;
  width: 40%;
}
.info-ticket-en dd:nth-child(5) {
  border-right-width: 0;
  border-bottom-width: 1px;
  width: 40%;
}
.info-ticket-en dd span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
}
.info-ticket-en dd span:first-child {
  flex-grow: 1;
  border-bottom: 1px solid #41210f;
}
.info-ticket-en dd:nth-last-child(2) {
  border-bottom-left-radius: 0.625rem;
}
.info-ticket-en dd:last-child {
  border-bottom-right-radius: 0.625rem;
}

.footer {
  margin-top: auto;
}
.footer .footer-wraper {
  background-color: transparent;
}
.footer .footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  background-color: #f8ee97;
  margin: 2.5rem auto 0;
}
.footer .footer-copyrights {
  margin: 0 auto 0.5rem auto;
  font-size: 0.75rem;
  color: #000;
}
.footer .footer-logo {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 50px;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.footer .footer-logo a {
  display: block;
  background: url(../images/footer_logo.svg) no-repeat;
  width: 185px;
  height: 40px;
  font-size: 0;
}
.footer .footer-totop {
  position: absolute;
  right: 10px;
  top: -35px;
}
.footer .footer-totop a {
  position: relative;
  display: block;
  width: 100px;
  height: 35px;
  background-color: #f8ee97;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  border-bottom: none;
}
.footer .footer-totop a svg {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 80%;
  fill: #000;
}
@media (min-width: 576px) {
  .footer .footer-inner {
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .footer .footer-copyrights {
    margin: 0 0 0.25rem auto;
  }
}
@media (min-width: 768px) {
  .footer .footer-wraper {
    background-color: transparent;
  }
  .footer .footer-inner {
    height: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer .footer-logo a {
    width: 205px;
    height: 43px;
  }
  .footer .footer-copyrights {
    margin: 0 0 0 auto;
  }
}
.footer.en .footer-logo a {
  width: 185px;
  height: 40px;
  background: url(../images/footer_logo_en.svg) no-repeat;
}
@media (min-width: 768px) {
  .footer.en .footer-logo a {
    width: 300px;
    height: 36px;
    background: url(../images/footer_logo_en.svg) no-repeat;
  }
}

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mt-pc-1 {
  margin-top: 0 !important;
}

.mt-sp-1 {
  margin-top: 0rem !important;
}

@media (min-width: 768px) {
  .mt-pc-1 {
    margin-top: 0rem !important;
  }
  .mt-sp-1 {
    margin-top: 0 !important;
  }
}
.mt-pc-1 {
  margin-top: 0 !important;
}

.mt-sp-1 {
  margin-top: 1rem !important;
}

@media (min-width: 768px) {
  .mt-pc-1 {
    margin-top: 1rem !important;
  }
  .mt-sp-1 {
    margin-top: 0 !important;
  }
}
.me-pc-1 {
  margin-right: 0 !important;
}

.me-sp-1 {
  margin-right: 0rem !important;
}

@media (min-width: 768px) {
  .me-pc-1 {
    margin-right: 0rem !important;
  }
  .me-sp-1 {
    margin-right: 0 !important;
  }
}
.me-pc-1 {
  margin-right: 0 !important;
}

.me-sp-1 {
  margin-right: 1rem !important;
}

@media (min-width: 768px) {
  .me-pc-1 {
    margin-right: 1rem !important;
  }
  .me-sp-1 {
    margin-right: 0 !important;
  }
}
.mb-pc-1 {
  margin-bottom: 0 !important;
}

.mb-sp-1 {
  margin-bottom: 0rem !important;
}

@media (min-width: 768px) {
  .mb-pc-1 {
    margin-bottom: 0rem !important;
  }
  .mb-sp-1 {
    margin-bottom: 0 !important;
  }
}
.mb-pc-1 {
  margin-bottom: 0 !important;
}

.mb-sp-1 {
  margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
  .mb-pc-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sp-1 {
    margin-bottom: 0 !important;
  }
}
.ms-pc-1 {
  margin-left: 0 !important;
}

.ms-sp-1 {
  margin-left: 0rem !important;
}

@media (min-width: 768px) {
  .ms-pc-1 {
    margin-left: 0rem !important;
  }
  .ms-sp-1 {
    margin-left: 0 !important;
  }
}
.ms-pc-1 {
  margin-left: 0 !important;
}

.ms-sp-1 {
  margin-left: 1rem !important;
}

@media (min-width: 768px) {
  .ms-pc-1 {
    margin-left: 1rem !important;
  }
  .ms-sp-1 {
    margin-left: 0 !important;
  }
}
.pt-pc-1 {
  padding-top: 0 !important;
}

.pt-sp-1 {
  padding-top: 0rem !important;
}

@media (min-width: 768px) {
  .pt-pc-1 {
    padding-top: 0rem !important;
  }
  .pt-sp-1 {
    padding-top: 0 !important;
  }
}
.pt-pc-1 {
  padding-top: 0 !important;
}

.pt-sp-1 {
  padding-top: 1rem !important;
}

@media (min-width: 768px) {
  .pt-pc-1 {
    padding-top: 1rem !important;
  }
  .pt-sp-1 {
    padding-top: 0 !important;
  }
}
.pe-pc-1 {
  padding-right: 0 !important;
}

.pe-sp-1 {
  padding-right: 0rem !important;
}

@media (min-width: 768px) {
  .pe-pc-1 {
    padding-right: 0rem !important;
  }
  .pe-sp-1 {
    padding-right: 0 !important;
  }
}
.pe-pc-1 {
  padding-right: 0 !important;
}

.pe-sp-1 {
  padding-right: 1rem !important;
}

@media (min-width: 768px) {
  .pe-pc-1 {
    padding-right: 1rem !important;
  }
  .pe-sp-1 {
    padding-right: 0 !important;
  }
}
.pb-pc-1 {
  padding-bottom: 0 !important;
}

.pb-sp-1 {
  padding-bottom: 0rem !important;
}

@media (min-width: 768px) {
  .pb-pc-1 {
    padding-bottom: 0rem !important;
  }
  .pb-sp-1 {
    padding-bottom: 0 !important;
  }
}
.pb-pc-1 {
  padding-bottom: 0 !important;
}

.pb-sp-1 {
  padding-bottom: 1rem !important;
}

@media (min-width: 768px) {
  .pb-pc-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sp-1 {
    padding-bottom: 0 !important;
  }
}
.ps-pc-1 {
  padding-left: 0 !important;
}

.ps-sp-1 {
  padding-left: 0rem !important;
}

@media (min-width: 768px) {
  .ps-pc-1 {
    padding-left: 0rem !important;
  }
  .ps-sp-1 {
    padding-left: 0 !important;
  }
}
.ps-pc-1 {
  padding-left: 0 !important;
}

.ps-sp-1 {
  padding-left: 1rem !important;
}

@media (min-width: 768px) {
  .ps-pc-1 {
    padding-left: 1rem !important;
  }
  .ps-sp-1 {
    padding-left: 0 !important;
  }
}
.w-10 {
  width: 10% !important;
}

.w-20 {
  width: 20% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.w-100 {
  width: 100% !important;
}

.indent {
  text-indent: 1rem;
}

.mw-100 {
  max-width: 100%;
}

.notes {
  margin-left: 0.75rem;
  text-indent: -0.75rem;
  font-size: 0.75rem;
}

.eliminate-ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.asterisk-ul {
  padding-left: 1rem;
  list-style-type: "※";
}

li.asterisk {
  margin-left: 1rem;
  list-style-type: "※";
}

.fs-small {
  font-size: 0.875rem;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.radius {
  border-radius: 0.625rem;
}

@media (min-width: 768px) {
  .tori-pc-0 {
    margin: 0 !important;
    margin-bottom: 2rem !important;
  }
  .tori-pc-1 {
    margin: 0 !important;
    margin-top: 0 !important;
  }
  .tori-pc-2 {
    margin: 0 !important;
    margin-bottom: 2rem !important;
  }
}
@media (hover) {
  article.en a:hover {
    text-decoration: none;
  }
  .pdf-image:hover img {
    opacity: 0.8;
  }
  .hover-box:hover {
    opacity: 0.8;
  }
  nav.nav ul li a:hover {
    background-color: #41210f;
    color: #fff;
  }
  nav.nav ul li a:hover::before {
    background-image: url(icon/bird_white.svg);
  }
}

br.for-pc {
  display: inline;
}

@media (min-width: 992px) {
  br.for-pc {
    display: none;
  }
}