@charset "UTF-8";
/*--------------- reset ---------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, img, menu, nav, section {
  display: block;
}

ul, li {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent none;
  box-sizing: border-box;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
}

select::-ms-expand {
  display: none;
}

input[type=submit], input[type=checkbox], input[type=radio], input[type=button], button, select {
  cursor: pointer;
}

/*--------------- base ---------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #1E1E1E;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  word-wrap: normal;
  overflow-wrap: normal;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*--------------- block（layout） ---------------*/
.block {
  padding-block: 12rem;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.block--bg-blue {
  background-color: #1B5D9F;
  background-image: url("../img/bg_blue.webp");
}
.block--bg-blue .block-title, .block--bg-blue .block-lead {
  color: #fff;
}
.block--bg-white {
  background-color: #FEFCF8;
  background-image: url("../img/bg_white.webp");
}
.block--bg-white .block-title {
  color: #1B5D9F;
}

/*--------------- container（layout） ---------------*/
.container {
  position: relative;
  margin-inline: auto;
  padding-inline: 2%;
  max-width: calc(1080px + 4%);
}
@media screen and (max-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

/*--------------- button（component） ---------------*/
/*--------------- title（component） ---------------*/
.block-title h3 {
  font-size: clamp(2.8rem, 7.4666666667vw, 3.6rem);
  line-height: 1.4;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .block-title h3 {
    line-height: 1.6;
  }
}

.box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 4rem;
  color: #1B5D9F;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box-title {
    gap: 2rem;
  }
}
.box-title::before, .box-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #1B5D9F;
}
.box-title span {
  font-size: clamp(2.2rem, 5.8666666667vw, 3rem);
}
.box-title small {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.75em;
}
@media screen and (max-width: 768px) {
  .box-title small {
    margin-top: 0.8rem;
  }
}

/*--------------- lead（component） ---------------*/
.block-lead {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.box-lead {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

/*--------------- label（component） ---------------*/
.title-label {
  display: inline-block;
  padding: 0.4rem 1.4rem 0.2rem;
  font-size: clamp(1.6rem, 4.2666666667vw, 2rem);
  text-align: center;
  font-weight: 500;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
}
.title-label--bg-blue {
  color: #fff;
  background-color: #1B5D9F;
}
.title-label--bg-white {
  color: #1B5D9F;
  background-color: #fff;
}

/*--------------- footer（object） ---------------*/
.footer {
  background-color: #1B5D9F;
  background-image: url("../img/bg_blue.webp");
}
.footer .copyright {
  padding: 1.6rem;
  color: #fff;
  font-size: clamp(1rem, 2.6666666667vw, 1.2rem);
  text-align: center;
  border-top: 1px solid #fff;
}

/*--------------- anchor-link（object） ---------------*/
.anchor-link__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .anchor-link__list {
    gap: 0.4rem;
  }
}
@media screen and (min-width: 768px) {
  .anchor-link__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .anchor-link__list {
    gap: 2rem;
  }
}
.anchor-link__item a {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  color: #fff;
  text-align: center;
  background-color: #1B5D9F;
}
@media screen and (max-width: 768px) {
  .anchor-link__item a {
    height: 6rem;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .anchor-link__item a {
    padding: 0.8rem 0.4rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .anchor-link__item a {
    padding-top: 1rem;
  }
}
.anchor-link__item a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -0.4rem;
  left: 50%;
  width: 1rem;
  aspect-ratio: 3/5;
  background-image: url("../img/ico_arrow_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .anchor-link__item a::after {
    bottom: -0.8rem;
  }
}
@media (hover: hover) {
  .anchor-link__item a {
    transition: 0.2s;
  }
  .anchor-link__item a:hover {
    opacity: 0.8;
  }
  .anchor-link__item a:hover::after {
    bottom: -0.8rem;
  }
}
.anchor-link__number {
  font-size: 1.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .anchor-link__number {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .anchor-link__number {
    margin-bottom: 0.8rem;
  }
}
.anchor-link__text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .anchor-link__text {
    font-size: 1.4rem;
    line-height: 1.1;
  }
}
@media screen and (min-width: 992px) {
  .anchor-link__text {
    font-size: 1.6rem;
  }
}

/*--------------- stamp-spot（object） ---------------*/
.stamp-spot {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .stamp-spot {
    gap: 2.8rem;
  }
}
.stamp-spot__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2.3rem;
  background-color: #fff;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .stamp-spot__item {
    gap: 1.6rem;
    flex-direction: column;
  }
}
.stamp-spot__image {
  position: relative;
  width: 35%;
  flex-shrink: 0;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .stamp-spot__image {
    width: 100%;
  }
}
.stamp-spot__image .place-logo {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  border: 1px solid #1B5D9F;
  max-width: 174px;
}
@media screen and (max-width: 768px) {
  .stamp-spot__image .place-logo {
    width: 48%;
    right: -0.8rem;
    bottom: -0.8rem;
    max-width: fit-content;
  }
}
.stamp-spot__label {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1.6rem;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.5rem);
  color: #fff;
  font-weight: 700;
  background-color: #D41619;
  border-radius: 50rem;
}
@media screen and (max-width: 768px) {
  .stamp-spot__label {
    margin-bottom: 0.8rem;
    padding: 0.5rem 1.6rem;
  }
}
.stamp-spot__name {
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 5.3333333333vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .stamp-spot__name {
    margin-bottom: 0.6rem;
  }
}
.stamp-spot__desc {
  font-size: clamp(1.4rem, 3.7333333333vw, 1.5rem);
  line-height: 1.8;
  line-break: strict;
}
.stamp-spot__address {
  margin-top: 2.2rem;
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
}
@media screen and (max-width: 768px) {
  .stamp-spot__address {
    margin-top: 1.2rem;
  }
}
.stamp-spot__address a {
  color: #1B5D9F;
  text-decoration: underline;
}
.stamp-spot__address a::before {
  content: "";
  display: inline-block;
  margin-right: 0.4rem;
  height: 1.2em;
  aspect-ratio: 4/5;
  background-image: url("../img/ico_map_pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  transform: translateY(1px);
}
@media (hover: hover) {
  .stamp-spot__address a:hover {
    text-decoration: none;
  }
}

/*--------------- character（object） ---------------*/
.character__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .character__list {
    gap: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .character__list {
    gap: 4rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .character__list {
    gap: 3.6rem;
  }
}
.character__item {
  position: relative;
  padding: 4rem 2.8rem;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  color: #fff;
  background-color: #2BA0BB;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .character__item {
    padding: 2.4rem 1.6rem;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .character__item {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .character__item {
    max-width: inherit;
    width: calc((100% - 3.6rem) / 2);
  }
}
.character__item:nth-child(1) {
  background-image: url("../img/img_fude_stroke_01.svg");
  background-position: left -13% bottom -35%;
  background-size: 54%;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(1) {
    background-position: left -37% bottom -35%;
  }
}
.character__item:nth-child(1) .character__image {
  top: 50%;
  left: 3.2rem;
  width: 38%;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(1) .character__image {
    top: calc(50% - 0.8rem);
    left: 1.6em;
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(1) .character__text {
    grid-row-end: -1;
    grid-column: 5/-1;
  }
}
@media screen and (min-width: 768px) {
  .character__item:nth-child(1) .character__text {
    grid-row: 1;
    grid-column: 5/-1;
  }
}
.character__item:nth-child(1) .character__name-en {
  right: 0;
  bottom: -1rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(1) .character__name-en {
    top: 0;
    bottom: inherit;
  }
}
.character__item:nth-child(2) {
  background-image: url("../img/img_fude_stroke_02.svg");
  background-position: right -38% bottom 8%;
  background-size: 61%;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(2) {
    background-position: right -52% bottom 25%;
    background-size: 62%;
  }
}
.character__item:nth-child(2) .character__image {
  top: calc(50% + 1.4rem);
  right: 3rem;
  width: 32%;
  max-width: 165px;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(2) .character__image {
    top: calc(50% + 0.4rem);
    right: 2rem;
    width: 35%;
  }
}
.character__item:nth-child(2) .character__text {
  max-width: 308px;
  grid-row-end: -1;
}
@media screen and (min-width: 768px) {
  .character__item:nth-child(2) .character__text {
    grid-column: 1/span 7;
  }
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(2) .character__text {
    grid-column: 1/span 6;
  }
}
.character__item:nth-child(2) .character__name-en {
  left: 0;
  top: 0;
}
.character__item:nth-child(3) {
  background-image: url("../img/img_fude_stroke_03.svg");
  background-position: right bottom 15%;
  background-size: 48%;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(3) {
    background-position: left -24% top -65%;
    background-size: 50%;
  }
}
.character__item:nth-child(3) .character__image {
  right: -0.2rem;
  top: calc(50% + 3.5rem);
  width: 48%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(3) .character__image {
    right: inherit;
    left: -2.6rem;
    top: calc(50% + 1rem);
    width: 53%;
  }
}
.character__item:nth-child(3) .character__text {
  grid-row-end: -1;
}
@media screen and (min-width: 768px) {
  .character__item:nth-child(3) .character__text {
    grid-column: 1/span 6;
  }
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(3) .character__text {
    grid-column: 5/-1;
  }
}
.character__item:nth-child(3) .character__name-en {
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(3) .character__name-en {
    left: inherit;
    right: 0;
  }
}
.character__item:nth-child(4) {
  background-image: url("../img/img_fude_stroke_04.svg");
  background-position: left -6% bottom 8%;
  background-size: 57%;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(4) {
    background-position: right -27% bottom 44%;
    background-size: 60%;
  }
}
.character__item:nth-child(4) .character__image {
  top: calc(50% + 2.5rem);
  left: 3rem;
  width: 34%;
  max-width: 180px;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(4) .character__image {
    top: 50%;
    left: inherit;
    right: 1rem;
    width: 37%;
  }
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(4) .character__text {
    grid-row: -1;
    grid-column: 1/7;
  }
}
@media screen and (min-width: 768px) {
  .character__item:nth-child(4) .character__text {
    grid-row: 1;
    grid-column: 5/-1;
  }
}
.character__item:nth-child(4) .character__name-en {
  right: 0;
  bottom: -1rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .character__item:nth-child(4) .character__name-en {
    right: inherit;
    bottom: inherit;
    top: 0;
    left: 0;
  }
}
.character__image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.character__text {
  z-index: 2;
}
.character__name {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 5.3333333333vw, 2.6rem);
  font-weight: 700;
  text-shadow: 0 0 3px #2BA0BB;
}
.character__desc {
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  line-height: 1.8;
  text-align: justify;
  text-shadow: 0 0 3px #2BA0BB;
}
.character__name-en {
  position: absolute;
  font-size: clamp(8rem, 21.3333333333vw, 10.5rem);
  font-family: "Bebas Neue", sans-serif;
  opacity: 0.1;
  line-height: 0.8;
}

/*--------------- team（object） ---------------*/
.team__headline {
  margin-bottom: 4rem;
  color: #1B5D9F;
  font-size: clamp(2.4rem, 6.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .team__headline {
    margin-bottom: 2.8rem;
  }
}
.team__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .team__list {
    justify-content: center;
    gap: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .team__list {
    gap: 2rem;
    max-width: 450px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .team__list {
    gap: 0.6rem;
    max-width: inherit;
  }
}
.team__item {
  position: relative;
  padding: 2rem;
  aspect-ratio: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .team__item {
    width: 21.5rem;
  }
}
@media screen and (min-width: 768px) {
  .team__item {
    width: 21.5rem;
  }
}
@media screen and (min-width: 992px) {
  .team__item {
    width: calc((100% - 1.8rem) / 4);
  }
}
.team__item-label {
  position: absolute;
  top: 4rem;
  left: 50%;
  padding: 0.4rem 1.2rem;
  color: #fff;
  font-size: 1.4rem;
  background-color: #1B5D9F;
  transform: translateX(-50%);
}
.team__item-text {
  color: #1B5D9F;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  transform: translateY(1.2rem);
}
.team__item-text span {
  display: inline-block;
}

/*--------------- creator（object） ---------------*/
.creator {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .creator {
    flex-direction: column;
    gap: 2.8rem;
  }
}
.creator__image {
  flex-shrink: 0;
  width: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
  .creator__image {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .creator__text {
    width: 100%;
  }
}
.creator__head {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .creator__head {
    margin-bottom: 2.8rem;
    text-align: center;
  }
}
.creator__name {
  margin-bottom: 0.4rem;
  font-size: clamp(2rem, 5.3333333333vw, 2.4rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .creator__name {
    margin-bottom: 0.8rem;
  }
}
.creator__major {
  font-size: 1.4rem;
  line-height: 1.8;
}
.creator__detail {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .creator__detail {
    margin-bottom: 2.4rem;
  }
}
.creator__detail:last-child {
  margin-bottom: 0;
}
.creator__detail dt {
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.creator__detail dd {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .creator__detail dd {
    font-size: 1.4rem;
  }
}

/*--------------- box（object） ---------------*/
.box {
  position: relative;
  background-color: #fff;
  border: 1px solid #1B5D9F;
}
.box--corner-pin::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .box--corner-pin::before {
    left: 10px;
    top: 10px;
    width: 8px;
  }
}
.box--corner-pin::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .box--corner-pin::after {
    right: 10px;
    top: 10px;
    width: 8px;
  }
}
.box .box-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .box .box-inner {
    padding: 4.8rem 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .box .box-inner {
    padding: 5.4rem 4%;
  }
}
@media screen and (min-width: 1200px) {
  .box .box-inner {
    padding: 6rem 10rem;
  }
}
.box .box-inner::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .box .box-inner::before {
    left: 10px;
    bottom: 10px;
    width: 8px;
  }
}
.box .box-inner::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .box .box-inner::after {
    right: 10px;
    bottom: 10px;
    width: 8px;
  }
}

/*--------------- table（object） ---------------*/
.table__item {
  display: flex;
  gap: 4rem;
  width: 100%;
  padding-block: 2rem;
  font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
  line-height: 1.6;
  border-bottom: 1px dashed #1B5D9F;
}
.table__item:first-child {
  border-top: 1px dashed #1B5D9F;
}
@media screen and (max-width: 768px) {
  .table__item {
    flex-direction: column;
    gap: 0.8rem;
    padding-block: 1.2rem;
  }
}
.table__headline {
  width: 10rem;
  color: #1B5D9F;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .table__headline {
    width: fit-content;
  }
}

/*--------------- top（page） ---------------*/
.page-top .main {
  position: relative;
}
.page-top .main .first-view {
  position: relative;
  overflow: hidden;
}
.page-top .main .first-view__image {
  width: 100%;
}
.page-top .main .first-view__image img {
  object-fit: cover;
}
.page-top .main .block .block-head {
  margin-bottom: 6rem;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.page-top .main .block .block-head .block-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block .block-head .block-title {
    margin-bottom: 3.2rem;
  }
}
.page-top .main .block .block-head .title-label {
  margin-bottom: 1.2rem;
}
.page-top .main .block .box + .box {
  margin-top: 6rem;
}
.page-top .main .block .box-title {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block .box-title {
    margin-bottom: 4.8rem;
  }
}
.page-top .main .block .box-lead {
  margin-bottom: 4rem;
}
.page-top .main .block-first {
  background-image: url("../img/img_intro_bg_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-first {
    clip-path: inset(0);
    width: 100%;
    padding-block: 6rem 8rem;
  }
  .page-top .main .block-first::before {
    content: "";
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    background-image: url("../img/img_intro_bg_sp.webp");
    background-size: cover;
  }
}
.page-top .main .block-first .first-lead {
  margin-bottom: 10.8rem;
  font-size: clamp(2.2rem, 5.8666666667vw, 3.6rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-first .first-lead {
    margin-bottom: 8rem;
  }
}
.page-top .main .block-first .about {
  position: relative;
  margin-bottom: 6rem;
  padding: 4.8rem 8rem 4rem;
  background-color: #fff;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-first .about {
    margin-bottom: 2.8rem;
    padding: 4rem 2.4rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .page-top .main .block-first .about {
    padding: 4rem 4% 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .page-top .main .block-first .about {
    padding: 4.8rem 8rem 4rem;
  }
}
.page-top .main .block-first .about__title {
  position: absolute;
  top: -2.6rem;
  left: 50%;
  display: inline-block;
  padding: 1.4rem 2rem;
  color: #fff;
  font-size: clamp(1.6rem, 4.2666666667vw, 2rem);
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  background-color: #1B5D9F;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-first .about__title {
    top: -2.2rem;
  }
}
.page-top .main .block-first .about__text {
  font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
  font-weight: 500;
  line-height: 1.8;
}
.page-top .main .block-introduction {
  background-image: url("../img/bg_white_intro.webp") !important;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-introduction {
    padding-top: 8rem;
  }
}
@media screen and (min-width: 992px) {
  .page-top .main .block-introduction {
    padding-bottom: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-introduction .container {
    padding-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-introduction .block-head {
    margin-bottom: 10.2rem;
    padding-inline: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .page-top .main .block-introduction .block-head {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-introduction .block-title {
    margin-bottom: 4.8rem !important;
  }
}
.page-top .main .block-introduction .title-logo {
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-introduction .title-logo {
    width: 68%;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .block-head {
    margin-bottom: 4rem;
  }
}
.page-top .main .block-about-stamp-rally .event-date {
  margin-bottom: 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .event-date {
    width: 100%;
    margin-bottom: 6rem;
  }
}
.page-top .main .block-about-stamp-rally .event-date__inner {
  height: 6rem;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .event-date__inner {
    width: 100%;
    height: fit-content;
    flex-direction: column;
    padding-inline: 1.6rem;
  }
}
.page-top .main .block-about-stamp-rally .event-date__headline {
  padding: 0.6rem 4rem;
  font-size: clamp(1.4rem, 3.7333333333vw, 2rem);
  color: #1B5D9F;
  font-weight: 500;
  border-right: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .event-date__headline {
    width: 100%;
    padding: 0.6rem 0 0.8rem;
    border-right: none;
    border-bottom: 1px solid #1B5D9F;
  }
}
.page-top .main .block-about-stamp-rally .event-date__date {
  padding: 0.6rem 6rem;
  font-size: clamp(2rem, 5.3333333333vw, 2.4rem);
  color: #1B5D9F;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .event-date__date {
    padding: 1.2rem 0 1.6rem;
  }
}
.page-top .main .block-about-stamp-rally .event-date__date span {
  font-size: 75%;
}
.page-top .main .block-about-stamp-rally .prize__item {
  margin-bottom: 10rem;
  text-align: center;
}
.page-top .main .block-about-stamp-rally .prize__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize__item {
    margin-bottom: 5.2rem;
  }
}
.page-top .main .block-about-stamp-rally .prize__headline {
  display: inline-block;
  margin: 0 auto 1.2rem;
  padding: 0.6rem 2rem;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.8rem);
  color: #fff;
  background-color: #1B5D9F;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize__headline {
    margin: 0 auto 0.8rem;
    padding: 0.6rem 1.6rem;
  }
}
.page-top .main .block-about-stamp-rally .prize__title {
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 6.4vw, 3.6rem);
  color: #1B5D9F;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize__title {
    margin-bottom: 0.8rem;
  }
}
.page-top .main .block-about-stamp-rally .prize__title span {
  display: inline-block;
}
.page-top .main .block-about-stamp-rally .prize__desc {
  margin-bottom: 2.8rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize__desc {
    margin-bottom: 2.4rem;
  }
}
.page-top .main .block-about-stamp-rally .prize__info {
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.page-top .main .block-about-stamp-rally .prize__info em {
  font-style: normal;
  font-size: 170%;
  font-family: "Bebas Neue", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize__info em {
    font-size: 185%;
  }
}
.page-top .main .block-about-stamp-rally .prize__info .note {
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
}
.page-top .main .block-about-stamp-rally .prize-postcard {
  margin-top: 4.8rem;
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize-postcard {
    margin-top: 4rem;
    flex-direction: column;
    gap: 1.2rem;
  }
}
.page-top .main .block-about-stamp-rally .prize-postcard__item {
  border: 1px solid #D9D9D9;
}
.page-top .main .block-about-stamp-rally .prize-acrylstand {
  margin-top: 3.6rem;
  margin-inline: auto;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-about-stamp-rally .prize-acrylstand {
    margin-top: 2.8rem;
    width: 80%;
  }
}
.page-top .main .block-stamp-spot .stamp-spot-map {
  margin-bottom: 6rem;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .stamp-spot-map {
    margin-bottom: 4rem;
  }
}
.page-top .main .block-stamp-spot .stamp-spot {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .stamp-spot {
    margin-bottom: 2.8rem;
  }
}
.page-top .main .block-stamp-spot .box-lead {
  color: #1B5D9F;
  font-size: clamp(2rem, 5.3333333333vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .box-lead {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .page-top .main .block-stamp-spot .box-lead {
    margin-bottom: 6rem;
  }
}
.page-top .main .block-stamp-spot .step-guide-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide-intro {
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide-image {
    order: 2;
  }
}
.page-top .main .block-stamp-spot .step-guide-image .qr-code {
  max-width: 20rem;
  aspect-ratio: 1;
  border: 1px solid #1B5D9F;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide-image .qr-code {
    display: none;
  }
}
.page-top .main .block-stamp-spot .step-guide-image .dl_banner {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide-image .dl_banner {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: -1rem;
    max-width: 400px;
    height: 6rem;
  }
  .page-top .main .block-stamp-spot .step-guide-image .dl_banner a {
    display: block;
    height: 100%;
  }
  .page-top .main .block-stamp-spot .step-guide-image .dl_banner a img {
    width: auto;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
  }
}
.page-top .main .block-stamp-spot .step-guide-lead {
  font-size: clamp(2rem, 5.3333333333vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide-lead {
    margin-bottom: 0;
    order: 1;
  }
}
.page-top .main .block-stamp-spot .step-guide {
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  max-width: 640px;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide {
    gap: 2rem;
  }
}
.page-top .main .block-stamp-spot .step-guide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #1B5D9F;
  transform: translateX(-50%);
}
.page-top .main .block-stamp-spot .step-guide__item {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 0.8rem;
  color: #fff;
  background-color: #1B5D9F;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide__item {
    flex-direction: column;
    padding: 1rem 2rem 2rem;
  }
}
.page-top .main .block-stamp-spot .step-guide__number {
  padding-inline: 1.6rem;
  font-size: clamp(2rem, 5.3333333333vw, 3.2rem);
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide__number {
    margin-bottom: 1.6rem;
    padding: 0;
  }
}
.page-top .main .block-stamp-spot .step-guide__text {
  padding-inline: 2rem;
  min-height: 7.4rem;
  display: flex;
  align-items: center;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  line-height: 1.4;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-stamp-spot .step-guide__text {
    border-left: none;
    padding: 0;
    min-height: inherit;
    line-height: 1.6;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-exhibition .box-title:has(+ .box-lead) {
    margin-bottom: 3rem;
  }
}
.page-top .main .block-exhibition .exhibit-gallery.box-image {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-exhibition .exhibit-gallery.box-image {
    flex-direction: column;
  }
}
.page-top .main .block-exhibition .exhibit-gallery.box-image .box-image__item {
  aspect-ratio: 39/28;
  overflow: hidden;
}
.page-top .main .block-exhibition .exhibit-gallery.box-image .box-image__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-top .main .block-exhibition .original-goods.box-image {
  margin-top: 4rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-exhibition .original-goods.box-image {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-exhibition .original-goods.box-image .box-image__item {
    width: 50%;
  }
}
.page-top .main .block-exhibition .original-goods__price {
  margin-top: 4rem;
  font-size: clamp(2.4rem, 6.4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
}
.page-top .main .block-exhibition .original-goods__price span {
  font-size: 55%;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-exhibition .original-goods__price {
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .page-top .main .block-happi-collection .block-title {
    margin-bottom: 0;
  }
}
.page-top .main .block-happi-collection .block-title h3 span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-happi-collection .block-title h3 span {
    transform: translateY(-1.6rem);
  }
}
@media screen and (min-width: 768px) {
  .page-top .main .block-happi-collection .block-title h3 span {
    transform: translateY(-1rem);
  }
}
.page-top .main .block-happi-collection .team {
  margin-block: 6rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-happi-collection .team {
    margin-bottom: 4rem;
  }
}
.page-top .main .block-happi-collection .box-image {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-happi-collection .box-image {
    flex-direction: column;
  }
}
.page-top .main .block-ema .coming-soon {
  color: #1B5D9F;
  font-size: clamp(2.8rem, 7.4666666667vw, 3.6rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  text-align: center;
}
.page-top .main .block-ema .ema-info {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-ema .ema-info {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .page-top .main .block-ema .ema-info {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .page-top .main .block-ema .ema-info .table {
    width: calc(50% - 2rem);
  }
}
.page-top .main .block-ema .ema-info .table__item {
  gap: 0.2rem;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-top .main .block-ema .ema-info .table__item {
    gap: 0.8rem;
  }
}
.page-top .main .block-ema .ema-info .table__headline {
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .page-top .main .block-ema .ema-info__image {
    width: calc(50% - 2rem);
    flex-grow: 1;
  }
}
.page-top .page-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 6rem;
  aspect-ratio: 1;
  z-index: 2;
}
@media (hover: hover) {
  .page-top .page-top {
    transition: 0.2s;
  }
  .page-top .page-top:hover {
    transform: translateY(-4px);
  }
}

/*--------------- display ---------------*/
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/*--------------- text size ---------------*/
.text-xs {
  font-size: 60%;
}

.text-sm {
  font-size: 80%;
}

.text-lg {
  font-size: 120%;
}

.text-xl {
  font-size: 140%;
}

/*--------------- text weight ---------------*/
.text-bold {
  font-weight: 700;
}

/*--------------- link ---------------*/
.inline-link {
  color: #1B5D9F;
  text-decoration: underline;
}
@media (hover: hover) {
  .inline-link:hover {
    text-decoration: none;
  }
}

/*--------------- marker ---------------*/
.marker-yellow {
  background: linear-gradient(transparent 65%, #FAF163 65%);
}/*# sourceMappingURL=style.css.map */