@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  letter-spacing: 5%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

body.is-fixed {
  overflow: hidden;
}

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

html {
  scroll-padding-top: 120px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 96px;
  }
}

main [id] {
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  main [id] {
    scroll-margin-top: 96px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100px;
  background-color: #960000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
  }
}

.header__logo {
  width: 232px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 160px;
  }
}

.header__logo-link {
  display: block;
}

.header__logo-img {
  width: 100%;
  height: auto;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 54px;
  margin-right: 16px;
}

.header__nav-item {
  position: relative;
}

.header__nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: #FFF;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.header__nav-ja {
  font-size: 16px;
}

.header__nav-en {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 400;
}

.header__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(150, 0, 0, 0.16);
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, 8px);
          transform: translate(-50%, 8px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__dropdown::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  width: 100%;
  height: 22px;
}

.header__nav-item:hover .header__dropdown,
.header__nav-item:focus-within .header__dropdown {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.header__dropdown-item {
  border-bottom: 1px dotted rgba(150, 0, 0, 0.22);
}

.header__dropdown-item:last-child {
  border-bottom: 0;
}

.header__dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 36px;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__dropdown-link:hover, .header__dropdown-link:focus-visible {
  color: #960000;
}

.header__dropdown-link--child {
  padding-left: 1em;
}
.header__dropdown-link--child::before {
  content: "-";
  margin-right: 0.25em;
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 148px;
  height: 60px;
  background-color: #FFF;
  color: #960000;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__contact:hover, .header__contact:focus-visible {
  background-color: #000;
  color: #FFF;
}

.header__contact-icon {
  width: 18px;
  height: 14px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.header__contact:hover .header__contact-icon,
.header__contact:focus-visible .header__contact-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.header__drawer-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 60px;
  height: 60px;
  padding-left: 8px;
  border: 0;
  background-color: #000;
  cursor: pointer;
}

.header__drawer-line {
  display: block;
  width: 44px;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.header__drawer-line:nth-child(2) {
  width: 30px;
}

.header__drawer-line:nth-child(3) {
  width: 16px;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__inner {
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
  padding: 140px 0 80px;
}

.drawer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.drawer__section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.drawer__heading {
  margin: 0;
  color: #960000;
}

.drawer__heading-ja {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .drawer__heading-ja {
    font-size: max(3.129vw, 16px);
  }
}

.drawer__heading-en {
  display: block;
  margin-top: 4px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .drawer__heading-en {
    font-size: 10px;
  }
}

.drawer__accordion-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: inherit;
  text-align: left;
}

.drawer__accordion-icon {
  display: none;
}

.drawer__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.drawer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer__link:hover, .drawer__link:focus-visible {
  color: #960000;
}

.drawer__link--child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.drawer__link--child::before {
  content: "";
  display: block;
  height: 1px;
  width: 8px;
  background-color: #000;
  margin-right: 8px;
}

.drawer__topics {
  margin-top: 72px;
}

.drawer__topic-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 24px;
}

.drawer__festival {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 225px;
  overflow: hidden;
  border: 1px solid #ffec94;
  border-radius: 10px;
  background-color: #FFF;
}

.drawer__festival-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  overflow: hidden;
  background-color: #FFEA00;
}

.drawer__festival-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__festival-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 32px;
}

.drawer__festival-item {
  border-bottom: 1px dotted #FFEC94;
}

.drawer__festival-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 40px;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer__festival-link:hover, .drawer__festival-link:focus-visible {
  color: #960000;
}
.drawer__festival-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/i-arrow.svg") center/contain no-repeat;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.drawer__test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 225px;
  overflow: hidden;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  background-color: #FFF;
}

.drawer__test-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  overflow: hidden;
  background-color: #F5F5F5;
}

.drawer__test-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__test-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 32px;
  border-left: 1px solid #d0d0d0;
}

.drawer__test-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 40px;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-bottom: 1px dotted #D0D0D0;
}

.drawer__test-title.link-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer__test:hover .drawer__test-title,
.drawer__test:focus-visible .drawer__test-title {
  color: #960000;
}

.drawer__news {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  margin-top: 58px;
  padding-top: 38px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.drawer__news-head {
  grid-column: 1;
}

.drawer__heading--news {
  position: relative;
  isolation: isolate;
}

.drawer__news-title-link {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer__news-title-link:hover, .drawer__news-title-link:focus-visible {
  opacity: 0.65;
}

.drawer__news-body {
  display: contents;
}

.drawer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 187px;
  height: 50px;
  background-color: #960000;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.drawer__contact:hover, .drawer__contact:focus-visible {
  background-color: #000;
}

.drawer__contact-icon {
  width: 18px;
  height: 14px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.drawer__news .drawer__contact {
  grid-column: 2;
  justify-self: start;
  margin: 0;
}

.drawer__sns-groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  width: 100%;
  margin-top: 18px;
}

.drawer__sns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.drawer__sns-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.drawer__sns-title span {
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.drawer__sns-title--event {
  font-family: "Noto Sans JP", sans-serif;
}

.drawer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

.drawer__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 26px;
  height: 34px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer__sns-link:hover, .drawer__sns-link:focus-visible {
  opacity: 0.65;
}

.drawer__sns-link--x .drawer__sns-img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.drawer__sns-img {
  max-height: 31.25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__sns-img--official {
  width: 32px;
  max-width: 32px;
  max-height: 32px;
}

.drawer__sns-link--event {
  margin-left: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.drawer__sns-link--x-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: #000;
}

.drawer__sns-link--x-box .drawer__sns-img {
  width: 24px;
  max-width: 24px;
  max-height: 24px;
}

body.is-fixed .header {
  background-color: transparent;
}

body.is-fixed .header__nav,
body.is-fixed .header__contact {
  opacity: 0.08;
}

body.is-fixed .header__nav-title,
body.is-fixed .header__contact {
  color: #960000;
}

body.is-fixed .header__contact {
  border: 1px solid rgba(150, 0, 0, 0.25);
  background-color: transparent;
}

body.is-fixed .header__drawer-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  background-color: transparent;
}

body.is-fixed .header__drawer-line {
  position: absolute;
  width: 42px;
  background-color: #960000;
}

body.is-fixed .header__drawer-line:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body.is-fixed .header__drawer-line:nth-child(2) {
  opacity: 0;
}

body.is-fixed .header__drawer-line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 1040px) {
  .drawer__topic-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .drawer__festival,
  .drawer__test {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .drawer__festival-img,
  .drawer__test-img {
    width: min(100%, 460px);
    height: auto;
  }
  .drawer__sns-groups {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 36px;
  }
  .drawer__sns-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .drawer__sns-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1040px) {
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
  .header__logo {
    width: 160px;
  }
  .header__contact {
    display: none;
  }
  .header__drawer-button {
    width: 48px;
    height: 48px;
    padding-left: 8px;
  }
  body.is-fixed .header__drawer-button {
    padding-left: 0;
  }
  .header__drawer-line {
    width: 32px;
  }
  .header__drawer-line:nth-child(2) {
    width: 24px;
  }
  .header__drawer-line:nth-child(3) {
    width: 14px;
  }
  body.is-fixed .header__drawer-line {
    width: 38px;
  }
  .drawer__heading-ja {
    font-size: max(3.129vw, 16px);
  }
  .drawer__heading-en {
    font-size: 10px;
  }
  .drawer__inner {
    width: calc(100% - 32px);
    padding-top: 102px;
  }
  .drawer__grid,
  .drawer__topic-row,
  .drawer__news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .drawer__grid,
  .drawer__topic-row {
    gap: 20px;
  }
  .drawer__section--accordion .drawer__link-list {
    display: none;
    margin-top: 18px;
  }
  .drawer__section--accordion.is-open .drawer__link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1em;
  }
  .drawer__accordion-icon {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 6px;
  }
  .drawer__accordion-icon::before,
  .drawer__accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background-color: #C80100;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .drawer__accordion-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .drawer__section--accordion.is-open .drawer__accordion-icon::after {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
            transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }
  .drawer__topics {
    margin: 42px -16px 0;
    padding: 20px 16px 0;
    background-color: #960000;
  }
  .drawer__topics .drawer__heading,
  .drawer__topics .drawer__heading-en {
    color: #FFF;
  }
  .drawer__topic-row {
    margin: 20px -16px 0;
    padding: 20px 16px 0;
    background-color: #FFF;
  }
  .drawer__festival,
  .drawer__test {
    min-height: 225px;
  }
  .drawer__festival-visual,
  .drawer__test-visual {
    width: 50%;
    min-height: auto;
  }
  .drawer__festival-links,
  .drawer__test-body {
    padding: 20px 16px;
  }
  .drawer__news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-top: 42px;
    padding-top: 32px;
  }
  .drawer__news-head {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .drawer__news-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drawer__news .drawer__contact {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .drawer__contact {
    width: min(100%, 190px);
    font-size: 15px;
    height: 74px;
    font-size: 20px;
  }
  .drawer__sns-groups {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 48px;
    width: 100%;
    margin-top: 52px;
  }
  .drawer__sns-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .drawer__sns-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
  .drawer__sns-title {
    width: 100%;
  }
}
.footer {
  border-top: 1px solid #F5F5F5;
  background-color: #FFF;
}

.footer__nav--pc {
  display: block;
}

.footer__nav--sp {
  display: none;
}

.footer__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
  padding: 70px 60px 64px 0;
}

.footer__topic-title-link,
.footer__link,
.footer__accordion-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__topic-title-link:hover,
.footer__link:hover,
.footer__accordion-link:hover {
  color: #960000;
}

.footer__heading-ja {
  display: block;
  color: #960000;
  font-size: 16px;
  font-weight: 700;
}

.footer__heading-en {
  display: block;
  margin-top: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.footer__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.footer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

.link-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.link-external::after {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  background: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/i-open.svg") center/contain no-repeat;
  vertical-align: -1px;
}

.link-external--inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.link-external--inline::after {
  content: none;
}

.link-external__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12px;
  height: 12px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.link-arrow::after {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  mask: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/i-arrow.svg") center/contain no-repeat;
  -webkit-mask: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/i-arrow.svg") center/contain no-repeat;
}

.footer__topic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 20px;
}

.footer__topic-title-link {
  font-size: 16px;
}

.footer__link-list--topic {
  margin-top: 10px;
}

.footer__main {
  background-color: #C80100;
}

.footer__main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
  padding: 54px 0;
}

.footer__logo-link {
  display: block;
  width: 280px;
}

.footer__logo-img {
  width: 100%;
  height: auto;
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 187px;
  height: 50px;
  margin-top: 24px;
  background-color: #FFF;
  color: #960000;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer__contact:hover,
.footer__contact:focus-visible {
  background-color: #000;
  color: #FFF;
}

.footer__contact-icon {
  width: 17px;
  height: auto;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.footer__contact:hover .footer__contact-icon,
.footer__contact:focus-visible .footer__contact-icon {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer__sns {
  color: #FFF;
}

.footer__sns-section {
  border-top: 1px solid #FFF;
  padding-top: 10px;
}

.footer__sns-section--event {
  margin-top: 40px;
}

.footer__sns-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-left: 10px;
}

.footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  margin-left: 10px;
}

.footer__sns-list--event {
  margin-top: 20px;
}

.footer__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer__sns-link:hover,
.footer__sns-link:focus-visible {
  opacity: 0.75;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.footer__sns-img {
  max-width: 31px;
  max-height: 31px;
}

.footer__sns-link--x .footer__sns-img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.footer__sns-link--event-x {
  background-color: #000;
}

.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 30px 0 24px;
  background-color: #960000;
  color: #FFF;
  font-size: 12px;
  text-align: center;
}

.footer__copyright-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}

.footer__copyright-logo {
  width: 120px;
  height: auto;
}

.footer__copyright-note {
  line-height: 1.5;
  font-weight: 700;
}

@media screen and (max-width: 1040px) {
  .footer__nav-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 48px;
  }
  .footer__nav-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 24px);
            flex: 0 1 calc(50% - 24px);
  }
  .footer__nav-column--wide {
    -ms-flex-preferred-size: calc(50% - 24px);
        flex-basis: calc(50% - 24px);
  }
}
@media screen and (max-width: 767px) {
  .footer__nav--pc {
    display: none;
  }
  .footer__nav--sp {
    display: block;
  }
  .footer__accordion {
    background-color: #FFF;
  }
  .footer__summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    min-height: 74px;
    padding: 20px 16px;
    cursor: pointer;
    list-style: none;
  }
  .footer__summary::-webkit-details-marker {
    display: none;
  }
  .footer__summary::marker {
    content: "";
  }
  .footer__summary-text {
    display: block;
  }
  .footer__summary-icon {
    margin-top: 6px;
  }
  .footer__accordion[open] .drawer__accordion-icon::after {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
            transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }
  .footer__accordion-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 7px 16px 25px 35px;
  }
  .footer__accordion-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
    line-height: 1.2;
  }
  .footer__topic-heading {
    display: block;
    padding: 20px 16px 18px;
    background-color: #960000;
    color: #FFF;
  }
  .footer__topic-heading .footer__heading-ja,
  .footer__topic-heading .footer__heading-en {
    color: #FFF;
  }
  .footer__accordion--topic .footer__summary {
    min-height: 74px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer__accordion--topic .footer__summary-icon {
    margin-top: 0;
  }
  .footer__accordion--topic .footer__accordion-list {
    padding-top: 0;
  }
  .footer__topic-title {
    font-size: 16px;
    font-weight: 700;
    color: #960000;
  }
  .footer__main-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
    width: 100%;
    padding: 47px 16px 49px;
  }
  .footer__brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding-top: 0;
  }
  .footer__logo-link {
    width: 160px;
  }
  .footer__contact {
    width: min(100%, 200px);
    height: 50px;
    margin-top: 24px;
    font-size: 16px;
  }
  .footer__sns {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .footer__sns-section {
    padding-top: 10px;
  }
  .footer__sns-section--event {
    margin-top: 32px;
  }
  .footer__sns-title {
    font-size: 15px;
  }
  .footer__sns-list {
    gap: 16px;
    margin-top: 20px;
  }
  .footer__sns-link {
    width: 40px;
    height: 40px;
  }
  .footer__sns-img {
    max-width: 27px;
    max-height: 27px;
  }
  .footer__sns-link--event-x {
    width: 44px;
    height: 44px;
  }
  .footer__copyright {
    gap: 14px;
    padding: 24px 16px;
    font-size: 12px;
  }
  .footer__copyright-logo {
    width: 100px;
    height: auto;
  }
}
.side-nav {
  position: fixed;
  top: 50%;
  right: 10px;
  z-index: 10;
  width: 75px;
  overflow: hidden;
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  background-color: #FFF;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(12px, -50%);
          transform: translate(12px, -50%);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  visibility: hidden;
}

.side-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  visibility: visible;
}

.side-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.side-nav__title {
  padding: 20px 0 24px;
  line-height: 1.25;
  text-align: center;
}

.side-nav__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding-bottom: 24px;
}

.side-nav__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  min-height: 32px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.side-nav__sns-link:hover,
.side-nav__sns-link:focus-visible {
  opacity: 0.75;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.side-nav__sns-img {
  max-width: 40px;
  max-height: 40px;
}

.side-nav__sns-link--x {
  width: 39px;
  height: 39px;
  background-color: #000;
}

.side-nav__sns-link--x .side-nav__sns-img {
  width: 28px;
  height: 28px;
}

.side-nav__ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 0 24px;
  background-color: #000;
  color: #FFF;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.25em;
  text-align: center;
  text-orientation: upright;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.side-nav__ticket:hover,
.side-nav__ticket:focus-visible {
  background-color: #960000;
}

.side-nav__ticket.link-external::after {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 767px) {
  .side-nav {
    display: none;
  }
}
.main {
  overflow: hidden;
}

.fv {
  width: 100%;
  margin-top: 100px;
  background-color: #FFF;
}

.fv__slider {
  position: relative;
  width: 100%;
  height: min(34.375vw, 98vh - 104px);
  overflow: hidden;
}

.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.fv__slide--01 {
  opacity: 1;
}

.fv__slide--02 {
  display: none;
}

.fv__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes fvFadeFirst {
  0%, 45% {
    opacity: 1;
  }
  55%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fvFadeFirst {
  0%, 45% {
    opacity: 1;
  }
  55%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fvFadeSecond {
  0%, 45% {
    opacity: 0;
  }
  55%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fvFadeSecond {
  0%, 45% {
    opacity: 0;
  }
  55%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 1040px) {
  .fv__slider {
    position: relative;
    width: 100%;
    height: min(56.25vw, 98vh - 104px);
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  .fv__slider {
    height: clamp(103.7222222222vw, 70svh, 133.3571428571vw);
    min-height: 0;
    aspect-ratio: auto;
  }
  .fv__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.section-title {
  line-height: 1.25;
}

.section-title__en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 0;
}

.section-title__ja {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}

.section-title--white {
  color: #FFF;
}

.news-section {
  background-color: #FFF;
}

.news-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
  padding: 80px 0 96px;
}

.news-section__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.news-section__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-section__item {
  border-top: 1px dotted rgba(0, 0, 0, 0.55);
}

.news-section__item:last-child {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.55);
}

.news-section__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  min-height: 64px;
  padding: 20px;
  color: #000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-section__link:hover,
.news-section__link:focus-visible {
  color: #960000;
}

.news-section__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.news-section__date {
  color: #960000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.news-section__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 24px;
  border: 1px solid #960000;
  color: #960000;
  font-size: 14px;
  line-height: 1.25;
}

.news-section__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

.news-section__arrow {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12px;
  height: 16.36px;
  color: #960000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-section__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.news-section__link:hover .news-section__arrow,
.news-section__link:focus-visible .news-section__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media screen and (max-width: 1040px) {
  .news-section__inner {
    gap: clamp(32px, 5vw, 64px);
  }
  .news-section__title {
    -ms-flex-preferred-size: clamp(154px, 24vw, 280px);
        flex-basis: clamp(154px, 24vw, 280px);
  }
}
.topics-section {
  background-color: #C80100;
  color: #FFF;
  margin-top: 40px;
}

.topics-section__inner {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 0;
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
  padding-bottom: 74px;
}

.topics-section__title {
  grid-column: 1;
  margin-top: 40px;
}

.topics-section__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  margin-top: -40px;
}

.topics-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  text-align: center;
}

.topics-card:hover .topics-card__img,
.topics-card:focus-visible .topics-card__img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.topics-card:hover .topics-card__body,
.topics-card:focus-visible .topics-card__body {
  opacity: 0.72;
}

.topics-card__visual {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #FFF;
}

.topics-card__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.topics-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  gap: 6px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 16px;
}

.topics-card__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.topics-card__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14px;
  height: 10px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.topics-card:hover .topics-card__arrow,
.topics-card:focus-visible .topics-card__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.topics-card__title.link-external::after {
  width: 12px;
  height: 12px;
}

.topics-card__date {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 5%;
}

.topics-card__place {
  letter-spacing: 5%;
}

.topics-card__note {
  font-size: 11px;
}

@media screen and (max-width: 1040px) {
  .topics-section__inner {
    grid-template-columns: clamp(180px, 22vw, 320px) minmax(0, 1fr);
    -webkit-column-gap: clamp(24px, 4vw, 60px);
       -moz-column-gap: clamp(24px, 4vw, 60px);
            column-gap: clamp(24px, 4vw, 60px);
  }
  .topics-section__cards {
    gap: clamp(18px, 3vw, 34px);
  }
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 36px;
  }
  .section-title__ja {
    font-size: 14px;
  }
  .news-section__inner {
    display: block;
    width: calc(100% - 32px);
    padding: 60px 0;
  }
  .news-section__list {
    margin-top: 24px;
  }
  .news-section__link {
    position: relative;
    display: block;
    min-height: 0;
    padding: 20px 0;
  }
  .news-section__meta {
    gap: 10px;
  }
  .news-section__date {
    font-size: 15px;
  }
  .news-section__text {
    display: block;
    margin-top: 12px;
    width: 90%;
  }
  .news-section__arrow {
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .topics-section {
    background-color: #C80100;
    margin-top: 0;
  }
  .topics-section__inner {
    display: block;
    width: calc(100% - 32px);
    padding: 30px 0 40px;
  }
  .topics-section__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    margin-top: 24px;
  }
  .topics-section__title {
    margin-top: 0;
  }
  .topics-card__body {
    margin-top: 20px;
  }
  .topics-card__title {
    font-size: 16px;
  }
}
.event-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 140px 0 94px;
  background-color: rgba(255, 234, 0, 0.3);
}

.event-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/buttobi-bg.png") center top/100% auto repeat-y;
  opacity: 0.1;
  pointer-events: none;
}

.event-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/buttobi-left.png"), url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/buttobi-right.png");
  background-position: left top, right top;
  background-size: 18.3vw auto;
  background-repeat: repeat-y, repeat-y;
  pointer-events: none;
}

.event-section__hero,
.event-section__lead,
.event-section__content {
  position: relative;
  z-index: 2;
}

.event-section__hero-inner {
  width: min(100% - 64px, 960px);
  margin: 0 auto;
  text-align: center;
}

.event-section__logo {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto -16px;
}

.event-section__schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 80px;
  width: min(100%, 656px);
  margin: 0 auto;
  padding: 40px 54px 40px;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #FFF;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.event-section__day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.event-section__day-label {
  padding: 0 8px;
  height: 30px;
  background-color: #000;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.event-section__date {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.event-section__date--red {
  color: #C80100;
}

.event-section__date--purple {
  color: #733C93;
}

.event-section__date-small {
  margin-left: 2px;
  font-size: 24px;
  font-weight: 700;
}

.event-section__venue {
  grid-column: 1/-1;
  margin-top: 8px;
  background: linear-gradient(45deg, #C80100 0%, #FCC700 25%, #EB6D9A 50%, #733C93 75%, #54C3F1 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.event-section__venue span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.event-section__day + .event-section__day {
  position: relative;
}

.event-section__day + .event-section__day::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  width: 4px;
  height: 68px;
  background-color: #000;
  -webkit-transform: translateY(-50%) rotate(14deg);
  transform: translateY(-50%) rotate(14deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.event-section__time {
  grid-column: 1/-1;
  margin-top: 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.event-section__time span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.event-section__lead {
  width: min(100% - 64px, 960px);
  margin: 96px auto 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.event-section__lead span {
  display: block;
}
@media screen and (max-width: 500px) {
  .event-section__lead span {
    display: inline;
  }
}

.event-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  width: min(100% - 64px, 960px);
  margin: 96px auto 0;
}

.event-panel {
  --event-color: #FCC700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--event-color);
  border-radius: 10px;
  background-color: #FFF;
}

.event-panel--ticket {
  --event-color: #733C93;
}

.event-panel--goods {
  --event-color: #EB6D9A;
}

.event-panel--map {
  --event-color: #55C3F1;
}

.event-panel--ticket .event-panel__head {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #733C93), color-stop(55%, #FCC700));
  background: linear-gradient(to bottom, #733C93 0 55%, #FCC700 55% 100%);
}
@media screen and (max-width: 767px) {
  .event-panel--ticket .event-panel__head {
    background: #733C93;
  }
}

.event-panel__head {
  width: 215px;
  padding: 40px 20px;
  background-color: var(--event-color);
  color: #FFF;
  display: block;
}

.event-panel__title {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}
.event-panel__title--ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  letter-spacing: 2%;
  margin-bottom: 4px;
}

#map .event-panel__head {
  padding: 40px 16px;
}
#map .event-panel__title--ja {
  font-size: 23px;
}
#map .event-panel__title--ja span + span {
  margin-left: -5px;
}

.event-panel__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.event-panel__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 32px 50px;
}

.event-panel__body--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 152px;
  color: var(--event-color);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.event-info__title {
  position: relative;
  padding-left: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.event-info__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 1.4em;
  background-color: var(--event-color);
}

.ticket-info__price {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  margin-left: 21px;
}

.ticket-info__price strong {
  color: #D09600;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  padding-right: 0.05em;
}

.event-info__note {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  margin-left: 21px;
}

.ticket-info__accordions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.ticket-accordion__summary {
  position: relative;
  display: block;
  padding: 10px 21px;
  background-color: #F5F5F5;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.45);
  border-radius: 5px 5px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.ticket-accordion__summary::-webkit-details-marker {
  display: none;
}

.ticket-accordion__summary::marker {
  content: "";
}

.ticket-accordion__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid var(--event-color);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ticket-accordion[open] .ticket-accordion__summary::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.ticket-accordion__body {
  padding: 30px 21px 0;
}

.ticket-accordion__period {
  color: #D09600;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.ticket-accordion__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.ticket-accordion__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.ticket-accordion__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 4px 16px;
  border: 1px solid #000;
  line-height: 1.25;
}

.ticket-accordion__text {
  font-size: 16px;
  line-height: 1.5;
}

.ticket-info__entry {
  margin-top: 80px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.ticket-info__entry span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.ticket-info__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 252px;
  height: 64px;
  margin: 16px auto 0;
  border-radius: 10px;
  background-color: #C80100;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-box-shadow: 4px 4px 0 #960000;
          box-shadow: 4px 4px 0 #960000;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.ticket-info__button:hover,
.ticket-info__button:focus-visible {
  -webkit-box-shadow: 0 0 0 #960000;
          box-shadow: 0 0 0 #960000;
  -webkit-transform: translate(4px, 4px);
          transform: translate(4px, 4px);
}

.ticket-info__button.link-external::after {
  width: 13px;
  height: 13px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ticket-info__button.link-external:hover::after,
.ticket-info__button.link-external:focus-visible::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.ticket-info__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: min(100%, 374px);
  margin: 40px auto 0;
  padding: 22px 40px;
  border: 1px solid #000;
  background-color: #F5F5F5;
  color: #D09600;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.ticket-info__notice::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 26px;
  background: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/i-notes.svg") center/contain no-repeat;
}

.ticket-info__notice:hover,
.ticket-info__notice:focus-visible {
  opacity: 0.7;
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 32px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}

.notice-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.notice-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.92);
}

.notice-modal__dialog {
  position: relative;
  width: min(100%, 1200px);
  max-height: calc(100vh - 80px);
  overflow: auto;
  background-color: #F5F5F5;
}

.notice-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 42px;
  height: 42px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.notice-modal__close::before,
.notice-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 2px;
  background-color: #000;
}

.notice-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.notice-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.notice-modal__close:hover,
.notice-modal__close:focus-visible {
  opacity: 0.55;
}

.notice-modal__content {
  padding: 62px 110px 82px;
}

.notice-modal__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  color: #D09600;
}
.notice-modal__title span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.notice-modal__icon {
  width: 30px;
  height: auto;
}

.notice-modal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  margin-top: 42px;
  font-size: 15px;
  line-height: 1.75;
}

.notice-modal__list li {
  position: relative;
  padding-left: 1em;
}

.notice-modal__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.notice-modal__list strong {
  border-bottom: 2px solid #C80100;
  font-weight: 700;
}

.notice-modal__heading {
  margin-top: 3em;
  font-size: 18px;
  line-height: 1.5;
}

.notice-modal__heading + .notice-modal__list {
  margin-top: 15px;
}

.notice-modal__bottom-close {
  display: none;
}

@media screen and (max-width: 767px) {
  .notice-modal {
    padding: 20px 16px;
  }
  .notice-modal__dialog {
    max-height: calc(100vh - 40px);
  }
  .notice-modal__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .notice-modal__close::before,
  .notice-modal__close::after {
    width: 32px;
  }
  .notice-modal__content {
    padding: 58px 16px 42px;
  }
  .notice-modal__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .notice-modal__title span {
    font-size: 16px;
  }
  .notice-modal__icon {
    width: 24px;
  }
  .notice-modal__list {
    gap: 12px;
    margin-top: 30px;
    font-size: 14px;
  }
  .notice-modal__bottom-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: min(100%, 240px);
    height: 46px;
    margin: 34px auto 0;
    border: 1px solid #000;
    background-color: #FFF;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .notice-modal__bottom-close:hover,
  .notice-modal__bottom-close:focus-visible {
    background-color: #000;
    color: #FFF;
  }
}
.event-countdown {
  position: relative;
  width: min(100%, 600px);
  margin: 40px auto 0;
  padding: 48px 32px;
  background-color: #FFF;
  color: #000;
  text-align: center;
}

.event-countdown::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  -o-border-image: linear-gradient(45deg, #C80100 0%, #FCC700 25%, #EB6D9A 50%, #733C93 75%, #54C3F1 100%) 1;
     border-image: linear-gradient(45deg, #C80100 0%, #FCC700 25%, #EB6D9A 50%, #733C93 75%, #54C3F1 100%) 1;
  pointer-events: none;
}

.event-countdown__title {
  font-size: 32px;
  font-weight: 700;
}

.event-countdown__title span {
  font-size: 18px;
  font-weight: 700;
}

.event-countdown__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 24px;
  font-weight: 700;
}

.event-countdown__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  background: -webkit-gradient(linear, left top, right top, from(#C80100), color-stop(25%, #FCC700), color-stop(50%, #EB6D9A), color-stop(75%, #733C93), to(#54C3F1));
  background: linear-gradient(90deg, #C80100 0%, #FCC700 25%, #EB6D9A 50%, #733C93 75%, #54C3F1 100%);
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .event-section {
    padding: 96px 0;
  }
  .event-section::after {
    background-image: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/buttobi-top_sp.png");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .event-section__hero {
    position: relative;
  }
  .event-section__hero::before {
    content: "";
    position: absolute;
    bottom: -75px;
    left: -66px;
    z-index: 3;
    width: 32%;
    aspect-ratio: 253/275;
    background: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/buttobi-left_sp.png") left top/contain no-repeat;
    pointer-events: none;
  }
  .event-section__hero::after {
    content: "";
    position: absolute;
    bottom: -91px;
    right: -34px;
    z-index: 3;
    width: 28%;
    aspect-ratio: 245/272;
    background: url("https://d24mfcso9482s6.cloudfront.net/assets/dozle_gakuen/buttobi-right_sp.png") right top/contain no-repeat;
    pointer-events: none;
  }
  .event-section__hero-inner {
    position: relative;
    z-index: 1;
  }
  .event-section__hero-inner {
    width: calc(100% - 32px);
  }
  .event-section__logo {
    margin-bottom: -16px;
  }
  .event-section__schedule {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 30px 16px;
  }
  .event-section__day:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .event-section__day:nth-child(2) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .event-section__venue {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
    font-size: max(4.166vw, 30px);
  }
  .event-section__time {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
    font-size: max(4.166vw, 30px);
  }
  .event-section__day-label {
    font-size: max(3.125vw, 20px);
    padding: 4px 8px;
    height: auto;
  }
  .event-section__day + .event-section__day::before {
    content: none;
  }
  .event-section__lead {
    display: block;
    width: calc(100% - 64px);
    margin-top: 60px;
    font-size: 16px;
  }
  .event-section__content {
    gap: 40px;
    width: calc(100% - 32px);
    margin-top: 60px;
  }
  .event-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
  }
  .event-panel__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 24px 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .event-panel__title--ja {
    margin-bottom: 0;
  }
  .event-panel__title--ja br {
    display: none;
  }
  #map .event-panel__head {
    padding: 24px 16px;
  }
  #map .event-panel__title--ja {
    font-size: max(3.125vw, 24px);
  }
  #map .event-panel__title--ja span {
    margin-left: -3px;
  }
  #map .event-panel__title--ja span + span {
    margin-left: -9px;
  }
  .event-panel__subtitle {
    margin-top: 0;
  }
  .event-panel__body {
    padding: 24px 16px 40px;
  }
  .event-panel__body--placeholder {
    min-height: 154px;
    font-size: 24px;
  }
  .event-info__title {
    font-size: 20px;
  }
  .ticket-info__price {
    margin-top: 12px;
    font-size: 18px;
    margin-left: 0;
  }
  .event-info__note {
    margin-left: 0;
  }
  .ticket-info__accordions {
    gap: 40px;
    margin-top: 20px;
  }
  .ticket-accordion__summary {
    padding: 10px 16px;
    font-size: 18px;
  }
  .ticket-accordion__body {
    padding: 20px 16px;
  }
  .ticket-accordion__period {
    font-size: 18px;
  }
  .ticket-accordion__list {
    gap: 16px;
  }
  .ticket-accordion__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
    font-size: 15px;
  }
  .ticket-info__entry {
    margin-top: 60px;
    font-size: 20px;
  }
  .ticket-info__entry span {
    font-size: 20px;
    display: inline-block;
  }
  .ticket-info__button {
    width: 100%;
    max-width: 280px;
  }
  .ticket-info__notice {
    font-size: 16px;
    margin-top: 30px;
    padding: 20px 16px;
    gap: 8px;
  }
  .event-countdown {
    width: 100%;
    margin-top: 20px;
    padding: 48px 16px;
  }
  .event-countdown__number {
    min-width: 98px;
    font-size: 48px;
  }
  .event-countdown__title {
    font-size: max(4.166vw, 28px);
  }
}
main.page-main {
  padding-top: 100px;
  letter-spacing: 5%;
  font-size: 15px;
}

.page-title {
  overflow: hidden;
  background-color: #F5F5F5;
}

.page-title__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100% - 64px, 1200px);
  min-height: 240px;
  margin: 0 auto;
}

.page-title__content {
  position: relative;
  z-index: 1;
}

.page-title__category {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #960000;
  color: #960000;
  font-size: 12px;
  line-height: 1;
}

.page-title__category span {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.page-title__heading {
  margin-top: 8px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
}
.page-title__heading span {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.page-title__icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 290px;
  height: auto;
  opacity: 0.1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-content {
  padding: 80px 0 120px;
}

.page-section + .page-section {
  margin-top: 100px;
}

.page__inner {
  width: min(100% - 64px, 1200px);
  margin: 0 auto;
}

.text-red {
  color: #960000;
}

.text-small {
  font-size: 12px;
}

.page-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 40px;
  background-image: linear-gradient(90deg, #000 0 80px, #960000 80px);
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: bottom;
}

.page-heading::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 23px;
  background-color: #960000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.page-heading__text {
  color: #000;
  font-size: 24px;
}
.page-heading__text span {
  font-family: "Montserrat", sans-serif;
}

.page-heading::after {
  content: "";
  height: 6px;
  background-color: #960000;
}

.page-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 22px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-label::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 14px;
  height: 16px;
  background-color: #000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.page-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 3px;
  background-color: #960000;
}

.page-label__en {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5%;
}

.page-label__ja {
  margin-top: 4px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.page-sub-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 20px;
  margin-bottom: 8px;
}

.page-sub-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 16px;
  background-color: #000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.page-sub-label__en {
  color: #960000;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 5%;
  line-height: 1;
}

.page-sub-label__ja {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5%;
  line-height: 1;
}

.bg-lred {
  background-color: #FDF2F2;
  padding: 24px 60px 24px 32px;
  border-radius: 10px;
  margin: 20px 0;
}
.bg-lred ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  line-height: 2;
}
.bg-lred li {
  position: relative;
  padding-left: 1em;
}
.bg-lred li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.page-text {
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
  main.page-main {
    padding-top: 80px;
    font-size: 14px;
  }
  .page-title__inner {
    width: calc(100% - 32px);
  }
  .page-title__heading {
    font-size: max(5.21vw, 28px);
  }
  .page-title__icon {
    right: -48px;
    width: 235px;
  }
  .page-content {
    padding: 56px 0 80px;
  }
  .page-section + .page-section {
    margin-top: 80px;
  }
  .page__inner {
    width: calc(100% - 32px);
  }
  .page-heading {
    margin-bottom: 24px;
  }
  .page-heading__text {
    font-size: max(3.125vw, 20px);
  }
  .bg-lred {
    padding: 20px 16px;
  }
  .pr-sidenavi {
    padding-right: 0;
  }
  .page-text {
    padding-right: 0;
  }
}
.greeting__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.greeting__visual {
  width: 33%;
}

.greeting__caption {
  margin-top: 16px;
  text-align: center;
}

.greeting__content {
  width: 63%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.greeting__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding-right: 60px;
}
.greeting__block p {
  line-height: 2;
}

.greeting__lead {
  font-size: 18px;
  font-weight: 700;
  color: #C80100;
}

@media screen and (max-width: 767px) {
  .greeting__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .greeting__visual {
    width: 100%;
  }
  .greeting__content {
    width: 100%;
    gap: 60px;
  }
  .greeting__block {
    padding-right: 0;
  }
  .greeting__lead {
    font-size: 16px;
  }
}
.foundation__inner p {
  line-height: 2;
}

.history-table {
  overflow: hidden;
  border: 3px solid #960000;
  border-radius: 10px;
}

.history-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.history-table__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  background-color: #960000;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #FFF;
}

.history-table__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 60px 16px 24px;
  border-bottom: 3px dotted #960000;
  background-color: #FFF;
}

.history-table__item:last-child .history-table__year,
.history-table__item:last-child .history-table__content {
  border-bottom: 0;
}

.history__summary {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 20px;
}
.history__summary span {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .history-table__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-table__year {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-bottom: 0;
  }
  .history-table__content {
    padding: 16px;
    border-bottom: 0;
  }
  .history__summary {
    font-size: 16px;
    text-align: center;
  }
}
.overview-table {
  overflow: hidden;
  border: 3px solid #960000;
  border-radius: 10px;
}

.overview-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overview-table__index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 200px;
  background-color: #960000;
  color: #FFF;
  font-size: 16px;
  border-bottom: 2px solid #FFF;
  padding: 16px 24px;
}

.overview-table__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 60px 16px 24px;
  border-bottom: 3px dotted #960000;
  background-color: #FFF;
}

.overview-table__item:last-child .overview-table__index,
.overview-table__item:last-child .overview-table__content {
  border-bottom: 0;
}

.overview-text {
  padding-right: 60px;
  margin-top: 20px;
}

.overview-activity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-right: 60px;
}

.overview-activity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 12px;
}

.school-emblem__img {
  width: 104px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.school-emblem__text {
  text-align: center;
  line-height: 2;
  margin-top: 24px;
  padding: 0 60px;
}

.career-goal__list {
  padding-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

.career-goal__index {
  font-weight: 700;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .overview-table__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .overview-table__index {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-bottom: 0;
  }
  .overview-table__content {
    padding: 16px;
    border-bottom: 0;
  }
  .overview-text {
    padding-right: 0;
  }
  .overview-activity {
    padding-right: 0;
  }
  .school-emblem__text {
    margin-top: 32px;
    padding: 0 16px;
  }
  .career-goal__list {
    padding-right: 0;
    gap: 30px;
    margin-top: 32px;
  }
  .career-goal__index {
    font-weight: 700;
    margin-bottom: 8px;
  }
}
.e-policy__index {
  background-color: #960000;
  padding: 60px;
  border-radius: 10px;
}
.e-policy__index h3 {
  color: #FFF;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
}

.e-policy__item {
  margin-top: 80px;
}

.mind-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}

.mind-card {
  width: calc((100% - 32px) / 2);
}

.mind-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 24px;
  border-radius: 10px;
  color: #FFF;
}

.mind-card__en {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.mind-card__ja {
  font-size: 15px;
}

.mind-card__text {
  padding: 24px;
  color: currentColor;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.mind-card__text--pr {
  padding-right: 60px;
}

.mind-card--enjoy {
  color: #733C93;
}

.mind-card--enjoy .mind-card__heading {
  background-color: #733C93;
}

.mind-card--update {
  color: #D09600;
}

.mind-card--update .mind-card__heading {
  background-color: #FCC700;
}

.mind-card--image {
  color: #0D95D6;
}

.mind-card--image .mind-card__heading {
  background-color: #55C3F1;
}

.mind-card--fair {
  color: #EB6D9A;
}

.mind-card--fair .mind-card__heading {
  background-color: #EB6D9A;
}

.curriculum__lead {
  font-size: 20px;
  font-weight: 700;
}

.course-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border: 3px solid #960000;
  border-radius: 10px;
  margin-top: 24px;
}

.course-box__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  padding: 40px 32px;
  background-color: #960000;
}

.course-box__title {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.course-box__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 60px 40px 40px;
}

.course-box__lead {
  margin-bottom: 24px;
  color: #960000;
  font-size: 18px;
  font-weight: 700;
}

.course-box__text {
  line-height: 1.9;
}
.course-box__text span {
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .e-policy__index {
    padding: 40px 16px;
  }
  .e-policy__index h3 {
    font-size: 18px;
  }
  .e-policy__item {
    margin-top: 56px;
  }
  .mind-list {
    gap: 20px;
  }
  .mind-card {
    width: 100%;
  }
  .mind-card__heading {
    min-height: 60px;
    padding: 20px 16px;
  }
  .mind-card__en {
    font-size: max(4.166vw, 20px);
  }
  .mind-card__ja {
    font-size: 14px;
  }
  .mind-card__text {
    padding: 20px 16px;
    font-size: 16px;
  }
  .mind-card__text--pr {
    padding-right: 0;
  }
  .curriculum__lead {
    font-size: 18px;
  }
  .course-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
  .course-box__label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 16px;
  }
  .course-box__title {
    font-size: 20px;
  }
  .course-box__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 16px;
  }
  .course-box__lead {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.event__inner .text-small {
  text-align: right;
}

.event-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 24px;
  margin-bottom: 54px;
}

.event-calendar__item {
  width: calc((100% - 48px) / 3);
}

.event-calendar__month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 24px;
  background-color: #960000;
  color: #FFF;
  font-size: 18px;
}

.event-calendar__list {
  padding: 20px 24px 0;
  list-style: none;
}

.event-calendar__list li {
  position: relative;
  padding-left: 18px;
  color: #000;
  line-height: 1.5;
}

.event-calendar__list li + li {
  margin-top: 12px;
}

.event-calendar__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9px;
  height: 10px;
  background-color: #000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.event-calendar__link {
  color: #960000;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  gap: 0;
}
.event-calendar__link .link-external__icon {
  margin-left: 6px;
}

.event-calendar__link:hover,
.event-calendar__link:focus-visible {
  opacity: 0.7;
}

@media screen and (max-width: 1040px) {
  .event-calendar__item {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .event-calendar {
    gap: 40px;
    margin-bottom: 40px;
  }
  .event-calendar__item {
    width: 100%;
  }
}
.activities-message {
  padding-bottom: 98px;
  text-align: center;
}

.activities-message__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #960000;
}

.activities-message__text {
  padding: 0 60px;
  line-height: 2;
}

.club-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}

.club-heading::before,
.club-heading::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 8px;
  background-color: #960000;
}

.club-heading__text {
  color: #960000;
  font-size: 24px;
  font-weight: 700;
}

.club-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.club-card {
  width: calc((100% - 48px) / 3);
  padding: 40px 32px;
  border: 3px solid #960000;
  border-radius: 5px;
  text-align: center;
}

.club-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
}

.club-card__icon-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.club-card__name {
  color: #960000;
  font-size: 20px;
  font-weight: 700;
}

.club-card__copy {
  margin-top: 14px;
  color: #960000;
  font-size: 18px;
  margin-bottom: 20px;
}

.club-card__text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.club-card__text span {
  margin-top: 8px;
}

.club-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.club-tag-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 29px;
  border: 3px solid #960000;
  border-radius: 3px;
  color: #960000;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

.activities-last-message {
  padding: 20px 60px 0;
  text-align: center;
}

.activities-last-message__lead {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.5;
}

.activities-last-message__text {
  line-height: 2;
}
.activities-last-message__text span {
  font-weight: 700;
  color: #960000;
}

@media screen and (max-width: 1040px) {
  .club-card {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .activities-message {
    padding-bottom: 0;
  }
  .activities-message__lead {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 32px;
  }
  .activities-message__text {
    padding: 0;
  }
  .club-heading {
    margin-bottom: 32px;
  }
  .club-heading__text {
    font-size: 20px;
  }
  .club-card {
    width: 100%;
    padding: 24px;
  }
  .club-tag-list {
    gap: 16px;
  }
  .club-tag-list__item {
    padding: 7px 17px;
    font-size: 18px;
  }
  .activities-last-message {
    padding: 0;
  }
  .activities-last-message__lead {
    margin-bottom: 32px;
    font-size: 18px;
  }
}
.qa-accordion__item {
  border: 3px solid #960000;
}

.qa-accordion__item + .qa-accordion__item {
  margin-top: 20px;
}

.qa-accordion__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background-color: #960000;
  color: #FFF;
  cursor: pointer;
}

.qa-accordion__question::-webkit-details-marker {
  display: none;
}

.qa-accordion__question-label {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.qa-accordion__question-text {
  font-size: 18px;
  line-height: 1.5;
}

.qa-accordion__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-accordion__icon::before,
.qa-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #FFF;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa-accordion__icon::before {
  width: 22px;
  height: 2px;
}

.qa-accordion__icon::after {
  width: 2px;
  height: 22px;
}

.qa-accordion__item[open] .qa-accordion__icon::after {
  display: none;
}

.qa-accordion__answer {
  padding: 24px;
  background-color: #FFF;
}

.qa-accordion__answer p + p {
  margin-top: 4px;
}

.qa-accordion__answer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding-right: 60px;
}

.qa-accordion__answer-label {
  margin-right: 8px;
  color: #960000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.qa-accordion__note {
  font-size: 12px;
}

.qa-accordion__table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  table-layout: fixed;
}

.qa-accordion__table-col--label {
  width: 360px;
}

.qa-accordion__table-col--time {
  width: 100%;
}

.qa-accordion__table th,
.qa-accordion__table td {
  padding: 16px 24px;
  border: 1px solid #848484;
  text-align: left;
  vertical-align: middle;
}

.qa-accordion__table th {
  background-color: #FDF2F2;
}

@media screen and (max-width: 767px) {
  .qa-accordion__question {
    padding: 13px 48px 13px 16px;
  }
  .qa-accordion__question-text {
    font-size: 18px;
  }
  .qa-accordion__answer {
    padding: 18px 16px;
    font-size: 15px;
  }
  .qa-accordion__answer-row {
    padding-right: 0;
  }
  .qa-accordion__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 0;
  }
  .qa-accordion__table-col--label {
    width: 180px;
  }
  .qa-accordion__table th,
  .qa-accordion__table td {
    padding: 10px 8px;
  }
}
.form {
  max-width: 960px;
  margin: 0 auto;
  font-size: 16px;
}
.form dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 32px;
}
.form dt:first-of-type {
  margin-top: 0;
}
.form dt em {
  font-size: 10px;
  color: #C80100;
  font-weight: bold;
  padding-left: 4px;
}
.form dd {
  margin-top: 8px;
}
.form select,
.form input[type=text],
.form input[type=email],
.form textarea {
  max-width: 100%;
  width: 100%;
  padding: 10px;
  font-size: 16px;
}
.form .center {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form .center .wpcf7-list-item {
  margin: 0;
  font-size: 14px;
}
.form .center a {
  border-bottom: 1px solid;
}
.form .center a:hover {
  color: #960000;
}
.form .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.form .submit .wpcf7-spinner {
  margin: 0 auto;
}
.form .submit input[type=submit] {
  border: none;
  width: 240px;
  height: 50px;
  background-color: #960000;
  color: #FFF;
  position: relative;
  text-align: center;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.form .submit input[type=submit]:hover {
  background-color: #000;
}

.wpcf7-turnstile.cf-turnstile {
  text-align: center;
}

.student-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.student-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 224px;
  height: 68px;
  padding: 12px 16px;
  border-radius: 4px;
  color: #FFF;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.student-card--red {
  background-color: #C80100;
}
.student-card--purple {
  background-color: #733C93;
}
.student-card--yellow {
  background-color: #FCC700;
}
.student-card--blue {
  background-color: #55C3F1;
}
.student-card--pink {
  background-color: #EB6D9A;
}

.student-card__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 10px;
  fill: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.student-card:hover,
.student-card:focus-visible {
  opacity: 0.8;
}

.student-card:hover::after,
.student-card:focus-visible::after {
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}

.student-card:hover .student-card__arrow,
.student-card:focus-visible .student-card__arrow {
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}

.student-card__course {
  font-size: 15px;
  font-weight: 700;
}

.student-card__name {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}

.student-card-list > p {
  display: contents;
  margin: 0;
}

.student-card-list > p:empty,
.student-card-list > br,
.student-card br,
.interview-card__meta br,
.interview-card__toggle br {
  display: none;
}

@media screen and (max-width: 767px) {
  .student-card-list {
    gap: 16px 18px;
  }
  .student-card {
    min-height: 64px;
    width: calc((100% - 20px) / 2);
  }
  .student-card__course {
    font-size: 14px;
  }
  .student-card__name {
    font-size: 16px;
  }
}
.interview-card {
  margin-top: 96px;
}

.interview-card + .interview-card {
  margin-top: 120px;
}

.interview-card__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.interview-card__visual {
  width: 380px;
}

.interview-card__profile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 24px;
}

.interview-card__course {
  display: inline-block;
  padding: 4px 8px;
  background-color: #000;
  color: #FFF;
  font-weight: 700;
}

.interview-card__name {
  margin-top: 18px;
  font-size: 32px;
  font-weight: 700;
}

.interview-card__meta {
  margin-top: 25px;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.interview-card__message {
  margin-top: 40px;
}

.interview-card__message-label {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
}

.interview-card__message-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 14px;
  height: 16px;
  background-color: #000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.interview-card__message-text {
  margin-top: 16px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.interview-card__message-text--red {
  color: #C80100;
}
.interview-card__message-text--purple {
  color: #733C93;
}
.interview-card__message-text--yellow {
  color: #FCC700;
}
.interview-card__message-text--blue {
  color: #55C3F1;
}
.interview-card__message-text--pink {
  color: #EB6D9A;
}

.interview-card__toggle {
  display: none;
}

.interview-card__qa {
  margin-top: 64px;
}

.interview-card__qa-item + .interview-card__qa-item {
  margin-top: 56px;
}

.interview-card__question {
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.interview-card__question span {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.interview-card__question--red {
  background-color: #FDF2F2;
  color: #960000;
}
.interview-card__question--purple {
  background-color: #F5F1F8;
  color: #733C93;
}
.interview-card__question--yellow {
  background-color: #FFFBEA;
  color: #D09600;
}
.interview-card__question--blue {
  background-color: #EFF9FE;
  color: #0D95D6;
}
.interview-card__question--pink {
  background-color: #F5ECF0;
  color: #EB6D9A;
}

.interview-card__answer {
  margin: 24px 24px 0;
}

@media screen and (max-width: 1040px) {
  .interview-card__intro {
    gap: 40px;
  }
  .interview-card__meta {
    margin-left: 0;
  }
  .interview-card__message-text {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .interview-card + .interview-card {
    margin-top: 100px;
  }
  .interview-card__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .interview-card__visual {
    width: 100%;
  }
  .interview-card__profile {
    margin-top: 0;
  }
  .interview-card__name {
    margin-top: 16px;
    font-size: 28px;
  }
  .interview-card__meta {
    margin-top: 20px;
  }
  .interview-card__message {
    margin-top: 32px;
  }
  .interview-card__message-label {
    font-size: 16px;
  }
  .interview-card__message-text {
    margin-top: 8px;
    font-size: 20px;
  }
  .interview-card__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    min-height: 52px;
    border: 2px solid #000;
    background-color: #000;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .interview-card__toggle:hover,
  .interview-card__toggle:focus-visible {
    opacity: 0.75;
  }
  .interview-card__toggle--open {
    margin-top: 40px;
  }
  .interview-card__toggle--close {
    margin-top: 56px;
  }
  .interview-card__qa {
    display: none;
    margin-top: 40px;
  }
  .interview-card.is-open .interview-card__qa {
    display: block;
  }
  .interview-card.is-open .interview-card__toggle--open {
    display: none;
  }
  .interview-card__qa-item + .interview-card__qa-item {
    margin-top: 40px;
  }
  .interview-card__question {
    padding: 16px;
    font-size: 16px;
    gap: 8px;
  }
  .interview-card__question span {
    font-size: 20px;
  }
  .interview-card__answer {
    margin: 16px;
  }
}