@charset "UTF-8";
.box1, .box2, .box3 {
  border: 4px solid gray;
  height: 100px;
  width: 200px;
}

.box2, .box3 {
  background-color: yellow;
}

.box3 {
  color: red;
}

/* tag reset
##################################### */
/*! 
	html5doctor.com Reset Stylesheet
	v1.6.1
	Last Updated: 2010-09-17
	Author: Richard Clark - http://richclarkdesign.com 
	Twitter: @rich_clark
	*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #82d2db;
  color: #e75297;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #82d2db;
  color: #e75297;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  border: 0;
  border-top: 1px solid #cccccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

a {
  color: #e75297;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* font setting
##################################### */
html {
  font-size: 62.5%;
}

/* base
##################################### */
body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  background: #fff;
  color: #e75297;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.7;
  text-align: left;
}

table {
  border: 0;
  border-collapse: collapse;
  font-size: inherit;
  /* for modern browser */
  width: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: inherit;
  *font-size: 108%;
  /* for IE whole */
  line-height: 100%;
}

img {
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

object {
  margin: 0;
  padding: 0;
}

a:visited {
  color: #e75297;
  text-decoration: none;
}

ol,
li {
  list-style-type: none;
}

::-moz-selection {
  background: #fff;
}

::selection {
  background: #fff;
}

html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

img {
  height: auto;
  max-width: 100%;
}

/* module
##################################### */
@-webkit-keyframes anim_scll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes anim_scll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

html {
  overscroll-behavior-y: none;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  word-break: break-all;
}

@-webkit-keyframes hscroll {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes hscroll {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.top_txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100vw;
}

.top_txt span {
  width: auto;
}

.top_txt span:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}

.top_txt span:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

.top_txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 0;
}

.top_txt .txt {
  color: #e75297;
  white-space: nowrap;
}

.js-modal {
  display: none;
}

.mainWp {
  position: relative;
}

.mainWp::before {
  background: url(../img/common/bg_pattern.jpg);
  background-repeat: repeat;
  background-size: 20%;
  content: "";
  height: 100%;
  padding-top: 100vw;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -9;
}

/* common
##################################### */
.c_btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: solid 2px #e75297;
  color: #e75297;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  letter-spacing: 1px;
  padding-right: 1em;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.c_btn::before {
  background-color: #fff;
  bottom: -2px;
  content: "";
  height: 2px;
  position: absolute;
  right: 15px;
  width: 12px;
}

.c_btn:hover {
  color: #e75297 !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c_btn::after {
  border: 2px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  content: "";
  height: 0;
  position: absolute;
  width: 0;
  z-index: 2;
}

.c_btn:hover::before {
  background: none;
  border: 2px solid #fff;
  bottom: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  content: "";
  height: 0;
  height: auto;
  left: -2px;
  position: absolute;
  right: auto;
  top: -2px;
  width: 0;
  width: auto;
  z-index: 2;
}

.c_btn::after {
  bottom: -2px;
  right: -2px;
}

.c_btn:hover {
  border: solid 2px #fff;
}

.c_btn:hover::before,
.c_btn:hover::after {
  height: 100%;
  width: 100%;
}

.c_btn:hover::before {
  border-bottom-color: #e75297;
  border-left-color: #e75297;
  -webkit-transition: height 0.3s, width 0.3s 0.3s;
  transition: height 0.3s, width 0.3s 0.3s;
}

.c_btn:hover::after {
  border-right-color: #e75297;
  border-top-color: #e75297;
  -webkit-transition: height 0.3s, width 0.3s 0.3s;
  transition: height 0.3s, width 0.3s 0.3s;
}

/* project
##################################### */

.content_bg_layer .header_layer {
  bottom: 0;
  height: vh;
  left: 0;
  position: fixed;
  width: 100vw;
  z-index: -1;
}

.content_bg_layer .footer_layer {
  bottom: 0;
  height: 100vh;
  left: 0;
  width: 100vw;
  z-index: -1;
}

.lang {
  position: fixed;
  right: 10px;
  z-index: 9;
}

.lang .select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.lang .select a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e75297;
  border-radius: 0 8px 8px 0;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 1px;
}

.lang .select a.is-active {
  background-color: #6cdded;
}

.lang .select a:hover {
  background-color: #6cdded;
}

.lang .select a:first-child {
  border-radius: 8px 0 0 8px;
}

.gnav {
  left: 30px;
  position: fixed;
  top: 60px;
  z-index: 9;
}

.gnav_list > li {
  margin-right: 30px;
}

.gnav_list li {
  position: relative;
}

.gnav_list li::last-child {
  margin-right: 0;
}

.gnav_list li a {
  color: #e75297;
  font-weight: bold;
}

.gnav_list li a::before {
  background-image: url(../img/common/ico_navi.png);
}

.gnav_list li a:hover {
  color: #6cdded;
}

.gnav_list li a:hover::before {
  background-image: url(../img/common/ico_navi.png);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  left: -1.2em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.parent_nav:hover .child {
  display: block;
}

.nav_company,
.nav_lineup {
  position: relative;
}

.page.on .nav_company .child,
.page.on .nav_lineup .child {
  background-color: #e75297;
  border-radius: 0 30px 30px 0;
  margin-left: 3.15em;
  padding: 5px 0;
}

.page.on .nav_company .child a:hover::before,
.page.on .nav_lineup .child a:hover::before {
  left: -1.6em;
  top: 50%;
}

.page.on .head_gnav_list {
  display: none;
}

.page.on .lang {
  right: 30px;
  top: 25px;
}

#footer {
  background: #e75297;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  height: 40px;
  width: 100%;
}

#footer .inner .footer_nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#footer .inner .footer_nav .footer_nav_list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#footer .inner .footer_nav .footer_nav_list .footer_nav_list_item:first-child {
  margin-left: 0;
}

#footer .inner .footer_nav .footer_nav_list .footer_nav_list_item a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}

#footer .inner .footer_nav .footer_nav_list .footer_nav_list_item a:hover {
  opacity: 0.8;
}

.scroll {
  bottom: 50px;
  color: #e75297;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  position: fixed;
  right: 0.5vw;
  z-index: 8;
}

.scroll span {
  position: relative;
}

#btn_ptop {
  bottom: 50px;
  color: #e75297;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  position: fixed;
  right: 0.5vw;
  z-index: 8;
}

#btn_ptop a {
  color: #e75297;
}

#btn_ptop span {
  position: relative;
}

#btn_ptop span::before {
  border-style: solid;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}

.gallery_wp {
  position: relative;
}

.gallery_wp .gallery_cont {
  background-color: #fff;
}

.gallery_wp .side {
  background-color: #e75297;
  color: #fff;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gallery_wp .side:hover {
  background-color: #6cdded;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gallery_wp .side p {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery_wp .side p a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery_wp .side p span {
  padding: 0 20px 0 0;
  position: relative;
}

.gallery_wp .side p span::before {
  border: 4px solid transparent;
  border-left: 7px solid #fff;
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.tag_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 10px;
}

.tag_list .tag_list_item a {
  border: solid 1px #e75297;
  border-radius: 5px;
  color: #e75297;
  display: block;
  font-size: 1rem;
  padding: 2px 5px;
}

.tag_list .tag_list_item a.is-active {
  background-color: #6cdded;
  border-color: #6cdded;
  color: #fff;
  pointer-events: none;
}

.tag_list .tag_list_item a.is-active:hover {
  background-color: #6cdded;
  border-color: #6cdded;
  color: #fff;
  pointer-events: none;
}

.tag_list .tag_list_item a:hover {
  background-color: #e75297;
  color: #fff;
}

.gallery_img::before {
  content: "";
  display: block;
  padding-top: 141.4%;
}

.gallery_img {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.gallery_img img {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.gallery_ttl {
  color: #e75297;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

.gallery_ttl2 {
  background-color: rgba(231, 80, 151, 0.15);
  border-radius: 5px;
  color: #e75297;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 10px;
  padding: 0.5em 0.5em;
}

.gallery_release_info {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}

.gallery_release {
  color: #e75297;
  font-size: 1.1rem;
  margin-top: 5px;
}

.gallery_tag {
  background-color: rgba(231, 80, 151, 0.15);
  border-radius: 5px;
  color: #e75297;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 5px;
  padding: 0 0.5em;
}

.gallery {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.gallery .gallery_list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.gallery_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cate_list .cateitem.is-active a {
  background-color: #e75297;
}

.cate_list .cateitem a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e75297;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.4rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  outline: none;
  padding: 2px 14px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cate_list .cateitem a.is-active {
  background-color: #6cdded;
}

.cate_list .cateitem:hover a {
  background-color: #6cdded;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (min-width: 821px) {
  .sp_only {
    display: none !important;
  }
  .sp_br {
    display: none !important;
  }
  body {
    font-size: 1.6rem;
  }
  .top_txt {
    height: 24px;
    position: fixed;
    top: 18px;
  }
  .top_txt .txt {
    font-size: 1.2rem;
  }
  .c_btn {
    font-size: 1.6rem;
  }
  .page_ttl {
    -webkit-text-stroke: 0px #e75297;
    bottom: 60px;
    color: #e75297;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 10rem;
    font-weight: 900;
    left: 60px;
    line-height: 1;
    position: absolute;
    width: auto;
    z-index: 2;
  }
  .page_subttl {
    -webkit-text-stroke: 0px #e75297;
    bottom: 60px;
    color: #e75297;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 6rem;
    font-weight: 900;
    left: 8.5em;
    line-height: 1;
    position: absolute;
    width: auto;
    z-index: 2;
  }
  #container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    height: 100vh;
    width: 100%;
  }
  #container .bg {
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: -4;
  }
  #container .bg .bgimg {
    background-image: url(../img/common/bg_line.png);
    background-position: left 50vh;
    background-repeat: no-repeat;
    background-size: 5120px;
    height: 100%;
    width: 100%;
  }
  .layer_cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    width: 100%;
  }
  .content_bg_layer .footer_layer {
    position: fixed;
  }
  .base_cont {
    height: 100%;
    padding-left: 60px;
    padding-right: 60px;
    position: absolute;
    position: relative;
    width: 100%;
  }
  .base_cont .base_inner {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 60vh;
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: calc(100% - 120px);
    z-index: 9;
  }
  #btn_gnav {
    display: none;
  }
  .lang {
    top: 50px;
  }
  .lang .select a {
    font-size: 1.6rem;
    height: 40px;
    width: 40px;
  }
  .gnav_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .gnav_list li a {
    font-size: 1.6rem;
  }
  .gnav_list li a:hover::before {
    height: 12px;
    width: 15px;
  }
  .gnav_list li .child {
    display: none;
  }
  .nav_company:hover .child,
  .nav_lineup:hover .child {
    background-color: #e75297;
    display: block;
    left: 0;
    position: absolute;
    top: 1.7em;
    width: 205px;
  }
  .nav_company:hover .child li,
  .nav_lineup:hover .child li {
    line-height: 1.1;
    margin-right: 0;
  }
  .nav_company:hover .child a,
  .nav_lineup:hover .child a {
    color: #fff;
    display: block;
    font-size: 1.1rem;
    padding: 5px 10px;
  }
  .nav_company:hover .child a:hover,
  .nav_lineup:hover .child a:hover {
    background-color: #6cdded;
  }
  .nav_company:hover .child a:hover::before,
  .nav_lineup:hover .child a:hover::before {
    left: -1.6em;
    top: 50%;
  }
  .sp_only {
    display: none !important;
  }
  .sp_br {
    display: none !important;
  }
  #footer {
    bottom: 0;
    left: 0;
    position: fixed;
  }
  #footer .inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto;
    width: calc(100% - 20px);
  }
  #footer .inner .footer_nav .footer_nav_list .footer_nav_list_item {
    margin-left: 50px;
  }
  #footer .inner .copy {
    font-size: 1.2rem;
  }
  .scroll {
    height: 28px;
    overflow: hidden;
  }
  .scroll span {
    -webkit-animation-duration: 2.2s;
            animation-duration: 2.2s;
    -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: anim_scll;
            animation-name: anim_scll;
    display: block;
  }
  #btn_ptop span {
    padding-left: 1.2em;
  }
  #btn_ptop span::before {
    border-color: transparent #e75297 transparent transparent;
    border-width: 10px 12px 10px 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .layer_cont.layer01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
  }
  .lineup_cont {
    height: calc(100% - 12.5%);
    left: 0;
    position: absolute;
    top: 12.5%;
    width: 100%;
  }
  .fix {
    bottom: 100px;
    position: fixed;
    right: 20%;
    z-index: 9;
  }
  .gallery_wp {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .gallery_wp .gallery_cont {
    border-bottom: solid 1px #e75297;
    border-left: solid 1px #e75297;
    border-top: solid 1px #e75297;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 25px;
    padding: 0 10px 10px;
  }
  .gallery_wp .side {
    border-radius: 0 14px 14px 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  .gallery_wp .side p a {
    font-size: 1.2rem;
  }
  .gallery_wp .side p span::before {
    bottom: -2em;
    left: 38%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .tag_list {
    margin-top: 5px;
  }
  .tag_list .tag_list_item {
    margin: 0 2px 4px;
  }
  .gallery_item {
    margin-right: 2.89%;
    width: 22.11%;
  }
  .gallery_ttl {
    font-size: 1.3rem;
    margin-top: 5px;
  }
  .gallery_ttl2 {
    font-size: 1.2rem;
    margin-top: 5px;
  }
  .gallery_release {
    margin-top: 4px;
  }
  .gallery_tag {
    margin-top: 4px;
  }
  .gallery_list {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .swiper-slide-active {
    z-index: 3;
  }
  .number {
    padding: 12% 0;
  }
  .number__slider-wrapper {
    height: 50px;
    margin: 0 auto;
    max-width: 250px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .number__slider-wrapper:before, .number__slider-wrapper:after {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .number__slider-wrapper:before {
    top: 0;
  }
  .number__slider-wrapper:after {
    bottom: 0;
  }
  .number__slider-indicator {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  .number__slider-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .number__slider-item.swiper-slide-active span {
    color: #6cdded;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .number__slider-item span {
    color: #e75297;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 100%;
  }
  .mySwiper2 {
    height: 100%;
    margin-left: 3%;
    padding-right: 10%;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }
  .swiper-button-next,
  .swiper-button-prev {
    font-size: 1.3rem;
    height: auto;
    top: 68%;
    width: 100px;
  }
  .swiper-button-next .c_btn,
  .swiper-button-prev .c_btn {
    font-size: 1.3rem;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -10em;
    right: auto;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    left: auto;
    right: -10em;
  }
  .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    bottom: -30px;
    color: #e75297;
    font-size: 1.2rem;
  }
  .cate_list {
    bottom: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 60px;
    position: absolute;
    z-index: 999;
  }
  .cate_list .cateitem {
    margin-right: 10px;
  }
  .cate_list .cateitem::last-child {
    margin-right: 0;
  }
  .scroll,
  #btn_ptop {
    display: none !important;
  }
}

@media only screen and (max-width: 820px) {
  .pc_only {
    display: none !important;
  }
  .pc_br {
    display: none !important;
  }
  body {
    font-size: 1.4rem;
    overflow-x: hidden;
  }
  .top_txt {
    height: 15px;
    position: absolute;
    top: 5px;
    z-index: -1;
  }
  .top_txt .txt {
    font-size: 1rem;
  }
  .c_btn {
    font-size: 1.1rem;
  }
  .page_ttl {
    color: #e75297;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    line-height: 1;
  }
  .page_subttl {
    color: #e75297;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 10px;
    text-align: center;
  }
  #container {
    padding: 80px 20px 400px;
    position: relative;
    z-index: 1;
  }
  #container .bg {
    display: none;
  }
  #index .content_bg_layer .footer_layer .footer_img_layer {
    background-image: url(../img/top/top_sp_bottom_bg02.png);
  }
  .content_bg_layer {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .content_bg_layer.content_hbg_layer {
    height: 100%;
    top: 0;
  }
  .content_bg_layer .header_layer {
    height: 100%;
    position: absolute;
  }
  .content_bg_layer .header_layer .header_img_layer {
    background-image: url(../img/common/sp_top_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .content_bg_layer .footer_layer {
    position: absolute;
  }
  .content_bg_layer .footer_layer .footer_img_layer {
    background-image: url(../img/common/sp_bottom_bg02.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: -20px;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .base_cont {
    margin-top: 45px;
  }
  #btn_gnav {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #e75297;
    border-radius: 10px;
    cursor: pointer;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 2vw;
    position: fixed;
    top: 30px;
    width: 40px;
    z-index: 999999;
  }
  #btn_gnav > .liner {
    height: 17px;
    margin: auto;
    position: relative;
    width: 25px;
    z-index: 999;
  }
  #btn_gnav > .liner span {
    background: #fff;
    border-radius: 2px;
    display: block;
    height: 2px;
    position: absolute;
    right: 0;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.4s ease-in-out;
    transition: top 0.3s ease, -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, top 0.3s ease;
    transition: transform 0.4s ease-in-out, top 0.3s ease, -webkit-transform 0.4s ease-in-out;
    width: 100%;
  }
  #btn_gnav > .liner span:nth-child(1) {
    top: 0;
  }
  #btn_gnav > .liner span:nth-child(2) {
    top: 7px;
  }
  #btn_gnav > .liner span:nth-child(3) {
    top: 14px;
  }
  #btn_gnav.on {
    background: none;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    left: 25px;
    opacity: 1 !important;
    top: 20px;
    -webkit-transform: translate(0px, 0px) !important;
            transform: translate(0px, 0px) !important;
  }
  #btn_gnav.on > .liner span:nth-child(1) {
    background-color: #e75297;
    top: 7px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  #btn_gnav.on > .liner span:nth-child(2) {
    opacity: 0;
  }
  #btn_gnav.on > .liner span:nth-child(3) {
    background-color: #e75297;
    top: 7px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  .lang {
    top: 25px;
  }
  .lang .select a {
    font-size: 1.2rem;
    height: 30px;
    width: 30px;
  }
  .gnav {
    display: none;
    height: 100%;
    height: calc(100vh * 1.142726719415703);
    left: 0;
    overflow: hidden;
    padding: 10px;
    top: 0;
    width: 100%;
    z-index: 9;
  }
  .gnav::before {
    background: url(../img/common/bg_pattern.jpg);
    background-repeat: repeat;
    background-size: 20%;
    content: "";
    height: calc(100vh * 1.142726719415703);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  .gnav_list li a {
    font-size: 3.6rem;
  }
  .gnav_list li a:hover::before {
    height: 28px;
    left: -1em;
    width: 30px;
  }
  .gnav_list .nav_company,
  .gnav_list .nav_lineup {
    margin-bottom: 20px;
  }
  .gnav_list .nav_company > a,
  .gnav_list .nav_lineup > a {
    color: #6cdded;
    padding-left: 1em;
    position: relative;
  }
  .gnav_list .nav_company > a::before,
  .gnav_list .nav_lineup > a::before {
    background-image: url(../img/common/ico_navi.png);
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    height: 25px;
    left: 0em;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
  }
  .page.on .nav_company .child a,
  .page.on .nav_lineup .child a {
    color: #fff;
    display: block;
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 5px 10px;
  }
  .page.on .gnav_list .nav_company > a:hover::before,
  .page.on .gnav_list .nav_lineup > a:hover::before {
    -webkit-transform: translateY(-50%);
    background-image: url(../img/common/ico_navi.png);
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    height: 25px;
    left: 0em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
  }
  .page.on .gnav_list .child_list_item > a:hover::before {
    left: -2.6em;
  }
  .page.on .gnav_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 10%;
    padding-top: 0;
    position: relative;
    width: 100%;
  }
  .page.on .gnav_wrap .gnav_cont {
    overflow-y: auto;
    position: relative;
    width: 100%;
  }
  .page.on .gnav_wrap .gnav_cont::before {
    background: url(../img/common/sp_nav_line_up.png);
    background-repeat: no-repeat;
    background-size: 98%;
    content: "";
    left: 0;
    padding-top: 14%;
    position: absolute;
    top: 0;
    top: 0;
    width: 100%;
    width: 100%;
    z-index: -1;
    z-index: -1;
  }
  .page.on .gnav_wrap .gnav_cont::after {
    background: url(../img/common/sp_nav_line_down.png);
    background-repeat: no-repeat;
    background-size: 98%;
    bottom: 0;
    content: "";
    content: "";
    left: 0;
    padding-top: 10%;
    position: absolute;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  .page.on .gnav_wrap .gnav_cont .gnav_list {
    background: url(../img/common/sp_nav_line_middle.png);
    background-repeat: repeat-y;
    background-size: 98%;
    margin-bottom: 10%;
    margin-top: 8%;
    padding-left: 3em;
    padding-top: 7%;
    text-align: center;
  }
  .page.on .gnav_wrap .gnav_cont .gnav_list > li {
    text-align: left;
  }
  .pc_only {
    display: none !important;
  }
  .pc_br {
    display: none !important;
  }
  #footer {
    height: 55px;
    position: relative;
    z-index: 9;
  }
  #footer .inner .footer_nav {
    margin-bottom: 10px;
  }
  #footer .inner .footer_nav .footer_nav_list {
    margin-left: 20px;
  }
  #footer .inner .footer_nav .footer_nav_list .footer_nav_list_item {
    margin-left: 20px;
  }
  #footer .inner .copy {
    bottom: 5px;
    font-size: 1rem;
    position: absolute;
    right: 5px;
  }
  .scroll span {
    padding-right: 0em;
    width: 25px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  #btn_ptop span {
    padding-right: 0em;
    width: 25px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  #btn_ptop span::before {
    border-color: transparent transparent #e75297 transparent;
    border-width: 10px 10px 10px 0;
    border-width: 0 10px 10px 10px;
    left: 4px;
    top: -1em;
  }
  .lineup_cont {
    margin-top: 50px;
  }
  .gallery_wp .gallery_cont {
    border: solid 1px #e75297;
    padding: 0 0 20px;
  }
  .gallery_wp .side {
    border-radius: 0 0 10px 10px;
  }
  .gallery_wp .side p span::before {
    right: 0;
    top: 50%;
  }
  .tag_list .tag_list_item {
    margin: 0 3px 5px;
  }
  .gallery_item {
    margin-bottom: 30px;
    width: 48%;
  }
  .gallery_ttl {
    padding: 0 5px;
  }
  .gallery_ttl2 {
    padding: 0.5em 0.5em;
  }
  .gallery_release {
    padding: 0 5px;
  }
  .gallery_tag {
    padding: 0 5px;
  }
  .gallery_body {
    padding: 0 5px;
  }
  .gallery_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cate_list {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    padding: 0 10px;
  }
  .cate_list .cateitem {
    margin: 0 5px 10px;
  }
  .fix {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: 100%;
  }
  .pager_next:after,
  .pager_prev:after {
    display: none;
  }
  .pager_next,
  .pager_prev {
    bottom: -50px;
    font-size: 2rem;
    height: auto;
    width: 100px;
  }
  .pager_next .c_btn,
  .pager_prev .c_btn {
    font-size: 2rem;
  }
  .pager_prev {
    left: 0;
    position: absolute;
  }
  .pager_next {
    position: absolute;
    right: 0;
  }
  .pager {
    color: #e75297;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 2rem;
    font-weight: bold;
  }
  .pager_number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .pager_number .pager_number_item {
    margin: 0 12px;
  }
  .pager_number a {
    color: #e75297;
  }
  .pager_number a:hover {
    color: #6cdded;
  }
}

@media only screen and (min-width: 821px) and (max-height: 800px) {
  .page_ttl {
    bottom: 52px;
    font-size: 7.5rem;
  }
  .page_subttl {
    bottom: 52px;
    font-size: 4.5rem;
    left: 8.7em;
  }
  .gnav {
    top: 45px;
  }
  .fix {
    bottom: 80px;
    right: 15%;
  }
  .gallery_wp .gallery_cont {
    padding: 0 10px 10px;
  }
  .tag_list {
    margin-top: 4px;
  }
  .tag_list .tag_list_item a {
    padding: 0px 3px;
  }
  .gallery_ttl {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 2px;
  }
  .gallery_ttl2 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 2px;
  }
  .gallery_release {
    margin-top: 3px;
  }
  .gallery_tag {
    margin-top: 3px;
  }
  .cate_list {
    bottom: 134px;
  }
}

@media only screen and (max-width: 820px) and (min-width: 821px) {
  .page_ttl {
    font-size: 9rem;
  }
}

@media only screen and (max-width: 820px) and (max-width: 820px) {
  .page_ttl {
    font-size: 6rem;
    text-align: center;
  }
}

@media only screen and (max-width: 820px) and (max-width: 480px) {
  .page_ttl {
    font-size: 5rem;
  }
  .gnav_list .nav_company > a::before,
  .gnav_list .nav_lineup > a::before {
    height: 20px;
    width: 22px;
  }
  .pager_next .c_btn,
  .pager_prev .c_btn {
    font-size: 1.5rem;
  }
  .pager_number .pager_number_item {
    font-size: 1.5rem;
    margin: 0 10px;
  }
}

@media only screen and (max-width: 480px) {
  .gnav_list > li {
    margin-right: 20px;
  }
  .gnav_list li a {
    font-size: 3rem;
  }
  .gnav_list li a:hover::before {
    height: 20px;
    left: -1em;
    width: 22px;
  }
  .page.on .nav_company .child a,
  .page.on .nav_lineup .child a {
    font-size: 1.5rem;
  }
  .page.on .gnav_list .nav_company > a:hover::before,
  .page.on .gnav_list .nav_lineup > a:hover::before {
    height: 20px;
    left: 0em;
    width: 22px;
  }
  .page.on .gnav_list .child_list_item > a:hover::before {
    left: -1.8em;
  }
}

@media only screen and (max-width: 375px) {
  .gnav_list li a {
    font-size: 2.5rem;
  }
  .page.on .nav_company .child a,
  .page.on .nav_lineup .child a {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1025px) {
  .layer_cont.layer01 {
    width: 100%;
  }
  .gallery_wp .gallery_cont {
    border-bottom: solid 1px #e75297;
    border-left: solid 1px #e75297;
    border-top: solid 1px #e75297;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 30px;
    padding: 0 15px 15px;
  }
  .gallery_wp .side {
    width: 30px;
  }
  .gallery_wp .side p a {
    font-size: 1.6rem;
  }
  .tag_list {
    margin-top: 10px;
  }
  .gallery_item {
    margin-right: 2.89%;
    width: 22.11%;
  }
  .gallery_ttl {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  .gallery_ttl2 {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .gallery_release {
    margin-top: 5px;
  }
  .gallery_tag {
    margin-top: 5px;
  }
  .swiper-slide-active {
    z-index: 3;
  }
  .number {
    padding: 12% 0;
  }
  .number__slider-wrapper {
    height: 50px;
    margin: 0 auto;
    max-width: 250px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .number__slider-wrapper:before, .number__slider-wrapper:after {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .number__slider-wrapper:before {
    top: 0;
  }
  .number__slider-wrapper:after {
    bottom: 0;
  }
  .number__slider-indicator {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  .number__slider-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .number__slider-item.swiper-slide-active span {
    color: #6cdded;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .number__slider-item span {
    color: #e75297;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 100%;
  }
  .mySwiper2 {
    height: 100%;
    margin-left: 3%;
    padding-right: 3%;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }
  .swiper-button-next,
  .swiper-button-prev {
    font-size: 1.3rem;
    height: auto;
    top: 68%;
    width: 100px;
  }
  .swiper-button-next .c_btn,
  .swiper-button-prev .c_btn {
    font-size: 1.3rem;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -10em;
    right: auto;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    left: auto;
    right: -10em;
  }
  .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    bottom: -30px;
    color: #e75297;
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1441px) {
  .layer_cont.layer01 {
    width: 100%;
  }
}

@media only screen and (min-width: 1025px) and (max-height: 800px) {
  .gallery_wp .gallery_cont {
    padding: 0 15px 10px;
  }
  .tag_list {
    margin-top: 4px;
  }
  .gallery_ttl {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 5px;
  }
  .gallery_ttl2 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 5px;
  }
  .gallery_release {
    margin-top: 3px;
  }
  .gallery_tag {
    margin-top: 3px;
  }
}

@media only screen and (min-width: 1200px) {
  .gallery_wp .gallery_cont {
    border-bottom: solid 1px #e75297;
    border-left: solid 1px #e75297;
    border-top: solid 1px #e75297;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 30px;
    padding: 0 20px 15px;
  }
  .gallery_item {
    margin-right: 2.89%;
    width: 22.11%;
  }
  .swiper-slide-active {
    z-index: 3;
  }
  .number {
    padding: 12% 0;
  }
  .number__slider-wrapper {
    height: 50px;
    margin: 0 auto;
    max-width: 250px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .number__slider-wrapper:before, .number__slider-wrapper:after {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .number__slider-wrapper:before {
    top: 0;
  }
  .number__slider-wrapper:after {
    bottom: 0;
  }
  .number__slider-indicator {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  .number__slider-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-align: center;
    width: 100%;
  }
  .number__slider-item.swiper-slide-active span {
    color: #6cdded;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .number__slider-item span {
    color: #e75297;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 100%;
  }
  .mySwiper2 {
    height: 100%;
    margin-left: 4%;
    padding-right: 10%;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }
  .swiper-button-next,
  .swiper-button-prev {
    font-size: 1.3rem;
    height: auto;
    top: 68%;
    width: 100px;
  }
  .swiper-button-next .c_btn,
  .swiper-button-prev .c_btn {
    font-size: 1.3rem;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -10em;
    right: auto;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    left: auto;
    right: -10em;
  }
  .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    bottom: -30px;
    color: #e75297;
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 821px) and (max-height: 900px) {
  .tag_list {
    margin-top: 4px;
  }
  .tag_list .tag_list_item a {
    padding: 0px 3px;
  }
  .gallery_ttl {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 2px;
  }
  .gallery_ttl2 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 2px;
  }
}

@media only screen and (min-width: 1025px) and (max-height: 900px) {
  .tag_list {
    margin-top: 4px;
  }
  .gallery_ttl {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 5px;
  }
  .gallery_ttl2 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 5px;
  }
  .gallery_release {
    margin-top: 3px;
  }
  .gallery_tag {
    margin-top: 3px;
  }
}

@media only screen and (max-height: 900px) {
  .cate_list .cateitem a {
    font-size: 1.4rem;
    padding: 2px 14px;
  }
}

@media only screen and (max-height: 800px) {
  .cate_list .cateitem a {
    font-size: 1.4rem;
    padding: 2px 14px;
  }
}

@media only screen and (max-width: 820px) and (max-width: 375px) {
  .pager_number .pager_number_item {
    font-size: 1.4rem;
    margin: 0 7px;
  }
}
