@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select, option {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre,
input,
form,
hr {
  margin: 0;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

select {
  cursor: pointer;
}

input {
  border: none;
  outline: none;
  font-size: inherit;
}
input:focus::placeholder {
  color: transparent;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  color: currentColor;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.5;
  }
}

a {
  color: currentColor;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

.pc_space {
  display: none;
}
@media (min-width: 600px) {
  .pc_space {
    display: inline-block;
  }
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}
br.br {
  display: block;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll-rock {
  overflow: hidden;
}
@media (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

body {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff9dc;
  line-height: 2rem;
  background-image: url(../images/bg.jpg);
  background-size: 100%;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-more-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, rgba(168, 229, 228, 0) 20%, rgb(168, 229, 228) 60%);
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  padding-bottom: 38px;
  z-index: 100;
  backdrop-filter: blur(4px);
}
@media (min-width: 992px) {
  .btn-more-wrapper {
    padding-top: 40px;
  }
}
.complete .btn-more-wrapper {
  display: none;
}

.btn-other-wrapper {
  display: none;
}
.complete .btn-other-wrapper {
  display: block;
  margin-bottom: 50px;
}

.btn-more,
a.btn-old-other-koneta {
  display: block;
  margin-right: auto;
  margin-left: auto;
  transform: scale(0.95);
  transition: transform 0.1s;
}
.btn-more:hover, .btn-more:focus, .btn-more:active,
a.btn-old-other-koneta:hover,
a.btn-old-other-koneta:focus,
a.btn-old-other-koneta:active {
  opacity: 1;
  transform: scale(1);
}

.btn-more {
  width: 70%;
}

a.btn-old-other-koneta {
  width: 50%;
}

img {
  max-width: 100%;
}

a:link, a:visited, a:active {
  text-decoration: none;
}
a:link, a:visited {
  color: #FF6699;
}
a:active {
  color: #FFDE3C;
}
a:hover {
  color: #FF9933;
  text-decoration: underline;
  opacity: 0.6;
}
a img {
  transition: 0.2s ease-in-out;
}

section {
  background-color: rgb(168, 229, 228);
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  section {
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    filter: drop-shadow(4px 8px 8px rgba(0, 0, 0, 0.3));
    overflow: hidden;
    transform: translateZ(0);
  }
}

article {
  position: relative;
  padding: 0px 10px 50px;
}
@media (min-width: 400px) {
  article {
    padding-right: 40px;
    padding-left: 40px;
  }
}
article:first-child {
  padding-top: 30px;
}
article:first-child::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(228, 222, 188, 0) 0%, rgb(228, 222, 188) 40px);
}
article:last-of-type {
  height: 160px;
  overflow: hidden;
}
@media (min-width: 992px) {
  article:last-of-type {
    height: 220px;
  }
}
.complete article:last-of-type {
  height: auto;
}
article > * {
  position: relative;
  z-index: 10;
}

.stage {
  position: relative;
  z-index: 100;
}

.content {
  position: relative;
  top: -10px;
}

.bkgstage {
  width: 100%;
}

.program {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.program div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-title {
  height: 2em;
}

.program-icon {
  width: 34%;
}

.date {
  text-align: center;
  font-size: 0.9em;
}

.post {
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 40px 0 40px;
}
.post div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 15px;
  line-height: 2;
}
@media (min-width: 600px) {
  .post div {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.post br {
  display: block;
}

.post-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.post-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.post-footer img {
  vertical-align: middle;
  width: 32px;
}

.post-footer-x a {
  background-color: #000;
}

.post-footer-fb a {
  background-color: #1a77f2;
}

.post-footer-line a {
  background-color: #0dc755;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

aside {
  margin-top: 20px;
  margin-bottom: 20px;
}
aside ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
aside li {
  width: 80%;
  text-align: center;
}
aside a {
  display: inline-block;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.4));
}
aside img {
  width: auto;
  max-height: 120px;
  height: auto;
}

.footer {
  text-align: center;
  font-family: "Shuei NijimiMGo B";
  color: #902722;
  font-weight: 700;
  background-color: #FFF7DC;
  padding: 30px 32px 20px;
}

.btn-footer {
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  gap: 0.5em;
  margin-bottom: 20px;
  color: currentColor;
}
.btn-footer:link, .btn-footer:hover, .btn-footer:active {
  color: #902722;
  text-decoration: none;
}
.btn-footer img {
  max-height: 100%;
  max-width: 100%;
}

.copyright {
  font-weight: 700;
  font-size: 10px;
}

.loading .btn-more {
  pointer-events: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 2rem;
  font-family: "Shuei NijimiMGo B";
  color: #902722;
  font-weight: 700;
}
.loading .btn-more::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 6rem;
  height: 6rem;
  background-image: url("../images/archive/icon_face.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  animation: purupuru 0.2s infinite;
}
.loading .btn-more::after {
  content: "Loading...";
  white-space: nowrap;
}
.loading .btn-more img {
  display: none;
}

@keyframes card-rotate {
  0% {
    transform: scaleX(-1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes purupuru {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.98, 0.95);
  }
}/*# sourceMappingURL=style.css.map */