@charset "utf-8";
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(//use.fontawesome.com/releases/v5.0.6/css/all.css);

/*
	font-family:"FontAwesome";
	font-family:"Font Awesome 5 Free";
*/
/*========================================
 Base
========================================*/
html {
  font-size: 100%;
}

body {
  font: 1em/normal 'Noto Sans JP', sans-serif;
  background-color: #fff;
  margin-bottom: 0px;
  width: auto;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.weight100 {
  font-weight: 100
}

.weight300 {
  font-weight: 300
}

.weight400 {
  font-weight: 400
}

.weight500 {
  font-weight: 500
}

.weight600 {
  font-weight: 600
}

.weight700 {
  font-weight: 700
}

.weight900 {
  font-weight: 900
}

.ruika {
  font-family: ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
}

li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  /*text-decoration: underline;*/
}

* {
  box-sizing: border-box;
}

.border {
  border-top: 5px dotted #FABE00;
  margin: 0px auto;
  width: 80%;
}

.blank {
  display: inline-block;
}

.laege {
  font-size: 2rem;
  width: auto;
}

.s_laege {
  font-size: 1.5rem;
  margin-left: 0px;
}

.x_laege {
  font-size: 4rem;
  margin-right: 0px;
  padding-top: 0px;
}

.small {
  font-size: 0.8em;
}

.bold {
  font-weight: bold;
}

.white {
  color: #FFFFFF;
}

.pink {
  color: #FFA3C9;
}

.purple {
  color: #A6A5F0;
}

.margin_top {
  margin-top: 2rem;
}

.margin_left {
  margin-left: 2rem;
}

.margin_top01 {
  margin-top: 1rem;
}

.margin_left01 {
  margin-left: 1rem;
}

.margin_right05 {
  margin-right: 0.5rem;
}

.txt_wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text {
  margin-bottom: 150px;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.block {
  display: block;
  margin-top: 0px;
}

/* フェードインエフェクト */
.element {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
  /* （装飾用スタイル） */
  width: 80%;
  height: auto;
}

/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.line {
  display: inline-block;
  padding: 2px 10px;
  background-color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.spOnly {
  display: none;
}

/* topへ戻る */
footer {
  width: 980px;
  margin: 30px auto;
}

footer .copyright {
  color: #fff;
  text-shadow: 1px 1px 3px #c7161d;
}

footer .copyright ul {
  overflow: hidden;
}

footer .copyright li {
  display: inline-block;
  margin: 0 2em 6px 0;
}

#footerGroup #totop {
  width: 40px;
  height: 40px;
  padding: 0;
  text-indent: -9999px;
  background-color: #0079c7;
  border-radius: 100%;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 800;
  display: none;
  cursor: pointer;
}

#footerGroup #totop a {
  display: block;
}

#footerGroup #totop::after {
  content: "\f106";
  font-family: "FontAwesome";
  font-size: 40px;
  line-height: 35px;
  text-indent: 0;
  text-align: center;
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/*====================================================
 renewal
====================================================*/
/*------------ポップアップ------------*/
body.open_popup {
  overflow: hidden;
}

.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  min-width: 500px;
  max-width: 800px;
  background-color: #fff;
  border-radius: 8px;
}

.onetime_popup_title {
  position: relative;
  padding: 1em 40px;
  margin: 0px;
  background-color: #fff;
  color: #333;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
  border-radius: 8px 8px 0 0;
}

.onetime_popup_title_close {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}

.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 4px;
  background-color: #cdcbcb;
  content: "";
}

.onetime_popup_title_close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.onetime_popup_title_close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
  padding: 0 40px 30px;
  text-align: center;
  font-size: 20px;
}

/*------------ヘッダーナビゲーション------------*/
#main-nav {
  width: 100%;
  background: #fff;
}

#main-nav.fixed {
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
}

.main-nav__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  min-width: 1080px;
  height: 80px;
  padding-bottom: 15px;
  margin: 0 auto;
}

.main-nav__logo img {
  margin: 0 1rem;
  max-width: 180px;
  height: 100%;
  vertical-align: text-bottom;
}

.pc-nav__list {
  display: flex;
}

.pc-nav__item {
  margin: 0 1rem;
}

.pc-nav__item a {
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  color: #707070;
}

.pc-nav__item a:hover {
  color: #FF79B0;
}

/*------------トップエリア------------*/
#top {
  background-image: url(../images/webp/top1280.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.top__wrap {
  position: relative;
  margin: auto;
  padding: 2% 0;
  min-height: 450px;
  height: auto;
  width: 1080px;
}

.top__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  text-align: center;
}

.top__logo--img {
  margin-bottom: 1rem;
  max-width: 230px;
  height: auto;
}

.top__text--line {
  display: block;
  margin-bottom: 1.2rem;
  padding: 0 10px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  background-color: #FFA3C9;
  filter: drop-shadow(6px 6px 0 #FF79B0);
}

/*アプリアイコン*/
.top__app {
  margin: 1rem auto;
  width: 100%;
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
}

.top__apple--img,
.top__google--img {
  padding: 10px 5px;
  height: 70px;
  width: auto;
}

.top__app--qr {
  width: 90px;
}

/*------------ 全体 共通------------*/
.news__wrap,
.youtube__wrap,
.info__wrap,
.service__wrap,
.start__wrap,
.charge__wrap,
.howto__wrap,
.shop__wrap,
.coin__wrap {
  margin: 0 auto;
  width: 1080px;
}

.wrap__title {
  padding-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.4em;
}

.wrap__title-img {
  margin-right: 1rem;
  max-width: 180px;
  height: auto;
  vertical-align: middle;
}

.intro__text {
  margin: 2rem auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

img {
  width: 100%;
  height: auto;
}

.btn-box {
  padding: 1rem 0;
  text-align: center;
}

/*ボタン 詳しくはこちら*/
.btn-detail {
  display: block;
  margin: 1rem auto;
  padding: 14px 0 10px;
  border: 1px solid #cdcbcb;
  border-radius: 9999px;
  background-color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  line-height: 1.2;
  text-decoration: none;
  width: 380px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 0 #cdcbcb;
}

.btn-detail span {
  font-size: 1rem
}

.btn-detail:hover {
  margin: 1.2rem auto 0.8rem;
  box-shadow: 0 2px 0 #cdcbcb;
}

.sup {
  vertical-align: top;
  font-size: 0.8rem;
}

/*ボタン チャージ*/
.btn-charge {
  display: inline-block;
  margin: 1rem auto;
  padding: 20px;
  min-width: 500px;
  box-sizing: border-box;
  background: #A6A5F0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 0 #8280F4;
  position: relative;
}

.btn-charge::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn-charge::after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 1.8rem;
  font-weight: normal;
  display: inline-block;
  color: #A6A5F0;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}

.btn-charge:hover {
  margin: 1.2rem auto 0.8rem;
  box-shadow: 0 2px 0 #8280F4;
}

.btn-charge span {
  font-size: 1rem;
  font-weight: normal;
}

/*円形画像リスト*/
.service__group,
.charge__group,
.shop__group {
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service__item,
.charge__item,
.shop__item {
  width: calc((100% - 24%) / 3);
  text-align: center;
  margin: 0 4% 2%;
}

.service__img,
.charge__img,
.shop__img {
  margin: 1rem auto;
  max-width: 250px;
}

/*注意文言*/
.note__list {
  margin: 2rem auto;
  text-align: center;
  font-size: 14px;
}

/*------------NEWS情報------------*/
#news {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dedede;
}

.news__item {
  display: flex;
}

.news__item span {
  margin-right: 1rem;
  color: #FFA3C9;
  font-weight: bold;
}

/*------------youtube------------*/
#youtube {
  padding: 5% 0;
}

.video-container {
  text-align: center;
}

.video-container iframe {
  max-width: 100%;
  border-radius: 5px;
}

/*------------お知らせ キャンペーン情報------------*/
#info {
  padding: 3% 0 6%;
}

.info__item {
  margin: 1rem;
  padding: 20px;
  box-shadow: 0px 0px 6px #ccc;
  border-radius: 5px;
}

.info__img {
  width: 100%;
  height: auto;
}

.info__tag--now,
.info__tag--entry,
.info__tag--noentry,
.info__tag--attention {
  display: inline-block;
  margin: 10px 10px 0 0;
  background: #FFA3C9;
  color: #fff;
  padding: 0px 10px;
  line-height: 1.5;
}

.info__tag--entry {
  background: #FFF35C;
  color: #333;
}

.info__tag--noentry {
  background: #a6a5f0;
  color: #fff;
}

.info__tag--attention {
  background: #fff;
  outline: 1px solid;
  outline-offset: -1px;
  color: #d55454;
}

.info__tag--last {
  position: absolute;
  bottom: 36px;
  right: 40px;
  font-size: 14px;
  color: #d55454;
}

/*キャンペーン還元率イメージ*/
.pointCP__image {
  margin: 2rem auto;
  max-width: 900px;
}

/*カルーセル調整*/
.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 !important;
  width: 100px;
  height: 2px;
  background: #dedede;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #A6A5F0;
}

.info__swiper {
  position: relative;
}

.swiper-button-prev {
  left: -40px;
}

.swiper-button-next {
  right: -40px;
}

.swiper-pagination {
  bottom: 0px !important;
  position: relative;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "FontAwesome";
  color: #A6A5F0;
  font-weight: bold;
}

.swiper-button-next::after {
  content: "\f138";
}

.swiper-button-prev::after {
  content: "\f137";
}

.swiper-slide {
  margin: 0 auto;
}

/*アニメイトアプリ ニュース*/
.info__wrap.info__flex {
  display: flex;
  margin: 2% auto;
  padding: 5px 20px;
  width: 600px;
  justify-content: space-evenly;
  border: 10px solid #eee;
  align-items: center;
}

.info__app-img {
  margin: 15px 0;
  text-align: center;
}

.info__app-img img {
  width: 150px;
  border: 1px solid #ccc;
}

.info__flex h3 {
  font-size: 1.3rem;
  color: #ffa3c9;
}

.info__flex h3 a {
  color: #ffa3c9;
  text-decoration: underline;
  transition: all 0.3s;
}

.info__flex h3 a:hover {
  color: #a6a5f0;
}

/*------------サービスについて------------*/
#service {
  padding: 5% 0;
  background-color: #A6A5F0;
  color: #fff;
}

.service__text {
  margin-bottom: 1rem;
  filter: drop-shadow(4px 4px 0 #8280F4);
}

/*特徴*/
.feature {
  margin-bottom: 5rem;
  padding: 3rem;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 5px;
  border-top: 18px solid #FFF35C;
}

.feature__title {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 2;
}

.feature__logo-img {
  margin-right: 1rem;
  max-width: 180px;
  height: auto;
  vertical-align: text-bottom;
}

.feature__group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: left;
}

.feature__group-img {
  margin-right: 2rem;
  max-width: 350px;
}

.feature__text {
  line-height: 1.6;
}

.feature__link a {
  color: #fff;
}

.feature__link.btn-charge {
  padding: 25px 50px 25px 20px;
  font-size: 1.4rem;
}

/*------------アニメイトペイの始め方------------*/
#start {
  padding: 5% 0;
  background: #F5F5F5;
  color: #333333;
}

.start__group {
  display: flex;
}

.start__item {
  width: calc((100% - 6%) / 3);
  margin: 0 1% 5%;
  text-align: center;
}

.start__number {
  position: relative;
  top: 2rem;
  display: inline-block;
  padding: 0.6rem 1rem;
  background: #A6A5F0;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
}

.start__number span {
  display: block;
  font-size: 1.6rem
}

.start__box {
  background: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
}

.start__img {
  margin-top: 3rem;
  max-width: 250px;
}

.start__text {
  padding-bottom: 1rem;
}

/*------------ご利用できるチャージ方法------------*/
#charge {
  padding: 5% 0;
  background: #FFF35C;
  color: #333333;
}

.charge__text {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

/*------------アニメイトペイの使い方------------*/
#howto {
  padding: 5% 0;
  background: #FFA3C9;
  color: #fff;
}

.howto__group {
  display: flex;
  margin: 3rem auto;
  align-items: center;
  justify-content: space-evenly;
}

.howto__img {
  max-width: 350px;
}

.howto__text p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.howto__text--line {
  margin-bottom: 1rem;
  filter: drop-shadow(6px 6px 0 #FF79B0);
}

.howto__text--line .line {
  font-size: 1.8rem;
}

.howto__text--line .line.laege {
  font-size: 2.4rem;
}

/*------------アニメイトペイの使えるお店------------*/
#shop {
  padding: 5% 0;
  background: #A6A5F0;
  color: #fff;
}

.shop__text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/*------------アニメイトコインについて------------*/
#coin {
  padding: 5% 0;
  background: #F5F5F5;
  color: #333333;
}

.coin__group {
  display: flex;
  align-items: center;
}

.coin__img {
  margin-right: 2rem;
  max-width: 350px;
}

.coin__note {
  padding-left: 2rem;
  width: auto;
}

.coin__item {
  margin-bottom: 2rem;
}

/*------------フッター------------*/
#footer {
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer__item {
  display: inline-block;
}

.footer__item:after {
  content: "|";
}

.footer__item:last-child::after {
  content: none;
}

.footer__item a {
  padding: 0 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.footer__item a:hover {
  opacity: 0.7;
}

/*------------モーダルウィンドウ------------*/
button {
  color: #000;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.close a {
  display: block;
  width: 40px;
  height: 40px;
  background: #ededed;
  border-radius: 999px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

@media screen and (min-width: 1400px) {}

/*====================================================
 スマホ
====================================================*/
@media screen and (max-width: 600px) {
  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }

  .laege {
    font-size: 1.5rem;
  }

  .s_laege {
    font-size: 1.2rem;
  }

  .x_laege {
    font-size: 2.5rem;
  }

  .block {
    display: block;
    width: 10%;
  }

  /*------------ポップアップ------------*/
  .onetime_popup {
    width: 90%;
    min-width: 300px;
  }

  .onetime_popup_title {
    padding: 0.8em 20px;
  }

  .onetime_popup_title_close {
    right: 20px;
  }

  .onetime_popup_content {
    padding: 0 20px 16px;
    font-size: 16px;
  }

  /*------------ナビゲーション------------*/
  .main-nav__wrap {
    align-items: center;
    min-width: 100%;
    height: 60px;
    padding: 0;
  }

  .main-nav__logo img {
    width: 120px;
  }

  /*ハンバーガーメニュー*/
  .hamburger {
    display: block;
    position: sticky;
    z-index: 200;
    right: 0;
    top: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    background: #333;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  .hamburger.active span:nth-child(1) {
    top: 20px;
    left: 0;
    background: #333;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    background: #333;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .sp-nav {
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    margin-top: 60px;
    padding-bottom: 1rem;
    color: #333;
    background: #fff;
    text-align: center;
    width: 100%;
    transform: translateX(100%);
    transition: all 0.3s;
  }

  .sp-nav__list {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .sp-nav__item {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
  }

  .sp-nav__item:last-child {
    padding-bottom: 0;
  }

  .sp-nav__item:hover {
    color: #FFA3C9;
  }

  .sp-nav__item a {
    display: block;
    color: #333;
    padding: 1rem 0;
    text-decoration: none;
    margin: 0px auto;
    width: 90%;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid #dedede;
  }

  /* jQuery */
  .sp-nav.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }

  /*------------トップエリア------------*/
  #top {
    background-image: none;
  }

  .top__wrap {
    padding: 0;
    width: 100%;
    min-height: auto;
  }

  .top__item {
    position: static;
    top: 0;
    left: 0;
    transform: none;
    background-color: #FEF35D;
  }

  .top__logo--img {
    max-width: 100%;
  }

  .top__text {
    margin: 0 auto;
    padding-bottom: .5rem;
    max-width: 320px;
    width: 90%;
  }

  .top__text--line {
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .top__apple--img,
  .top__google--img {
    padding: 0 .5rem 0 0;
    max-height: 48px;
    width: auto;
  }

  /*カルーセル調整*/
  .swiper-pagination-bullet {
    width: 50px;
  }

  /*------------ 全体 共通------------*/
  #youtube,
  #service,
  #start,
  #charge,
  #howto,
  #shop,
  #coin {
    padding: 50px 0;
  }

  .news__wrap,
  .youtube__wrap,
  .info__wrap,
  .service__wrap,
  .start__wrap,
  .charge__wrap,
  .howto__wrap,
  .shop__wrap,
  .coin__wrap {
    width: 90%;
  }

  .wrap__title {
    padding-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .wrap__title-img {
    max-width: 150px;
  }

  .intro__text {
    margin: 1rem auto;
    font-size: 16px;
    text-align: left;
    line-break: strict;
  }

  /*注意文言*/
  .note__list {
    text-align: left;
  }

  /*ボタン 詳しくはこちら*/
  .btn-box {
    padding: 0;
  }

  .btn-detail {
    max-width: 280px;
    width: 80%;
    font-size: 1.1rem;
  }

  .btn-detail span {
    font-size: 12px;
  }

  .btn-detail:hover {
    margin: 1rem auto;
    box-shadow: 0 5px 0 #cdcbcb;
  }

  .btn-charge {
    padding: 15px 30px 15px 20px;
    max-width: 380px;
    min-width: 300px;
    font-size: 1.2rem;
  }

  .btn-charge::before {
    width: 25px;
    height: 25px;
    right: 15px;
  }

  .btn-charge::after {
    right: 22px;
    font-size: 20px;
  }

  .btn-charge:hover {
    margin: 1rem auto;
    box-shadow: 0 5px 0 #8280F4;
  }

  .btn-charge span {
    font-size: 0.75rem;
  }

  /*------------NEWS情報------------*/
  .news__item {
    padding-bottom: 0.5rem;
    font-size: 14px;
  }

  .news__item {
    display: inline-block;
  }

  .news__item:last-child {
    padding-bottom: 0;
  }

  .news__item span {
    display: block;
    margin-right: 0;
  }

  /*------------youtube------------*/
  .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /*------------キャンペーン------------*/
  #info {
    padding: 0 0 20%;
  }

  #info .intro__text {
    text-align: center;
  }

  .info__item {
    margin: 0.5rem;
    padding: 10px;
  }

  .info__tag--now,
  .info__tag--entry,
  .info__tag--noentry,
  .info__tag--attention {
    margin: 0px 0 2px 0;
    font-size: 14px;
  }

  .info__tag--last {
    position: static;
    text-align: center;
    padding-top: 4px;
  }

  /*キャンペーン還元率イメージ*/
  .pointCP__image {
    width: 85%;
  }

  /*アニメイトアプリ ニュース*/
  .info__wrap.info__flex {
    display: block;
    text-align: center;
    margin: 5% auto 0;
    padding: 1rem;
    width: 85%;
  }

  .info__app-img {
    margin-bottom: 0;
  }

  .info__app-img img {
    width: 100px;
  }

  .info__flex h3 {
    font-size: 1rem;
  }

  /*------------サービスについて------------*/
  .service__wrap .wrap__title-img {
    display: block;
    margin: 1rem auto;
  }

  .service__group {
    display: block;
  }

  .service__item {
    margin: 1rem auto 2rem;
    width: 90%;
  }

  .service__img {
    width: 80%;
  }

  .service__text {
    margin-bottom: 0.8rem;
  }

  .service__text .line {
    font-size: 1.2rem;
  }

  /*特徴*/
  .feature {
    padding: 20px;
    margin-bottom: 2.5rem;
  }

  .feature .note__list {
    margin: 1rem auto;
  }

  .feature__title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .feature__text {
    line-height: 1.5;
    text-align: left;
  }

  .feature__logo-img {
    margin-right: 10px;
    max-width: 120px;
  }

  .feature__group {
    display: block;
    text-align: center;
  }

  .feature__group-img {
    margin: 0 auto 1rem;
    max-width: 90%;
  }

  .feature__link.btn-charge {
    padding: 10px 50px 10px 20px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  /*------------アニメイトペイの始め方------------*/
  .start__group {
    display: block;
  }

  .start__item {
    margin: 0 auto 1rem;
    width: 90%;
  }

  .start__text {
    padding: 1rem;
  }

  /*------------ご利用できるチャージ方法------------*/
  .charge__item {
    margin: 0 5% 2% 0;
    width: calc((100% - 5%) / 2);
  }

  .charge__item:nth-child(even) {
    margin: 0;
  }

  .charge__text {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  /*------------アニメイトペイの使い方------------*/
  .howto__group {
    display: block;
    margin: 2rem auto;
  }

  .howto__img {
    margin: 0 auto 1rem;
    width: 70%;
  }

  .howto__text .line {
    font-size: 1.3rem;
  }

  .howto__text .line.laege {
    font-size: 1.5rem;
  }

  /*------------アニメイトペイの使えるお店------------*/
  .shop__text {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .shop__group {
    justify-content: flex-start;
  }

  .shop__item {
    margin: 0 5% 2% 0;
    width: calc((100% - 5%) / 2);
  }

  .shop__item:nth-child(even) {
    margin: 0;
  }

  /*------------アニメイトコインについて------------*/
  .coin__group {
    display: block;
  }

  .coin__img {
    margin: 1rem auto;
    width: 70%;
  }

  .coin__list {
    padding: 0;
  }

  .coin__item {
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  /*------------フッター------------*/
  .footer__item:after {
    content: none;
  }
}

@media screen and (max-width: 320px) {
  .top__text--line {
    font-size: 1.4rem;
  }

  .btn-detail {
    font-size: 1rem;
  }

  .btn-detail span {
    font-size: 11px;
  }

  .btn-charge {
    font-size: 1.2rem;
  }

  .wrap__title {
    font-size: 1.3rem;
  }

  .wrap__title-img {
    max-width: 130px;
    margin-right: 0.5rem;
  }

  .howto__text p {
    font-size: 1rem;
  }

  .howto__text .line {
    font-size: 1rem;
  }

  .howto__text .line.laege {
    font-size: 1.3rem;
  }

  .howto__text--line {
    margin-bottom: 0.8rem;
  }
}