@charset "UTF-8";
font {
  white-space: nowrap;
}

.arrow {
  position: relative;
  display: inline-block;
}

.arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-top: solid 1px #555; /* 好みで色を変えてください */
  border-right: solid 1px #555; /* 好みで色を変えてください */
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -20px;
}

figure.test img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
===============================================================================
Body
===============================================================================
*/
* {
  font-family: "BIZ UDPGothic", sans-serif;
}

textarea,
input,
select {
  font-family: "BIZ UDPGothic", sans-serif;
}

html {
  color: #141414;
  font-size: 15px;
  line-height: 1.5;
  overflow: auto;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
}

.pc {
  display: none !important;
}

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

a {
  color: #333;
  text-decoration: none;
}

body {
  overflow: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/*
===============================================================================
Header
===============================================================================
*/
header {
  display: block;
  width: 100%;
  height: 80px;
  padding: 20px 2.5%;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
header #site_name {
  width: 207px;
  height: 40px;
}
header #site_name img {
  display: block;
  width: auto;
  height: 100%;
}

header #header-actions #header-contents ul.sns {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
header #header-actions #header-contents ul.sns li {
  width: 40px;
}

/*
===============================================================================
Navigation
===============================================================================
*/
#global-nav {
  margin: 0 auto;
}

#nav-open {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 15px 0 0 13px;
  background-color: #c5de57;
  vertical-align: middle;
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 99;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background: #141414;
  display: block;
  margin: 0 auto;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

#nav-content {
  display: none;
}

#nav-content {
  display: none;
  overflow-y: scroll;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 80px;
  left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 9999;
}

#nav-content::cue-region {
  display: block;
  background-color: #fff;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  overflow-y: scroll;
  padding-top: 49px;
}

#nav-content.open:before {
  content: "";
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;
}

/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
  opacity: 0;
}

#nav-open.active span::after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
}

#global-nav #nav-content {
  background: #f7f7f7;
  padding: 5%;
  padding-bottom: 15vh;
  z-index: 99;
}
#global-nav #nav-content #search-box-sp {
  background-color: #fff;
}
#global-nav #nav-content #search-box-sp form {
  display: flex;
  align-items: center;
}
#global-nav #nav-content #search-box-sp input[type=text] {
  width: 90%;
  padding: 1em 1em;
  border: none;
  font-size: 0.9333333333rem;
}
#global-nav #nav-content #search-box-sp button {
  width: 15px;
  height: 15px;
  background: none;
  border: none;
}
#global-nav #nav-content #search-box-sp button img {
  display: block;
  width: 100%;
  height: auto;
}
#global-nav #nav-content ul.category {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 1rem;
}
#global-nav #nav-content ul.category > li {
  width: 100%;
  text-align: center;
  border-bottom: #b3b3b3 solid 1px;
}
#global-nav #nav-content ul.category > li.school, #global-nav #nav-content ul.category > li.fan-club {
  border-right: #b3b3b3 solid 1px;
}
#global-nav #nav-content ul.category > li.school, #global-nav #nav-content ul.category > li.group, #global-nav #nav-content ul.category > li.fan-club, #global-nav #nav-content ul.category > li.member {
  width: 50%;
}
#global-nav #nav-content ul.category > li.school a, #global-nav #nav-content ul.category > li.group a, #global-nav #nav-content ul.category > li.fan-club a, #global-nav #nav-content ul.category > li.member a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
#global-nav #nav-content ul.category > li > a {
  display: block;
  padding: 0.7em 0;
}
#global-nav #nav-content ul.category > li ul.sub-menu {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
#global-nav #nav-content ul.category > li ul.sub-menu li {
  width: 50%;
  border-right: #b3b3b3 solid 1px;
}
#global-nav #nav-content ul.category > li ul.sub-menu li:nth-child(-n+2) {
  border-bottom: #b3b3b3 solid 1px;
}
#global-nav #nav-content ul.category > li ul.sub-menu li:nth-child(2n) {
  border-right: none;
}
#global-nav #nav-content ul.category > li ul.sub-menu li a {
  display: block;
  padding: 1rem;
}
#global-nav #nav-content ul.category > li ul.sub-menu li a > img {
  display: block;
  width: 50%;
  margin: 0 auto 0.5rem;
}
#global-nav #nav-content .insta {
  display: table;
  margin: 20px auto;
  width: 30%;
  max-width: 70px;
}
#global-nav #nav-content .insta p {
  padding-bottom: 0.5rem;
}

/*
===============================================================================
Footer
===============================================================================
*/
footer {
  background-color: #f7f7f7;
  padding-top: 40px;
  margin-top: 80px;
}
footer #footer-inner {
  display: block;
  width: 75%;
  margin: 0 auto;
  padding-bottom: 50px;
  position: relative;
}
footer #footer-inner #footer_logo {
  width: 100%;
  max-width: 340px;
  margin-bottom: 2rem;
}
footer #footer-inner #footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer #footer-inner .footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 30px;
}
footer #footer-inner .footer-nav ul.nav-list {
  width: 48%;
  font-size: 1.1333333333rem;
}
footer #footer-inner .footer-nav ul.nav-list:nth-last-child(-n+2) {
  width: 100%;
}
footer #footer-inner .footer-nav ul.nav-list:nth-last-child(2) {
  margin-top: 20px;
}
footer #footer-inner .footer-nav ul.nav-list > li {
  display: block;
  margin-bottom: 1em;
}
footer #footer-inner .footer-nav ul.nav-list > li a:hover {
  text-decoration: underline;
}
footer #footer-inner .footer-nav ul.nav-list > li > a {
  font-weight: bold;
}
footer #footer-inner .footer-nav ul.nav-list > li .sub {
  padding-left: 1rem;
}
footer #footer-inner .footer-nav ul.nav-list > li .sub li {
  display: flex;
  align-items: center;
  margin-top: 0.6rem;
}
footer #footer-inner .footer-nav ul.nav-list > li .sub li a {
  font-size: 1rem;
}
footer #footer-inner .footer-nav ul.nav-list > li .sub li::before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  background-color: #141414;
  margin-right: 0.5rem;
}
footer #footer-inner .footer-nav a[rel=noopener] {
  display: flex;
  align-items: center;
}
footer #footer-inner .footer-nav a[rel=noopener]::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: url(../image/icon-blank.webp) no-repeat center/100%;
  margin-left: 0.3rem;
}
footer #footer-inner a.insta {
  display: block;
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
footer #footer-inner a.insta p img {
  display: block;
  width: 100%;
  margin: 0 auto 0.3rem;
}
footer #footer-inner a.insta > img {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: auto;
}

footer #footer-bottom {
  background-color: #c5de57;
  padding: 1rem 0 0.8rem;
}
footer #footer-bottom .inner {
  display: block;
  width: 90%;
  margin: 0 auto;
}
footer #footer-bottom .inner .page-nav {
  display: flex;
  justify-content: center;
  font-size: 0.7333333333rem;
  line-height: 100%;
}
footer #footer-bottom .inner .page-nav li {
  display: flex;
  align-items: center;
  padding: 0 0.8em;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
footer #footer-bottom .inner .page-nav li::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: #141414;
  position: absolute;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
footer #footer-bottom .inner .page-nav li:last-child::after {
  display: none;
}
footer #footer-bottom .inner .page-nav li a {
  display: block;
  text-align: center;
}
footer #footer-bottom .inner .page-nav li a:hover {
  text-decoration: underline;
}
footer #footer-bottom .inner .copy {
  display: block;
  text-align: center;
  padding-top: 1rem;
  line-height: 100%;
  font-size: 0.6rem;
}

/*
===============================================================================
page top
===============================================================================
*/
.page-top {
  display: none;
}

.page-top p {
  position: fixed;
  right: 13px;
  bottom: 10px;
}

.page-top .move-page-top {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: #FFF solid 1px;
  border-radius: 50px;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-top .move-page-top img {
  display: block;
  width: 100%;
  height: auto;
}