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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/*
:where(button) {
  all: unset;
}
  */
:where(button) {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: inherit;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

/*
:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}
*/
:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

:root {
  color-scheme: light dark;
}

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

html,
body {
  background-color: #fff;
  color: #111;
  font-family: "YakuHanJP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Poppins", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
  margin: 0;
}

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

.wrapper {
  width: 100%;
  margin: 0 auto;
}

body.is-loading {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fafae1;
  transform: translateY(0);
  transition: transform 0.6s ease-in-out;
}

body.is-loaded .loader::before {
  transform: translateY(-100%);
  transition: transform 0.6s ease-in-out 0.2s;
}

body.is-loaded .loader {
  pointer-events: none;
}

.loader__logo {
  opacity: 0;
  transform: translateY(96px);
  will-change: transform, opacity;
  animation: loader-logo-in 0.6s ease-out 0.2s both;
  width: 50vw;
  height: auto;
}
@media (min-width: 1024px) {
  .loader__logo {
    width: 300px;
  }
}

@keyframes loader-logo-in {
  from {
    opacity: 0;
    transform: translateY(96px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.is-loaded .loader__logo {
  transform: translateY(0);
  animation: loader-logo-out 0.6s ease-in 0s forwards;
}

@keyframes loader-logo-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.loader::before {
  z-index: 0;
}

.loader__logo {
  position: relative;
  z-index: 2;
}

.story {
  padding: 40px 4%;
  background-color: #fff;
  background-image: url("../images/story/gridline.webp");
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}
.story .story-head {
  width: 70%;
  margin: 0 auto 10px;
}
@media (min-width: 1024px) {
  .story .story-head {
    max-width: 400px;
    margin: 0 auto 20px;
  }
}
.story .story-about-head {
  width: 60%;
  margin: 0 auto 40px;
}
@media (min-width: 1024px) {
  .story .story-about-head {
    max-width: 300px;
    margin: 0 auto 40px;
  }
}
.story-lead {
  font-size: min(4.8309178744vw, 1.25rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
  margin: 0 auto 2.5rem;
}
@media (min-width: 1024px) {
  .story-lead {
    margin: 0 auto 3.125rem;
    text-align: center;
  }
}
.story-lead br {
  display: none;
}
@media (min-width: 1024px) {
  .story-lead br {
    display: block;
  }
}
.story-about {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .story-about {
    flex-direction: row;
    gap: 2%;
  }
}
.story-about__item {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: linear-gradient(30deg, rgba(178, 246, 254, 0.75), rgba(241, 214, 252, 0.75));
  padding: 0 3% 6%;
  border-radius: 30px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .story-about__item {
    width: 32%;
    padding: 0 15px 30px;
    gap: 0;
  }
}
.story-about__item__head {
  width: 85%;
  transform: translateY(-30px);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .story-about__item__head {
    max-width: 340px;
    transform: translateY(-40px);
  }
}
.story-about__item__text {
  font-size: min(4.1062801932vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  transform: translateY(-16px);
}
@media (min-width: 1024px) {
  .story-about__item__text {
    transform: translateY(-20px);
  }
}

.imgPut {
  will-change: opacity, transform, filter;
}

.imgPut {
  transform: translateY(-20px) scale(1.2);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.41, 0.67, 0.62, 0.99) 0.6s;
}

.imgPut.is-animated {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (min-width: 1024px) {
  .story-about__item:nth-child(2) .imgPut {
    transition-delay: 0.9s;
  }
  .story-about__item:nth-child(3) .imgPut {
    transition-delay: 1.2s;
  }
}
.characters {
  padding: 40px 4%;
  background: linear-gradient(30deg, #ffffe3, #f3f1d4);
}
@media (min-width: 1024px) {
  .characters {
    padding: 40px 4% 120px;
  }
}
.characters .characters-head {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .characters .characters-head {
    max-width: 400px;
    margin: 0 auto;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  aspect-ratio: 400/1000;
  align-items: stretch;
  gap: 0;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 0;
  justify-content: center;
  justify-items: center;
  padding: 0;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
    aspect-ratio: 1500/680;
    gap: 0%;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 0;
  }
}

.thumb-cover {
  position: absolute;
  width: 106%;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 3px solid rgb(130, 155, 160);
  border-left: 3px solid rgb(130, 155, 160);
  border-bottom: 2px solid rgb(52, 109, 121);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.4);
  left: -3%;
  z-index: 2;
}
@media (min-width: 1024px) {
  .thumb-cover {
    width: 103%;
    height: 6%;
    left: -1.5%;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}
.thumb-cover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background: linear-gradient(-30deg, rgb(130, 99, 56), rgb(101, 76, 40));
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(33, 33, 33, 0.5);
  border-right: 1px solid rgba(33, 33, 33, 0.5);
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
  bottom: 0;
  left: 0;
  box-shadow: 0 8px 3px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
@media (min-width: 1024px) {
  .thumb-cover::after {
    box-shadow: 0 12px 6px rgba(0, 0, 0, 0.5);
  }
}
.thumb-cover__top {
  top: 20%;
  transform: translateY(calc(-50% - 10px));
}
@media (min-width: 1024px) {
  .thumb-cover__top {
    top: 50%;
    transform: translateY(calc(-50% - 5px));
  }
}
.thumb-cover__top-middle {
  top: 40%;
  transform: translateY(calc(-50% - 10px));
}
@media (min-width: 1024px) {
  .thumb-cover__top-middle {
    display: none;
  }
}
.thumb-cover__middle {
  top: 60%;
  transform: translateY(calc(-50% - 10px));
}
@media (min-width: 1024px) {
  .thumb-cover__middle {
    display: none;
  }
}
.thumb-cover__middle-bottom {
  top: 80%;
  transform: translateY(calc(-50% - 10px));
}
@media (min-width: 1024px) {
  .thumb-cover__middle-bottom {
    display: none;
  }
}
.thumb-cover__bottom {
  bottom: 0%;
  transform: translateY(calc(50% - 10px));
}
@media (min-width: 1024px) {
  .thumb-cover__bottom {
    bottom: 0%;
    transform: translateY(50%);
  }
}

.thumb-wrap {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .thumb-wrap {
    height: 100%;
  }
}
.thumb-wrap:hover .thumb {
  transform: translateY(-20px);
  z-index: 1;
}
@media (min-width: 1024px) {
  .thumb-wrap:hover .thumb {
    transform: translateY(-35px);
  }
}

.thumb {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: #fff;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.2s ease;
  will-change: transform;
}
@media (min-width: 1024px) {
  .thumb {
    border-radius: 2px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
  }
}

.thumb img {
  width: 100%;
  aspect-ratio: 420/540;
  -o-object-fit: cover;
     object-fit: cover;
}

.comics {
  padding: 40px 4% 90px;
  background-color: #fff;
  background-image: url("../images/story/gridline.webp");
  background-repeat: repeat;
  background-size: auto;
  position: relative;
  overflow-x: hidden;
}
.comics .comics-head {
  width: 70%;
  margin: 0 auto 30px;
}
@media (min-width: 1024px) {
  .comics .comics-head {
    max-width: 400px;
    margin: 0 auto 10px;
  }
}

.comics-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .comics-intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4%;
  }
}
.comics-intro__pic {
  width: 60%;
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
  transform: rotate(4deg);
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .comics-intro__pic {
    width: 30%;
  }
}
.comics-intro__pic::before {
  position: absolute;
  content: "";
  background: url(../images/comics/checkitout.svg);
  background-repeat: no-repeat;
  width: 50%;
  height: 50%;
  top: -12%;
  left: -25%;
  z-index: -1;
}
@media (min-width: 1024px) {
  .comics-intro__pic::before {
    width: 180px;
    height: 180px;
    top: -60px;
    left: -90px;
  }
}
.comics-intro__text {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .comics-intro__text {
    width: 66%;
  }
}
.comics-intro__text__head {
  position: relative;
  display: inline-block;
  font-size: min(5.3140096618vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 1rem;
  padding: 0 1em;
}
.comics-intro__text__head span {
  font-weight: 900;
  color: #e40065;
  margin-right: 0.5em;
}
.comics-intro__text__head::before, .comics-intro__text__head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 110%;
  background-color: #e40065;
  transform-origin: center;
}
.comics-intro__text__head::before {
  left: 0;
  transform: translateY(-50%) rotate(-35deg);
}
.comics-intro__text__head::after {
  right: 0;
  transform: translateY(-50%) rotate(35deg);
}
@media (min-width: 1024px) {
  .comics-intro__text__head .sp {
    display: none;
  }
}
@media (min-width: 1024px) {
  .comics-intro__text__head {
    padding: 0 1em;
  }
  .comics-intro__text__head::before, .comics-intro__text__head::after {
    height: 110%;
    width: 2px;
  }
  .comics-intro__text__head::before {
    transform: translateY(-50%) rotate(-35deg);
  }
  .comics-intro__text__head::after {
    transform: translateY(-50%) rotate(35deg);
  }
}
.comics-intro__text__content {
  background: #fff1aa;
  position: relative;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.125);
  padding: 1.5em;
  border-radius: 1em;
}
@media (min-width: 1024px) {
  .comics-intro__text__content {
    padding: 1.75em 3em;
  }
}
.comics-intro__text__content p {
  font-size: min(4.347826087vw, 1.125rem);
  font-weight: 700;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
@media (min-width: 1024px) {
  .comics-intro__text__content p {
    line-height: 2;
  }
}
.comics-intro__text__content ul.comics-list-star {
  margin-bottom: 0.5em;
}
.comics-intro__text__content ul.comics-list-star li {
  font-size: min(4.347826087vw, 1.125rem);
  font-weight: 700;
  text-align: justify;
  line-height: 1.6;
  text-indent: -1.125em;
  padding-left: 1.125em;
}
@media (min-width: 1024px) {
  .comics-intro__text__content ul.comics-list-star li {
    line-height: 2;
  }
}
.comics-intro__text__content ul.comics-list-star li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../images/comics/list-mark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-right: 0.125em;
}
@media (min-width: 1024px) {
  .comics-intro__text__content::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-right: 21px solid #fff1aa;
  }
}

.comics-store {
  max-width: 1200px;
  margin: 0 auto;
}
.comics-store .comics-store__head {
  font-size: min(5.7971014493vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}
.comics-store__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
@media (min-width: 1024px) {
  .comics-store__list {
    gap: 2%;
  }
}
.comics-store__list__bt {
  position: relative;
  width: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: linear-gradient(to right, #e40065, #ff3590);
  border-radius: 99px;
  padding: 12px 8px 15px;
  margin: 20px 0 0;
  transition: filter 0.3s ease;
  filter: brightness(1);
}
@media (min-width: 1024px) {
  .comics-store__list__bt {
    width: 18.4%;
    padding: 16px 8px;
    margin: 30px 0 0;
  }
}
.comics-store__list__bt::before {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml, %3Csvg class='iconArrowRight' width='32' height='32' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6L15.2929 11.2929C15.6834 11.6834 15.6834 12.3166 15.2929 12.7071L10 18' stroke='%23ffffff' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.comics-store__list__bt:hover {
  filter: brightness(1.2);
}
.comics-store__list__bt span {
  font-size: min(4.347826087vw, 1.125rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.bottom-links {
  background: #231815;
  margin: 0 auto;
}
.bottom-links__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 10px;
  box-sizing: content-box;
  gap: 4%;
}
@media (min-width: 1024px) {
  .bottom-links__wrapper {
    flex-direction: row;
    padding: 60px 4%;
  }
}
.bottom-links__links {
  width: 100%;
  padding: 0 4% 0;
}
@media (min-width: 1024px) {
  .bottom-links__links {
    width: calc(100% - 550px);
    padding: 0;
  }
}
.bottom-links__post {
  width: auto;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .bottom-links__post {
    width: 550px;
    margin-bottom: 0;
  }
}

.btUtility {
  display: flex;
  gap: 4px;
  align-items: center;
  width: 80%;
  padding: 10px;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: linear-gradient(to right, #4673b8, #6091d9);
  border-radius: 99px;
  margin: 20px auto 0;
  position: relative;
}
@media (min-width: 1024px) {
  .btUtility {
    width: 100%;
    max-width: 250px;
    margin: 20px auto 0;
  }
}

.btUtility-icon {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  aspect-ratio: 1;
  overflow: hidden;
}

.btUtility-text {
  flex-shrink: 1;
  width: 100%;
  font-size: min(3.8647342995vw, 1rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media (any-hover: hover) {
  .btBright {
    transition: all 0.3s ease;
    filter: brightness(1);
  }
  .btBright:hover {
    filter: brightness(1.2);
  }
  .btBright .btUtility-icon {
    transition: all 0.3s ease;
  }
  .btBright:hover .btUtility-icon {
    transform: translate(6px, -50%);
  }
}
.embed {
  padding: 0;
  text-align: center;
}
.embed .embed-head {
  position: relative;
  display: inline-block;
  color: #ffe100;
  font-size: min(6.2801932367vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 0.625rem;
  padding: 0 1em;
}
.embed .embed-head::before, .embed .embed-head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 110%;
  background-color: currentColor;
  transform-origin: center;
}
.embed .embed-head::before {
  left: 0;
  transform: translateY(-50%) rotate(-35deg);
}
.embed .embed-head::after {
  right: 0;
  transform: translateY(-50%) rotate(35deg);
}
@media (min-width: 1024px) {
  .embed .embed-head .sp {
    display: none;
  }
}
@media (min-width: 1024px) {
  .embed .embed-head {
    padding: 0 1em;
  }
  .embed .embed-head::before, .embed .embed-head::after {
    height: 110%;
    width: 2px;
  }
  .embed .embed-head::before {
    transform: translateY(-50%) rotate(-35deg);
  }
  .embed .embed-head::after {
    transform: translateY(-50%) rotate(35deg);
  }
}
.embed .x-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.embed .x-wrapper .note {
  color: #fff;
  text-align: center;
}

.contact,
.guidelines,
.travel,
.sns {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-head,
.guidelines-head,
.travel-head,
.sns-head {
  background: #333;
  color: #fff;
  font-size: min(4.8309178744vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 1em;
  margin: 0 auto;
}

.contact-link,
.travel-link,
.guidelines-link {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 5px;
  text-align: center;
  font-size: min(3.8647342995vw, 1rem);
}

.sns-link {
  background-color: #fff;
  padding: 30px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-link__url {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 20vw;
  background: #000;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
}
.sns-link__url::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/sns/logo.svg") no-repeat center center;
  background-size: 50% auto;
}
@media (min-width: 1024px) {
  .sns-link__url {
    width: 80px;
    height: 80px;
    transition: 0.3s;
  }
  .sns-link__url:hover {
    transform: scale(1.2);
  }
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9be2fe;
  margin-bottom: 0;
  overflow: hidden;
  background-image: url(../images/hero/aozora.webp);
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  animation: bg-sora 60s linear infinite;
}
@media (min-width: 1024px) {
  .hero {
    background-position: center bottom;
  }
}

@keyframes bg-sora {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
.hero__container {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  aspect-ratio: 1560/3000;
}
@media (min-width: 1024px) {
  .hero__container {
    aspect-ratio: 16/9;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-x: visible;
  z-index: 1;
}

.hero__bg-picture,
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow-x: visible;
}

.hero__bg-picture {
  z-index: 2;
  mix-blend-mode: overlay;
}

.hero__bg-img {
  z-index: 2;
  opacity: 0;
  filter: blur(8px);
  transition: none;
}

.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  transition: 0.6s opacity cubic-bezier(0.41, 0.67, 0.62, 0.99), 0.7s;
}

body.is-hero-start .hero__inner {
  transform: scale(1);
  opacity: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .hero__img {
    overflow-x: visible;
  }
}

.hero__content {
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__content {
    top: -30px;
  }
}

.hero__title {
  margin: 0;
  width: 65%;
}
@media (min-width: 1024px) {
  .hero__title {
    width: 25%;
  }
}

.hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

:root {
  --colorMarker: #fff555;
  --colorMarkerB: rgba(241, 214, 252, 1);
}

span.markerAnim {
  background: linear-gradient(to right, var(--colorMarker) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: 1s all cubic-bezier(0.41, 0.67, 0.62, 0.99) 0s;
  padding-bottom: 0;
}

span.markerAnim.is-animated {
  background-position: 0% 0;
}

span.markerAnim.markerB {
  background: linear-gradient(to right, var(--colorMarkerB) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 1em;
  background-position: 100% 0.9em;
  transition: 1.5s all cubic-bezier(0.41, 0.67, 0.62, 0.99) 0.8s;
  padding-bottom: 0.1em;
}

span.markerAnim.markerB.is-animated {
  background-position: 0% 0.9em;
}

html.is-modal-open {
  overflow: hidden;
}

body.is-modal-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

body.is-modal-open .menu-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-rows: 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(238, 238, 200);
  border: 0;
  padding: 0;
}

.modal__frame {
  position: relative;
  z-index: 1;
  height: auto;
  margin: 0;
  background: transparent;
  filter: drop-shadow(0 4px 6px rgba(24, 24, 20, 0.18));
}

@media (max-width: 1024px) {
  .modal__frame {
    min-height: 100vh;
  }
}
.modal__content {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  background: #222;
  border-radius: 0;
}

.modal__nav {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10001;
}
@media (min-width: 1024px) {
  .modal__nav {
    top: 50%;
  }
}

.modal__nav button {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .modal__nav button {
    margin: 0 8px;
  }
}

.modal__nav button:hover {
  transform: scale(1.08);
}

.modal__nav #prev::before,
.modal__nav #next::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform-origin: center;
}

.modal__nav #prev::before {
  transform: rotate(-135deg);
}

.modal__nav #next::before {
  transform: rotate(45deg);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  transform: none;
  z-index: 10002;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

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

.modal__close:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

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

@media (min-width: 768px) and (max-width: 1023.98px) {
  .modal__frame {
    width: 100vw;
    height: auto;
  }
  .modal__content {
    background: #fffff0;
  }
  .modal__nav button {
    width: 48px;
    height: 48px;
    margin: 0 12px;
  }
}
@media (min-width: 1024px) {
  .modal__frame {
    width: min(92vw, 1440px, 135vh);
    aspect-ratio: 420/280;
    height: auto;
    min-height: 0;
    margin: auto;
  }
  .modal__content {
    width: 100%;
    height: 100%;
    background: transparent;
    clip-path: inset(0 50% 0 50%);
    opacity: 1;
    transition: clip-path 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
    will-change: clip-path, opacity;
  }
  .modal.is-open .modal__content {
    clip-path: inset(0 0 0 0);
    transition-delay: 0.6s;
  }
  #modal-stage {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .modal__stage {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .modal__nav {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
  .modal__nav #prev {
    transform: translateX(-100%);
  }
  .modal__nav #next {
    transform: translateX(100%);
  }
  .modal__nav button {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0);
  }
  .modal__close {
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__content {
    clip-path: inset(0);
    transition: none;
    opacity: 1;
  }
}
.modal__stage {
  position: relative;
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100vh;
}
@media (min-width: 1024px) {
  .modal__stage {
    overflow-y: hidden;
  }
}
.modal__stage .modal__character {
  display: none;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
  height: auto;
  position: relative;
}
.modal__stage .modal__character.is-active {
  display: flex;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character {
    flex-direction: row;
    align-items: flex-end;
    height: 100%;
  }
}
.modal__stage .modal__character .modal__bg-base {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}
.modal__stage .modal__character .modal__bg-base img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top left;
     object-position: top left;
}
.modal__stage .modal__character .modal__character-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-bg {
    opacity: 1;
  }
}
.modal__stage .modal__character .modal__character-bg .modal-pic-bg--pattern {
  opacity: 1 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: bottom center;
     object-position: bottom center;
  z-index: 1;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-bg .modal-pic-bg--pattern {
    z-index: 0;
  }
}
.modal__stage .modal__character .modal__character-bg .modal-pic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 0.8s ease 0.2s;
  -o-object-position: 30% center;
     object-position: 30% center;
  will-change: opacity;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-bg .modal-pic-bg {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.modal__stage .modal__character .modal__character-body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-body {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}
.modal__stage .modal__character .modal__character-data,
.modal__stage .modal__character .modal__character-pic__container {
  position: relative;
  z-index: 1;
}
.modal__stage .modal__character .modal-serif {
  position: absolute;
  width: 17%;
  top: 4%;
  left: 5%;
  z-index: 3;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal-serif {
    width: 9%;
    top: 3%;
    left: 3%;
  }
}
.modal__stage .modal__character .modal__character-pic__container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/4;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-pic__container {
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 30%);
  }
}
.modal__stage .modal__character .modal__character-pic__container .modal__character-pic {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal__stage .modal__character .modal__character-pic__container .modal__character-pic .modal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  transform: translateY(0);
  will-change: opacity, transform;
}
.modal__stage .modal__character .modal__character-pic__container .modal__character-pic .modal-img.is-animating {
  animation: modal-img-pop 0.35s ease-in-out 1;
}
.modal__stage .modal__character .modal__character-data {
  width: 100%;
  padding: 4% 4% 15vh;
  background: rgba(255, 255, 255, 0.9);
  background-image: url("../images/characters/characters-gridline.webp");
  background-repeat: repeat;
  background-size: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-data {
    position: absolute;
    width: 96%;
    height: auto;
    padding: 2%;
    margin: 2%;
    gap: 10px;
  }
}
.modal__stage .modal__character .modal__character-data .modal-name {
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-data .modal-name {
    width: 70%;
    height: 60px;
  }
}
.modal__stage .modal__character .modal__character-data .modal-name img {
  height: 100%;
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.modal__stage .modal__character .modal__character-data .modal-area-group {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 4px;
}
.modal__stage .modal__character .modal__character-data .modal-area-group .modal-area-title {
  background: #222;
  font-size: 2.8985507246vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  border-radius: 99px;
  padding: 0.25em 1em;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-data .modal-area-group .modal-area-title {
    font-size: 1rem;
  }
}
.modal__stage .modal__character .modal__character-data .modal-area-group .modal-area {
  font-size: min(4.347826087vw, 1.1875rem);
  font-weight: 900;
  color: #222;
  line-height: 1;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-data .modal-area-group .modal-area {
    width: 70%;
  }
}
.modal__stage .modal__character .modal__character-data .modal-area-group .modal-area::before {
  content: "・・・";
  font-weight: 500;
  margin-right: 0.25em;
}
.modal__stage .modal__character .modal__character-data .modal-desc {
  font-size: min(4.347826087vw, 1.125rem);
  font-weight: 700;
  color: #333;
  line-height: 1.75;
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .modal__stage .modal__character .modal__character-data .modal-desc {
    width: 70%;
    font-size: min(1.2cqw, 1.0625rem);
    margin-top: 0;
  }
}
.modal__stage .modal__character.is-uniform .modal-pic-bg--uniform {
  opacity: 1;
}
.modal__stage .modal__character.is-uniform .modal-pic-bg--casual {
  opacity: 0;
}
.modal__stage .modal__character.is-uniform .modal-img--uniform {
  opacity: 1;
}
.modal__stage .modal__character.is-uniform .modal-img--casual {
  opacity: 0;
  pointer-events: none;
}
.modal__stage .modal__character.is-casual .modal-pic-bg--uniform {
  opacity: 0;
}
.modal__stage .modal__character.is-casual .modal-pic-bg--casual {
  opacity: 1;
}
.modal__stage .modal__character.is-casual .modal-img--uniform {
  opacity: 0;
  pointer-events: none;
}
.modal__stage .modal__character.is-casual .modal-img--casual {
  opacity: 1;
}

@keyframes modal-img-pop {
  from {
    opacity: 0.5;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__character-pic__container .modal-img.is-animating {
    animation: none;
  }
}
.modal__toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  margin: 0 2%;
}
@media (min-width: 1024px) {
  .modal__toggle {
    right: 0;
    bottom: 20%;
    margin-right: 6%;
  }
}

.wear-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.wear-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #231815;
  border-radius: 50%;
  transform: translate(2%, 3%);
  z-index: -1;
}

.wear-toggle__badge {
  width: 15vw;
  position: absolute;
  left: 0;
  transform: translate(-8vw, -8vw);
  z-index: 2;
}
@media (min-width: 1024px) {
  .wear-toggle__badge {
    width: 70px;
    transform: translate(-35px, 85px);
  }
}

.wear-toggle__thumb {
  width: 24vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-left: -6px;
}
@media (min-width: 1024px) {
  .wear-toggle__thumb {
    width: 120px;
    height: auto;
  }
}

.modal-pic-bg--pattern {
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#hokkaido .modal__bg-base,
#aomori .modal__bg-base {
  background-image: linear-gradient(135deg, rgba(25, 170, 49, 0.25) 0%, rgba(25, 170, 49, 0.25) 40%, rgba(25, 170, 49, 0.4) 40%, rgba(25, 170, 49, 0.4) 100%);
}
@media (min-width: 1024px) {
  #hokkaido .modal__bg-base,
  #aomori .modal__bg-base {
    background-image: linear-gradient(165deg, rgba(25, 170, 49, 0.25) 0%, rgba(25, 170, 49, 0.25) 40%, rgba(25, 170, 49, 0.4) 40%, rgba(25, 170, 49, 0.4) 100%);
  }
}
#hokkaido .modal-area-group .modal-area-title,
#aomori .modal-area-group .modal-area-title {
  background: #19aa31;
}
#hokkaido .modal-area-group .modal-area,
#aomori .modal-area-group .modal-area {
  color: #19aa31;
}

#saitama .modal__bg-base,
#tokyo .modal__bg-base,
#yokohama .modal__bg-base {
  background-image: linear-gradient(135deg, rgba(255, 86, 169, 0.25) 0%, rgba(255, 86, 169, 0.25) 40%, rgba(255, 86, 169, 0.4) 40%, rgba(255, 86, 169, 0.4) 100%);
}
@media (min-width: 1024px) {
  #saitama .modal__bg-base,
  #tokyo .modal__bg-base,
  #yokohama .modal__bg-base {
    background-image: linear-gradient(165deg, rgba(255, 86, 169, 0.25) 0%, rgba(255, 86, 169, 0.25) 40%, rgba(255, 86, 169, 0.4) 40%, rgba(255, 86, 169, 0.4) 100%);
  }
}
#saitama .modal-area-group .modal-area-title,
#tokyo .modal-area-group .modal-area-title,
#yokohama .modal-area-group .modal-area-title {
  background: #ff56a9;
}
#saitama .modal-area-group .modal-area,
#tokyo .modal-area-group .modal-area,
#yokohama .modal-area-group .modal-area {
  color: #ff56a9;
}

#fukui .modal__bg-base,
#nagoya .modal__bg-base {
  background-image: linear-gradient(135deg, rgba(29, 101, 219, 0.25) 0%, rgba(29, 101, 219, 0.25) 40%, rgba(29, 101, 219, 0.4) 40%, rgba(29, 101, 219, 0.4) 100%);
}
@media (min-width: 1024px) {
  #fukui .modal__bg-base,
  #nagoya .modal__bg-base {
    background-image: linear-gradient(165deg, rgba(29, 101, 219, 0.25) 0%, rgba(29, 101, 219, 0.25) 40%, rgba(29, 101, 219, 0.4) 40%, rgba(29, 101, 219, 0.4) 100%);
  }
}
#fukui .modal-area-group .modal-area-title,
#nagoya .modal-area-group .modal-area-title {
  background: #1d65db;
}
#fukui .modal-area-group .modal-area,
#nagoya .modal-area-group .modal-area {
  color: #1d65db;
}

#kyoto .modal__bg-base,
#osaka .modal__bg-base {
  background-image: linear-gradient(135deg, rgba(27, 176, 200, 0.25) 0%, rgba(27, 176, 200, 0.25) 40%, rgba(27, 176, 200, 0.4) 40%, rgba(27, 176, 200, 0.4) 100%);
}
@media (min-width: 1024px) {
  #kyoto .modal__bg-base,
  #osaka .modal__bg-base {
    background-image: linear-gradient(165deg, rgba(27, 176, 200, 0.25) 0%, rgba(27, 176, 200, 0.25) 40%, rgba(27, 176, 200, 0.4) 40%, rgba(27, 176, 200, 0.4) 100%);
  }
}
#kyoto .modal-area-group .modal-area-title,
#osaka .modal-area-group .modal-area-title {
  background: #1bb0c8;
}
#kyoto .modal-area-group .modal-area,
#osaka .modal-area-group .modal-area {
  color: #1bb0c8;
}

#hiroshima .modal__bg-base,
#kagawa .modal__bg-base {
  background-image: linear-gradient(135deg, rgba(76, 200, 76, 0.25) 0%, rgba(76, 200, 76, 0.25) 40%, rgba(76, 200, 76, 0.4) 40%, rgba(76, 200, 76, 0.4) 100%);
}
@media (min-width: 1024px) {
  #hiroshima .modal__bg-base,
  #kagawa .modal__bg-base {
    background-image: linear-gradient(165deg, rgba(76, 200, 76, 0.25) 0%, rgba(76, 200, 76, 0.25) 40%, rgba(76, 200, 76, 0.4) 40%, rgba(76, 200, 76, 0.4) 100%);
  }
}
#hiroshima .modal-area-group .modal-area-title,
#kagawa .modal-area-group .modal-area-title {
  background: #4cc84c;
}
#hiroshima .modal-area-group .modal-area,
#kagawa .modal-area-group .modal-area {
  color: #4cc84c;
}

#fukuoka .modal__bg-base,
#oita .modal__bg-base,
#okinawa .modal__bg-base {
  background-image: linear-gradient(135deg, rgba(158, 95, 209, 0.25) 0%, rgba(158, 95, 209, 0.25) 40%, rgba(158, 95, 209, 0.4) 40%, rgba(158, 95, 209, 0.4) 100%);
}
@media (min-width: 1024px) {
  #fukuoka .modal__bg-base,
  #oita .modal__bg-base,
  #okinawa .modal__bg-base {
    background-image: linear-gradient(165deg, rgba(158, 95, 209, 0.25) 0%, rgba(158, 95, 209, 0.25) 40%, rgba(158, 95, 209, 0.4) 40%, rgba(158, 95, 209, 0.4) 100%);
  }
}
#fukuoka .modal-area-group .modal-area-title,
#oita .modal-area-group .modal-area-title,
#okinawa .modal-area-group .modal-area-title {
  background: #9e5fd1;
}
#fukuoka .modal-area-group .modal-area,
#oita .modal-area-group .modal-area,
#okinawa .modal-area-group .modal-area {
  color: #9e5fd1;
}

.bg-hokkaido {
  background-color: #19aa31 !important;
}

.bg-tohoku {
  background-color: #19aa31 !important;
}

.bg-kanto {
  background-color: #ff56a9 !important;
}

.bg-chubu {
  background-color: #1d65db !important;
}

.bg-kinki {
  background-color: #1bb0c8 !important;
}

.bg-chugoku {
  background-color: #4cc84c !important;
}

.bg-shikoku {
  background-color: #4cc84c !important;
}

.bg-kyushu {
  background-color: #9e5fd1 !important;
}

.txt-hokkaido {
  color: #19aa31 !important;
}

.txt-tohoku {
  color: #19aa31 !important;
}

.txt-kanto {
  color: #ff56a9 !important;
}

.txt-chubu {
  color: #1d65db !important;
}

.txt-kinki {
  color: #1bb0c8 !important;
}

.txt-chugoku {
  color: #4cc84c !important;
}

.txt-shikoku {
  color: #4cc84c !important;
}

.txt-kyushu {
  color: #9e5fd1 !important;
}

.news {
  padding: 40px 4%;
  background: linear-gradient(30deg, rgb(178, 246, 254), rgb(241, 214, 252));
}
.news .news-head {
  width: 70%;
  margin: 0 auto 30px;
}
@media (min-width: 1024px) {
  .news .news-head {
    max-width: 400px;
    margin: 0 auto 50px;
  }
}

.news-list {
  max-width: 1200px;
  margin: 0 auto;
}
.news-list__item {
  background: #fff;
  margin-bottom: 1.5rem;
  border-radius: 30px;
}

.news-list--top .news-list__item:nth-child(n+4) {
  display: none;
}

.news-unit {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .news-unit {
    flex-direction: row;
    align-items: center;
  }
}
.news-unit dt {
  font-size: min(3.8647342995vw, 1rem);
  font-weight: 600;
  margin-right: 2rem;
}
.news-unit dd {
  font-size: min(4.8309178744vw, 1.125rem);
  margin-top: 0.25em;
}
@media (min-width: 1024px) {
  .news-unit dd {
    margin-top: 0;
  }
}
.news-unit dd a {
  color: #2f00ff;
  transition: opacity 0.3s;
}
.news-unit dd a:hover {
  opacity: 0.5;
}

.news-index {
  max-width: 1500px;
  text-align: right;
  margin: 0 auto;
}
.news-index .news-index__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.5em;
  border-radius: 999px;
  border: 1px solid #333;
  background-color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
}

.news-full {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.news-full.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.news-full__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(30deg, rgb(178, 246, 254), rgb(241, 214, 252));
}

.news-full__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.news-full__header {
  width: 100%;
  max-width: 1500px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.news-full__title {
  width: 70%;
  max-width: 400px;
  margin: 0 auto 20px;
}
@media (min-width: 1024px) {
  .news-full__title {
    margin: 0 auto 40px;
  }
}

.news-full__close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10002;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (min-width: 1024px) {
  .news-full__close {
    right: 32px;
  }
}

.news-full__close::before,
.news-full__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.news-full__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-full__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-full__close:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.news-full__close:hover::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-full__body {
  flex: 1;
  padding: 24px 4%;
  overflow: auto;
}

.news-full__body .news-list {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

body.is-news-full-open {
  overflow: hidden;
}

.news-article {
  position: relative;
  padding: 3.8647342995vw;
}
@media (min-width: 1024px) {
  .news-article {
    padding: min(7.729468599vw, 2rem);
  }
}
.news-article__date {
  position: absolute;
  top: 0;
  left: 3.8647342995vw;
  background: #ff56a9;
  color: #fff;
  font-size: min(2.8985507246vw, 0.75rem);
  padding: min(0.9661835749vw, 0.25rem) min(1.9323671498vw, 0.5rem);
}
@media (min-width: 1024px) {
  .news-article__date {
    left: min(7.729468599vw, 2rem);
    font-size: min(3.8647342995vw, 1rem);
    padding: min(1.9323671498vw, 0.5rem) min(3.8647342995vw, 1rem);
  }
}
.news-article__title {
  font-size: min(5.7971014493vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 1.25rem 0 0;
  display: inline-block;
}
@media (min-width: 1024px) {
  .news-article__title {
    margin: 1.875rem 0 0;
  }
}
.news-article__body p {
  font-size: min(4.347826087vw, 1.125rem);
  line-height: 1.8;
  text-align: justify;
  margin: 1rem 0 0;
}
.news-article__body p span.red {
  color: #e40065;
}
.news-article figure {
  margin: 1rem auto 0;
  text-align: center;
}
.news-article figure img {
  margin: 0 auto;
}
.news-article figure img.img-small {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .news-article figure img.img-small {
    width: 50%;
  }
}
.news-article figure figcaption {
  font-size: min(3.8647342995vw, 1rem);
  margin: 0.5rem 0 0;
}
.news-article a {
  font-size: min(4.347826087vw, 1.125rem);
  line-height: 1.8;
  margin: 1rem 0 0;
  color: rgb(0, 111, 214);
  text-decoration: underline;
  word-break: break-all;
}
.news-article a:hover {
  text-decoration: none;
}

body.is-menu-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.menu-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-btn__line {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-btn__line:nth-child(1) {
  transform: translateY(-6px);
}

.menu-btn__line:nth-child(2) {
  transform: translateY(0);
}

.menu-btn__line:nth-child(3) {
  transform: translateY(6px);
}

.menu-btn.is-active .menu-btn__line:nth-child(1) {
  transform: rotate(45deg);
}

.menu-btn.is-active .menu-btn__line:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-active .menu-btn__line:nth-child(3) {
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  background: rgba(70, 115, 184, 0.95);
  display: grid;
  place-items: center;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease-out, opacity 0.25s ease-out, visibility 0s linear 0.35s;
}
@media (min-width: 1024px) {
  .menu {
    height: 80px;
  }
}

.menu.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s ease-out, opacity 0.25s ease-out;
}

.menu__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .menu__list {
    flex-direction: row;
    gap: 2em;
  }
}

.menu__list li {
  margin-bottom: 4vh;
}
@media (min-width: 1024px) {
  .menu__list li {
    margin-bottom: 0;
  }
}

.menu__list a {
  text-decoration: none;
  font-size: 6vw;
  font-weight: 900;
  color: #fff;
}
@media (min-width: 1024px) {
  .menu__list a {
    font-size: 1.125rem;
  }
}

/* FOOTER ------------------------------- */
.g-footer {
  width: 100%;
  background: #ffc736;
  margin: 0 auto;
  padding: 60px 5% 20px;
  text-align: center;
}

.g-footer_menu {
  max-width: 900px;
  margin: 0 auto 50px;
}

.g-footer_menu_lst {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.g-footer_menu_lst_item {
  font-size: 0.875em;
  font-weight: 700;
  color: #231815;
  padding: 0 20px;
  margin-bottom: 1em;
}
.g-footer_menu_lst_item a {
  text-decoration: none;
}
.g-footer_menu_lst_item a:hover {
  text-decoration: underline;
}

.g-footer_copyright {
  font-size: 0.75em;
  line-height: 1;
  color: #231815;
}

@media screen and (max-width: 430px) {
  .g-footer_menu_lst {
    flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  #page-top {
    position: fixed;
    bottom: 30px;
    right: 4%;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 960px) {
  #page-top {
    position: fixed;
    bottom: 50px;
    right: 4%;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */