@charset "utf-8";

/*===================================================
color setting
===================================================*/
:root {
  --yellow: #ffe100;
  --blue: #1db3db;
  --pink: #d4698e;
  --purple: #6354b0;
  --red: #e7242e;
  --orange: #e07f00;
  --green: #3ab483;
}


/*===================================================
base
===================================================*/
/* html,
body {
  font-size: 16px;
  font-family: var(--font-sansserif, sans-serif);
  line-height: 1.8;
  color: var(--text-color);
} */

.main-page {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 25px;
  font-weight: 600;
}

@media (max-width:767px) {
  .main-page {
    font-size: min(20px, 4vw);
  }
}

.main-page *,
.main-page *::before,
.main-page *::after,
.modal-bk,
.modal-bk * {
  box-sizing: border-box;
}

.main-page a {
  word-break: break-all;
}

.main-page img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* display */
@media (min-width:641px) {

  .sp,
  .spi {
    display: none;
  }

  .pc {
    display: block;
  }

  .pci {
    display: inline-block;
  }
}

@media print {

  .sp,
  .spi {
    display: none;
  }
}

@media (max-width:640px) {

  .pc,
  .pci {
    display: none;
  }

  .sp {
    display: block;
  }

  .spi {
    display: inline-block;
  }
}

.iblock {
  display: inline-block;
}

/* note style */
.note-wrp {
  max-width: 980px;
  margin: 0 auto;
}

p.note {
  font-size: min(.9rem, 2.8vw) !important;
  font-weight: normal;
  text-align: left;
}

p.note-center {
  font-size: min(.9rem, 2.8vw) !important;
  font-weight: normal;
  text-align: center;
}

ul.note {
  line-height: 1.6em;
  font-size: min(.9rem, 2.8vw) !important;
  font-weight: normal;
  text-align: left;
}

ul.note li {
  padding-left: 1.1em;
  position: relative;
}

ul.note li:not(:last-child) {
  margin-bottom: .3em;
}

ul.note li::before {
  content: '※';
  display: inline-block;
  position: absolute;
  left: 0;
}

ul.note.note-dot li::before {
  content: '';
  display: inline-block;
  width: .6em;
  height: .6em;
  background-color: #222;
  border-radius: 100%;
  position: absolute;
  top: .5em;
  left: 0;
}

ul.note.note-center {
  display: block;
  width: fit-content;
  margin: 2em auto;
}

@media screen and (max-width:767px) {
  ul.note.note-center {
    text-align: left;
  }
}

.underline {
  background: linear-gradient(180deg, transparent 80%, var(--yellow) 80%);
}

.text-center {
  text-align: center;
}

/*===================================================
contents
===================================================*/
.inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: min(60px, 10vw) 0;
}

.chara {
  position: absolute;
}

/* header
------------------------------------------*/
.page_header {
  width: 100%;
  padding-top: min(60px, 7vw);
  background: linear-gradient(180deg, var(--yellow) 80%, transparent 80%);
  position: relative;
}

@media (max-width:640px) {
  .page_header {
    height: 130vw;
    background: linear-gradient(180deg, var(--yellow) 90%, transparent 90%);
  }
}

.page_header .yatterman_logo {
  width: min(120px, 15%);
  position: absolute;
  right: max(calc(50% - 600px), 1em);
  top: 1.2em;
  /* transform: translateX(600px); */
}

.page_header .page_title {
  width: min(650px, 55%);
  margin: 0 auto;
}

@media (max-width:640px) {
  .page_header .page_title {
    width: 80%;
  }
}

.page_header .page_title-item {
  width: min(450px, 50%);
  margin: 0 auto;
}

@media (max-width:640px) {
  .page_header .page_title-item {
    width: 70%;
  }
}

.page_header .chara1 {
  width: min(370px, 26%);
  right: calc(50% + min(300px, 26%));
  bottom: 0;
}

@media (max-width:640px) {
  .page_header .chara1 {
    width: 35%;
    left: 1%;
    right: unset;
  }
}

.page_header .chara2 {
  width: min(370px, 26%);
  left: calc(50% + min(300px, 25%));
  bottom: 0;
}

@media (max-width:640px) {
  .page_header .chara2 {
    width: 34%;
    left: unset;
    right: 3%;
  }
}

.page_header .copyright-wrp {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0;
  position: relative;
  transform: translateY(1em);
}

@media (max-width:640px) {
  .page_header .copyright-wrp {
    position: absolute;
    left: 4%;
    bottom: 0;
    transform: translateY(-1em);
  }
}

.page_header .copyright {
  font-size: min(.8em, 3vw);
  text-align: right;
  font-weight: normal;
}

@media (max-width:640px) {
  .page_header .copyright {
    text-align: center;
  }
}

/* banner
------------------------------------------*/
.banner {
  width: min(1200px, 92%);
  margin: min(80px, 5vw) auto;
}

.banner img {
  width: 100%;
}


/* contents_nav
------------------------------------------*/
.contents_nav .contents_list {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width:640px) {
  .contents_nav .contents_list {
    display: block;
    padding: min(6em, 5vw) 0;
  }
}

.contents_nav .contents_list li {
  flex-grow: 1;
  padding: 0 .5em;
  text-align: center;
  color: #595757;
}

.contents_nav .contents_list li:not(:last-child) {
  border-right: solid 1px;
}

@media (max-width:640px) {
  .contents_nav .contents_list li:not(:last-child) {
    border-right: unset;
    border-bottom: solid 1px;
  }
}

@media (max-width:640px) {
  .contents_nav .contents_list li br {
    display: none;
  }
}

.contents_nav .contents_list .anchor {
  display: block;
  padding: .5em 0 .7em;
  color: var(--co-color);
  line-height: 1.4;
  cursor: pointer;
  position: relative;
}

@media (max-width:640px) {
  .contents_nav .contents_list .anchor {
    padding: .75em 0;
    text-align: left;
    font-size: 4vw;
  }
}

.contents_nav .contents_list .anchor::after {
  content: '';
  width: .7em;
  height: .7em;
  border-right: solid 2px #595757;
  border-bottom: solid 2px #595757;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 50%;
  rotate: 45deg;
  transition: translate .2s ease;
}

@media (max-width:640px) {
  .contents_nav .contents_list .anchor::after {
    left: unset;
    right: 0;
    bottom: 50%;
    width: .5em;
    height: .5em;
  }
}

.contents_nav .contents_list .anchor:hover::after {
  translate: -50% 75%;
}

.contents_nav .contents_list a {
  display: block;
  /* padding: .5em 1.5em .5em .5em; */
  padding: .5em 0 .7em;
  line-height: 1.5;
  color: inherit;
  position: relative;
}

@media (max-width:640px) {
  .contents_nav .contents_list a {
    padding: .75em 0;
  }
}

.contents_nav .contents_list a::after {
  content: '';
  width: 1.3em;
  height: 1.3em;
  background: url(../img/icon-jump.svg) no-repeat center / contain;
  /* position: absolute;
  translate: .5em; */
  display: block;
  margin: .5em auto 0;
}

@media (max-width:640px) {
  .contents_nav .contents_list a::after {
    position: absolute;
    translate: .5em .1em;
    margin: unset;
    display: inline-block;
  }
}

/* manga_prologue manga_wrp
------------------------------------------*/
.manga_wrp {
  padding: min(80px, 15vw) 0 min(120px, 15vw);
  position: relative;
  z-index: 0;
}

.manga_wrp .manga_frame {
  width: min(800px, 96%);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.manga_prologue .manga_frame {
  padding: min(130px, 13%) 2em min(130px, 13%);
  background: url(../img/manga_prologue-frame1.svg) no-repeat center top / contain,
    url(../img/manga_prologue-frame3.svg) no-repeat center bottom / contain;
  /* z-index: 0; */
}

@media (max-width:640px) {
  .manga_prologue .manga_frame {
    padding: 18% 2em 15%;
    background: url(../img/manga_prologue-frame1-sp.svg) no-repeat center top / contain,
      url(../img/manga_prologue-frame3-sp.svg) no-repeat center bottom / contain;
  }
}

.manga_prologue .manga_frame::before {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  background: url(../img/manga_prologue-frame2.svg) repeat-y center / contain;
  /* z-index: -1; */
}

@media (max-width:640px) {
  .manga_prologue .manga_frame::before {
    background: url(../img/manga_prologue-frame2-sp.svg) repeat-y center / contain;
  }
}

.manga_prologue .manga_prologue-title {
  width: min(370px, 75%);
  margin: 0 auto;
}

.manga_wrp img {
  display: inline-block;
  width: min(520px, 90%);
}

.manga_prologue .btn {
  display: block;
  width: min(300px, 75%);
  margin: 1em auto 0;
  padding: .75em;
  text-align: center;
  color: #3e3a39;
  border: solid 2px;
  font-size: min(.75em, 4vw);
  border-radius: 100vmax;
  position: relative;
}

@media (max-width:640px) {
  .manga_prologue .btn {
    font-size: .9em;
  }
}

.manga_prologue .btn::after {
  content: '';
  width: .6em;
  height: .9em;
  background-color: currentcolor;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.manga_prologue .chara3 {
  width: min(230px, 30%);
  right: 94.5%;
  bottom: 56%;
  z-index: -1;
}

@media (max-width:1024px) {
  .manga_prologue .chara3 {
    width: 20%;
  }

  @media (max-width:640px) {
    .manga_prologue .chara3 {
      width: 30%;
      right: 64.5%;
      bottom: 96%;
    }
  }
}

.manga_prologue .chara4 {
  width: min(290px, 37%);
  left: 94%;
  bottom: 43%;
  z-index: -1;
}

@media (max-width:1024px) {
  .manga_prologue .chara4 {
    width: 24%;
  }

  @media (max-width:640px) {
    .manga_prologue .chara4 {
      width: 30%;
      left: 62.5%;
      bottom: 96.5%;
    }
  }
}

.manga_prologue .chara5 {
  width: min(380px, 40%);
  left: -15%;
  bottom: -7%;
}

@media (max-width:1024px) {
  .manga_prologue .chara5 {
    width: 32%;
    left: -8%;
  }
}

.manga_prologue .chara6 {
  width: min(310px, 37%);
  right: -15%;
  bottom: -7%;
}

@media (max-width:1024px) {
  .manga_prologue .chara6 {
    width: 30%;
    right: -8%;
    bottom: -4%;
  }
}

/* co
------------------------------------------*/
.videos {
  --co-color: var(--blue);
}

.map {
  --co-color: var(--pink);
}

.displayaudio {
  --co-color: var(--purple);
}

/* hd_wrp */
.hd_wrp {
  padding: min(80px, 12vw) 0;
  background-color: color-mix(in srgb, var(--co-color) 40%, #fff);
}

.hd_wrp .section_title {
  width: max-content;
  margin: 0 auto 2em;
  position: relative;
}

@media (max-width:640px) {
  .hd_wrp .section_title {
    width: 100%;
  }
}

.hd_wrp .section_title .icon {
  display: inline-block;
  width: auto;
  max-width: unset;
  height: 160px;
  position: absolute;
  left: 0;
  top: 50%;
  translate: -120% -50%;
  z-index: 1;
}

@media (max-width:640px) {
  .hd_wrp .section_title .icon {
    height: 20vw;
    left: -1%;
    top: 0;
    translate: 0 -52%;
  }
}

.hd_wrp .section_title .icon img {
  width: auto;
  height: 100%;
}

.hd_wrp .section_title .hd {
  display: block;
  width: min(380px, 70vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hd_wrp .section_title .title {
  display: block;
  width: max-content;
  height: min(4em, 13vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hd_wrp .section_title .title img {
  width: auto;
  height: 100%;
}

.hd_wrp .hd_wrp-btn {
  margin-top: min(3em, 8vw);
}

.hd_wrp .hd_wrp-btn .mangabtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(900px, 80%);
  height: 6.2em;
  margin: 0 auto;
  padding-left: min(250px, 21%);
  background-color: var(--co-color);
  border-radius: 100vmax;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 0 0 0 #fff;
  position: relative;
  transition: box-shadow .2s ease;
}

@media (max-width:640px) {
  .hd_wrp .hd_wrp-btn .mangabtn {
    width: min(24em, 90%);
    padding-left: 2.5em;
  }
}

.hd_wrp .hd_wrp-btn .mangabtn:hover {
  box-shadow: 0 0 0 4px #fff;
}

.hd_wrp .hd_wrp-btn .chara {
  width: min(200px, 25%);
  position: absolute;
  left: 1%;
  bottom: 0;
}

@media (max-width:640px) {
  .hd_wrp .hd_wrp-btn .chara {
    display: none;
  }
}

.hd_wrp .hd_wrp-btn p {
  width: max-content;
  font-size: inherit;
  color: #fff;
  position: relative;
}

@media (max-width:640px) {
  .hd_wrp .hd_wrp-btn p {
    font-size: .9em;
  }
}

.hd_wrp .hd_wrp-btn p::after {
  content: '';
  width: .6em;
  height: .9em;
  background-color: var(--yellow);
  position: absolute;
  right: -1em;
  top: 50%;
  translate: 0 -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.hd_wrp .hd_wrp-btn .em {
  font-size: 1.3em;
  font-weight: 800;
  color: var(--yellow);
}

.hd_wrp .hd_wrp-btn .manga_thumb {
  width: 125px;
  position: absolute;
  /* right: min(11%, 7vw); */
  left: calc(50% + 9em);
  top: 50%;
  translate: 0 -50%;
  rotate: 20deg;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

@media (max-width:640px) {
  .hd_wrp .hd_wrp-btn .manga_thumb {
    width: 20%;
    left: unset;
    right: 4%;
    rotate: 15deg;
  }
}

.hd_wrp .hd_wrp-btn.on .manga_thumb {
  animation: mangathumb .45s ease .2s both;
}

@keyframes mangathumb {
  0% {
    rotate: 20deg;
  }

  50% {
    rotate: 10deg;
  }

  100% {
    rotate: 20deg;
  }
}

/* talk_wrp */
.talk_wrp:not(:first-child) {
  margin-top: min(80px, 12vw);

}

.talk_wrp .talk {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2em;
}

.talk_wrp .talk+.talk {
  margin-top: 2.5em;

}

.talk_wrp .talk.right {
  justify-content: flex-end;
}

.talk_wrp .talk.villain {
  --border-color: var(--purple);
  --text-color: var(--purple);
}

.talk_wrp .talk.ichigo {
  --border-color: var(--blue);
  --text-color: var(--blue);
}

.talk_wrp .talk.nigo {
  --border-color: var(--pink);
  --text-color: var(--pink);
}

.talk_wrp .talk.omocchama {
  --border-color: #f6ab00;
  --text-color: var(--orange);
}

.talk_wrp .talk.yatterwan {
  --border-color: var(--red);
  --text-color: var(--red);
}

.talk_wrp .talk .fukidashi {
  width: max-content;
  min-width: 560px;
  display: grid;
  place-items: center;
  padding: .75em 1.25em;
  color: var(--text-color);
  background-color: #fff;
  border: solid 8px var(--border-color);
  border-radius: 10px;
  font-size: 1.2em;
  line-height: 1.5;
  position: relative;
}

@media (max-width:640px) {
  .talk_wrp .talk .fukidashi {
    min-width: unset;
    padding: .75em 1em;
    border-width: 5px;
    font-size: 1.05em;
  }
}

.talk_wrp .talk.right .fukidashi::before,
.talk_wrp .talk.right .fukidashi::after,
.talk_wrp .talk.left .fukidashi::before,
.talk_wrp .talk.left .fukidashi::after {
  content: '';
  width: 1.5em;
  height: 1.75em;
  background-color: var(--border-color);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.talk_wrp .talk.right .fukidashi::before,
.talk_wrp .talk.right .fukidashi::after {
  left: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.talk_wrp .talk.right .fukidashi::after {
  background-color: #fff;
  margin-left: -.6em;
}

@media (max-width:640px) {
  .talk_wrp .talk.right .fukidashi::after {
    margin-left: -10px;
  }
}

.talk_wrp .talk.left .fukidashi::before,
.talk_wrp .talk.left .fukidashi::after {
  right: 100%;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.talk_wrp .talk.left .fukidashi::after {
  background-color: #fff;
  margin-right: -.6em;
}

@media (max-width:640px) {
  .talk_wrp .talk.left .fukidashi::after {
    margin-right: -10px;
  }
}

.talk_wrp .talk .fukidashi .ab-note {
  position: absolute;
  right: 0;
  top: calc(100% + 1em);
  font-size: min(.85rem, 2.8vw);
  font-weight: normal;
  color: var(--text-color);
}

.talk_wrp .talk .portrait {
  width: min(150px, 25%);
  border-radius: 100%;
  background-color: var(--border-color);
  overflow: hidden;
  flex-shrink: 0;
}

.co.map .talk_wrp .talk .portrait {
  background-color: #fff;
  border: solid 8px var(--border-color);
}

@media (max-width:640px) {
  .co.map .talk_wrp .talk .portrait {
    border-width: 5px;
  }
}

/* explain_wrp */
.explain_wrp {
  margin-top: min(80px, 12vw);
  padding: 1.5em min(2em, 5vw) 2em;
  background-color: color-mix(in srgb, var(--yellow) 20%, #fff);
  border-radius: 1.2em;
  text-align: center;
  position: relative;
}

@media (max-width:640px) {
  .explain_wrp {
    padding-top: 2em;
  }
}

.explain_wrp::before {
  --tag-size: min(220px, 24vw);
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/explain_tag.svg) no-repeat right bottom / var(--tag-size) auto;
  transition: width .5s .2s cubic-bezier(0.5, 0, 0.1, 1.35), height .5s .2s cubic-bezier(0.5, 0, 0.1, 1.35);
}

.explain_wrp.on::before {
  width: calc(var(--tag-size) * .95);
  height: calc(var(--tag-size) * .95);
}

.explain_wrp .explain_wrp-title {
  margin-bottom: 1em;
  padding: 0 min(120px, 3vw);
  font-weight: 800;
  line-height: 1.6;
  font-size: 1.3em;
}

.explain_wrp .explain_wrp-title .sml {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  font-size: .77em;
}

.explain_wrp p {
  margin-top: 1em;
  line-height: 1.6;
}

@media (max-width:640px) {
  .explain_wrp p {
    text-align: justify;
    font-size: 1.05em;
  }
}

.explain_wrp .explain_wrp-btn {
  display: block;
  width: max-content;
  max-width: 100%;
  min-width: min(26em, 90%);
  margin: 1.5em auto 0;
  padding: 1em 2.5em;
  color: #fff;
  background-color: var(--red);
  line-height: 1.5;
  border-radius: 100vmax;
  position: relative;
  transition: background-color .2s ease;
}

@media (max-width:640px) {
  .explain_wrp .explain_wrp-btn {
    padding: 1em 2em;
  }
}

.explain_wrp .explain_wrp-btn:hover {
  background-color: #333;
}

.explain_wrp .explain_wrp-btn .em {
  color: var(--yellow);
}

.explain_wrp .explain_wrp-btn::after {
  content: '';
  width: .6em;
  height: .9em;
  background-color: var(--yellow);
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}


/* videos
------------------------------------------*/
.co.videos {
  background-color: #d2f0f8;
}

@media (max-width: 640px) {
  .co.videos .hd_wrp .section_title .icon {
    height: 20vw;
    left: 1%;
    top: 0;
    translate: 0 -50%;
  }
}

.co.videos .hd_wrp-img {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
}

.co.videos .hd_wrp-img .chara7 {
  width: min(270px, 30%);
  right: -2%;
  bottom: 100%;
  z-index: -1;

  opacity: 0;
  translate: 0 100%;
  transition: translate .5s .3s cubic-bezier(0.25, 0.1, 0.5, 1.23), opacity .5s .3s cubic-bezier(0.54, 0.02, 0.53, 1.01);
  will-change: transform;
}

@media (max-width:640px) {
  .co.videos .hd_wrp-img .chara7 {
    width: 30%;
    right: -5%;
  }
}

.co.videos .hd_wrp-img.on .chara7 {
  opacity: 1;
  translate: 0 5%;
}

.co.videos .services_list {
  width: min(680px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  gap: .8em;
}

@media (max-width:640px) {
  .co.videos .services_list {
    justify-content: space-between;
  }
}

.co.videos .services_list li {
  width: 31%;
  font-size: min(1.15em, 4vw);
  padding: 1.5em .25em;
  display: grid;
  place-items: center;
  color: #fff;
  background-color: var(--blue);
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

@media (max-width:640px) {
  .co.videos .services_list li {
    width: 48%;
  }
}

.co.videos .step_list {
  width: min(960px, 100%);
  margin: 0 auto 1em;
  display: flex;
  justify-content: space-between;
  gap: 3em 0;
  position: relative;
}

@media (max-width:640px) {
  .co.videos .step_list {
    /* margin: 0 auto 2em; */
    flex-direction: column;
    align-items: center;
  }
}

.co.videos .step_list li {
  width: 290px;
  position: relative;
}

@media (max-width:640px) {
  .co.videos .step_list li {
    width: min(300px, 80%);
    position: relative;
  }
}

.co.videos .step_list li .count {
  margin-bottom: .5em;
  font-size: 1.2em;
}

.co.videos .step_list li .count .num {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-left: .3em;
  margin-right: -.3em;
  padding-top: .2em;
  border-radius: 100%;
  background-color: var(--yellow);
}

.co.videos .step_list li .note {
  width: 100%;
  margin-top: -1.3em;
  text-align: right;
  font-size: min(.8rem, 2.7vw) !important;
  padding-right: .75em;
}

.co.videos .step_list::before,
.co.videos .step_list::after {
  content: '';
  width: 1em;
  height: 1.5em;
  background-color: var(--red);
  position: absolute;
  left: calc(250px + (100% - 750px) / 4);
  top: 55%;
  translate: -50% -50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.co.videos .step_list::after {
  left: unset;
  right: calc(265px + (100% - 750px) / 4);
  translate: 50% -50%;
}

@media (max-width:1024px) {

  .co.videos .step_list::before,
  .co.videos .step_list::after {
    font-size: .7em;
  }

  @media (max-width:640px) {

    .co.videos .step_list::before,
    .co.videos .step_list::after {
      content: none;
    }
  }
}

@media (max-width:640px) {
  .co.videos .step_list li:not(:last-child)::after {
    content: '';
    width: 1.5em;
    height: 1em;
    background-color: var(--red);
    position: absolute;
    left: 50%;
    top: calc(100% + 1.5em);
    translate: -50% -50%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

.co.videos .wifi-banner {
  display: block;
  width: min(960px, 100%);
  margin: 1em auto 0;
}

@media (max-width:640px) {
  .co.videos .wifi-banner {
    width: min(420px, 100%);
  }
}

.co.videos .wifi-banner img {
  width: 104%;
  max-width: 104%;
}

@media (max-width:640px) {
  .co.videos .wifi-banner img {
    width: 102%;
    max-width: 102%;
    margin-left: -1%;
  }
}

.co.videos .explain3 figure {
  width: min(620px, 100%);
  margin: 0 auto;
  position: relative;
}

/* map
------------------------------------------*/
.co.map {
  background-color: #f9e9ee;
}

.co.map .hd_wrp-img {
  width: min(1200px, 92%);
  margin: -3em auto;
  position: relative;
}

@media (max-width:640px) {
  .co.map .hd_wrp-img {
    margin: 0 auto;
  }
}

.co.map .explain_wrp-img1 {
  width: min(780px, 100%);
  margin: 0 auto 1em;
  position: relative;
}

.co.map .explain_wrp-img2 {
  width: min(900px, 100%);
  margin: 0 auto 1em;
  position: relative;
}

.co.map .explain_wrp-img1 .pop {
  width: min(150px, 25%);
  position: absolute;
  right: 0;
  bottom: 0;
  translate: 60% 5%;
}

@media (max-width:640px) {
  .co.map .explain_wrp-img1 .pop {
    translate: 50% 15%;
  }
}

/* @media (max-width:640px) {
  .co.map .explain_wrp-img .pop {
    width: 15%;
    translate: 45% -40%;
  }
} */

.co.map .explain_wrp-img ul {
  margin-top: 1em;
}

.co.map .explain_wrp .chara8 {
  width: min(220px, 100%);
  right: 2%;
  bottom: 0;
}

@media (max-width:640px) {
  .co.map .explain_wrp .chara8 {
    display: none;
  }
}

/* displayaudio
------------------------------------------*/
.co.displayaudio {
  background-color: #efeef7;
}

.co.displayaudio .hd_wrp .section_title .title {
  height: min(8em, 24vw);
}

.co.displayaudio .hd_wrp-img {
  /* width: min(1200px, 92%); */
  width: min(940px, 92%);
  margin: 0 auto;
  position: relative;
}

.co.displayaudio .hd_wrp-img .chara9 {
  width: min(410px, 35%);
  left: -10%;
  bottom: -24%;
}

@media (max-width:1300px) {
  .co.displayaudio .hd_wrp-img .chara9 {
    left: -4%;
  }

  @media (max-width:640px) {
    .co.displayaudio .hd_wrp-img .chara9 {
      width: 46%;
      bottom: -10%;
    }
  }
}

.co.displayaudio .hd_wrp-img .chara10 {
  width: min(320px, 28%);
  right: -15%;
  bottom: -20%;
}

@media (max-width:1300px) {
  .co.displayaudio .hd_wrp-img .chara10 {
    right: -11%;
  }

  @media (max-width:640px) {
    .co.displayaudio .hd_wrp-img .chara10 {
      width: 35%;
      bottom: -10%;
    }
  }
}

.co.displayaudio .appli_list,
.co.displayaudio .appli_list+p.note {
  /* width: min(620px, 100%); */
  width: min(780px, 100%);
  margin: 0 auto;
}

.co.displayaudio .appli_list {
  margin-bottom: .5em;
}

.co.displayaudio .slick-dotted.slick-slider {
  margin-bottom: .5em;
}

.co.displayaudio .slick-dots {
  bottom: -1.75em;
}

.co.displayaudio .appli_list+p {
  margin-bottom: 3em;
}

.co.displayaudio .chara11 {
  width: min(340px, 30%);
  right: -5%;
  bottom: -2%;
}

@media (max-width:1100px) {
  .co.displayaudio .chara11 {
    right: -13%;
    bottom: -2%;
  }

  @media (max-width:640px) {
    .co.displayaudio .chara11 {
      width: min(180px, 40%);
      right: -15%;
      bottom: -1%;
    }
  }

}

.co.displayaudio .explain2 figure {
  width: min(960px, 100%);
  margin: 0 auto;
  position: relative;
}

.co.displayaudio .explain3 figure {
  width: min(620px, 100%);
  margin: 0 auto;
  position: relative;
}

/* manga_epilogue
------------------------------------------*/
.manga_epilogue {
  padding-bottom: min(200px, 25vw);
}

.manga_epilogue .manga_frame {
  padding: 5em 2em 6em;
  background: url(../img/manga_epilogue-frame.svg) no-repeat center top / 100% 100%;
  /* background: url(../img/manga_epilogue-frame.svg) no-repeat center top / contain; */
}

@media (max-width:640px) {
  .manga_epilogue .manga_frame {
    padding: 4em 2em 5em;
    background: url(../img/manga_epilogue-frame-sp.svg) no-repeat center top / 100% 100%;
    /* background: url(../img/manga_epilogue-frame.svg) no-repeat center top / contain; */
  }
}

.manga_epilogue .manga_epilogue-title {
  width: min(360px, 75%);
  margin: 0 auto;
}

.manga_epilogue .chara12 {
  width: min(780px, 70%);
  left: -20%;
  bottom: -14%;
}

@media (max-width:640px) {
  .manga_epilogue .chara12 {
    width: 75%;
    left: -8%;
    bottom: -12%;
  }
}

.manga_epilogue .chara13 {
  width: min(274px, 33%);
  right: max(calc(50% - 550px), 0%);
  bottom: 0;
}

/* lineup
------------------------------------------*/
.lineup {
  /*     padding-bottom: min(250px, 30vw); */
  background-color: var(--yellow);
}

.lineup .lineup_title,
.related .related_title {
  width: max-content;
  height: 2.8em;
  margin: 0 auto 3em;
}

@media (max-width:640px) {

  .lineup .lineup_title,
  .related .related_title {
    height: min(2.8em, 7.2vw);
    margin: 0 auto 2em;
  }
}

.lineup .lineup_title img,
.related .related_title img {
  width: auto;
  max-height: 100%;
}

.lineup .lineup_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5em min(3%, 2em);
  position: relative;
  z-index: 0;
}

.lineup .lineup_list li {
  width: 30%;
  flex-grow: 1;
  padding: min(16%, 5em) 1em 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: var(--item-color);
  border-radius: .8em;
  position: relative;
}

@media (max-width:640px) {
  .lineup .lineup_list li {
    width: 100%;
    display: grid;
    grid-template-areas: 'img title' 'img name' 'btn btn';
    grid-template-columns: 46% 50%;
  }
}

.lineup .lineup_list li:nth-child(1) {
  --item-color: var(--purple);
}

.lineup .lineup_list li:nth-child(2) {
  --item-color: var(--orange);
}

.lineup .lineup_list li:nth-child(3) {
  --item-color: var(--green);
}

.lineup .lineup_list .icon {
  width: min(200px, 35vw);
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -30%;
  scale: .7;
}

.lineup .lineup_list li.on .icon {
  animation: iconpop .35s ease .2s both;
}

@keyframes iconpop {
  0% {
    scale: .7;
  }

  70% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}

.lineup .lineup_list .item_title {
  grid-area: title;
  font-size: 1.1em;
}

@media (max-width:1200px) {
  .lineup .lineup_list .item_title {
    font-size: 1.05em;
  }

  @media (max-width:640px) {
    .lineup .lineup_list .item_title {
      align-self: flex-end;
    }
  }
}

.lineup .lineup_list .thumb {
  grid-area: img;
  width: min(300px, 90%);
  margin: 1em auto;
}

.lineup .lineup_list .item_name {
  grid-area: name;
  margin-bottom: 1em;
  font-size: min(1.2em, 4.2vw);
}

.lineup .lineup_list .lineup-btn {
  grid-area: btn;
  display: block;
  width: min(300px, 100%);
  margin: auto auto 0;
  padding: .75em;
  text-align: center;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 100vmax;
  position: relative;
  transition: color .2s ease, background-color .2s ease;
}

.lineup .lineup_list .lineup-btn:hover {
  color: var(--item-color);
  background-color: #fff;
}

.lineup .lineup_list .lineup-btn::after {
  content: '';
  width: .7em;
  height: .7em;
  border-right: solid 2px;
  border-top: solid 2px;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}

.lineup .chara14 {
  width: min(700px, 70%);
  margin: -1.25em auto 0;
  position: relative;
}

@media (max-width:640px) {
  .lineup .chara14 {
    width: 80%;
    margin: -3vw auto 0;
  }
}

/* related
------------------------------------------*/
.related .related_title {
  margin-bottom: 0;
}

.related_banner {
  display: block;
  width: min(980px, 92%);
  margin: 2em auto;
}

/* modal
------------------------------------------*/
html.modal-fixed {
  overflow: clip;
  width: 100%;
  height: 100%;
}

.modal-bk {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgb(0 0 0/.9);
  z-index: 10000;
  cursor: pointer;
  display: none;
}

.closebtn {
  width: 2em;
  height: 2em;
  position: fixed;
  right: min(2em, 3vw);
  top: min(2em, 3vw);
  cursor: pointer;
}

.closebtn::before,
.closebtn::after {
  content: '';
  width: 2em;
  height: 0;
  position: absolute;
  left: 50%;
  top: calc(50% - 2px);
  border-top: solid 4px var(--yellow);
  translate: -50% -50%;
  rotate: 45deg;
}

.closebtn::after {
  rotate: -45deg;
}

.modal {
  width: min(960px, 100%);
  max-height: 100%;
  padding: min(80px, 15vw) 2em;
  margin: 0 auto;
  overflow-y: scroll;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.modal img {
  width: 100%;
  height: auto;
}

@media (max-width:640px) {
  .modal {
    width: 118%;
    padding: min(80px, 15vw) 0;
  }

  .modal img {
    width: 100%;
    height: auto;
    margin-top: -5px;
  }
}

.modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
}