@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/*----------------------------------------------------
.inner 余白 設定
----------------------------------------------------*/
/*----------------------------------------------------
//ベースフォントサイズ
----------------------------------------------------*/
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/*----------------------------------------------------
アニメーション名を指定する
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
google font
----------------------------------------------------*/
/*----------------------------------------------------
======================================================
mixin-疑似要素
======================================================
----------------------------------------------------*/
/* ホバーで下線が左に消える */
main {
  overflow-x: hidden;
}

/*----------------------------------------------------
ボタン
----------------------------------------------------*/

.btnarea_ttl {
  color: #d50952;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media all and (max-width: 750px) {
  .btnarea_ttl {
    margin-top: 10px;
    font-size: 20px;
  }
}

.btnarea_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

@media all and (max-width: 1060px) {
  .btnarea_list {
    gap: 22px;
  }
}

@media all and (max-width: 750px) {
  .btnarea_list {
    flex-direction: column;
    gap: 18px;
  }
}

.btn {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  max-width: 320px;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 20px;
}

@media all and (max-width: 900px) {
  .btn {
    font-size: 16px;
  }
}
@media all and (max-width: 480px) {
  .btn {
    font-size: 20px;
  }
}

.btn.is_red {
  color: #fff;
  background-color: #d50952;
  border-radius: 9999px;
  border: solid 2px #d50952;
}

.ico-play {
  width: 32px;
  margin-left: 16px;
}

@media all and (max-width: 750px) {
  .ico-play {
    width: 28px;
  }
}

.ico-note {
  width: 16px;
  margin-right: 16px;
}

@media all and (max-width: 750px) {
  .ico-note {
    width: 12px;
  }
}

.btn .ico-play path {
  transition: all 0.3s;
}

.btn .ico-note path {
  transition: all 0.3s;
}

.btn:hover {
  background-color: #fff;
  color: #d50952;
}

.btn:hover .ico-play path {
  fill: #d50952;
}

.btn:hover .ico-note path {
  fill: #d50952;
}

/*----------------------------------------------------
mv
----------------------------------------------------*/
#mv {
  position: relative;
}
#mv .wrap {
  padding: 200px 20px 0px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .wrap {
    padding-top: 50px;
  }
}
@media all and (min-width: 1023px) {
  #mv .wrap {
    padding-top: 100px;
  }
}
#mv .logo {
  position: absolute;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #mv .logo {
    -webkit-animation: poyoyon_SP 1.2s cubic-bezier(0.12, 0, 0.5, 0) forwards;
    animation: poyoyon_SP 1.2s cubic-bezier(0.12, 0, 0.5, 0) forwards;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 60px;
    width: 84.8%;
    max-width: 400px;
  }
}
@media all and (min-width: 751px) {
  #mv .logo {
    -webkit-animation: poyoyon_PC 1.2s cubic-bezier(0.12, 0, 0.5, 0) forwards;
    animation: poyoyon_PC 1.2s cubic-bezier(0.12, 0, 0.5, 0) forwards;
    top: 5%;
    width: 39%;
  }
}
@-webkit-keyframes poyoyon_SP {
  0% {
    -webkit-transform: translate(-50%, -140px);
    transform: translate(-50%, -140px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, 0px) scale(1, 0.7);
    transform: translate(-50%, 0px) scale(1, 0.7);
  }
  65% {
    -webkit-transform: translate(-50%, -70px);
    transform: translate(-50%, -70px);
  }
  85% {
    -webkit-transform: translate(-50%, 0) scale(1, 0.8);
    transform: translate(-50%, 0) scale(1, 0.8);
  }
  90% {
    -webkit-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@keyframes poyoyon_SP {
  0% {
    -webkit-transform: translate(-50%, -140px);
    transform: translate(-50%, -140px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, 0px) scale(1, 0.7);
    transform: translate(-50%, 0px) scale(1, 0.7);
  }
  65% {
    -webkit-transform: translate(-50%, -70px);
    transform: translate(-50%, -70px);
  }
  85% {
    -webkit-transform: translate(-50%, 0) scale(1, 0.8);
    transform: translate(-50%, 0) scale(1, 0.8);
  }
  90% {
    -webkit-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@-webkit-keyframes poyoyon_PC {
  0% {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0) scale(1, 0.7);
    transform: translateY(0) scale(1, 0.7);
  }
  65% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  85% {
    -webkit-transform: translateY(0) scale(1, 0.8);
    transform: translateY(0) scale(1, 0.8);
  }
  90% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes poyoyon_PC {
  0% {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(0) scale(1, 0.7);
    transform: translateY(0) scale(1, 0.7);
  }
  65% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  85% {
    -webkit-transform: translateY(0) scale(1, 0.8);
    transform: translateY(0) scale(1, 0.8);
  }
  90% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#mv .member {
  width: 115%;
  position: relative;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #mv .member {
    left: -25px;
  }
}
@media all and (min-width: 751px) {
  #mv .member {
    width: 70%;
    margin-left: auto;
  }
}
#mv .member .star {
  position: absolute;
  top: 20px;
  width: 30px;
  right: 70px;
  /* 751- */
}
@media all and (min-width: 500px) {
  #mv .member .star {
    right: 100px;
  }
}
@media all and (min-width: 751px) {
  #mv .member .star {
    width: 60px;
    top: 0px;
  }
}
@media all and (min-width: 1300px) {
  #mv .member .star {
    width: 70px;
    right: 160px;
  }
}
#mv .chara {
  position: absolute;
  bottom: 50px;
  z-index: 3;
  width: 100px;
  left: -50px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .chara {
    max-width: 200px;
    width: 15%;
  }
}
#mv .chara.appear {
  -webkit-animation-name: charaMvAppear;
  animation-name: charaMvAppear;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  bottom: -40px;
  left: 0px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .chara.appear {
    bottom: -10px;
  }
}
#mv .chara.appear.rightToLeft {
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  left: 75%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .chara.appear.rightToLeft {
    left: 80%;
  }
}
@media all and (min-width: 1200px) {
  #mv .chara.appear.rightToLeft {
    left: 80%;
  }
}
#mv .chara.appear.scaleReverse {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@-webkit-keyframes charaMvAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes charaMvAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----------------------------------------------------
about
----------------------------------------------------*/
#about {
  position: relative;
  padding: 45px 0 42px;
  background: #d50952;
  /* 751- */
  /* キャッチ */
  /* 導入 */
}
#about .catch {
  margin: 0 auto 38px;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #about .catch {
    max-width: 400px;
    width: 90%;
  }
}
@media all and (min-width: 751px) {
  #about .catch {
    margin-bottom: 40px;
    max-width: 1000px;
  }
}

#about .intro {
  padding: 25px 6px;
  text-align: center;
  background: white;
  border-radius: 30px;
  font-weight: 500;
  margin-bottom: 140px;
  position: relative;
  font-size: 15px;
  letter-spacing: -0.08em;
  line-height: 2.5;
  /* 751- */
}

@media all and (min-width: 751px) {
  #about .intro {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 50px 22px 50px;
    font-size: 20px;
    letter-spacing: 0em;
    line-height: 2.5;
  }
}

#about .intro h2 {
  max-width: 400px;
  margin: 0 auto 1em;
  padding: 0 20px;
  /* 751- */
}

@media all and (min-width: 751px) {
  #about .intro h2 {
    max-width: 541px;
  }
}

#about .intro a {
  /* 751- */
}

#about .intro a span {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  color: #d50952;
  opacity: 1;
}
#about .intro a span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #d50952;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 751px) {
  #about .intro a:hover span {
    opacity: 0.8;
  }
  #about .intro a:hover span::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#about .intro .star {
  position: absolute;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about .intro .star {
    display: block;
  }
  #about .intro .star.left {
    left: -30px;
    bottom: -50px;
  }
  #about .intro .star.left img {
    width: 70px;
    height: 131px;
  }
  #about .intro .star.right {
    top: -50px;
    right: -30px;
  }
  #about .intro .star.right img {
    width: 90px;
    height: 171px;
  }
}
@media all and (min-width: 1250px) {
  #about .intro .star.left {
    left: -100px;
    bottom: -50px;
  }
  #about .intro .star.left img {
    width: 80px;
    height: 131px;
  }
  #about .intro .star.right {
    top: -50px;
    right: -120px;
  }
  #about .intro .star.right img {
    width: 110px;
    height: 171px;
  }
}

/*----------------------------------------------------
about チームメンバー
----------------------------------------------------*/
/* メンバー */
#about #member {
  padding: 0px 5px 100px;
  /* 751- */
  /* 画像が左にある場合 */
  /* 人の画像が左の場合 */
}
@media all and (min-width: 751px) {
  #about #member {
    padding: 150px 5px 200px;
  }
}

@media all and (max-width: 750px) {
  #about #member ul {
    display: flex;
    flex-direction: column;
  }
}

@media all and (max-width: 750px) {
  #about #member ul {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px) and (max-width: 1249px) {
  #about #member ul {
    max-width: 550px;
    margin: 0 auto;
  }
  #about #member ul li:not(:last-child) {
    margin-bottom: 230px;
  }
}
@media all and (min-width: 1250px) {
  #about #member ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12% 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 12%;
    -moz-column-gap: 12%;
    column-gap: 12%;
    row-gap: 250px;
  }
  #about #member ul .mioOyama {
    -ms-grid-row: 1;
    grid-row: 1/1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  #about #member ul .maria {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
#about #member ul li {
  padding: 20px 15px 20px;
  border-radius: 30px;
  background: white;
  position: relative;
  /* -750 */
}

@media all and (max-width: 750px) {
  #about #member ul li {
    width: 80%;
    max-width: 400px;
  }

  #about #member ul li + li {
    margin-top: 180px;
  }

  /* #about #member ul li:not(:last-child) {
    margin-bottom: 163px;
  } */
}

#about #member ul li.forKawanoSP {
  margin-top: -30px;
}
#about #member .textArea {
  color: #d50952;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.6667;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  /* 751- */
}
#about #member .textArea p {
  letter-spacing: -0.01em;
}

#about #member .textArea .br {
  display: block;
}

@media all and (max-width: 750px) {
  #about #member .textArea .br {
    display: none;
  }
}

#about .textArea_position.is_chiemi {
  transform: translateX(30px);
}

#about .textArea_position.is_miogon {
  transform: translateX(90px);
}

@media all and (max-width: 750px) {
  #about .textArea_position.is_miogon {
    transform: translateX(50px);
  }
}

#about .textArea_position.is_keito {
  transform: translateX(-40px);
}

@media all and (max-width: 750px) {
  #about .textArea_position.is_keito {
    transform: translateX(0);
  }
}

#about .textArea_position.is_maria {
  transform: translateX(90px);
}

@media all and (min-width: 751px) {
  #about #member .textArea {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.6667;
  }
}
#about #member .textArea .chara {
  position: absolute;
  opacity: 0;
}

#about #member .image {
  position: absolute;
}

@media all and (max-width: 750px) {
  #about #member .image {
    top: 150px;
    left: -30px;
  }
}

#about #member .image .imageIn {
  position: relative;
}

#about #member .image h3 {
  position: relative;
  z-index: 10;
}

@media all and (max-width: 750px) {
  #about #member .image h3 {
    left: -50px;
    max-width: 200px;
  }
}

@media all and (min-width: 751px) {
  #about #member .image h3 {
    margin-top: -30px;
  }
}

#about #member .image .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 5px;
  /* 751- */
}
#about #member .image .sns a {
  width: 40px;
}
@media all and (min-width: 751px) {
  #about #member .image .sns {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 5px;
  }
  #about #member .image .sns a {
    width: 40px;
  }
  #about #member .image .sns a img {
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  #about #member .image .sns a:hover img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@media all and (max-width: 750px) {
  #about #member .image .sns {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin-top: 5px;
    position: absolute;
    left: -18px;
  }
}

@media all and (max-width: 750px) {
  #about #member li.imgLeft {
    margin-left: auto;
  }
}

/* SP時順序入れ替え */
@media all and (max-width: 750px) {
  #about #member li.chiemiAritomi {
    order: 1;
  }
}
@media all and (max-width: 750px) {
  #about #member li.mioOyama {
    order: 3;
  }
}
@media all and (max-width: 750px) {
  #about #member li.maria {
    order: 2;
  }
}
@media all and (max-width: 750px) {
  #about #member li.KeitoSeiji {
    order: 4;
  }
}

#about #member li.imgRight {
  padding-left: 20px;
}

@media all and (max-width: 750px) {
  #about #member li.imgRight {
    padding-left: 30px;
  }
}

/* #about #member li.imgRight .image {
  right: -85px;

} */
/* @media all and (min-width: 751px) {
  #about #member li.imgRight .image {
    right: -90px;
  }
} */

#about #member li.imgRight .textArea {
  position: relative;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
}

@media all and (min-width: 751px) {
  #about #member li.imgRight .textArea {
    padding-left: 50px;
  }
}

/* about チームメンバー ~アニメーション~ */
#about #member {
  /* 共通部分 */
  /* 有冨智江美 */
  /* 豊崎リリー */
  /* 大山実音 */
  /* MARIA */
  /* 濱屋拓斗 */
  /* ryota */
}
#about #member .person {
  position: relative;
  /* -750 */
}

@media all and (max-width: 750px) {
  #about #member .person .animePerson {
    position: absolute;
  }
}
#about #member .person img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  #about #member .person .animePerson {
    position: absolute;
  }
}
#about #member .person::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #about #member .person::before {
    opacity: 1;
  }
}
@media all and (min-width: 751px) {
  #about #member .person::before {
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media all and (min-width: 751px) {
  #about #member .image.chiemi {
    left: -70px;
    bottom: -120px;
    width: 270px;
  }
}
#about #member .image.chiemi .person {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #about #member .image.chiemi h3 {
    bottom: 5px;
  }

  #about #member .image.chiemi .person .animePerson {
    bottom: -40px;
    left: -20px;
    max-width: 150px;
  }

  #about #member .image.chiemi .person .animePerson img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 300px;
  }
}
@media all and (min-width: 751px) {
  #about #member .image.chiemi .person {
    width: 90%;
  }
  #about #member .image.chiemi .person::before {
    background: url("../images/top/about/mem_chiemi/anime1.png") no-repeat center top/cover;
  }
  #about #member .image.chiemi .person:hover::before {
    opacity: 1;
    -webkit-animation-name: chiemi_pc;
    animation-name: chiemi_pc;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  #about #member .image.chiemi .person:hover img {
    opacity: 0;
  }
  @-webkit-keyframes chiemi_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_chiemi/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_chiemi/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_chiemi/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_chiemi/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    100% {
      background: url("../images/top/about/mem_chiemi/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
  @keyframes chiemi_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_chiemi/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_chiemi/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_chiemi/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_chiemi/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    100% {
      background: url("../images/top/about/mem_chiemi/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
}
#about #member .textArea.chiemi .chara {
  bottom: -90px;
  /* 751- */
}
@media all and (max-width: 751px) {
  #about #member .textArea.chiemi .chara {
    right: 0;
  }
}

#about #member .textArea.chiemi .chara img {
  width: 70px;
}
@media all and (min-width: 751px) {
  #about #member .textArea.chiemi .chara {
    bottom: -120px;
    right: -20px;
  }
  #about #member .textArea.chiemi .chara img {
    width: 120px;
  }
}
#about #member .textArea.chiemi .star {
  position: absolute;
  top: -80px;
  left: 40px;
  width: 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .textArea.chiemi .star {
    width: 80px;
    top: -130px;
    left: 160px;
  }
}
#about #member .image.lily {
  width: 60%;
  bottom: -60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .image.lily {
    width: 300px;
    bottom: -120px;
  }
}
#about #member .image.lily .person {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #about #member .image.lily .person .animePerson {
    bottom: -30px;
  }
  #about #member .image.lily .person .animePerson img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    width: 150px;
    height: 200px;
  }
}
@media all and (min-width: 751px) {
  #about #member .image.lily .person::before {
    background: url("../images/top/about/mem_lily/anime1.png") no-repeat center top/70%;
  }
  #about #member .image.lily .person:hover::before {
    opacity: 1;
    -webkit-animation-name: lily_pc;
    animation-name: lily_pc;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  #about #member .image.lily .person:hover img {
    opacity: 0;
  }
  @-webkit-keyframes lily_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_lily/anime1.png") no-repeat center top/70%;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_lily/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_lily/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_lily/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_lily/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
  @keyframes lily_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_lily/anime1.png") no-repeat center top/70%;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_lily/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_lily/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_lily/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_lily/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
}
#about #member .textArea.lily .star {
  position: absolute;
  top: -100px;
  left: 70px;
  width: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .textArea.lily .star {
    width: 80px;
    top: -140px;
    left: 210px;
  }
}
@media all and (min-width: 1250px) {
  #about #member .textArea.lily .star {
    width: 80px;
    top: -100px;
    left: 210px;
  }
}
#about #member .textArea.lily .chara {
  bottom: -90px;
  left: 50px;
  /* 751- */
}
#about #member .textArea.lily .chara img {
  width: 70px;
}
@media all and (min-width: 751px) {
  #about #member .textArea.lily .chara {
    bottom: -140px;
    left: 70px;
  }
  #about #member .textArea.lily .chara img {
    width: 120px;
  }
}
/* #about #member .image.mio {
  bottom: -60px;
  left: 70px;
  width: 60%;

} */
@media all and (min-width: 751px) {
  #about #member .image.mio {
    left: -100px;
    bottom: -120px;
    width: 270px;
  }
}
#about #member .image.mio .person {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #about #member .image.mio h3 {
    bottom: -20px;
  }

  #about #member .image.mio .sns {
    bottom: -60px;
  }

  #about #member .image.mio .person .animePerson {
    bottom: -30px;
    left: -30px;
  }

  #about #member .image.mio .person .animePerson img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    width: 150px;
    height: 200px;
  }
}
@media all and (min-width: 751px) {
  #about #member .image.mio .person {
    width: 105%;
  }
  #about #member .image.mio .person::before {
    background: url("../images/top/about/mem_mio/anime1.png") no-repeat center top/cover;
  }
  #about #member .image.mio .person:hover::before {
    opacity: 1;
    -webkit-animation-name: mio_pc;
    animation-name: mio_pc;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  #about #member .image.mio .person:hover img {
    opacity: 0;
  }
  @-webkit-keyframes mio_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_mio/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_mio/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_mio/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_mio/first.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_mio/first.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
  @keyframes mio_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_mio/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_mio/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_mio/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_mio/first.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_mio/first.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
}
#about #member .textArea.mio .star {
  position: absolute;
  top: -100px;
  left: 50px;
  width: 60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .textArea.mio .star {
    top: -130px;
    left: 200px;
    width: 80px;
  }
}
@media all and (min-width: 1250px) {
  #about #member .textArea.mio .star {
    display: none;
  }
}
#about #member .textArea.mio .chara {
  top: -90px;
  /* 751- */
}
#about #member .textArea.mio .chara img {
  width: 70px;
}

@media all and (min-width: 751px) {
  #about #member .textArea.mio .chara {
    top: -120px;
    right: -30px;
  }
  #about #member .textArea.mio .chara img {
    width: 120px;
  }
}

@media all and (max-width: 750px) {
  #about #member .textArea.mio .chara {
    top: -80px;
    right: 0px;
  }
}

/* #about #member .image.maria {
  width: 60%;
  bottom: -60px;
} */

@media all and (min-width: 751px) {
  #about #member .image.maria {
    width: 300px;
    bottom: -120px;
    right: -70px;
  }
}
#about #member .image.maria .person {
  /* -750 */
  /* 751- */
}

@media all and (max-width: 750px) {
  #about #member .image.maria h3 {
    right: -200px;
    left: unset;
  }

  #about #member .image.maria .sns {
    left: unset;
    right: -164px;
  }

  #about #member .image.maria .person .animePerson {
    bottom: -10px;
    right: -180px;
  }

  #about #member .image.maria .person .animePerson img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    width: 150px;
    height: 200px;
  }
}
@media all and (min-width: 751px) {
  #about #member .image.maria .person::before {
    background: url("../images/top/about/mem_maria/anime1.png") no-repeat center top/cover;
  }
  #about #member .image.maria .person:hover::before {
    opacity: 1;
    -webkit-animation-name: maria_pc;
    animation-name: maria_pc;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  #about #member .image.maria .person:hover img {
    opacity: 0;
  }
  @-webkit-keyframes maria_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_maria/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_maria/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_maria/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_maria/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_maria/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
  @keyframes maria_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_maria/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_maria/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_maria/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_maria/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_maria/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
}
#about #member .textArea.maria .star {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .textArea.maria .star {
    width: 80px;
    top: -170px;
    left: 200px;
  }
}
#about #member .textArea.maria .chara {
  bottom: -90px;
  left: 20px;
  /* 751- */
}
#about #member .textArea.maria .chara img {
  width: 90px;
}
@media all and (min-width: 751px) {
  #about #member .textArea.maria .chara {
    bottom: -140px;
    left: 70px;
  }
  #about #member .textArea.maria .chara img {
    width: 150px;
  }
}

@media all and (max-width: 375px) {
  #about #member .image.maria h3 {
    right: -190px;
    left: unset;
  }

  #about #member .image.maria .sns {
    left: unset;
    right: -154px;
  }

  #about #member .image.maria .person .animePerson {
    bottom: -10px;
    right: -170px;
  }
}
#about #member .image.takuto {
  bottom: -60px;
  width: 60%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .image.takuto {
    bottom: -120px;
    width: 270px;
  }
}
#about #member .image.takuto .person {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #about #member .image.takuto .person .animePerson {
    bottom: -30px;
  }
  #about #member .image.takuto .person .animePerson img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    width: 150px;
    height: 200px;
  }
}
@media all and (min-width: 751px) {
  #about #member .image.takuto .person::before {
    background: url("../images/top/about/mem_takuto/anime1.png") no-repeat center top/cover;
  }
  #about #member .image.takuto .person:hover::before {
    opacity: 1;
    -webkit-animation-name: takuto_pc;
    animation-name: takuto_pc;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  #about #member .image.takuto .person:hover img {
    opacity: 0;
  }
  @-webkit-keyframes takuto_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_takuto/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_takuto/anime2.png") no-repeat center top/80%;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_takuto/anime2.png") no-repeat center top/80%;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_takuto/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    100% {
      background: url("../images/top/about/mem_takuto/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
  @keyframes takuto_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_takuto/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_takuto/anime2.png") no-repeat center top/80%;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_takuto/anime2.png") no-repeat center top/80%;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_takuto/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    100% {
      background: url("../images/top/about/mem_takuto/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
}
#about #member .textArea.takuto .star {
  position: absolute;
  top: -90px;
  left: 80px;
  width: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #about #member .textArea.takuto .star {
    width: 80px;
    top: -130px;
    left: 170px;
  }
}

#about #member .textArea.takuto .chara img {
  width: 90px;
}
@media all and (min-width: 751px) {
  #about #member .textArea.takuto .chara {
    bottom: -180px;
    left: 100px;
  }
  #about #member .textArea.takuto .chara img {
    width: 140px;
  }
}
/* #about #member .image.seiji {
  width: 60%;
  bottom: -60px;
} */

@media all and (min-width: 751px) {
  #about #member .image.seiji {
    width: 300px;
    bottom: -120px;
    right: -90px;
  }
}
#about #member .image.seiji .person {
  /* -750 */
  /* 751- */
}

@media all and (max-width: 750px) {
  #about #member .image.seiji .person .animePerson {
    right: -200px;
  }

  #about #member .image.seiji h3 {
    right: -200px;
    bottom: -5px;
    left: unset;
  }

  #about #member .image.seiji .sns {
    left: unset;
    right: -168px;
  }

  #about #member .image.seiji .person .animePerson {
    bottom: -30px;
  }
  #about #member .image.seiji .person .animePerson img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    width: 170px;
    height: 220px;
  }

  #about #member .image.seiji .chara {
    bottom: 100px;
  }
}
@media all and (min-width: 751px) {
  #about #member .image.seiji .person {
    max-width: 250px;
  }
  #about #member .image.seiji .person::before {
    background: url("../images/top/about/mem_seiji/anime1.png") no-repeat center top/cover;
  }
  #about #member .image.seiji .person:hover::before {
    opacity: 1;
    -webkit-animation-name: seiji_pc;
    animation-name: seiji_pc;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  #about #member .image.seiji .person:hover img {
    opacity: 0;
  }
  @-webkit-keyframes seiji_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_seiji/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_seiji/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_seiji/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_seiji/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_seiji/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
  @keyframes seiji_pc {
    /* 1枚目画像 */
    0% {
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    25% {
      background: url("../images/top/about/mem_seiji/anime1.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 2枚目画像 */
    26% {
      background: url("../images/top/about/mem_seiji/anime2.png") no-repeat center top/cover;
    }
    30% {
      opacity: 1;
    }
    55% {
      opacity: 1;
    }
    56% {
      background: url("../images/top/about/mem_seiji/anime2.png") no-repeat center top/cover;
      opacity: 0;
    }
    /* 3枚目画像 */
    57% {
      background: url("../images/top/about/mem_seiji/anime3.png") no-repeat center top/cover;
    }
    60% {
      opacity: 1;
    }
    97% {
      opacity: 1;
    }
    99% {
      background: url("../images/top/about/mem_seiji/anime3.png") no-repeat center top/cover;
      opacity: 0;
    }
  }
}
#about #member .textArea.seiji .star {
  position: absolute;
  top: -110px;
  right: 80px;
  width: 60px;
  /* 751- */
}

@media all and (min-width: 751px) {
  #about #member .textArea.seiji .star {
    top: -180px;
    right: -50px;
  }
}
@media all and (min-width: 1250px) {
  #about #member .textArea.seiji .star {
    top: -92px;
    left: 200px;
  }
}

#about #member .textArea.seiji .chara {
  bottom: -120px;
}
@media all and (max-width: 750px) {
  #about #member .textArea.seiji .chara {
    bottom: -100px;
  }
}

#about #member .textArea.seiji .chara img {
  width: 90px;
}
@media all and (min-width: 751px) {
  #about #member .textArea.seiji .chara {
    bottom: -140px;
  }
  #about #member .textArea.seiji .chara img {
    width: 110px;
  }
}

@media all and (max-width: 375px) {
  #about #member .image.seiji .person .animePerson {
    right: -190px;
  }

  #about #member .image.seiji h3 {
    right: -190px;
  }

  #about #member .image.seiji .sns {
    right: -158px;
  }
}

/*----------------------------------------------------
event topics
----------------------------------------------------*/
#event {
  padding: 35px 0 45px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #event {
    padding: 80px 0 80px;
  }
}
#event h2 {
  width: 80%;
  max-width: 400px;
  margin: 0 auto 35px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #event h2 {
    margin: 0 auto 70px;
    width: 80%;
    max-width: 600px;
  }
}
#event .conts {
  padding: 0 20px;
}
#event .scroll {
  overflow-y: scroll;
}
#event ul {
  height: 300px;
  padding-right: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #event ul {
    height: 250px;
  }
}
#event ul li {
  margin-bottom: 10px;
}
@media all and (min-width: 1150px) {
  #event ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #event ul li h3 {
    width: 20%;
  }
  #event ul li p {
    width: 70%;
  }
}
#event h3,
#event p {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  #event h3,
  #event p {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 2;
  }
}
#event h3 {
  color: #d50952;
}
#event a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #event a:hover {
    opacity: 0.8;
    text-decoration: initial;
  }
}

/*----------------------------------------------------
ライブラリーリンク
----------------------------------------------------*/
#libraryLink {
  padding-top: 30px;
  background: url("../images/top/librarylink/ground_pc.png") no-repeat;
  background-size: contain;
  background-position: center bottom;
  overflow-x: hidden;
  /* 751- */
}

@media all and (min-width: 751px) {
  #libraryLink {
    padding-top: 54px;
  }
}

#libraryLink h2 {
  width: 70%;
  max-width: 400px;
  margin: 0 auto 50px;
  position: relative;
  height: 100%;
  /* 751- */
}

@media all and (min-width: 751px) {
  #libraryLink h2 {
    margin: 0 auto 20px;
    width: 80%;
    max-width: 400px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #libraryLink h2:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media all and (min-width: 1000px) {
  #libraryLink h2 {
    max-width: 600px;
  }
}
#libraryLink h2::before {
  content: "";
  position: absolute;
  background: url("../images/top/librarylink/deco_left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 58px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #libraryLink h2::before {
    content: "";
    position: absolute;
    background: url("../images/top/librarylink/deco_left.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 78px;
    left: -60px;
  }
}
#libraryLink h2::after {
  content: "";
  position: absolute;
  background: url("../images/top/librarylink/deco_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 58px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #libraryLink h2::after {
    content: "";
    position: absolute;
    background: url("../images/top/librarylink/deco_right.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 78px;
    right: -70px;
  }
}
#libraryLink h2 a {
  display: block;
  position: relative;
  z-index: 5;
}
#libraryLink .image {
  position: relative;
  margin: 0 auto;
  width: 80%;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #libraryLink .image {
    left: -10px;
    top: -20px;
  }
}
@media all and (min-width: 751px) {
  #libraryLink .image {
    left: -40px;
    padding-bottom: 50px;
  }
}
#libraryLink .image .chara {
  position: absolute;
  width: 100px;
  bottom: -10px;
  right: -40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #libraryLink .image .chara {
    width: 30%;
    bottom: 10%;
    right: -140px;
    max-width: 200px;
  }
}
@media all and (min-width: 1300px) {
  #libraryLink .image .chara {
    max-width: 230px;
    bottom: 150px;
    right: -190px;
  }
}
/*# sourceMappingURL=top.css.map */

.only-pc { display: block; }
.only-sp { display: none; }
@media (max-width: 768px) {
  .only-pc { display: none; }
  .only-sp { display: block; }
}
.x-button {
  display: inline-block;
  margin: 24px auto 0 auto;
  text-align: center;
  width: 100%;
  max-width: 700px;
}
.x-button img {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 36px; /* 角丸が不要ならこの行も削除可 */
  box-sizing: border-box;
}
